Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Inverse Fisher Transform Stochastic Oscillator for Amibroker (AFL)
This indicator was published in S&C on 07 Nov.2011. It has been translated from the Metastock code to Amibroker.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | stochper = Param ( "Stochastic Period?" , 30, 2, 100 ); slowing = Param ( "Stochastic Slowing?" , 5, 1, 10 ); MA1 = WMA ( C ,2); RBW=5*MA1; MA1 = WMA (MA1,2); RBW=RBW+4*MA1; MA1= WMA (MA1,2); RBW=RBW+3*MA1; MA1= WMA (MA1,2); RBW=RBW+2*MA1; MA1= WMA (MA1,2); RBW=RBW+MA1; MA1= WMA (MA1,2); RBW=RBW+MA1; MA1= WMA (MA1,2); RBW=RBW+MA1; MA1= WMA (MA1,2); RBW=RBW+MA1; MA1= WMA (MA1,2); RBW=RBW+MA1; MA1= WMA (MA1,2); RBW=(RBW+MA1)/20; RBWStoch=( Sum (RBW- LLV (RBW,stochper),slowing)/( Sum ( HHV (RBW,stochper)- LLV (RbW,stochper),slowing)+0.0001)*100); x= 0.1*(RBWStoch-50); IFTStoch=(( Exp (2*x)-1)/( Exp (2*x)+1)+1)*50; Plot (IFTStoch, _DEFAULT_NAME (), colorRed ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back