Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SetProfitTarget("", CalculationMode.Ticks, Tp_ticks);

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

    SetProfitTarget("", CalculationMode.Ticks, Tp_ticks);

    how could i use a profit target of ?
    Code:
    SMA(18)[0];

    #2
    duck_CA,

    You would have to place such a profit target inside OnBarUpdate().

    Code:
    SetProfitTarget("", CalculationMode.Price, SMA(18)[0]);
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      SetStopLoss("", CalculationMode.Price, SMA(18)[0],false);

      i am trying to set the exit of position to SMA(18)[0] which is neither a profit target or stop loss...just a hard rule

      Comment


        #4
        Please use ExitLongLimit(SMA(18)[0]) instead then.
        Josh P.NinjaTrader Customer Service

        Comment


          #5
          ExitLongLimit(SMA(18)[0]); or 20ticks against position

          trying to add a 20tick stop or exit when trade goes against

          Comment


            #6
            With CalculateOnBarClose = false
            Code:
            if (Close[0] <= Position.AvgPrice - 20 * TickSize)
            {
                 ExitLong();
            }
            Josh P.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            637 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            366 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            107 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            569 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            571 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X