Announcement

Collapse
No announcement yet.

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.
    }

    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 Mindset, 04-21-2026, 06:46 AM
        0 responses
        88 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        134 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        68 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        119 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        67 views
        0 likes
        Last Post PaulMohn  
        Working...
        X