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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 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 (); |