Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to tell a Replay connection in ninjascript?
Collapse
X
-
How to tell a Replay connection in ninjascript?
Hello, NinjaTrader 7 AND 8 please In NinjaScript, how can I discover which account the script is running against...in an Indicator, or Strategy? Could not find this in the documentation... ThanksTags: None
-
Hello Turtle Trader,
Indicators are not run on an account as these are not meant to place orders to any account.
Indicators are designed to do calculations and add plots and other drawings to a chart.
A Strategy does have an Account object.
For NinjaTrader 7, this is undocumented, however the account object is 'Account'.
Below is a link to a forum post with an undocumented example.
For NinjaTrader 8, using the Account object is supported for Addons.
Below are publicly available links to the NinjaTrader 8 help guide on the Account object.
To find if the connection is the Playback connection:
Cbi.Connection.PlaybackConnection != nullChelsea B.NinjaTrader Customer Service
-
.................
well, I need to disable "text to speech" on an indicator during Replay...because at max Replay speed (for backtesting) the voice is overwhelming and is unnecessary....during the regular market speed it is fine...the voice gives information on the bar time for active trading, but for back testing it is a burden on the system.
I found this...it seems to work....in NT7
if (Bars.MarketData.Connection.Name == "Market Replay Connection")
replayConnection = true;
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
23 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
115 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
222 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
406 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|

Comment