Thank you
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Static Variable for Strategis
Collapse
X
-
Static Variable for Strategis
Is there a way to use a static variable value to a strategy. So, if I have several instances of the same strategy running and the variable value is changed on one instance, it will be changed on the other instances as well.
Thank youTags: None
-
Hello kiss987,
Thanks for writing in to our Support team.
Although the NinjaScript programming language is a derivative of C# you will be able to call any C# functions in your scripts so long as you add the appropriate references to the libraries you need access to that are not referenced by default.
It certainly is possible to use a static variable in a strategy. To do this, use the static keyword when creating the variable.
For example:
public static int i;
Please let me know if I may be of any further assistance.Alan S.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment