Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Error with stop-order

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

    Error with stop-order

    Sometimes when a stop order is sent by my strategy, it causes an error because the price (bad/ask) has changed quickly and then the stop-order is not correct. The problem is that the strategy is turned-off automaticly. How can I solve it?

    Thanks in advance.

    #2
    Hello soyjesus,

    How are you setting your stop loss order inside of your code?

    Example:
    Code:
    protected override void OnBarUpdate()
    {	
    
    if(MarketPosition.Flat != Position.MarketPosition)
    {
    //sets stop loss 5 ticks behind average entry price
    SetStopLoss(CalculationMode.Ticks, 5);
    }
    }
    JCNinjaTrader Customer Service

    Comment


      #3
      With every new bar my strategy set a new level stop like: "SetStopLoss(CalculationMode.Price, LevelStop)" where LevelStop is a variable.

      The error occurs just when the strategy changes the level-stop for a new one.

      Comment


        #4
        Hello soyjesus,

        So using "CaclulationMode.Price" is going to be an absolute value, which you would want to make sure that it is being reset after the position is closed so that it will not use the same price for the next order that gets processed.

        Here is a reference that demonstrates this that you may view at the link below.



        You may also add TraceOrders = true to your Initialize() method and you view valuable output related to strategy submitted orders through Tools > Output window to see what price your stop loss is being set to so it is easier to see what is happening.
        JCNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by algospoke, Yesterday, 06:40 PM
        2 responses
        19 views
        0 likes
        Last Post algospoke  
        Started by ghoul, Today, 06:02 PM
        3 responses
        14 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by jeronymite, 04-12-2024, 04:26 PM
        3 responses
        45 views
        0 likes
        Last Post jeronymite  
        Started by Barry Milan, Yesterday, 10:35 PM
        7 responses
        21 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by AttiM, 02-14-2024, 05:20 PM
        10 responses
        181 views
        0 likes
        Last Post jeronymite  
        Working...
        X