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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    128 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    73 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    116 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    109 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    88 views
    0 likes
    Last Post CarlTrading  
    Working...
    X