Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Iindicator with audio alert repeats

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

    Iindicator with audio alert repeats

    Hi,

    I have been using the Market Analyser window to run audio alerts on the NYSE-TICK with a feed from IB. What I noticed is that sometimes the alerts don't trigger even though there is a TICK reading which just penetrates the programmed levels.

    I programmed the following into an indicator with the help of the wizard:

    // Condition set 1
    if (Close[0] >= TL1 && Close[0]<TL2)
    {
    PlaySound(
    @"D:\Program Files\NinjaTrader 6\sounds\Elvis.wav");
    }
    // Condition set 2
    if (Close[0] >= TL2 && Close[0]<TL3)
    {
    PlaySound(
    @"D:\Program Files\NinjaTrader 6\sounds\all_shook_up.wav");
    }
    // Condition set 3
    if (Close[0] >= TL3)
    {
    PlaySound(
    @"D:\Program Files\NinjaTrader 6\sounds\Eagle.wav");
    }
    // Condition set 4
    if (Close[0] <= -TL1 && Close[0]>-TL2)
    {
    PlaySound(
    @"D:\Program Files\NinjaTrader 6\sounds\Elvis.wav");
    }
    // Condition set 5
    if (Close[0] <= -TL2 && Close[0]>-TL3)
    {
    PlaySound(
    @"D:\Program Files\NinjaTrader 6\sounds\all_shook_up.wav");
    }
    // Condition set 6
    if (Close[0] <= -TL3)
    {
    PlaySound(
    @"D:\Program Files\NinjaTrader 6\sounds\Eagle.wav");
    }

    Basically the code sets 3 alert levels defined by the variables TL1, TL2 and TL3. It works fine when run on a tick chart of the TICK. The only problem is of course that when a TICK reading occurs greater than the specified level, it is usually followed by 2 or three more and the alert repeats.

    Is there anyone that knows how to adjust the code to make it that the alert doesn't repeat for say 1 minute after being trigger?

    Any suggestions are greatly appreciated.

    #2
    Have you checked out the Alert() method?

    RayNinjaTrader Customer Service

    Comment


      #3
      This is perfect, thanks.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      41 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      20 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      29 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      46 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      37 views
      0 likes
      Last Post CarlTrading  
      Working...
      X