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 in last bar loaded ?

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

    PlaySound in last bar loaded ?

    I am trying to PlaySound in the last bar of historical loaded but doesnt work.

    I can Print();
    Why I cant PlaySound();?


    if(CurrentBar==Bars.Count-2){
    PlaySound(mySound);
    }


    How can i PlaySound() when the last bar is loaded?

    Thank you

    #2
    Originally posted by ninjo View Post
    I am trying to PlaySound in the last bar of historical loaded but doesnt work.

    I can Print();
    Why I cant PlaySound();?


    if(CurrentBar==Bars.Count-2){
    PlaySound(mySound);
    }


    How can i PlaySound() when the last bar is loaded?

    Thank you
    Maybe this help
    Attached Files

    Comment


      #3
      Thank you outsource but it does not work either

      Comment


        #4
        Hello ninjo,

        Thank you for your post.

        Calls to the PlaySound() method are ignored on historical data, it will only work in real-time. Likely CurrentBar == Bars.Count-2 would still be Historical == true.

        Please use the following:
        Code:
        	private bool test = true;
        		
                protected override void OnBarUpdate()
                {
        			if (!Historical && test)
        			{
        				test = false;
        				PlaySound("Alert1.wav");
        			}
                }

        Comment


          #5
          Thank you Patrick
          Last edited by ninjo; 04-26-2016, 08:53 AM.

          Comment


            #6
            Thank you Patrick
            Last edited by ninjo; 04-26-2016, 08:53 AM.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by rocketman7, Today, 01:00 AM
            0 responses
            1 view
            0 likes
            Last Post rocketman7  
            Started by wzgy0920, 04-20-2024, 06:09 PM
            2 responses
            27 views
            0 likes
            Last Post wzgy0920  
            Started by wzgy0920, 02-22-2024, 01:11 AM
            5 responses
            32 views
            0 likes
            Last Post wzgy0920  
            Started by wzgy0920, 04-23-2024, 09:53 PM
            2 responses
            74 views
            0 likes
            Last Post wzgy0920  
            Started by Kensonprib, 04-28-2021, 10:11 AM
            5 responses
            193 views
            0 likes
            Last Post Hasadafa  
            Working...
            X