Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How get a slippage value

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

    How get a slippage value

    Dear Support and others --

    I'd like my script prints me a slippage value in points/dollars when my stop order is executed.

    I think about OnExecution method but what is the sample of the code that gives me the sippage value?

    execution.Price gives me price of the order executed, where\how can I get initional stop order price.

    Thank you in advance.

    #2
    You can use the IOrder objects to track order properties. This can be done routinely directly from the the OnOrderUpdate method as well:



    Code:
            protected override void OnOrderUpdate(IOrder order)
            {
    			
    			Print(order.StopPrice);
    			Print(order.LimitPrice)
             }
    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by sjsj2732, Yesterday, 04:31 AM
    0 responses
    28 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    284 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    281 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    132 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    90 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X