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 CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    264 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    168 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    171 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    257 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    209 views
    0 likes
    Last Post CarlTrading  
    Working...
    X