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 frslvr, 04-11-2024, 07:26 AM
              7 responses
              109 views
              1 like
              Last Post caryc123  
              Started by rocketman7, Today, 09:41 AM
              3 responses
              7 views
              0 likes
              Last Post NinjaTrader_Jesse  
              Started by traderqz, Today, 09:44 AM
              2 responses
              4 views
              0 likes
              Last Post NinjaTrader_Gaby  
              Started by stafe, 04-15-2024, 08:34 PM
              8 responses
              41 views
              0 likes
              Last Post stafe
              by stafe
               
              Started by rocketman7, Today, 02:12 AM
              7 responses
              31 views
              0 likes
              Last Post NinjaTrader_ChelseaB  
              Working...
              X