My System - My trades.

On 11th May the LV bar in Nifty had a closing price of 9448.9. (This should come into play on Monday if 9404/9409 is protected.) Whether it reacts from those levels or go up from there would only be clear on Monday. (I do not trade Nifty). Another interesting observation to share with you is when you connect these points of the price levels of the last few days you get a fairly good idea of the inherent trend of the market by looking at the pattern it is making. (Higher highs higher lows or vice versa). This cuts out the noise and is easy to comprehend.
Target achieved.
 

Vipul_84

Well-Known Member
Extremist Ji, any modification in this code? I am not able to plot the LV Bars.
Nor able to get any colored bars as well :confused:


Low Vol. Bar.


Code:
_SECTION_BEGIN("HiLo Vol N");

n=Day() != Ref(Day(), -1);

a=LowestSince(n,V);
hh=ValueWhen(V==a,H);
ll=ValueWhen(V==a,L);

Plot(hh,"\nLVhb",colorGreen,styleDashed);
Plot(ll,"\nLVlb",colorred,styleDashed);

_SECTION_END();

second


Code:
_SECTION_BEGIN("HiLo Vol");

pr = Param("period",375,0,5000,1);
lv= LLV(V,pr);
hh=ValueWhen(Ref(V,-1)==lv,Ref(H,-1));
ll=ValueWhen(Ref(V,-1)==lv,Ref(L,-1));

Plot(hh,"\nLVhb",colorGreen,styleDashed);
Plot(ll,"\nLVlb",colorred,styleDashed);

_SECTION_END();

Use whichever u like.
Do your own share of hard work to choose between them.

these r the codes i shared with Varunji.
 

Similar threads