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 ....
combo rsi for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | _SECTION_BEGIN ( "Movint trand Surrogate" ); mtOpen = LinearReg ( Open , 20 ); // calculate moving trend from open mtHigh = LinearReg ( High , 20 ); // calculate moving trend from open mtLow = LinearReg ( Low , 20 ); // calculate moving trend from open mtClose = LinearReg ( Close , 20 ); // calculate moving trend from open // plot surrogate chart PlotOHLC ( mtOpen, mtHigh, mtLow, mtClose, "Surrogate" , colorBlack , styleCandle ); _SECTION_END (); _SECTION_BEGIN ( "Bollinger Bands" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 15, 2, 300, 1 ); Width = Param ( "Width" , 2, 0, 10, 0.05 ); Color = ParamColor ( "Color" , colorCycle ); Style = ParamStyle ( "Style" ); Plot ( BBandTop ( P, Periods, Width ), "BBTop" + _PARAM_VALUES (), Color, Style ); Plot ( BBandBot ( P, Periods, Width ), "BBBot" + _PARAM_VALUES (), Color, Style ); _SECTION_END (); |