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 ....
RSI styleClipMinMax for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 | _SECTION_BEGIN ( "RSI styleClipMinMax" ); SetChartOptions (0,0,chartGrid30|chartGrid50|chartGrid70); periods = Param ( "Periods" , 12, 1, 200, 1 ); maxClip = Param ( "maxClip" , 70, 1, 100, 1 ); minClip = Param ( "minClip" , 30, 1, 100, 1 ); Plot ( RSI ( periods), _DEFAULT_NAME (), ParamColor ( "Color" , colorCycle ), ParamStyle ( "Style" ) ); r = RSI (periods); PlotOHLC ( r,r,50,r, "" , IIf ( r > 50, colorRed , colorBrightGreen ), styleCloud | styleNoLabel | styleClipMinMax , minClip, maxClip ); _SECTION_END (); |