Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Solar Wind Joy for Amibroker (AFL)
Was a request from a member to Convert Solar wind joy in MT4 indicator to AFL in
http://www.traderji.com/amibroker/98121-convert-solar-wind-joy-mt4-indicator-afl-2.html
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | /*************************************** Solar Wind Joy Translated from MT4 to Amibroker Done by KelvinHand ****************************************/ Version (4.90); period = Param ( "Period" ,35, 1); smooth = Param ( "Smooth" ,10, 1); MaxHHV = HHV ( H , period); MinLLV = LLV ( L , period); Value1=0; Fish1=0; aFish= Null ; for (i=0; i< BarCount ; i++) { MaxH = MaxHHV[i]; MinL = MinLLV[i]; Price = ( H [i]+ L [i])/2; Value = 0.33*2*((Price-MinL)/(MaxH-MinL)-0.5)+0.67*Value1; Value = Min ( Max (Value, -0.999), 0.999); aFish[i] = 0.5* log ((1+Value)/(1-Value))+0.5*Fish1; Value1 = Value; Fish1 = aFish[i]; if (aFish[i]>0) aFish[i]=10; else aFish[i]=-10; } aSmth=0; for (i=0; i< BarCount ; i++) { SumI=0; SumW=0; for (k=0; k<smooth && (i-k)>=0; k++) { weight = smooth-k; SumW += weight; SumI += weight*aFish[i-k]; } if (SumW>0) aSmth[i] = SumI/SumW; } aLine=0; for (i=0; i< BarCount ; i++) { SumI=0; SumW=0; for (k=0; k<smooth && (i-k)>=0; k++) { weight = smooth-k; SumW += weight; SumI += weight*aSmth[i-k]; } if (SumW>0) aLine[i] = SumI/SumW; } colorH = IIf (aLine>0, colorBrightGreen , IIf (aLine<0, colorRed , colorGold )); Plot (aLine, "" , colorH, stylenolabel | styleHistogram ); colorL = IIf (aLine>0 AND Ref (aLine, -1)>0, colorBrightGreen , IIf (aLine<0 AND Ref (aLine, -1) <0, colorRed , colorGold )); Plot (aLine, "" , colorL, stylenolabel | stylethick ); PlotGrid (0, colorLightgrey , 6, 1, True ); |
3 comments
Leave Comment
Please login here to leave a comment.
Back
if u use amibroker 5.7 then replace
PlotGrid(0, colorLightgrey, 6, 1, True);
By
PlotGrid(0, colorLightGrey);
I want to convert two MT4 Formula into AFL, If possible give me your mail id.Thank you.
it’s not the same indicator that i have seen at metatrader