Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Multiple positions

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

    Multiple positions

    I have a question about multiple contracts. In the below example, I placed an order for 5 ES contracts. The order was split, 1 contract @ 1922.25 and 4 contracts @ 1922.0.

    Click image for larger version

Name:	chart.jpg
Views:	1
Size:	69.1 KB
ID:	901201

    I see that I can get the average filled price using Position.AvgPrice, but how can I get a list of the separate orders with their actual filled prices when they have been filled in different batches?

    #2
    Hello risingfire,

    Are you trying to find this with code?

    If so, you can detect the fill price of each execution.

    protected override void OnExecution(IExecution execution)
    {
    Print(execution.Price);
    }

    You can also view the executions in the performance report for the script.
    • In the Strategies tab of the Control Center right-click the instance of the strategy
    • Select Strategy Performance -> select Real-time, Historical & Real-time, or Historical depending on which trades you want to see
    • Select the Executions tab


    Are you trying to find the executions from the Control Center that are not from code?
    Click the Executions tab of the Control Center.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_ChelseaB View Post
      Are you trying to find this with code?

      If so, you can detect the fill price of each execution.

      protected override void OnExecution(IExecution execution)
      {
      Print(execution.Price);
      }
      Thank you, yes, from within code. OnExecution() looks perfect. Thanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by algospoke, Yesterday, 06:36 PM
      2 responses
      13 views
      0 likes
      Last Post algospoke  
      Started by tkaboris, Today, 08:32 AM
      2 responses
      5 views
      0 likes
      Last Post tkaboris  
      Started by RaddiFX, Yesterday, 09:55 PM
      3 responses
      26 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by geotrades1, Today, 08:33 AM
      2 responses
      11 views
      0 likes
      Last Post geotrades1  
      Started by samish18, 04-17-2024, 08:57 AM
      23 responses
      111 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X