My Bank Nifty Option trades.

#52
just change letter H and L from 1st and 2nd line of code with OBV() and u will be done
Not to disturb the flow of this thread, Extremist, but Thank you for all the technical support provided. Beautiful simple and efficient programming :thumb:
 

extremist

Well-Known Member
#54
Sir,

It plots single line, as OBV value is same for high low both. WE have to have bollinger band of OBV and then rest should follow.
:thumb:
'm sorry bro but we r kind of obstructing the flow of the thread. PM will come in handy.
those who not use Amibroker will get offended.
 
#55
'm sorry bro but we r kind of obstructing the flow of the thread. PM will come in handy.
those who not use Amibroker will get offended.
No No.. it is related to the current thread, so please carry one. I am not an Amibroker user, but enjoying reading this.
 

checkmate7

Well-Known Member
#56
Yes it would be good if everything is present here in this thread :)

.
 

monkeybusiness

Well-Known Member
#58
'm sorry bro but we r kind of obstructing the flow of the thread. PM will come in handy.
those who not use Amibroker will get offended.
Sir,

Please check raw code and validate.
Code:
Plot( OBV(), _DEFAULT_NAME(), ParamColor("Color", colorCycle ), ParamStyle("Style")  );


_SECTION_BEGIN("VK Band");
Periods = Param("Periods", 15, 2, 300, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );


bTop=BBandTop( OBV(), Periods, Width );
bBottom=BBandBot( OBV(), Periods, Width );

eh=EMA(btop,2);

el = EMA(bbottom,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();
 

Similar threads