Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Order Problem

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

    Order Problem

    I am getting the error:-

    An Enter() method to submit an entry order at '20/11/2014 11:39:57' has been ignored. Please search on the term 'Internal Order Handling Rules' in the Help Guide for detailed explanation.
    the code for the order is :-
    Code:
    else if(Position.MarketPosition == MarketPosition.Flat && oscSignalShort) // Short entry logic
    				{
    					scalpShort = EnterShortLimit(tBIP,true, 1, GetCurrentBid(tBIP), "Short");
    					oscSignalShort = false;
    				}
    When I move though the code with visual studio for the time mentioned the order is null after processing.

    I see nothing in the logs apart from the one error message above despite using
    TraceOrders = true;

    #2
    GKonheiser, you're in the managed approach so the internal order handling rules will find application.

    Methods that generate orders (like your EnterShortLimit) to enter a position will be ignored if:
    • A position is open and an order submitted by an exit method (ExitLongLimit() for example) is active and the order is used to open a position in the opposite direction
    • A position is open and an order submitted by a set method (SetStopLoss() for example) is active and the order is used to open a position in the opposite direction
    • The strategy position is flat and an order submitted by an enter method (EnterLongLimit() for example) is active and the order is used to open a position in the opposite direction
    • The entry signal name is not unique

    The full rules would be documented here - https://www.ninjatrader.com/support/...d_approach.htm

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    637 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
    569 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