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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Multiple Timeframe for Amibroker (AFL)
gsm
over 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 1)
Tags:
amibroker, multiple timeframe

It plots Multiple Timeframe charts in a single window.

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 10 years ago
3_6Day GuaiLiLv
Submitted by motorfly almost 13 years ago
Advanced Elliott Waves
Submitted by MarcosEn almost 13 years ago
Interactive Linear Regression Channel
Submitted by InternetWorm almost 13 years ago
Williams Alligator System
Submitted by durgesh1712 about 13 years ago
*Level Breakout system*
Submitted by Tinych about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("multiple timeframe");
n=Param("TM",1,1,60,1);
n_open = TimeFrameGetPrice("O",n*in1Minute); 
n_high = TimeFrameGetPrice("H",n*in1Minute); 
n_low = TimeFrameGetPrice("L",n*in1Minute); 
n_close = TimeFrameGetPrice("C",n*in1Minute); 

n_Open = TimeFrameCompress( n_Open, n*in1Minute );
n_High = TimeFrameCompress( n_High, n*in1Minute );
n_Low = TimeFrameCompress( n_Low, n*in1Minute );
n_Close = TimeFrameCompress( n_Close, n*in1Minute ); 
Color=IIf(C>O,colorYellow,colorBlue);
PlotOHLC(n_open,n_high,n_low,n_close,"n",color,styleCandle);
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back