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 ninza33, Today, 12:31 PM
            2 responses
            9 views
            0 likes
            Last Post ninza33
            by ninza33
             
            Started by Bobin, 03-12-2024, 08:51 AM
            15 responses
            480 views
            0 likes
            Last Post fiddich
            by fiddich
             
            Started by Skifree, Today, 11:21 AM
            4 responses
            13 views
            0 likes
            Last Post Skifree
            by Skifree
             
            Started by Bogdan097, Today, 03:25 PM
            0 responses
            4 views
            0 likes
            Last Post Bogdan097  
            Started by cmtjoancolmenero, 04-25-2024, 03:58 PM
            25 responses
            127 views
            0 likes
            Last Post cmtjoancolmenero  
            Working...
            X