I have an indicator with if with 7 or 8 else if I have put a sound option in an "else if" but once it is executed, the sound is executed 8 times in a row ... I have tried to put the sound out but when it is executed the same thing happens, how can I break the sound so that a sound is executed? once? if {} else if {} else if { Alert(CurrentBar.ToString(), Priority.High, "Alert4", WAVFileName1, 1, Brushes.White, Brushes.Green);} else if {} if{} .... etc
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Sound if else
Collapse
X
-
Sound if else
I have an indicator with if with 7 or 8 else if I have put a sound option in an "else if" but once it is executed, the sound is executed 8 times in a row ... I have tried to put the sound out but when it is executed the same thing happens, how can I break the sound so that a sound is executed? once? if {} else if {} else if { Alert(CurrentBar.ToString(), Priority.High, "Alert4", WAVFileName1, 1, Brushes.White, Brushes.Green);} else if {} if{} .... etcTags: None
-
Hello anmir55,
Can you provide a larger sample of the logic used to control the alerts?
If you are hearing the sound 8 times that would mean the logic was called 8 times. It sounds like you tried what I would suggest or to move the Alert to another area however I would need to see what you did to understand why that's not working.
I would need to see a more specific example of the syntax to know why it was called more than once.
I look forward to being of further assistance.
-
It sounds like you may have spurious semicolons on your "if" clauses.Originally posted by anmir55 View PostI have an indicator with if with 7 or 8 else if I have put a sound option in an "else if" but once it is executed, the sound is executed 8 times in a row ... I have tried to put the sound out but when it is executed the same thing happens, how can I break the sound so that a sound is executed? once? if {} else if {} else if { Alert(CurrentBar.ToString(), Priority.High, "Alert4", WAVFileName1, 1, Brushes.White, Brushes.Green);} else if {} if{} .... etc
Comment
-
Hello anmir55,
We would need to see more of a sample in this case, I agree with koganam it sounds like from the description your conditions are falling through in some way. From what has been provided I can't really see what may be happening, if you can provide the whole if statement you are using that would help, if that is a large section of code you may need to make a quick sample of your if statement and just include where you use the alert.
I would also suggest using the "A" button at the top of the forums text editor, it will expand options including the "#" for wrapping code, this would be helpful so its not just a long line of text and keeps its spacing/doesn't loose any formatting.
I look forward to being of further assistance.
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
82 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
43 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment