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

Opening Bell sound ?

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

    Opening Bell sound ?

    Is there a way to hear a bell sound when the market regular open begins ? An alert possibly connected with the " CurrentOHL " indicator ? Something simple .

    Thanks

    #2
    Originally posted by T2020 View Post
    Is there a way to hear a bell sound when the market regular open begins ? An alert possibly connected with the " CurrentOHL " indicator ? Something simple .

    Thanks
    Code:
     
    int Mar****penTime = 930;
    if (ToTime(Time[0]) == Mar****penTime && FirstTickOfBar) PlaySound("Alarm1.wav");

    Comment


      #3
      Hello T2020,

      I am not aware of an Indicator that will do this but it would be possible with some custom code. For example:

      Code:
      if(Bars.FirstBarOfSession)
      {
         Alert("Session Open", NinjaTrader.Cbi.Priority.High, "Session is now Open", "Alert4.wav", 10, Color.Black, Color.Yellow);
      }
      Will play an Alert() on the first bar of a session.

      You may change the sound file, and the Alert() will only play the sound in real-time.

      Let us know if we can be of further assistance.
      JCNinjaTrader Customer Service

      Comment


        #4
        Thanks guys ,

        But what do you do with it ? Add it to an existing indicator ? Is there a way to create a
        independent alert ? Going to File > new > alerts doesn't open a avenue for this that I can see.

        Comment


          #5
          Hello T2020,
          You have to create a new indicator to do it. You cannot set an alert via the File>New>Alert.

          The Alert window only lists the Alerts and set from a NinjaScript code or the market analyzer.
          JoydeepNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by geddyisodin, Today, 05:20 AM
          0 responses
          2 views
          0 likes
          Last Post geddyisodin  
          Started by JonesJoker, 04-22-2024, 12:23 PM
          6 responses
          32 views
          0 likes
          Last Post JonesJoker  
          Started by GussJ, 03-04-2020, 03:11 PM
          12 responses
          3,239 views
          0 likes
          Last Post Leafcutter  
          Started by AveryFlynn, Today, 04:57 AM
          0 responses
          5 views
          0 likes
          Last Post AveryFlynn  
          Started by RubenCazorla, 08-30-2022, 06:36 AM
          3 responses
          79 views
          0 likes
          Last Post PaulMohn  
          Working...
          X