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 SalmaTrader, 07-07-2026, 10:26 PM
            0 responses
            47 views
            0 likes
            Last Post SalmaTrader  
            Started by CarlTrading, 07-05-2026, 01:16 PM
            0 responses
            22 views
            0 likes
            Last Post CarlTrading  
            Started by CaptainJack, 06-17-2026, 10:32 AM
            0 responses
            15 views
            0 likes
            Last Post CaptainJack  
            Started by kinfxhk, 06-17-2026, 04:15 AM
            0 responses
            21 views
            0 likes
            Last Post kinfxhk
            by kinfxhk
             
            Started by kinfxhk, 06-17-2026, 04:06 AM
            0 responses
            23 views
            0 likes
            Last Post kinfxhk
            by kinfxhk
             
            Working...
            X