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 ....
Momentum for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
oscillator, amibroker
Momentum by Jace Bernstein
Similar Indicators / Formulas
Debu Market Efficiency Ratio
Submitted
by agent301 over 12 years ago
MACD (new timing)
Submitted
by tigernifty over 12 years ago
3 Days Track
Submitted
by janet0211 over 14 years ago
KILL THE OPERATOR MACD
Submitted
by prasadmuni over 12 years ago
DMI Spread
Submitted
by pipstar over 14 years ago
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("Momentum jake bernstein Price"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) )); Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); _SECTION_END(); bb = MA(Close - Ref(Close,-7),1); x = MA(Close - Ref(Close,-7),1); y = MA(bb,5); Buy = Cross(x,y); PlotShapes( shapeUpArrow*Buy, colorGreen,0,L, -20); Sell = Cross(y,x); PlotShapes( shapeDownArrow*Sell, colorRed,0,H, -10);
0 comments
Leave Comment
Please login here to leave a comment.
Back