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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      151 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      304 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      244 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      345 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      175 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X