Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
how to put a pw on indicator
Collapse
X
-
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.
-
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:
I look forward to being of further assistance.Code:if(Password == "SomePassword") { //do some logic } else { //wrong password }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
42 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
25 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
162 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
98 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
157 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment