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 kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    58 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    41 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    46 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    37 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    157 views
    0 likes
    Last Post SalmaTrader  
    Working...
    X