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 argusthome, 03-08-2026, 10:06 AM
    0 responses
    86 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    48 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    29 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    32 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    67 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X