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 pmachiraju, 11-01-2023, 04:46 AM
      8 responses
      148 views
      0 likes
      Last Post rehmans
      by rehmans
       
      Started by mattbsea, Today, 05:44 PM
      0 responses
      5 views
      0 likes
      Last Post mattbsea  
      Started by RideMe, 04-07-2024, 04:54 PM
      6 responses
      33 views
      0 likes
      Last Post RideMe
      by RideMe
       
      Started by tkaboris, Today, 05:13 PM
      0 responses
      5 views
      0 likes
      Last Post tkaboris  
      Started by GussJ, 03-04-2020, 03:11 PM
      16 responses
      3,282 views
      0 likes
      Last Post Leafcutter  
      Working...
      X