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 time frame for Amibroker (AFL)
Rating:
      
  3 / 5 (Votes 2)
Tags:
      oscillator, amibroker
    Macd Time frame with signal
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("Macd time frame");
TimeFrameSet( inDaily);
LongTermEMA = EMA(Close, 10);
TimeFrameRestore( );
TimeFrameSet( inHourly) ;
MediumTermEMA = EMA(Close, 10);
TimeFrameRestore( );
fMACD = MACD(6,19);
fSignal = Signal(6,19, 9);
Buy = Cross(fMACD, fSignal);
Sell = Cross(fSignal, fMACD);
Plot(TimeFrameExpand(LongTermEMA, inDaily), "Daily EMA", 
colorRed);
Plot(TimeFrameExpand(MediumTermEMA, inHourly), "\nHourly EMA", 
colorBlue);
Plot(fMACD, "\nCurrent chart MACD", colorGreen, styleOwnScale) ;
Plot(fSignal, "\nCurrent chart Signal", colorGreen, styleDashed | 
styleOwnScale) ;
PlotShapes(Buy * shapeUpArrow, colorGreen);
PlotShapes(Sell * shapeDownArrow, colorRed);
// program end
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.
Back