Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Reversing Trades

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

    Reversing Trades

    I have a trading strategy that is kind of working but not executing 100%. It seems to skip once in a while. What I want it to do is reverse an order.

    Scenario 1: when the time is decided to change and the order didn't hit the target exit position AND set a new limit order the opposite direction;
    Scenario 2: if the order wasn't filled Cancel the order AND set a new limit order the opposite direction.

    What I am finding out it can cancel the order but skips setting up the reversal order. I think the code doesn't think it is flat.



    if (Position.MarketPosition == MarketPosition.Short)
    {
    if (nTarget1Contracts != 0)
    ExitShort("Short1");

    if (nTarget2Contracts != 0)
    ExitShort("Short2");

    if (nTarget3Contracts != 0)
    ExitShort("Short3");
    }
    else
    {
    if (oEntryOrder1 != null)
    {
    oEntryOrder1 = GetRealtimeOrder(oEntryOrder1);
    CancelOrder(oEntryOrder1);
    }

    if (oEntryOrder2 != null)
    {
    oEntryOrder2 = GetRealtimeOrder(oEntryOrder2);
    CancelOrder(oEntryOrder2);
    }

    if (oEntryOrder3 != null)
    {
    oEntryOrder3 = GetRealtimeOrder(oEntryOrder3);
    CancelOrder(oEntryOrder3);
    }
    }

    if (Position.MarketPosition == MarketPosition.Flat)
    {
    {
    if (nTarget1Contracts != 0 && bTradeEnabled == true)
    {

    SetProfitTarget("Long1", CalculationMode.Price, dPrice1, true);
    SetStopLoss("Long1", CalculationMode.Price, dPrice2, false);

    if (bUseMar****rder == true)
    EnterLong(nTarget1Contracts, "Long1");
    else
    EnterLongLimit(0, true, nTarget1Contracts, dPrice3, "Long1");
    }
    }

    #2
    Hello ballboy11,

    You are very likely correct in your assessment here, the position will not be updated until the next OnBarUpdate call. Calling the CancelOrder will not allow the Position check to evaluate true immediately after.

    To confirm that is happening you could use a Print inside your condition and wait for the time when you see this happen, if the print didn't happen your logic was not called which indicates it was not flat.
    Code:
    if (Position.MarketPosition == MarketPosition.Flat)
    {
    Print("Here");

    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    46 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    33 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X