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

Multi Timeframe CCI for Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
oscillator, ambroker

Displays 14 period CCI in daily, weekly & monthly timeframe

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("DAILY CCI");
TimeFrameSet(inDaily);
	CC = CCI(14);
TimeFrameRestore();
DAYCCI = TimeFrameExpand(Cc,inDaily);
Plot(DAYCCI, "DAYCCI", ParamColor( "Color2",  colorCycle ), ParamStyle("Style2")  );
_SECTION_END();

_SECTION_BEGIN("WEEK CCI");
TimeFrameSet(inWeekly);
	CC = CCI(14);
TimeFrameRestore();
WEEKCCI = TimeFrameExpand(Cc,inWeekly);
Plot(WEEKCCI, "WEEKCCI", ParamColor( "Color3",  colorCycle ), ParamStyle("Style3")  );
_SECTION_END();

_SECTION_BEGIN("MONTHLY CCI");
TimeFrameSet(inMonthly);
	CC = CCI(14);
TimeFrameRestore();
MONTHCCI = TimeFrameExpand(Cc,inMonthly);
Plot(MONTHCCI, "MONTHCCI", ParamColor( "Color4",  colorCycle ), ParamStyle("Style4")  );
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back