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 Jonafare, 12-06-2012, 03:48 PM
      5 responses
      3,986 views
      0 likes
      Last Post rene69851  
      Started by Fitspressorest, Today, 01:38 PM
      0 responses
      2 views
      0 likes
      Last Post Fitspressorest  
      Started by Jonker, Today, 01:19 PM
      0 responses
      2 views
      0 likes
      Last Post Jonker
      by Jonker
       
      Started by futtrader, Today, 01:16 PM
      0 responses
      8 views
      0 likes
      Last Post futtrader  
      Started by Segwin, 05-07-2018, 02:15 PM
      14 responses
      1,792 views
      0 likes
      Last Post aligator  
      Working...
      X