Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JesseNinjaTrader Customer Service

    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 Irukandji, Yesterday, 02:53 AM
              2 responses
              17 views
              0 likes
              Last Post Irukandji  
              Started by adeelshahzad, Today, 03:54 AM
              0 responses
              3 views
              0 likes
              Last Post adeelshahzad  
              Started by CortexZenUSA, Today, 12:53 AM
              0 responses
              3 views
              0 likes
              Last Post CortexZenUSA  
              Started by CortexZenUSA, Today, 12:46 AM
              0 responses
              1 view
              0 likes
              Last Post CortexZenUSA  
              Started by usazencortex, Today, 12:43 AM
              0 responses
              5 views
              0 likes
              Last Post usazencortex  
              Working...
              X