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 ....
BEST MCDA for Amibroker (AFL)
Copy & Paste Friendly
Back
TimeFrameSet(inHourly);
_SECTION_BEGIN("Best MACD2");
SetChartBkGradientFill( ParamColor("BgTop", colorBlack),ParamColor("BgBottom", colorBlack), ParamColor("Title", colorWhite));
SetChartBkColor(ParamColor("Background", colorBlack));
_SECTION_END();
// 9trading 006
// Copyright 9Trading.com
Plot( 100, "", 4, styleLine );
Plot( -100, "", 4, styleLine );
n = Param( "per", 5, 2, 25, 1 );
//TimeFrameSet( in1Minute);
ys1 = ( High + Low + Close * 2 ) / 4;
rk3 = EMA( ys1, n );
rk4 = StDev( ys1, n );
rk5 = ( ys1 - rk3 ) * 100 / rk4;
rk6 = EMA( rk5, n );
UP = EMA( rk6, n );
DOWN = EMA( up, n );
Oo = IIf( up < down, up, down );
Hh = Oo;
Ll = IIf( up < down, down, up );
Cc = Ll;
barcolor2 = IIf( Ref( oo, -1 ) < Oo AND Cc < Ref( Cc, -1 ), colorYellow,
IIf( up > down, colorDarkOliveGreen, colorRed ) );
PlotOHLC( Oo, hh, ll, Cc, "Mod 1m " , barcolor2, styleCandle );
_SECTION_END();