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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    153 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    89 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    133 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    128 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    107 views
    0 likes
    Last Post CarlTrading  
    Working...
    X