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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      164 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      318 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      246 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      350 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      179 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X