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

Wait x bars after signal to trade

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

    Wait x bars after signal to trade

    Apologies for this simple and probably redundant question. How can I wait x bars after a signal to go long or short, such as from a moving average crossover.

    Thanks

    #2
    Hello rgreenberg,

    Thanks for your post.

    You can use a bool to indicate that your condition has occurred and then save the bar number where the condition occurred. Then in the next condition, test for the bool state and check the current bar to the saved bar to evaluate how many bars have passed.

    For example:

    if (//your crossover condition)
    {
    myCrossover = true; // a bool variable you previously created called myCrossover set to false.
    mySavedBar = CurrentBar; // an Int variable you previously created called mySavedBar to hold the bar number when the cross ocurred.
    }

    later in your code:

    if (myCrossover && CurrentBar - mySavedBar >= 10) // wait for 10 bars
    {
    // do something here
    myCrossover = false; // reset the bool so this only executes once per condition.
    }
    Paul H.NinjaTrader Customer Service

    Comment


      #3
      Paul,

      Thank you for your reply. I now know about using the bool to specify conditions. Thanks to jr123 as well. I guess I am surprised that Ninjascript did not cover this seemly simple concept with a "BarsSinceSignal" type command.

      Thanks again.

      rg

      Comment


        #4
        Originally posted by rgreenberg View Post
        Apologies for this simple and probably redundant question. How can I wait x bars after a signal to go long or short, such as from a moving average crossover.

        Thanks
        Hello rgreenberg,

        No need for apologies, we all just trying to learn

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Irukandji, Today, 04:58 AM
        0 responses
        2 views
        0 likes
        Last Post Irukandji  
        Started by fitspressoburnfat, Today, 04:25 AM
        0 responses
        2 views
        0 likes
        Last Post fitspressoburnfat  
        Started by Skifree, Today, 03:41 AM
        1 response
        4 views
        0 likes
        Last Post Skifree
        by Skifree
         
        Started by usazencort, Today, 01:16 AM
        0 responses
        1 view
        0 likes
        Last Post usazencort  
        Started by kaywai, 09-01-2023, 08:44 PM
        5 responses
        604 views
        0 likes
        Last Post NinjaTrader_Jason  
        Working...
        X