Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

AtmStrategyChangeStopTarget

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

    AtmStrategyChangeStopTarget

    I a trying to add a trailing stop based on the ParabilocSAR indicator. I included the code below. I keep getting an error stating no overload method... takes 3 arguments.... I cannot seem to get the syntax correct.

    Thanks

    // Condition 3 Set Parabolic trailing stop
    if (GetAtmStrategyMarketPosition(atmStrategyId) != Cbi.MarketPosition.Flat)
    AtmStrategyChangeStopTarget(0, ParabolicSAR(Accel, AccelMax, AccelStep), "STOP1", atmStrategyId);

    #2
    mlarocco, the stop value would need to be of format double, would you see an issue as well when passing in ParabolicSAR(Accel, AccelMax, AccelStep)[0],...

    Comment


      #3
      Tried added [0] and I get the errors attached....
      Attached Files

      Comment


        #4
        You would need to mindful about the [0] positioning, in your snippet you request a double value from your last parameter in the call and not the ParabolicSAR method...

        Comment


          #5
          I guess I'm unclear where it should go then. Could you show me what the syntax should look like?

          Thanks

          Comment


            #6
            Please try with AtmStrategyChangeStopTarget(0, ParabolicSAR(Accel, AccelMax, AccelStep)[0], "STOP1", atmStrategyId);

            Comment


              #7
              That did the trick! Thanks

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by Geovanny Suaza, 02-11-2026, 06:32 PM
              0 responses
              650 views
              0 likes
              Last Post Geovanny Suaza  
              Started by Geovanny Suaza, 02-11-2026, 05:51 PM
              0 responses
              370 views
              1 like
              Last Post Geovanny Suaza  
              Started by Mindset, 02-09-2026, 11:44 AM
              0 responses
              109 views
              0 likes
              Last Post Mindset
              by Mindset
               
              Started by Geovanny Suaza, 02-02-2026, 12:30 PM
              0 responses
              574 views
              1 like
              Last Post Geovanny Suaza  
              Started by RFrosty, 01-28-2026, 06:49 PM
              0 responses
              577 views
              1 like
              Last Post RFrosty
              by RFrosty
               
              Working...
              X