Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

9 EMA, 21 EMA both are above 50 EMA

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

    9 EMA, 21 EMA both are above 50 EMA

    Hello,

    I know how to check if the 9 EMA crosses 21 EMA but how do I make sure that both of these EMAs are above 50 EMA also. So far I got this but not sure how to incorporate the third 50 EMA check with this code:

    if (CrossAbove(emaFast9, emaSlow21, 1)

    Thanks

    John

    #2
    Hello JohnZee

    You would have to add two more conditions which check that each of the ema's are greater than the 50 ema in addition to the cross above.

    Code:
    if(emaFast9[0] > emaSlow50[0] && emaSlow21[0] > emaSlow50[0] && CrossAbove(emaFast9, emaSlow21, 1))

    Comment


      #3
      OK thank you.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      256 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      167 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      170 views
      1 like
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      253 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      203 views
      0 likes
      Last Post CarlTrading  
      Working...
      X