Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Managed order approach in onMarketData()

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

    Managed order approach in onMarketData()

    Per info from http://www.ninjatrader.com/support/h...ubmitorder.htm,

    Order is kept alive as long as it is re-submitted on each call of OnBarUpdate(). Is this applicable to OnMarketDepth() or OnMarketData() as well? For instance,

    protected override void OnMarketdata()
    {
    ...
    EnterLongLimit(GetCurrentBid());
    }

    #2
    If this is applicable, then next question is:
    OnBarUpdate() is updated per length of each bar completes, say 1 min or 5 mins. But OnMarketData() could be updated much more frequently, could this be a problem?

    Comment


      #3
      appleseed, correct in the managed mode the order would expire if not filled within the bar it was submitted on, this is in contrast to unamanged where the order will generally be live until cancelled (or taken care by the end of session handling). The expiration will hold true for other methods as well, since you are submitting to a specific series.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      571 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      330 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      548 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      549 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X