My System - My trades.

manojborle

Well-Known Member
Manoj Bhai check below code, I think its same what u asking, but not sure......:p

Code:
_SECTION_BEGIN("OBVPDC");
ND = Day()!=Ref(Day(),-1);		
LB = Ref(ND,-1);
Ob = OBV();							
Zero = ValueWhen(LB,Ob);
Plot(Zero,"",colorRed,styleNoLabel|styleNoRescale|styleStaircase|styleDashed);
_SECTION_END();
Bhai I use the same code and it plots the obv level at 1530 previous day.
Varun ji said he uses obv level at 0916 so need to make changes in this code.
I will try and if failed will ask Happy ji for the solution.

Thanks
 

manojborle

Well-Known Member
Manoj Bhai check below code, I think its same what u asking, but not sure......:p

Code:
_SECTION_BEGIN("OBVPDC");
ND = Day()!=Ref(Day(),-1);		
LB = Ref(ND,-1);
Ob = OBV();							
Zero = ValueWhen(LB,Ob);
Plot(Zero,"",colorRed,styleNoLabel|styleNoRescale|styleStaircase|styleDashed);
_SECTION_END();
pls share the code after the correction you did Manoj Ji
Krishna Ji its the same above code.
 

extremist

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.
 

PUCHU_2500

Well-Known Member
200 ema+36 ema+pdc=wrong coception as per varun's description (intentionally avoided 'sir' word, nahito GK bolenge oiling master....)
200 ema+36 ema on price and obv=right
hi/lo of 15 min.30 min and 60 min on obv bo/bd=right
bo/bd of 15 min price hi/lo=right
pdc on obv=take only for reference, above pdc on obv only long trades
below pdc only short
 

checkmate7

Well-Known Member
Has anyone coded this OBV concept with price in PI tradescript- ExpertAdvisor????
 

Vipul_84

Well-Known Member
ST Sir, Can we take previous day's close value from ZERODHA KITE 1 minute chart? I think many times KITE Value & Ami value are different? Anyways, can you post OBV close (yesterday's) for Nifty & BN futures ? Want to cross check with my values.

I don't use AFL and I am also using Previous days closing OBV value visually and it works great....

ST
 

Similar threads