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 burtoninlondon, Today, 12:38 AM
    0 responses
    5 views
    0 likes
    Last Post burtoninlondon  
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    12 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Yesterday, 08:42 PM
    0 responses
    11 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Yesterday, 07:51 PM
    0 responses
    13 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,982 views
    3 likes
    Last Post jhudas88  
    Working...
    X