Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

"lock" by default

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

    "lock" by default

    using an indicator:
    the drawn lines are set to "lock" by default.

    - is it possible to set "lock" to "unlock" by default ?
    - and if so, what do i have to do ?

    thx

    #2
    You can set "Locked" property to "false":

    Code:
    if (CurrentBar > 10) {
    	ILine myLine = DrawLine("myLine", 0, High[0], 10, Low[10], Color.Yellow);
    	myLine.Locked = false;
    }

    Comment


      #3
      tried to use it - but isn't compiling

      Comment


        #4
        Do you get an error message?

        Comment


          #5
          there's a complete row of errors......

          Comment


            #6
            Originally posted by Tradexxx View Post
            there's a complete row of errors......
            Refer to the documentation, and use the correct syntax for DrawLine().

            Comment


              #7
              Solution is:
              // Loops through the DrawObjects collection
              foreach (IDrawObject draw in DrawObjects)
              {
              // Unlocks all draw objects for manual manipulation on the chart
              draw.Locked = false;
              }

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by CaptainJack, 05-29-2026, 05:09 AM
              0 responses
              173 views
              0 likes
              Last Post CaptainJack  
              Started by CaptainJack, 05-29-2026, 12:02 AM
              0 responses
              91 views
              0 likes
              Last Post CaptainJack  
              Started by charlesugo_1, 05-26-2026, 05:03 PM
              0 responses
              129 views
              0 likes
              Last Post charlesugo_1  
              Started by DannyP96, 05-18-2026, 02:38 PM
              1 response
              208 views
              0 likes
              Last Post NinjaTrader_ChelseaB  
              Started by CarlTrading, 05-11-2026, 05:56 AM
              0 responses
              186 views
              0 likes
              Last Post CarlTrading  
              Working...
              X