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 ....
simle for Amibroker (AFL)
Copy & Paste Friendly
Back
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 15, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
Plot(70,"",colorGrey40,1);
Plot(30,"30",colorGrey40,1);
Plot(50,"50",colorLightGrey,styleDashed);
Plot(75,"75",colorLightGrey,styleDashed);
Plot(25,"25",colorLightGrey,styleDashed);
//Plot(MA(Close,9),"9sma", colorBrown,styleDashed, 0,0,0);
_SECTION_BEGIN("MA1");
P = ParamField("Price field",-1);
Periods = Param("Periods", 9, 2, 300, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );