TIA
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Sample Code
Collapse
X
-
Hello dmking,
The user app share would be a good location for this type of request. There are many custom indicators listed there, and the straetgy section specifically would be a good location to find sample code of calling custom indicators.
One example can be found in the strategy section, this strategy has a few custom indicators that come with it and are used from its code. Here is a public link: https://ninjatraderecosystem.com/use...kout-strategy/
Nearly all indicators use the same syntax to call them, there are generally two overloads:
Then plots or other methods can be called from the instance:Code:IndicatorName(Any,Parameters,It,Needs) IndicatorName(Series, Any,Parameters,It,Needs)
Code:IndicatorName(Any,Parameters,It,Needs)[0] // default plot IndicatorName(Any,Parameters,It,Needs).SomePlot[0] //specific plot IndicatorName(Any,Parameters,It,Needs).CustomMethod() //custom method, see zigzag for an example
The Series overload depends if the script was programmed to accept a series.
I look forward to being of further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
35 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
12 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
18 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment