Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stop not working in Real Time

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

    Stop not working in Real Time

    I have a Strategy that submits an order followed by an unmanaged stop. The strategy works as designed in backtest but when I try running it in realtime with IB Simulated envirment the stop does not get submitted. Here is the effected statements statements.
    protected override void Initialize()
    {
    CalculateOnBarClose = true;
    BarsRequired = 25;
    TraceOrders = false;
    ExitOnClose = true;
    Unmanaged = true;

    // for speed set to true
    ExcludeTradeHistoryInBacktest = false;

    Add(PeriodType.Minute,SecBarLen);


    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {

    if(BarsInProgress == 0)
    {
    MinBars();
    }
    else
    {
    HourBars();
    }


    } // End On Bar Update

    private void HourBars()
    {
    // Market is Long -- Test for exit
    if (Position.MarketPosition == MarketPosition.Long)
    {
    entryOrder = SubmitOrder(0, OrderAction.Sell, OrderType.Market, Quanity, 0, 0, "L", "ExitLong");
    }

    // Market is Short -- Test for exit
    if (Position.MarketPosition == MarketPosition.Short)
    {
    entryOrder = SubmitOrder(0, OrderAction.Buy, OrderType.Market, Quanity, 0, 0, "S", "ExitShort");
    }


    } // End HourBars
    private void MinBars()
    {

    if (Position.MarketPosition == MarketPosition.Long)
    {

    entryOrder = SubmitOrder(0, OrderAction.Sell, OrderType.Stop, Quanity, 0, NewStop, "L", "BreakLong");



    } // End Long
    if (Position.MarketPosition == MarketPosition.Short)
    {

    entryOrder = SubmitOrder(0, OrderAction.Buy, OrderType.Stop, Quanity, 0, NewStop, "S", "BreakShort");
    //

    } // End Short


    } // End of MinBars

    #2
    Reposted in Strategy where it should have been. GB

    Comment


      #3
      Thanks, just replied on your repost there.
      BertrandNinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by wzgy0920, 04-20-2024, 06:09 PM
      2 responses
      27 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 02-22-2024, 01:11 AM
      5 responses
      32 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 04-23-2024, 09:53 PM
      2 responses
      49 views
      0 likes
      Last Post wzgy0920  
      Started by Kensonprib, 04-28-2021, 10:11 AM
      5 responses
      193 views
      0 likes
      Last Post Hasadafa  
      Started by GussJ, 03-04-2020, 03:11 PM
      11 responses
      3,235 views
      0 likes
      Last Post xiinteractive  
      Working...
      X