Trading according to Karthiks strategy..

Does ATP method is prfitable for your trade?

  • Yes

    Votes: 13 40.6%
  • No

    Votes: 3 9.4%
  • Not all the time

    Votes: 16 50.0%

  • Total voters
    32
  • Poll closed .
i wish someone would make an afl to give us an alert if price closes above below a perticular level/line(which can be user defined),it would be extreamly useful not only in this method but even in others,u wouldnt have to watch the charts like a hawk

if atp is floor pivot then this will be good
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +"
{{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));

Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );

H1=SelectedValue( TimeFrameGetPrice( "H", inDaily, -1 ));
L1=SelectedValue(TimeFrameGetPrice( "L", inDaily, -1 ));
C1=SelectedValue(TimeFrameGetPrice( "C", inDaily, -1 ));

/*PIVOT Calculation*/
p = ( H1+ L1 + C1 )/3;
s1 = (2*p)-H1;
r1 = (2*p)-L1;
s2 = p -(H1 - L1);
s3 = S1 - (H1-L1);
r2 = p +(H1 - L1);
r3 = R1 +(H1-L1);

Plot (p,"Pivot",25,1);
Plot (r1,"R1",12,1);
Plot (r2,"R2",12,1);
Plot (r3,"R3",12,1);
Plot (s1,"S1",3,1);
Plot (s2,"S2",3,1);
Plot (s3,"S3",3,1);
 
Last edited:

anup

Well-Known Member
i wish someone would make an afl to give us an alert if price closes above below a perticular level/line(which can be user defined),it would be extreamly useful not only in this method but even in others,u wouldnt have to watch the charts like a hawk

if atp is floor pivot then this will be good
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +"
{{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));

Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );

H1=SelectedValue( TimeFrameGetPrice( "H", inDaily, -1 ));
L1=SelectedValue(TimeFrameGetPrice( "L", inDaily, -1 ));
C1=SelectedValue(TimeFrameGetPrice( "C", inDaily, -1 ));

/*PIVOT Calculation*/
p = ( H1+ L1 + C1 )/3;
s1 = (2*p)-H1;
r1 = (2*p)-L1;
s2 = p -(H1 - L1);
s3 = S1 - (H1-L1);
r2 = p +(H1 - L1);
r3 = R1 +(H1-L1);

Plot (p,"Pivot",25,1);
Plot (r1,"R1",12,1);
Plot (r2,"R2",12,1);
Plot (r3,"R3",12,1);
Plot (s1,"S1",3,1);
Plot (s2,"S2",3,1);
Plot (s3,"S3",3,1);
ya right..
 

karthik_sri

Well-Known Member
Thanks to all for keeping this thread alive. I have been following this thread for past few days and also tracking the mentioned stocks and seeing good results. Have not traded yet with this method though now planning to do it.

I do have a question. I belive you all are trading with 15min timeframe. But can this be done with 5/30/60 min timeframe as well? I will be checking this out myself but if someone has tried with other timeframes then please share the results.

Thanks
Amit
If u use 5 min u will get multiple times entry point and at the same time equal level of SL hitting your trade. 30/60 min i hv not tried...

Karthik
 

anilnegi

Well-Known Member

Similar threads