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