Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to Access Signal Name 'Profit Target'

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

    How to Access Signal Name 'Profit Target'

    I'm using SetStopLoss and SetProfitTarget for managed orders in my strategy. I'm trying to tighten my stops as price gets closer to my profit target. Help guides say SetProfitTarget generates the signal "Profit Target". How do I access this to adjust SetStopLoss closer to it's (Profit Target's) value?

    For example on a short position:

    Code:
    if (profitTarget - Low[0] < 10 * TickSize && Close[0] > myLevel)
    {
    SetStopLoss("", CalculationMode.Price, High[0] - 1 * TickSize)
    }
    My syntax is probably wrong but I hope the idea makes sense.

    #2
    Hello swjake,

    For that type of use you would just need to call SetStopLoss again with a new price, you don't need to find the order in that situation.

    Comment


      #3
      Very good. Thank you Jesse.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      87 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      132 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      65 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      118 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      67 views
      0 likes
      Last Post PaulMohn  
      Working...
      X