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 AaronKoRn, Yesterday, 09:49 PM
        0 responses
        11 views
        0 likes
        Last Post AaronKoRn  
        Started by carnitron, Yesterday, 08:42 PM
        0 responses
        10 views
        0 likes
        Last Post carnitron  
        Started by strategist007, Yesterday, 07:51 PM
        0 responses
        11 views
        0 likes
        Last Post strategist007  
        Started by StockTrader88, 03-06-2021, 08:58 AM
        44 responses
        3,981 views
        3 likes
        Last Post jhudas88  
        Started by rbeckmann05, Yesterday, 06:48 PM
        0 responses
        9 views
        0 likes
        Last Post rbeckmann05  
        Working...
        X