Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Price EMA Crossover Occurs

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

    Price EMA Crossover Occurs

    Looking for strategy to store the price variable that the last MA crossover occurs at..

    What does the code look like for getting that price point..



    Regards,
    Chris

    #2
    Hello Chris,

    The Close[0] price will be the last price of the bar.


    The object type is a double.

    Create a variable that is a double. Assign the Close[0] to the variable when the CrossAbove or CrossBelow condition is true.
    Code:
    private double storedPrice = 0;
    if (CrossAbove(EMA(7), EMA(14), 1))
    {
    storedPrice = Close[0];
    }
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      private double storedPrice = 0;
      if (CrossAbove(EMA.low(7), EMA.low(14), 1))
      {
      storedPrice = Close[0];
      }


      if I wanted the EMA to use 'low' value.. is the above correct?..

      Comment


        #4
        Hello Kubera2024,

        No, this would not be correct.

        Below is a link to the help guide on EMA().


        Correct usage would be:

        EMA(Low, 7)

        Where Low is the Low data series supplied to the EMA as the input series overload parameter.
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by NullPointStrategies, Today, 05:17 AM
        0 responses
        44 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        124 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        65 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        42 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        46 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X