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

Multiple Trades Per Bar Problem

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

    Multiple Trades Per Bar Problem

    Hello. I have a moving crossover strategy and instead of going long when the crossover occurs, I would like to have a limit order triggered but I'm having trouble with the correct setting via Strategy Builder...

    So when the crossover occurs, I'd rather wait for a 2 tick pullback before entering. There's no setting in (Strategy Builder - Conditions - Price) to select the "last price" and then offset by -2 ticks. I would be grateful if someone could shed some light on proper setting. I've tried numerous settings, and nothing seems to take into account the price at which the cross occurred and then subtract by 2 ticks.
    Last edited by Demo9044; 10-14-2017, 10:32 AM. Reason: Other question answered via forum

    #2
    Have everything look back 2 ticks prior so something like this:

    //this would check that the crossover happened, make sure it's still above, and basically verify that it didn't happen in the last few ticks.
    MACD is pretty useless by itself as an indicator though, I only "glance" at it

    if ( (CrossAbove(MACD.Diff(),0,5) && MACD.Diff[0]>0 && MACD.Diff[1]>0)
    {
    do this;
    }

    Comment


      #3
      Hello Demo9044,

      In the field where the price can be set
      • Hover the mouse over the value, then click the set link that appears.
      • In the Value window select Price -> select Close
      • In the properties below for the Offset value, select the negative sign from the drop-down
      • Enter a 2 in the empty value
        (you can also click set and use a variable here if you would like)
      • Click Ok -> click OK


      Below is a publicly available link to the help guide.
      Attached Files
      Chelsea B.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by guillembm, Yesterday, 11:25 AM
      2 responses
      9 views
      0 likes
      Last Post guillembm  
      Started by junkone, 04-21-2024, 07:17 AM
      9 responses
      68 views
      0 likes
      Last Post jeronymite  
      Started by trilliantrader, 04-18-2024, 08:16 AM
      4 responses
      20 views
      0 likes
      Last Post trilliantrader  
      Started by mgco4you, Yesterday, 09:46 PM
      1 response
      11 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by wzgy0920, Yesterday, 09:53 PM
      0 responses
      10 views
      0 likes
      Last Post wzgy0920  
      Working...
      X