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 pechtri, 06-22-2023, 02:31 AM
        9 responses
        122 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by frankthearm, 04-18-2024, 09:08 AM
        16 responses
        64 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Started by habeebft, Today, 01:18 PM
        1 response
        5 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by benmarkal, Today, 12:52 PM
        2 responses
        13 views
        0 likes
        Last Post benmarkal  
        Started by f.saeidi, Today, 01:38 PM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Working...
        X