Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Actual Executed Price of the trading

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

    Actual Executed Price of the trading

    Greetings of the Season
    I will appreciate if someone could explain the following and guide me to do it better
    When using the EnterLong() and EnterShort() Command how to extract the price at which the actual trading has executed.

    Thank You

    Simple

    #2
    Simple,

    You would want to use the IOrder object to get the entry price of the order, you can also use the IExecution object as well to get the exact execution fill price -

    http://www.ninjatrader.com/support/h...iexecution.htm

    http://www.ninjatrader.com/support/h...tml?iorder.htm
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Thanks for the link. I am not expert programmer. Would you mind giving me a simple sample code to extract the price please , please.

      Best Regards

      Simple.

      Comment


        #4
        Simple,

        The reference sample below will give you a good starting point on using OnOrderUpdate() and OnExecution() -
        The OnOrderUpdate() and OnExecution() methods are reserved for experienced programmers. Instead of using Set() methods to submit stop-loss and profit target orders, you can submit and update them manually through the use of IOrder and IExecution objects in the OnOrderUpdate() and OnExecution() methods. The OnOrderUpdate()


        The links I gave before will help in using the IOrder or IExecution objects in getting the price.

        Example (This assumes that the IOrder object has been created in OnBarUpdate()) -
        Code:
        protected override void OnExecution(IExecution execution)
        {
            if(execution.Order == EntryOrder)
              Print(execution.Price);
        }
        Cal H.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        648 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        369 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        108 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        572 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        573 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X