Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SOUND ALERT before a candle closes

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

    SOUND ALERT before a candle closes

    Hello, does anyone have a indicator to play a sound alert 1 minute or 30 seconds before a candle closes?

    Andres

    #2
    Hello,

    Thank you for the post.

    I am unsure of anything that does this specifically but you could likely create an indicator that does this. This would also only be relevant for time-based bars as you would have an advance knowledge of the next bars time from when the last bar had closed whereas tick based bars you would not.

    If you have more details on what timeframe you are using that may be helpful to know how difficult of an item this would be to create. If you are interested in developing this yourself I could also provide further direction on what may be needed.


    I look forward to being of further assistance.

    Comment


      #3
      Good morning, the sound alert would be 40 seconds before a 5 minute time frame bar, yes please help me

      Andres

      Comment


        #4
        Hello andddres1,

        Thank you for your patience.

        To do this, you would want to compare the previous bar's close time and see if 4 minutes and 20 seconds has elapsed. You would want to use the ToTime() method to retrieve the time from a DateTime object:

        Code:
        if(ToTime(DateTime.Now) == ToTime(Time[1])+420)
        {
        Alert("40secondsleft", NinjaTrader.Cbi.Priority.Medium, "40 seconds left on this bar", "Alert1.wav", 10, Color.Black, Color.Yellow);
        }
        You will also want to ensure that Calculate on Bar Close is set to False. Alternatively, you can also compare the time of the market update with the time of the bar close within the OnMarketData() method:
        Code:
        if(e.Time == Time[0].AddSeconds(-40))
        {
        //trigger alert
        }
        For more information on the ToTime() method, you can visit our help guide here:
        http://ninjatrader.com/support/helpG...nt7/totime.htm

        For more information on the Alert() method, you can visit our help guide here:
        http://ninjatrader.com/support/helpGuides/nt7/alert.htm

        For more information on the OnMarketData() method, you can visit our help guide here:
        http://ninjatrader.com/support/helpG...marketdata.htm

        You can also view this short tip video on how to create alerts using the Strategy Wizard:
        https://www.youtube.com/watch?v=gLXz...wLC-qDr7ppZH90

        Please let me know if I may be of any further assistance.
        Alan S.NinjaTrader Customer Service

        Comment


          #5
          Good morning Alan, I changed this indicator with your code but it didnt work, here is the original indicator

          Andres
          Attached Files

          Comment


            #6
            Hello Andres,

            Thanks for your reply.

            Do you receive any compiler errors when compiling your script? Do you receive any errors at run time? Did you ensure to set Calculate on Bar Close to false?

            I look forward to your reply.
            Alan S.NinjaTrader Customer Service

            Comment


              #7
              I just got it to work, thank you sir

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by sjsj2732, 03-23-2026, 04:31 AM
              0 responses
              77 views
              0 likes
              Last Post sjsj2732  
              Started by NullPointStrategies, 03-13-2026, 05:17 AM
              0 responses
              313 views
              0 likes
              Last Post NullPointStrategies  
              Started by argusthome, 03-08-2026, 10:06 AM
              0 responses
              314 views
              0 likes
              Last Post argusthome  
              Started by NabilKhattabi, 03-06-2026, 11:18 AM
              0 responses
              149 views
              1 like
              Last Post NabilKhattabi  
              Started by Deep42, 03-06-2026, 12:28 AM
              0 responses
              114 views
              0 likes
              Last Post Deep42
              by Deep42
               
              Working...
              X