Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Playing Sounds

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Playing Sounds

    Is there anyway to have an indicator alert only play the sound once? I have an alert indicator on a chart, but it plays the sound when the alert condition is met, for the entire bar. I just want it to play the sound one or twice.

    #2
    Hello,

    Thank you for your note.

    If you only want the alert to happen once a bar I recommend doing something like this:

    if(FirstTickOfBar)
    {

    //alert code here
    }

    This link will help:
    DenNinjaTrader Customer Service

    Comment


      #3
      Thanks for your, but I don' think that will work b/c the alert I'm looking for could happen at any tick in the bar. I just only want sounde to play once per alert... not for the whole bar.Brian

      Comment


        #4
        Hello,

        You could use a bool flag by doing something like this:

        if(...alert conditions here... && my_alert)
        {
        //alert code here

        my_alert = false;
        }

        Then have some code to reset the bool to true when you want it to start looking for your conditions to alert. If you only one one alert per bar then you could use:

        if(FirstTickOfBar)
        {
        my_alert = true;
        }
        DenNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by algospoke, Today, 06:40 PM
        0 responses
        4 views
        0 likes
        Last Post algospoke  
        Started by maybeimnotrader, Today, 05:46 PM
        0 responses
        7 views
        0 likes
        Last Post maybeimnotrader  
        Started by quantismo, Today, 05:13 PM
        0 responses
        6 views
        0 likes
        Last Post quantismo  
        Started by AttiM, 02-14-2024, 05:20 PM
        8 responses
        168 views
        0 likes
        Last Post jeronymite  
        Started by cre8able, Today, 04:22 PM
        0 responses
        9 views
        0 likes
        Last Post cre8able  
        Working...
        X