Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

No suitable method to override

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

    No suitable method to override

    Hello,

    I'm new to NinjaTrader and I'm trying to create a bot that sends me a message and a screenshot every time I send an order (manually., but when I try to apply the method OnExecutionUpdate it fails telling me "No suitable method to override".

    I don't know what's wrong although the code is pretty simple.

    protected override void OnExecutionUpdate(Execution execution, string executionId, double price, int quantity, MarketPosition marketPosition, string orderId, DateTime time)
    {
    // Check the underlying Order object for null before trying to access its properties
    if (execution.Order != null && execution.Order.OrderState == OrderState.Filled)
    {
    sendCombiMessage();
    }
    }

    Being sendCombiMessage the function that sends the message to Telegram (I tested It and it works)

    I tried to avoid the error removing 'override' but then it does nothing.

    Thanks in advance

    EDIT: I have solved it changing from Indicator to Strategy.
    Last edited by mrcma; 06-04-2021, 05:25 AM.

    #2
    Hello mrcma,

    Thank you for your post.

    That is correct. OnExecutionUpdate() is a strategy method so it would be used within a NinjaScript strategy instead of an indicator.

    See the help guide documentation below for more information.
    OnExecutionUpdate(): https://ninjatrader.com/support/help...tionupdate.htm

    Let us know if we may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    63 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    35 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    55 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    61 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    49 views
    0 likes
    Last Post CarlTrading  
    Working...
    X