My System - My trades.

Arjun ji one thing that can help you is the daily range of OBV. Till the time we are within the previous day range, the underlying would be construed as sideways. (Something like an inside day in price). Once it breaks out from its previous days range you get nice trending moves. Extremist ji has made a range Hilighter AFL. Ask him to share it with you guys. You can break down the look back period to half a day or some other time frame. The PDC, 11,1, 2:30 lines do just that.
 

kumudhan

Well-Known Member
PDC/CDO (Previous Day Close/Current Day Open)

Code:
_SECTION_BEGIN("OBV PDC or CDO");

ND = Day()!=Ref(Day(),-1);       
Ob = OBV();                           
pdc = ValueWhen(nd,Ref(Ob,-1));
cdo = ValueWhen(nd,Ob);

if( ParamToggle("OBV PDC ", "No|Yes", 1))   
Plot(pdc,"",colorRed,styleNoLabel|styleNoRescale|styleDashed);

if( ParamToggle("OBV CDO ", "No|Yes", 1))   
Plot(CDO,"",colorRed,styleNoLabel|styleNoRescale);

_SECTION_END();
Option is yours to choose from parameters...
hope this may save your time and may help some.
see if this is what you need ji.
 

Similar threads