Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

onExecution, which BarsInProgress (or Instrument)

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

    onExecution, which BarsInProgress (or Instrument)

    I am throwing out several buys for multiple instruments out at once. I need to determine how to process the fills for each. Using onExecution, how would I filter which instrument is being reported for this execution? IE:, which BarsInProgress is happening for the fill that just came in?

    #2
    You can simply call the BarsInProgress property.

    For example the following:

    Code:
    		protected override void OnExecution(IExecution execution)
    		{
    			Print("execution occurred on BIP: " + BarsInProgress);	
    		}
    Would spit out the following:

    execution occurred on BIP: 2
    You can also do filtering on BIP like you may be using in OnBarUpdate:

    Code:
    if(BarsInProgress == 2)
    // do something
    Please let me know if that's not what you're looking for.
    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by proptrade13, Today, 11:06 AM
    1 response
    5 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Started by quantismo, 04-17-2024, 05:13 PM
    4 responses
    30 views
    0 likes
    Last Post quantismo  
    Started by love2code2trade, 04-17-2024, 01:45 PM
    4 responses
    32 views
    0 likes
    Last Post love2code2trade  
    Started by cls71, Today, 04:45 AM
    2 responses
    10 views
    0 likes
    Last Post eDanny
    by eDanny
     
    Started by kulwinder73, Today, 10:31 AM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_Erick  
    Working...
    X