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.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    60 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    148 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    162 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    97 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    284 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X