Permission denied!

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

Hourly MACD for Amibroker (AFL)
mrugen
over 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 2)
Tags:
oscillator, macd, amibroker, intraday, hourly

Hourly MACD with signal and histogram.

Screenshots

Similar Indicators / Formulas

Reversing MACD
Submitted by kelvinhand over 11 years ago
Stochastic for 4 Hour
Submitted by Ahmadbrebes about 14 years ago
Coloured MACD
Submitted by sandiip123 about 14 years ago
MACD Bullish
Submitted by zillur over 14 years ago
MACD Dema Indicator
Submitted by Peixoto over 14 years ago
MACD with Bollinger Bands
Submitted by MIKE1 over 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("MACD");

TimeFrameSet( inHourly);
r1 = Param( "Fast avg", 12, 2, 200, 1 );
r2 = Param( "Slow avg", 26, 2, 200, 1 );
r3 = Param( "Signal avg", 9, 2, 200, 1 );
TimeFrameRestore();

Plot( ml = MACD(r1, r2), StrFormat(_SECTION_NAME()+"(%g,%g)", r1, r2), ParamColor("MACD color", colorRed ), ParamStyle("MACD style") );
Plot( sl = Signal(r1,r2,r3), "Signal" + _PARAM_VALUES(), ParamColor("Signal color", colorBlue ), ParamStyle("Signal style") );
Plot( ml-sl, "MACD Histogram", ParamColor("Histogram color", colorBlack ), styleNoTitle | ParamStyle("Histogram style", styleHistogram | styleNoLabel, maskHistogram ) );
_SECTION_END();

1 comments

1. mrugen

hourly macd work good on 15 min chart

Leave Comment

Please login here to leave a comment.

Back