Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

BarsRequiredToTrade

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

    BarsRequiredToTrade

    Getting message: An order placed at has been ignored since the order was submitted before the strategy property BarsRequiredToTrade had been met.

    I was able to fix this.
    Last edited by heavy; 04-22-2020, 10:07 PM.

    #2
    Hello heavy,

    Thank you for your reply.

    Just so we've got a solution here in case another user runs into this issue, this is occurring because you have a BarsRequiredToTrade setting in your strategy but your strategy isn't checking to see if that requirement has been met in OnBarUpdate prior to sending orders. Orders sent before the requirement has been met will trigger this message in the log.

    This can be avoided by adding a check in OnBarUpdate:

    if (CurrentBar < BarsRequiredToTrade)
    return;

    Please let us know if we may be of further assistance to you.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    56 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    132 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    73 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    45 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X