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 CarlTrading, 03-31-2026, 09:41 PM
              1 response
              83 views
              1 like
              Last Post NinjaTrader_ChelseaB  
              Started by CarlTrading, 04-01-2026, 02:41 AM
              0 responses
              45 views
              0 likes
              Last Post CarlTrading  
              Started by CaptainJack, 03-31-2026, 11:44 PM
              0 responses
              65 views
              2 likes
              Last Post CaptainJack  
              Started by CarlTrading, 03-30-2026, 11:51 AM
              0 responses
              68 views
              0 likes
              Last Post CarlTrading  
              Started by CarlTrading, 03-30-2026, 11:48 AM
              0 responses
              56 views
              0 likes
              Last Post CarlTrading  
              Working...
              X