My System - My trades.

No you are not correct. I have said earlier too that once the LVbar is formed and we get a good trade from it, it does not change for the rest of the day. Now if prices move too much away from this LV bar then it would be foolish to take signals based on this LV bar at that time. It is something like taking trades of a support 100 points away. I am sure no one would consider that as a support and go long when it is a 100points away. We can use this only when we get close to it.
 

wisp

Well-Known Member
It was after 12:30 when the price came below 200EMA (Cloud low).
No you are not correct. I have said earlier too that once the LVbar is formed and we get a good trade from it, it does not change for the rest of the day. Now if prices move too much away from this LV bar then it would be foolish to take signals based on this LV bar at that time. It is something like taking trades of a support 100 points away. I am sure no one would consider that as a support and go long when it is a 100points away. We can use this only when we get close to it.
So when we short below 12.35, LV Bar high is 30 points away. Are we playing the 30 points initially? Price then reversed almost 60 points I think, whats our thought process then. I am probably missing something basic, please help.

 
Thanks Arjunji...VKji....Saiji....for explaining the method....
Thanks a lot.
VKji....I have not seen in any forum people disclosing their methods...It simply shows how great you are....

I will go through the thread again....Hope i wont trouble you again with my silly doubts.
 

toocool

Well-Known Member
Seems Tick chart (Bajfinance 5 tick chart attached by Varun ji) lot smoother than 1 minutes chart (attached below) ... Any comments?
sir could u help me with setting up the chart like u have , i am trying but its not happened yet , can u please share what are its components ?? what are afl's used , as upper readings of ur chart suggest that on price chart u have imposed obv ema's ?? in pink and light green ??
 
MB ji,
As you have created/ modified most of the AFL. Could you please provide the complete one...
sir could u help me with setting up the chart like u have , i am trying but its not happened yet , can u please share what are its components ?? what are afl's used , as upper readings of ur chart suggest that on price chart u have imposed obv ema's ?? in pink and light green ??
AFL for Price pane
Code:
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", colorBlack,styleCandle);

Plot(EMA(Close,200),"",ColorRGB(0,255,255),styleLine|styleNoTitle|styleNoLabel|styleNoRescale,styleNoRescale);
Plot(EMA(Close,36),"",ColorRGB(255,255,128),styleLine|styleNoTitle|styleNoLabel|styleNoRescale,styleNoRescale);

_SECTION_BEGIN("EMA 5 MIN");
TimeFrameSet(in5Minute);
m5= EMA(Close,36) ;
Plot(TimeFrameExpand(m5, in5Minute), "", colorAqua ,  styleDashed);
TimeFrameRestore();
_SECTION_END();

_SECTION_BEGIN("EMA 15 MIN");
TimeFrameSet(in15Minute);
m15= EMA(Close,36) ;
Plot(TimeFrameExpand(m15, in15Minute), "",  colorYellow ,  styleDashed);
TimeFrameRestore();
_SECTION_END();

_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,styleDots);
//Plot(ll,"\nLVlb",colorred,styleDots);
PlotOHLC( hh,  hh,  ll, ll, "",colorAqua,styleCloud|styleNoRescale,Null,Null,0,-2,0);

_SECTION_END();

_SECTION_BEGIN("VKSLline");

VKSLline=ParamToggle("VKSLline","Off|On",1);

if(VKSLline)
{
n=Day() != Ref(Day(), -1);

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

e36 = EMA(c,36);

res=max(e36,hh);
sup=min(e36,ll);
avd=IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0));
avn=ValueWhen(avd!=0,avd,1);
tsl=IIf(avn==1,sup,res);
col = IIf(avn==1,colorBrightGreen,colorRed);
col1 = IIf(avn==1,ColorRGB(64,64,64),colorRed);
plot(tsl,"\nVKSL ",col,stylethick);



y=5;
PlotOHLC(y,Y+10,y,y,"",col1,styleOwnScale|styleNoLabel|styleCloud,0,500,0,-5);
}
_SECTION_END();

_SECTION_BEGIN("EM");

EM=ParamToggle("EM","Off|On",1);

if(EM)
{

Plot( EMA( C, 36 ), "EMA36OBV", ColorRGB(255,0,255), styleLine ,styleNoLabel|styleNoRescale );
Plot( EMA( C, 200 ), "EMA200OBV", ColorRGB(102,255,204), styleLine ,styleNoLabel|styleNoRescale );
m3=EMA(C,36);
m4=EMA(C,200);
PlotOHLC(m3,m3,m4,m4,"Cloud",IIf(m3>m4,colorGreen,colorPlum),styleCloud|styleNoRescale,Null,Null,0,-2,0);
}
_SECTION_END();
AFL for OBV Pane
Code:
SetChartOptions(0,chartShowArrows|chartShowDates);
Ob = OBV();
n=Day() != Ref(Day(), -1);
a=LowestSince(n,V);
ll=ValueWhen(V==a,OBV());
Obcolor=IIf(Ob>EMA(OBV(),36)AND OBV()>ll,colorGreen,colorRed);
Plot(Ob,"Ob",Obcolor,styleThick,0,0,0,4,4);
LB = Day()!=Ref(Day(),1);
Zero = ValueWhen(LB,Ob);
if( ParamToggle("EMA 36 & 200 ", "No|Yes", 1))   
{
Plot( EMA( OBV(), 36 ), "\nEMA36", colorYellow, styleDashed ,styleNoLabel|styleNoRescale );
Plot( EMA( OBV(), 200 ), "\nEMA200", colorAqua, styleLine ,styleNoLabel|styleNoRescale );
}
if( ParamToggle("LVbar ", "No|Yes", 1))   
Plot(ll,"\nLVhb",colorWhite,styleLine|styleNoLabel|styleNoRescale);



Sessions=ParamToggle("Sessions","Off|On",1);

if(Sessions)
{
LB = Day()!=Ref(Day(),1);       
Zero = ValueWhen(LB,Ob);   
T = TimeNum();       
T1 = T >= 105900 AND T <=110000;
T2 = T >= 125900 AND T <=130000;
T3 = T >= 142900 AND T <=143000;
Sessions = IIf(T>=142959, ValueWhen(T3,Ob), IIf(T>=125959, ValueWhen(T2,Ob), IIf(T>=105959, ValueWhen(T1,Ob), Zero)));
Plot(Sessions,"",ColorRGB(255,0,255),styleNoLabel|styleNoRescale|styleStaircase|styleLine,0,0,-1,-1);

}
PDC=ParamToggle("PDC","Off|On",1);

if(PDC)
{
Plot(Zero,"",colorRed,styleNoLabel|styleNoRescale|styleStaircase,0,0,-2,-1);

}

VKBand=ParamToggle("VKBand","Off|On",1);

if(VKBand)
{
Periods = Param("VKB Period", 20, 2, 300, 1 );
Width = Param("VKB Width", 2, 0, 10, 0.05 );


bTop=BBandTop( ob, periods, width );
bBottom=BBandBot( OB, 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",colorAqua,styleDashed|styleNoLabel|styleNoRescale);
Plot(vb,"\nVbot",colorPink,styleDashed|styleNoLabel|styleNoRescale);
}



OBVHOURLYHiLo=ParamToggle("HiLo 60 bar","Off|On",1);

if(OBVHOURLYHiLo)
{

n = Param("HiLo Period", 60, 15, 300, 15 );
re = HHV(Ob,n); su = LLV(Ob,n);

Plot(re,"",colorOrange,styleNoLabel|styleNoRescale,0,0,2);
Plot(su,"",colorBrightGreen,styleNoLabel|styleNoRescale,0,0,2);
}
 

vishal7176

Well-Known Member
last few months i am follow this thread very silently , no comments or only fews .
Today i openly saying VK ji you are doing very nice work for whole trader community .
"Thank you very much" word are very short to say, i would thank you so much from my heart .
Thanks also MB ji , arjunji , saiji and all contributor for this thread .
 

Similar threads