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 ....
          MFI - MACD for Amibroker (AFL)
Rating:
      
  3 / 5 (Votes 2)
Tags:
      oscillator, amibroker
    Hopefully usefull
Isfandi
Screenshots
Similar Indicators / Formulas
                    3 Days Track
                    
                
                      Submitted
                      by janet0211 over 15 years ago
                    
                  
                    Trading Volume Statistic
                    
                
                      Submitted
                      by tuanstock1 over 11 years ago
                    
                  
                    Ergodic Oscillator
                    
                
                      Submitted
                      by dljtrader almost 15 years ago
                    
                  
                    BoH Risk Aversion Indicator
                    
                
                      Submitted
                      by genkumag almost 14 years ago
                    
                  
                    Chande Momentum Oscillator
                    
                
                      Submitted
                      by klimpek almost 15 years ago
                    
                  Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("MFI-MACD");
col = IIf( EMA( MFI(14) ,12)-EMA( MFI(14) ,26)> Ref( EMA( MFI(14) ,12)-EMA( MFI(14) ,26), -1 ), colorBrightGreen, colorRed ); 
Plot( EMA( MFI(14) ,12)-EMA( MFI(14) ,26), "abosliman2005m",col , 5 ); 
col22 = IIf( MA(EMA( MFI(14) ,12)-EMA( MFI(14) ,26),5)> Ref( MA(EMA( MFI(14) ,12)-EMA( MFI(14) ,26),5), -1 ), colorBrightGreen, colorRed ); 
Plot( MA(EMA( MFI(14) ,12)-EMA( MFI(14) ,26),5), "abosliman",col22 , 5 ); 
Plot(12, "", 4); 
Plot(0, "", 3); 
Plot(-12, "",colorBrightGreen); 
ST2= WMA( EMA( MFI(14) ,12)-EMA( MFI(14) ,26),5); 
ST3= WMA(ST2,5);  
PlotOHLC( ST2,ST2,ST3,ST2, "StochK", IIf( ST2> ST3, 6, 9), styleCloud  );
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.
Back