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, 05-11-2026, 05:56 AM
0 responses
53 views
0 likes
Last Post CarlTrading  
Started by CarlTrading, 05-10-2026, 08:12 PM
0 responses
32 views
0 likes
Last Post CarlTrading  
Started by Hwop38, 05-04-2026, 07:02 PM
0 responses
195 views
0 likes
Last Post Hwop38
by Hwop38
 
Started by CaptainJack, 04-24-2026, 11:07 PM
0 responses
356 views
0 likes
Last Post CaptainJack  
Started by Mindset, 04-21-2026, 06:46 AM
0 responses
277 views
0 likes
Last Post Mindset
by Mindset
 
Working...
X