Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 quantismo, 04-17-2024, 05:13 PM
        5 responses
        32 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by proptrade13, Today, 11:06 AM
        1 response
        5 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Started by love2code2trade, 04-17-2024, 01:45 PM
        4 responses
        34 views
        0 likes
        Last Post love2code2trade  
        Started by cls71, Today, 04:45 AM
        2 responses
        10 views
        0 likes
        Last Post eDanny
        by eDanny
         
        Started by kulwinder73, Today, 10:31 AM
        1 response
        10 views
        0 likes
        Last Post NinjaTrader_Erick  
        Working...
        X