Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

implementing a delay on an alert

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

    implementing a delay on an alert

    Hi, I want two alerts to go off, the first when the bar closes and the second some time before, and I am using the code below, with Thread.Sleep(), but Alert1() does work but Alert2() doesn't. Could you help, please?

    Code:
    protected override void OnBarUpdate()
    {
    Alert("Alert1", Priority.High, "Bar Closed", NinjaTrader.Core.Globals.InstallDir+@"\sounds\Aler t2.wav", 1, Brushes.Black, Brushes.Yellow);
    
    TimeSpan timeDelay = new TimeSpan(0,4,30);
    Thread.Sleep(timeDelay);
    
    Alert("Alert2", Priority.High, "Bar around to Close", NinjaTrader.Core.Globals.InstallDir+@"\sounds\Aler t4.wav", 1, Brushes.Black, Brushes.Yellow);
    
    }

    #2
    Hello ludopuig,

    Thanks for your post.

    Instead of using Thread.Sleep in your script, you should implement a timer using TriggerCustomEvent() if you would like to wait a certain amount of time before an action is called.

    See this help guide page for more information about TriggerCustomEvent and sample code for using a timer: https://ninjatrader.com/support/help...ustomevent.htm

    Let us know if we may assist further.
    Brandon H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Segwin, 05-07-2018, 02:15 PM
    14 responses
    1,789 views
    0 likes
    Last Post aligator  
    Started by Jimmyk, 01-26-2018, 05:19 AM
    6 responses
    838 views
    0 likes
    Last Post emuns
    by emuns
     
    Started by jxs_xrj, 01-12-2020, 09:49 AM
    6 responses
    3,294 views
    1 like
    Last Post jgualdronc  
    Started by Touch-Ups, Today, 10:36 AM
    0 responses
    13 views
    0 likes
    Last Post Touch-Ups  
    Started by geddyisodin, 04-25-2024, 05:20 AM
    11 responses
    63 views
    0 likes
    Last Post halgo_boulder  
    Working...
    X