![]() |
|
| Discuss Help..Amibroker forumla AFL for "Saintji's Going With The 60min Flow practice!!!" at the AmiBroker within the Traderji.com - Discussion forum for Stocks Commodities & Forex; Originally Posted by vvvv i think people are not interested in the AFL as it ... |
|
|||||||
| Notices |
![]() |
|
|
Thread Tools |
| Sponsored Links |
|
#11
|
|||
|
|||
|
Quote:
Thanks for your efforts - as I keep saying...my idea of having AFL is purely limited to thoroughly understand the 60 mins method...beyond that is purely your efforts and luck... ..for some reason I believed, since Saintji has taken lots of pain explaining the method over 500+ pages, someone must have drawn the entire picture by coding it... Needless to keep saying the request is not to churn money effortlessly..I am not sure why you keep saying about churning the money..being rich etc etc...everyone in this forum has a common goal of becoming a successful buddying trader... rgds, Nisha |
| Sponsored Links |
|
#12
|
|||
|
|||
|
Hi VVVV,
I don't know why you posted and deleted the AFL. Could you tell how far or close this AFL to the system? All that it need is to add/subtract the space required for Buy and Sell and a formule to add positions. You can write and didplay the buy and sell price Then you can scan the system every hour. and also have the initial loss calculated automatically and also the running profits. I am sure you can do it if you give it a try Just an idea!! Regards Ken |
|
#13
|
|||
|
|||
|
ken, if you can post the buy and sell criteria here, I could write the afl if it is'nt too complicated.
|
|
#14
|
|||
|
|||
|
Quote:
I am here attaching a afl which was written by one of our member abhay hi id in traderji is add. |
| The Following 3 Users Say Thank You to sikandar For This Useful Post: | ||
|
#15
|
|||
|
|||
|
Quote:
the sole purpose of this AFL was to identify pivot points on the chart..thts it...wht u do later with tht is upto u....as far as im concerned i use this afl everytime i trade as it keeps me in the right side of the trend always. this afl is the sole base for the kind of trading saint does...as far as im concerned i m goin to follow his style of trend trading..so this afl is useful for me...for others it may not be... if any1 is interested i can post it again.. thnks for ur idea |
|
#16
|
|||
|
|||
|
Do post it again if u dont mind
|
|
#17
|
|||
|
|||
|
//Fractal up
fUp = (Ref(H,-2) > Ref(H, -4)) AND (Ref(H,-2) > Ref(H, -3)) AND (Ref(H,-2) > Ref(H, -1)) AND (Ref(H,-2) > H); var1=ValueWhen(fUp ,Ref(H,-2) ,1); FractalUp=HighestSince(var1 > 0, var1, 1); //Plot(FractalUp, "F+",ParamColor( "F+ Color", colorCycle ) , styleLine); FUpBuyPrice = FractalUp ; FUpHit = FUpBuyPrice <= H AND FUpBuyPrice >= L; FUpSignalOn = Flip(Ref(FractalUp,-1) != FractalUp, FUpHit); //Looks into the future. This is done only to display Fractal arrow at the right bar. //The calculation of the fractal up is done without looking into the future. PlotShapes(IIf(Ref(FractalUp,2) != Ref(FractalUp,1), shapeSmallUpTriangle, shapeNone), colorRed,0,Ref(FractalUp,2), 10); //Fractal Down var2= (Ref(L,-2) <= Ref(L, -1)) AND (Ref(L,-2) <= Ref(L, 0)) AND (Ref(L,-2) <= Ref(L, -3)) AND (Ref(L,-2) <= Ref(L, -4)); FractalDown=ValueWhen(var2, Ref(L,-2), 1); FDownSellPrice= FractalDown; FDownHit = FDownSellPrice <= H AND FDownSellPrice >= L; FDownSignalOn = Flip(Ref(FractalDown,-1) != FractalDown, FDownHit ); //Plot(FractalDown, "F-", ParamColor( "F- Color", colorCycle ), styleLine); //Looks into the future. This is done only to display Fractal arrow at the right bar. //The calculation of the fractal up is done without looking into the future. PlotShapes(IIf(Ref(FractalDown,2) != Ref(FractalDown,1), shapeSmallDownTriangle, shapeNone), colorLime,0,Ref(FractalDown,2), 10); |
|
#18
|
|||
|
|||
|
This formula may alter the existing buy / sell (Meaning past buy /sell) position shall change based on the future price movements... reliability is low
|
|
#19
|
|||
|
|||
|
Fractals trading system with money management.
Best to use in 15 mins TF for intra. SetChartBkColor(47); SetChartOptions(1,chartShowDates); _SECTION_BEGIN("POS SIZE"); cap = Param("Capital", 0,100000, 5000000, 50000 ); risk = Param("Max. Risk",0.0025, 0.005, 0.02, 0.0025 ); /*The following builds Fractal Up*/ var1=ValueWhen( (Ref(H,-2) > Ref(H, -4)) AND (Ref(H,-2) > Ref(H, -3)) AND (Ref(H,-2) > Ref(H, -1)) AND (Ref(H,-2) > H), Ref(H,-2),1); FractalUp=HighestSince(var1>0,var1,1); Plot(FractalUp,"Res",colorRed,8); /*The following builds Fractal Down*/ var2= (Ref(L,-2) <= Ref(L, -1)) AND (Ref(L,-2) <= Ref(L, 0)) AND (Ref(L,-2) <= Ref(L, -3)) AND (Ref(L,-2) <= Ref(L, -4)); FractalDown=ValueWhen( var2,Ref(L,-2),1); Plot(FractalDown,"Supp",colorGreen,8); a=LLV(L,3); a1=HHV(H,3); TimeFrameRestore(); Plot(C,"",colorBlack,styleCandle); _SECTION_BEGIN("Volume"); Plot( Volume, "Volume", ParamColor("Color", colorLavender ), styleNoTitle | ParamStyle( "Style", styleHistogram | styleOwnScale | styleThick | styleNoLabel, maskHistogram ), 5 ); tn = TimeNum(); dn = DateNum(); u = ValueWhen( tn<105500, HighestSince(dn!=Ref(dn,-1), H )); w = ValueWhen( tn<105500, LowestSince(dn!=Ref(dn,-1), L )); Longtgt=u+(u-w); Shrttgt=w-(u-w); Cond13=PDI()>MDI(); Title = Date()+" "+ Interval(format=2)+" "+Name()+" "+"O "+WriteVal(O)+" "+"H "+WriteVal(H)+" L"+WriteVal(L)+" C "+WriteVal(C)+EncodeColor(colorRed)+" Lot Size "+WriteVal(RoundLotSize,1.0)+" Margin"+WriteVal(MarginDeposit,1.0)+"\n" +EncodeColor(colorGreen)+" Buy above "+WriteVal(FractalUp,1.2)+" Stop "+WriteVal(FractalDown,1.2)+ "\n"+EncodeColor(colorBlue)+" Sell below "+WriteVal(FractalDown,1.2)+ " Stop "+WriteVal(FractalUp,1.2)+ "\n"+" Trade risk based on fractals Rs "+ WriteVal((FractalUp-FractalDown),1.0)+ " Position Size based on " + WriteVal(risk*100,1.2)+ " % risk = " + WriteVal((cap*risk)/(FractalUp-FractalDown),1.0)+ "shares"+ "\n"+ EncodeColor(colorGreen)+" ADX is "+ WriteIf(Cond13,"BULLISH","BEARISH ")+ "\n"+EncodeColor(colorBlue)+ "\n"+"2 bar Long stop " +WriteVal(a,1.2)+EncodeColor(colorRed)+" 2 bar Short stop "+WriteVal(a1,1.2)+ "\n"+EncodeColor(colorGreen)+ " ORB Long Breaout "+WriteVal(u,1.2)+" Target "+ WriteVal(Longtgt,1.2) +"\n"+EncodeColor(colorRed)+" ORB Short breakout "+WriteVal(w,1.2)+" target "+ WriteVal(Shrttgt,1.2); |
| The Following User Says Thank You to tanewbie For This Useful Post: | ||
debdeeps (28th November 2008) | ||
| Sponsored Links |
|
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|
Indemnity, Disclaimer & Disclosure
Notice:
• By visiting Traderji.com you indicate your acceptance of our Forum
Rules Disclaimer & Disclosure and indemnify Traderji.com, its
associates and related parties of all claims howsoever resulting from
the usage of the forum.
• Disclaimer: Trading or investing in stocks & commodities
is a high risk activity. Any action you choose to take in the markets
is totally your own responsibility. Traderji.com will not be liable for
any, direct or indirect, consequential or incidental damages or loss arising out of the use of this information.
• Disclosure: The information in this forum is neither an offer to sell nor solicitation to buy any of the securities mentioned herein.
The writers may or may not be trading in the securities mentioned.
• All names or products mentioned are trademarks or registered trademarks of their respective owners.
General Content Disclaimer Notice:
In light of our policy of encouraging candid, open exchanges of views and the rapid distribution of information originating from many sources, Traderji.com cannot determine the accuracy of information that may be uploaded to the forum. Opinions, advice and all other information expressed by participants in discussions are those of the author. You rely on such information at your own risk. You are urged to seek professional advice for specific, individual situations and not rely solely on advice or opinions given in the discussions. Since Traderji.com is an open and free discussion forum, any comments made by members of this forum in their posts reflect their own views and not of the owner or administrator of Traderji.com. Thus the owner/administrator indemnify themselves of all claims whatsoever and will not be liable or responsible for any members comments/views in this forum Traderji.com. If you find any objectionable or offensive posts made by members of this forum which you would like to bring to our notice for removal then please Contact Us.