Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 rtwave, 04-12-2024, 09:30 AM
              5 responses
              37 views
              0 likes
              Last Post NinjaTrader_ChelseaB  
              Started by funk10101, Today, 12:02 AM
              1 response
              11 views
              0 likes
              Last Post NinjaTrader_LuisH  
              Started by GLFX005, Today, 03:23 AM
              1 response
              6 views
              0 likes
              Last Post NinjaTrader_Erick  
              Started by nandhumca, Yesterday, 03:41 PM
              1 response
              13 views
              0 likes
              Last Post NinjaTrader_Gaby  
              Started by The_Sec, Yesterday, 03:37 PM
              1 response
              11 views
              0 likes
              Last Post NinjaTrader_Gaby  
              Working...
              X