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 ....
multiple timeframe for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("multiple timeframe");
n=Param("TM",1,1,60,1);
n_open = TimeFrameGetPrice("O",n*in1Minute,0,expandPoint);
n_high = TimeFrameGetPrice("H",n*in1Minute,0,expandPoint);
n_low = TimeFrameGetPrice("L",n*in1Minute,0,expandPoint);
n_close = TimeFrameGetPrice("C",n*in1Minute,0,expandPoint);
PlotOHLC(n_open,n_high,n_low,n_close,"TM",colorBlack,styleCandle);