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 ....
RMI-RSI for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("RMI"); periods = Param( "Periods", 10, 1, 200, 1 ); momentum = Param( "Momentum", 5, 1, 200, 1 ); Plot( RMI(periods, momentum) , _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style",styleThick) ); _SECTION_END(); _SECTION_BEGIN("RSI"); SetChartOptions(0,0,chartGrid30|chartGrid70); periods = Param( "Periods", 10, 1, 200, 1 ); Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style",styleThick) ); _SECTION_END(); Plot(70,"",colorDarkRed,style=32); Plot(30,"",colorDarkRed,style=32);