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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    636 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    366 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    107 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    568 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    571 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X