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 ....
LBR/RSI Momentum Pinball for Amibroker (AFL)
Rating:
2 / 5 (Votes 3)
Tags:
oscillator, amibroker
Momentum Pinball per Linda Bradford Raschke
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("WB LBR-RSI");
SetChartOptions(0,0,chartGrid30|chartGrid50|chartGrid70);
RSIPer = Param( "RSIPer", 3, 1, 200, 1 );
ROCPer = Param("ROCPer", 1, 1, 200, 1 );
Upper=Param("Upper", 70, 50, 100, 1);
Lower=Param("Lower", 30, 0, 50, 1);
Plot( RSIa(ROC(C,ROCPer),RSIPer), _DEFAULT_NAME(), ParamColor( "Color", colorBlue ), ParamStyle("Style", styleThick) );
Plot(Upper,"Upper",ParamColor( "ColorUpper", colorBlue ),styleLine);
Plot(Lower,"Lower",ParamColor( "ColorLower", colorBlue ),styleLine);
Title =FullName();
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.
Back