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 SalmaTrader, 07-07-2026, 10:26 PM
              0 responses
              50 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
              16 views
              0 likes
              Last Post CaptainJack  
              Started by kinfxhk, 06-17-2026, 04:15 AM
              0 responses
              22 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