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

how to put a pw on indicator

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

    how to put a pw on indicator

    is there a way to require a password or serial number for an indicator?

    #2
    Hello,

    Thank you for the question.

    There are numerious ways to do this, one is for Vendors of NinjaTrader to use the Machine ID for vendor licensing.

    If this is more of a personal script or you would just like to protect a script in general, a simple string property could be used to allow the user to enter a password.

    here is a simple property that could be used:

    [Description("")]
    [GridCategory("Parameters")]
    public string Password
    {
    get { return password; }
    set { password = value; }
    }

    In the scripts logic, you could check if Password is equal to a value or do other logic based on its value. If it is empty, the user has not entered a password.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      I will give it a try, but also where can I find out more information on using it with specific Machine ID's? Thanks.

      Comment


        #4
        can you give an example of how to check if the entered password meets the real password

        Comment


          #5
          Hello,

          Thank you for the questions.

          For using the machine id, this would be a Vendor license specific item used by third party vendors. For this please email our platform support @ ninjatrader.com and our Buisness Development can assist furthing in this topic.

          Regarding an example, a simple if could be used such as:

          Code:
          if(Password == "SomePassword")
          {
              //do some logic
          }
          else
          {
              //wrong password
          }
          I look forward to being of further assistance.
          JesseNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Segwin, 05-07-2018, 02:15 PM
          14 responses
          1,789 views
          0 likes
          Last Post aligator  
          Started by Jimmyk, 01-26-2018, 05:19 AM
          6 responses
          837 views
          0 likes
          Last Post emuns
          by emuns
           
          Started by jxs_xrj, 01-12-2020, 09:49 AM
          6 responses
          3,293 views
          1 like
          Last Post jgualdronc  
          Started by Touch-Ups, Today, 10:36 AM
          0 responses
          13 views
          0 likes
          Last Post Touch-Ups  
          Started by geddyisodin, 04-25-2024, 05:20 AM
          11 responses
          63 views
          0 likes
          Last Post halgo_boulder  
          Working...
          X