First of all I personally thank Mr Jagdish Ahuja(ATMA organizer) for providing oppurtunity and organizing this Amibroker AFL coding to make this event successful one. The event is less of PPT and more of a live afl coding event. Lots of like minded people in the crowd. Nice to meet all you guyz and thanks for coming down to listen us
[wp_ad_camp_5]
Checkout the Amibroker AFL coding Presentation
Dear Sir,
as per your instruction down loaded the same Afl code of Bollinger Band Based Trailing Stop Loss – Amibroker.
but it works only on weekly basis, cant see any buy / sell signals on daily basis charts.
Please guide.
Thanks and regards,
Prakash Modak
how to downlod your super treand afl and how to apply pls i think its good working
Visit here for more details explaination about supertrend and installation guidelines http://www.marketcalls.in/amibroker/10-things-to-know-about-supertrend-v2-0-afl-code.html
Very nice hearing you out in the ATMA meet, Rajendran.
Also appreciate your book reommendation “Mean reversion trading’.
Can you give a suggestion for a good daily newsletter which captures the overall market action in the stock market for a particular day.
Thanks in advance.
I guess sharekhan newsletter capture the overall sentiment and the happenings in the market. Its a good daily newsletter captures the overall action.
Hi Rajendran;
Any plans on your mind for workshop in delhi??
Vikas
Dear Rajandran,
I missed CBE workshop. When is the next workshop? Any plan to conduct workshop in CHNENNAI?
Thanks,
Raj
Next Workshop we are targetting one in Bangalore by Jan 2015
Dear rajendran sir,
I am desperate to attend the afl seminar, but i don’t have computer programming language, will i able to attend?
what one should know as basic skill to learn this afl, kindly let me know, and also will you provide afl writing service for the clients.
Thank you,
Srinivasan.k
Dear Rajendran,
I am eagerly waiting for the next workshop…
Thanks,
Rajkumar
Stay tuned we are about the finalize the date shortly and planning to do one in Bangalore – Jan 2015
Hi Rajendran,
Please do let me know about Bangalore Workshop, waiting very eagerly.
Thanks,
Mahesh
We will be coming up with announcement shortly. Stay tuned!
I have one afl its good for delivery trading but some time these afl give false signal. please help me to remove these false signal. out of 10 only 1 signal is false remaning 9 is accurate so please modify and enjoy all for these good afl. Here i paste alf below.
_SECTION_BEGIN(“123”);
z=Param(“zig”,0.4,0.01,3,0.01);
Plot(C,””,colorLightGrey,styleBar);
Plot( Zig(C, z), _DEFAULT_NAME(), colorYellow, styleLine );
p=Peak(C,z,1);
t=Trough(C,z,1);
Buy=Cross(C,p)AND TimeNum()>100000 ;
stop=ValueWhen(Buy,t,1);
Entry=ValueWhen(Buy,p,1);
Target=(Entry+(Entry-stop));
Sell=Cross(stop,C) OR Cross(t,C) OR Cross(C,Target) OR TimeNum()>152500 ;
Buy = ExRem( Buy, Sell );
Sell = ExRem( Sell, Buy );
PlotShapes(shapeUpArrow*Buy,colorGreen,0, L,-5 );
PlotShapes(shapeDownArrow*Sell,colorRed,0, H,-5 );
Short=Cross(t,C)AND TimeNum()>100000;
stop1=ValueWhen(Short,p,1);
Entry1=ValueWhen(Short,t,1);
Target1=(Entry1-(stop1-Entry1));
Cover=Cross(C,stop1) OR Cross(C,p) OR Cross(Target1,C) OR TimeNum()>152500;
Short = ExRem( Short, Cover );
Cover = ExRem( Cover, Short );
PlotShapes(shapeSmallUpTriangle*Cover,colorRed,0,L ,-30 );
PlotShapes(shapeSmallDownTriangle*Short,colorGreen ,0,H,-30 );
finalb = Flip( Buy, Sell );
finals = Flip( Short, Cover );
Plot(IIf(finalb==1,Ref(Entry,1),IIf(finals==1,Entr y1,Null)),””,colorGreen,styleDashed);
Plot(IIf(finalb==1,stop,IIf(finals==1,stop1,Null)) ,””,colorRed,styleDashed);
Plot(IIf(finalb==1,Target,IIf(finals==1,Target1,Nu ll)),””,colorBlue,styleDashed);
z=Param(“zig”,0.4,0.01,3,0.01);
Plot(C,””,colorLightGrey,styleBar);
Plot( Zig(C, z), _DEFAULT_NAME(), colorYellow, styleLine );
p=Peak(C,z,1);
t=Trough(C,z,1);
Buy=Cross(C,p)AND TimeNum()>100000 ;
stop=ValueWhen(Buy,t,1);
Entry=ValueWhen(Buy,p,1);
Target=(Entry+(Entry-stop));
Sell=Cross(stop,C) OR Cross(t,C) OR Cross(C,Target) OR TimeNum()>152500 ;
Buy = ExRem( Buy, Sell );
Sell = ExRem( Sell, Buy );
PlotShapes(shapeUpArrow*Buy,colorGreen,0, L,-5 );
PlotShapes(shapeDownArrow*Sell,colorRed,0, H,-5 );
Short=Cross(t,C)AND TimeNum()>100000;
stop1=ValueWhen(Short,p,1);
Entry1=ValueWhen(Short,t,1);
Target1=(Entry1-(stop1-Entry1));
Cover=Cross(C,stop1) OR Cross(C,p) OR Cross(Target1,C) OR TimeNum()>152500;
Short = ExRem( Short, Cover );
Cover = ExRem( Cover, Short );
PlotShapes(shapeSmallUpTriangle*Cover,colorRed,0,L ,-30 );
PlotShapes(shapeSmallDownTriangle*Short,colorGreen ,0,H,-30 );
finalb = Flip( Buy, Sell );
finals = Flip( Short, Cover );
Plot(IIf(finalb==1,Ref(Entry,1),IIf(finals==1,Entr y1,Null)),””,colorGreen,styleDashed);
Plot(IIf(finalb==1,stop,IIf(finals==1,stop1,Null)) ,””,colorRed,styleDashed);
Plot(IIf(finalb==1,Target,IIf(finals==1,Target1,Nu ll)),””,colorBlue,styleDashed);
Add last line
_SECTION_END();