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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
625 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
359 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
562 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
567 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment