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