Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Submit an order one bar after the signal

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

    Submit an order one bar after the signal

    Hello,

    Would you please help figure out how to place an order one bar after the signal was triggered? I have tried few ways but it does not work. I wonder if there is any example or guide


    #2
    Hello, thanks for writing in.

    You can use the CurrentBar property for this e.g.

    Code:
    private int conditionBar = -1;
    ...
    OnBarUpdate()
    {
    
    if(<EntryCondition>)
    {
        conditionBar = CurrentBar;
    }
    
    if(CurrentBar == conditionBar+1)
    {
        EnterLong();
    }
    
    }
    Please let me know if I can assist any further.

    Comment


      #3
      Thank you Chris

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      45 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      21 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      31 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      50 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      42 views
      0 likes
      Last Post CarlTrading  
      Working...
      X