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

PlaySound()

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

    PlaySound()

    Please show me where I'm being stupid. I've played sounds before from code and now i can't make it work. The sound I'm trying to play is in the nt sounds folder. I insert this line of code into my indicator without any conditions just to test it and no sound is played nor is there an error in the log.

    PlaySound(@"Alert4"); No sound is played, no error and my computer make other sounds without any problem. So it isn't the computer.

    #2
    Hello Mike,

    Are you receiving any errors on the Log tab of the Control Center when the alert should be triggering?

    Is this the default Alert4.wav, or did you replace it with a custom .wav file?
    MatthewNinjaTrader Product Management

    Comment


      #3
      like i said...no errors in the log and yes they are the sound files that came with nt7

      Comment


        #4
        Hello Mike,

        If you're using PlaySound() with a default sound file, you do not need to specify a path with the @ symbol. This should only be used if you are directing the sound outside of the default directory:

        Please try using PlaySound("Alert4.wav");

        If using CalulateOnBarClose = True, this alert will not trigger until the next bar forms.
        MatthewNinjaTrader Product Management

        Comment


          #5
          cobc is set to false and removed the @ symbol


          What I sent you was PlaySound(@"Alert4");
          Very dumb I changed to this...PlaySound("Alert4.wav"); I forgot to include the file extension.

          Comment


            #6
            Mike,

            Is it working on bar update now?
            MatthewNinjaTrader Product Management

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by adeelshahzad, Today, 03:54 AM
            1 response
            13 views
            0 likes
            Last Post NinjaTrader_BrandonH  
            Started by RookieTrader, Today, 07:41 AM
            1 response
            5 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by kujista, Today, 05:44 AM
            1 response
            9 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by elderan, Yesterday, 08:03 PM
            1 response
            12 views
            0 likes
            Last Post NinjaTrader_BrandonH  
            Started by samish18, Yesterday, 08:57 AM
            8 responses
            25 views
            0 likes
            Last Post samish18  
            Working...
            X