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 aussugardefender, Today, 01:07 AM
              0 responses
              1 view
              0 likes
              Last Post aussugardefender  
              Started by pvincent, 06-23-2022, 12:53 PM
              14 responses
              238 views
              0 likes
              Last Post Nyman
              by Nyman
               
              Started by TraderG23, 12-08-2023, 07:56 AM
              9 responses
              383 views
              1 like
              Last Post Gavini
              by Gavini
               
              Started by oviejo, Today, 12:28 AM
              0 responses
              1 view
              0 likes
              Last Post oviejo
              by oviejo
               
              Started by pechtri, 06-22-2023, 02:31 AM
              10 responses
              125 views
              0 likes
              Last Post Leeroy_Jenkins  
              Working...
              X