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 cmoran13, Yesterday, 01:02 PM
            0 responses
            29 views
            0 likes
            Last Post cmoran13  
            Started by PaulMohn, 04-10-2026, 11:11 AM
            0 responses
            21 views
            0 likes
            Last Post PaulMohn  
            Started by CarlTrading, 03-31-2026, 09:41 PM
            1 response
            160 views
            1 like
            Last Post NinjaTrader_ChelseaB  
            Started by CarlTrading, 04-01-2026, 02:41 AM
            0 responses
            95 views
            1 like
            Last Post CarlTrading  
            Started by CaptainJack, 03-31-2026, 11:44 PM
            0 responses
            148 views
            2 likes
            Last Post CaptainJack  
            Working...
            X