Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
elliott wave one and two exploration for Amibroker (AFL)
I have been identifying elliott wave one and two by this method and 90 percent of time i am successful in identifying wave one and two easily . But i fail to understand why this AFL is giving false results ,too . Can anybody help me improve it .
thanksSimilar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | MedianPrice = ( H + L )/2; Jaw = Wilders (MedianPrice,13); //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+" , colorWhite , styleLine | styleDots ); FUpBuyPrice = FractalUp + 0.01; FUpHit = FUpBuyPrice <= H AND FUpBuyPrice >= L ; FUpSignalOn = Flip ( Ref (FractalUp,-1) != FractalUp, FUpHit); //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+ 0.01; FDownHit = FDownSellPrice <= H AND FDownSellPrice >= L ; FDownSignalOn = Flip ( Ref (FractalDown,-1) != FractalDown, FDownHit ); Plot (FractalDown, "F-" , colorWhite , styleLine | styleDots ); f1 = FractalDown < Jaw; f2 = FractalUp >Jaw; f3 = Ref (FractalDown,-1) < Jaw AND Ref ( fractalDown ,-1 )<FractalDown ; Buy = f1 AND f2 AND f3 ; f4 = FractalUp >Jaw; f5 =FractalDown<Jaw; f6 = Ref (FractalUp,-1) > Jaw AND Ref ( fractalUp ,-1) > FractalUp; Sell = f4 AND f5 AND f6 ; |
5 comments
Leave Comment
Please login here to leave a comment.
Back
thanks for the share but it only plots a channel, how to know where are the elliot waves 1 & 2 ?
Hi,
Could you please share your idea on how to identify wave 1&2?
Best,
Solo
I think that is clear .
Have you tried using this Chaos theory concept to label all the Elliot Waves on a price chart? This appear to detect bearish impulse waves. Could you include code for bullish impulse waves too?