Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Opening Bell sound ?
Collapse
X
-
Originally posted by T2020 View PostIs there a way to hear a bell sound when the market regular open begins ? An alert possibly connected with the " CurrentOHL " indicator ? Something simple .
ThanksCode:int Mar****penTime = 930; if (ToTime(Time[0]) == Mar****penTime && FirstTickOfBar) PlaySound("Alarm1.wav");
-
Hello T2020,
I am not aware of an Indicator that will do this but it would be possible with some custom code. For example:
Will play an Alert() on the first bar of a session.Code:if(Bars.FirstBarOfSession) { Alert("Session Open", NinjaTrader.Cbi.Priority.High, "Session is now Open", "Alert4.wav", 10, Color.Black, Color.Yellow); }
You may change the sound file, and the Alert() will only play the sound in real-time.
Let us know if we can be of further assistance.JCNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
475 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
315 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
253 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
340 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
305 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment