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 ....
Macd for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | _section_begin ( "mfi macd" ); permfi = param ( "mfi" , 14, 2, 200, 1 ); fast = param ( "fast" , 12, 2, 200, 1 ); slow = param ( "slow" , 26, 2, 200, 1 ); sig = param ( "signal" , 5, 2, 200, 1 ); mfi1 = mfi (permfi); mov1 = ema (mfi1,fast); mov2 = ema (mfi1,slow); plot (mov1 - mov2, "fast" , paramcolor ( "fast color" , colorgreen ), paramstyle ( "fast style" , styleownscale ) ); plot ( ma (mov1 - mov2,sig), "slow" , paramcolor ( "slow color" , colorred ), paramstyle ( "slow style" , styleownscale ) ); _section_end (); |