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 ....
Rangy RSI for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("rsi3"); p14=Param("Period buy",14); p10=Param("Period sell",10); sh1=RSI(p14)<35 AND RSI(p14)>25 ; sh2=RSI(p10)<75 AND RSI(p10)>65 ; Buy=b1 ; Sell=s1; PlotShapes(Buy * shapeUpArrow, colorGreen ); PlotShapes(Sell* shapeDownArrow, colorRed); Plot(C,"RSI",colorBlack,styleCandle); _SECTION_END();