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 SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      23 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      13 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      8 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      10 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      16 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X