Thanks.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Select indicator through [NinjaScriptProperty]
Collapse
X
-
Hello cstangor, and thank you for your question.
This is not directly possible. The attached script will demonstrate why. While it will compile correctly, if you type "SMA(14)" in as its input parameter, it will still fail. Even if NinjaTrader were modified so this succeeds we would still be in a difficult position, as the 14 hard-coded into OnBarUpdate was an arbitrary choice, and if typing SMA(14) were made to work, typing SMA(50) would also be made to work, and you as a coder do not have a view into this input.
The best option currently available is to take an integer, string, or similar supported input, and use a switch statement based on this input to set up an indicator based on the user's selection, i.e.
Code:[FONT=Courier New]switch inputvar { case 1 : myIndicator = MACD(1, 2, 3); case 2 : myIndicator = SMA(14); default : myIndicator = EMA(12); }[/FONT]Attached FilesJessica P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
83 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
41 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
23 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
31 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
31 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment