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 ....
36 line for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("36 system");
Plot( C, "Price", ParamColor( "Color", colorDefault ), ParamStyle( "Style", styleCandle, maskPrice ) );
mm = HHV(C,30)-3.6;
Plot(MM,"HHV",colorRed,8);
LLL = LLV(O,30)-3.6;
Plot(LLL,"HHV",colorGreen,8);
FF = Ref(MM,-22);
NN = Ref(MA(FF,22),-22);
Plot(NN,"mv",colorWhite,8);
_SECTION_END();