Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Strategy deployment for Micro Futures

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

    Strategy deployment for Micro Futures

    Hello,

    I am using a bar counter to exit a trade when long or short.

    The strategy works fine during back- testing but when running real time exits the trade a few bars too early.

    Please find below a part of my code

    ---------------------
    protected override void OnStateChange()
    {
    if (State == State.SetDefaults)
    {
    BarsExitLong = 35;
    BarsExitShort = 15;
    }
    }

    protected override void OnBarUpdate()
    {
    if (IsShort)
    {
    barsShort ++;

    if ( (barsShort >= BarsExitShort) && (Close[0] < (Position.AveragePrice - _atr[0]) ) )
    {
    base.ExitShort("STarget" + barsShort, "S1");
    }
    }

    if (IsFlat && (_smaS[2]<=_smaS[1]) && (_smaS[1] > _smaS[0]) )
    {
    int lots;

    barsShort = 0;

    double Ptarget = Close[0] - ProfitMultiplier;


    if (TradingFutures)
    {
    lots = (int) (InitialCapital / 50000);

    shortEntryOrder1 = EnterShort( lots , "S1");

    stopPrice = High[0] + ATRMultiplier;

    base.SetStopLoss("S1", CalculationMode.Price, stopPrice, false );
    }
    }
    }
    -----------------------------


    I suspect that the reason for this is the fact that I am running the strategy in real time on eurex regular trading hours while the program is computing the bars in extended trading hours.


    In this particular instance in the attached photo the trade was exited after 11 bars while the programming was for 15 bars.


    Please advise and why this is happening and how to rectify.

    Kind regards

    Ioannis

Latest Posts

Collapse

Topics Statistics Last Post
Started by CarlTrading, 03-31-2026, 09:41 PM
1 response
47 views
0 likes
Last Post NinjaTrader_ChelseaB  
Started by CarlTrading, 04-01-2026, 02:41 AM
0 responses
23 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
51 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