Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Profit target works for long but not short

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

    Profit target works for long but not short

    Code:
                {
                EnterLongLimit(DefaultQuantity, Close[0], "");
                SetProfitTarget("", CalculationMode.Ticks, ((High[1]-Low[1])*100)/2);
                SetStopLoss("", CalculationMode.Ticks, ((High[1]-Low[1])*100)*1.5, false);
                }
    this works fine for long

    but if i inverse the above to:

    Code:
                {
                EnterShortLimit(DefaultQuantity, Close[0], "");
                SetProfitTarget("", CalculationMode.Ticks, ((High[1]-Low[1])*100)/2);
                SetStopLoss("", CalculationMode.Ticks, ((High[1]-Low[1])*100)*1.5, false);
                }

    the profit target does not get set but stoploss does.

    #2
    Hello calhawk01,

    If you place TraceOrders = true inside of your Initialize() do you get any messages in your Output Window regarding the Profit Target Order?

    JCNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    370 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    240 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    205 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    292 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    253 views
    0 likes
    Last Post CarlTrading  
    Working...
    X