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