Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            566 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            330 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            101 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            547 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            548 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X