Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Multi-Instrument indicator/strategy question
Collapse
X
-
Multi-Instrument indicator/strategy question
I created a custom indicator that calls a certain instrument for calculations- so I guess it's a multi-instrument or a 2 instrument indicator (BIP0 and BIP1). I want to create a multi-instrument strategy as well (BIP0 and BIP1) that calls this custom indicator for buy/sell action. Is this possible with Ninjatrader? I'm not sure how this would work or what the actual sequence would be. In the main strategy, for each BIP, I would like to call this custom indicator. So is it BIP0 (strategy) => BIP0 (indicator) => BIP1 (indicator) => BIP1 (strategy) => BIP0 (indicator) => BIP1 (indicator) => BIP0 (strategy) and so on?Last edited by ciro1963; 01-11-2019, 03:50 PM.Tags: None
-
Hello ciro1963,
Thank you for the question.
Yes, this is possible in NinjaTrader. A host (strategy) can call a script (indicator) which has other series as well.
To answer your question it would be best to see an example of specifically what happens with your current script's configuration. This would be a very good use case for Print statements to see specifically what the output is. https://ninjatrader.com/support/help...lightsub=print
What I would suggest doing to answer this question would be to create a new strategy and indicator which only have 1 print in OnBarUpdate:
Then just call the indicator in the same way that you are now from the dummy strategy and run it on the same chart/config that you are asking about. Using these prints will specifically highlight the order of operations happening. You could see how the platform processes each script for each of the added series, 0 being the primary and 1 being the secondary BarsInprogress.Code:Print("Strategy: " + BarsInProgress + " " + CurrentBar); or for the indicator: Print("Indicator: " + BarsInProgress + " " + CurrentBar);
I look forward to being of further assistance.
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
123 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
104 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
83 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
103 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
83 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment