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 trilliantrader, 04-18-2024, 08:16 AM
        4 responses
        18 views
        0 likes
        Last Post trilliantrader  
        Started by mgco4you, Today, 09:46 PM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by wzgy0920, Today, 09:53 PM
        0 responses
        9 views
        0 likes
        Last Post wzgy0920  
        Started by Rapine Heihei, Today, 08:19 PM
        1 response
        10 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by Rapine Heihei, Today, 08:25 PM
        0 responses
        10 views
        0 likes
        Last Post Rapine Heihei  
        Working...
        X