Alert(CurrentBar.ToString()+VolumeThreshold.ToString()+Bars.Period.ToString()+Instrument.FullName, NinjaTrader.Cbi.Priority.Medium, Instrument.MasterInstrument.Name+" "+Bars.Period.Value+Bars.Period.Id+": Volume Alert "+VolumeThreshold, "C:\Program Files (x86)\NinjaTrader 7\sounds\newalert.wav", int.MaxValue, Color.Black, Color.Yellow);
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Alerts and path to sound files
Collapse
X
-
Alerts and path to sound files
I'm wanting to set the following alert, however NT will not compile the WAV file path and reports the error: Unrecognized escape sequence CS1009:
I didn't used to require the path with the 32 bit version, but with the 64 bit version, NT can't locate the sound files.Code:Tags: None
-
Hello dsfalc,
You can add @ character in front of path here:
Code:Alert(CurrentBar.ToString()+VolumeThreshold.ToString()+Bars.Period.ToString()+Instrument.FullName, NinjaTrader.Cbi.Priority.Medium, Instrument.MasterInstrument.Name+" "+Bars.Period.Value+Bars.Period.Id+": Volume Alert "+VolumeThreshold, @"C:\Program Files (x86)\NinjaTrader 7\sounds\newalert.wav", int.MaxValue, Color.Black, Color.Yellow);
Ryan M.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
144 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
71 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
125 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
79 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment