Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SImple EMA Indicator Not Behaving!!

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

    SImple EMA Indicator Not Behaving!!

    Hey guys, I wrote a simple Program that Draws an Arrow Conditions are Met. However, I'm trying to make it so that UPTREND is Only established when the fast EMA over "n" periods has been Above Middle EMA, and Vice Versa for DOWNTREND.

    I'm attempting to use
    Code:
    if( (MAX(EntryEMA, 5)[1] > (MAX(TrendEMA, 5)[1])) && (TrendEMA[0] > GrandEMA[0]))
    			{
    				upTrend = true;		downTrend = false;	beginShorts = false;
    			}
    But it seems to not be working. Sadly my knowledge of MAX/MIN is limited, as it's Still Showing Arrows everywhere. I've Attached the Indicator if someone with more experience can please help me out. I'd appreciate it.

    Thank You!!

    Attached Files

    #2
    Hi ginx10k,

    Thanks for your post.

    The MAX will return the highest value in the entire series. Using the [1] gives you the second highest value in the series. This does not return a BarsAgo value but returns the actual highest price/value.

    http://www.ninjatrader.com/support/h...aximum_max.htm

    If you are wanting a BarsAgo value, use HighestBar().

    http://www.ninjatrader.com/support/h...highestbar.htm


    With your current code, if the second highest value in EntryEMA is greater than the second highest bar in TrendEMA on one bar, it will remain so until TrendEMA makes two highs that are higher than the second highest high in EntryEMA.

    So it would be expected this stays true on every bar.

    Let me if this doesn't help.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thank you, it did help. If i have further questions I'll post here. but I got it for now. Thanks so much!!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      599 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      344 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      558 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      557 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X