Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

EMA uptrend and downtrend indicator

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    EMA uptrend and downtrend indicator

    Hy (sorry my poor english)

    pls help me

    how to use EMA(10) same like a trendline indicator

    Code:
     private in period10 =10;
      private trend bool = true;     //(uptrend)
      private trend bool = false;   //(downtrend)
    
                 if(Close[0] > EMA(period10)....)
                          Trend = true;
    
                 if(....... < .....)
                        Trend = false;
           
           else
                if(trend)
              BackColor = Color.LightSalmon;  
                  (i think this is a downtrend)

    pls help
    i'dont know how to finish it

    #2
    Hello hunadamka,

    Thank you for your post and welcome to the NinjaTrader Support Forum!

    Based on your inquiry I would use the following code:
    Code:
    private int trend = 0;
    private int period = 10;
    ...
    if(Close[0] > EMA(period)[0])
    {
    trend = 1; // 1 = up trend.
    }
    else if (Close < EMA(period)[0])
    {
    trend = 2; // 2 = down trend.
    }
    ...
    if(trend == 1)
    {
    // Do something.
    }
    else if(trend == 2)
    {
    // Do something.
    }

    Comment


      #3
      thank you
      for a quick help!

      and now i know how to colorize background color and line : )

      THX

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      156 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      90 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      139 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      130 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      107 views
      0 likes
      Last Post CarlTrading  
      Working...
      X