My Crudeoil Trades.

extremist

Well-Known Member
Well rest all you can find in my thread but the Bold green and red lines which is forming a channel is as under.
Draw High EMA2 and Low Ema2.
And then to smoothen them, plot Keltner channels with 8,0.4 as settings.
Then plot the TEMA2(in Bold Green of the top of the keltner channel of EMA2 High)
and TEMA2 of the bottom of the keltner channel of EMA2 Low. In the end only these 2 TEMA's (bold Green and Bold Red) should be on your charts. Use the No draw function for all the other parameters used.
Shall i post the code for " VKBands " varun sir?
May help you and others...
 

checkmate7

Well-Known Member

checkmate7

Well-Known Member

extremist

Well-Known Member
Well rest all you can find in my thread but the Bold green and red lines which is forming a channel is as under.
Draw High EMA2 and Low Ema2.
And then to smoothen them, plot Keltner channels with 8,0.4 as settings.
Then plot the TEMA2(in Bold Green of the top of the keltner channel of EMA2 High)
and TEMA2 of the bottom of the keltner channel of EMA2 Low. In the end only these 2 TEMA's (bold Green and Bold Red) should be on your charts. Use the No draw function for all the other parameters used.
VKBands : Varun Kochhar Bands


Code:
_SECTION_BEGIN("VK Band");

eh = EMA(H,2);
el = EMA(L,2);

kt = MA(eh,8)+(0.4*ATR(8));
kb = MA(el,8)-(0.4*ATR(8));

vt = TEMA(kt,2);
vb = TEMA(kb,2);

Plot(vt,"\nVtop",colorGreen,styleThick);
Plot(vb,"\nVbot",colorred,styleThick);

_SECTION_END();
Varun Sir please check the out put of the code and correct me if i'm wrong.
 

VJAY

Well-Known Member
Varunji now trading with tick charts !!!!!!...many changes happen since my last visit in TJ :D
 

Similar threads