Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Force Index for Amibroker (AFL)
Rating:
3 / 5 (Votes 3)
Tags:
oscillator, amibroker
This is for force index.
Screenshots
Similar Indicators / Formulas
Febo RSI ..real indicator
Submitted
by abhinavsingh about 13 years ago
Trading Volume Statistic
Submitted
by tuanstock1 over 10 years ago
Ergodic Oscillator
Submitted
by dljtrader about 14 years ago
3 Days Track
Submitted
by janet0211 over 14 years ago
Chande Momentum Oscillator
Submitted
by klimpek almost 14 years ago
BoH Risk Aversion Indicator
Submitted
by genkumag almost 13 years ago
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("Force index"); ECw= EncodeColor(colorRed); ECy= EncodeColor(colorBlue); FI=EMA(((C-Ref(C,-1))*V),13);// _N(Title = ECw+ "Force(13) Incex value:" +ECy+ FI); Buy = Cross (FI,0); Sell = Cross(0,FI); aSell= Cross(0,FI); shape = Buy * shapeUpArrow + Sell * shapeDownArrow; PlotShapes( shape, IIf( Buy, colorYellow, colorPink ),0, IIf( Buy, L, H ) ); Buy = MACD( 12,26)-Signal(12,26,9)<0.01 AND Cross(FI,0); aBuy = MACD( 12,26)-Signal(12,26,9)<0.01 AND Cross(FI,0); PlotShapes( shapeUpArrow*Buy, colorGreen) ; Buy = Cross(MA( Close,10),MA(Close,50)) AND Cross(FI,0); bBuy = Cross(MA( Close,10),MA(Close,50)) AND Cross(FI,0); PlotShapes( shapeHollowSquare*Buy, colorBrightGreen) ; Sell = MACD( 12,26)-Signal(12,26,9)>0.03 AND Cross(0,FI); bSell= MACD( 12,26)-Signal(12,26,9)>0.03 AND Cross(0,FI); PlotShapes( shapeDownArrow*Sell, colorRed) ; //Filter = (aBuy OR bBuy) OR (aSell OR bSell); Filter = (aBuy OR bBuy); AddColumn(C, "Close"); Plot(FI,"FI",12,5); Plot(0,"ZERO LINE",colorBlack,styleThick); _SECTION_END();
2 comments
Leave Comment
Please login here to leave a comment.
Back
This is for force index. thanks
Thanks You and Thanks 2 administrator