I can imagine creating some type of web services with some type of state service that each chart can ping the services with some data on bar change so that other charts can call that server, but wondering if anyone has every tried or done anything like this? This would largely be for working with multiple timeframes without having to bog down higher timeframes with smaller candles
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Any way to interact with other charts?
Collapse
X
-
Any way to interact with other charts?
I know this is probably really complicated, but has anyone come up with a way to interact with multiple charts within NinjaScript?
I can imagine creating some type of web services with some type of state service that each chart can ping the services with some data on bar change so that other charts can call that server, but wondering if anyone has every tried or done anything like this? This would largely be for working with multiple timeframes without having to bog down higher timeframes with smaller candlesTags: None
- Likes 1
-
Hello ErikY,
you can exchange data between two "charts" using a public static array.
Example:
Strategy 1 (Chart 1) "SendData"
Init: public static bool [] SendArray = new bool [10000];
OnBarUpdate(): SendArray[CurrentBar] = yourBoolToSendToReceiveData;
======
Strategy 2 (Chart2) "ReceiveData"
Init: private bool [] ReceiveArray;
DataLoaded: ReceiveArray = new bool [10000];
OnBarUpdate(): ReceiveArray[0] = SendData.SendArray[CurrentBar];
You can transfer 10000 historical data if you first open the SendData strategy and then (!) the ReceiveData strategy.
The number of data in the SendData and ReceiveData strategies must be identical for the historical data.
For realtime data a public static variable is sufficient.
Kind regardsLast edited by user10; 03-28-2021, 10:52 AM.
- Likes 1
Comment
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
13 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
19 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment