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

Alert only once?

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

    Alert only once?

    I'm trying to fire an alert from a strategy and only want it to run once and not rearm. All I can find is that Alert() takes a rearm seconds parameter, but nothing on if you don't want it to rearm.

    Is this possible?

    #2
    Alert("Testing") set Priority. 0 or 1.
    Last edited by Emma1; 11-29-2018, 09:29 PM.

    Comment


      #3
      Hello calebsandfort,

      Thanks for your post.

      You can set the "rearm" time to 0 for a single use Alert.

      You can also use a bool that you create and initialize to true and then fire the alert and set the bool to false, for example using a bool called doitonce initialized to true:

      if (Your conditions && doitonce)
      {
      Alert(....);

      doitonce = false; // prevent additional alerts
      }

      Paul H.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by f.saeidi, Today, 01:32 PM
      0 responses
      0 views
      0 likes
      Last Post f.saeidi  
      Started by traderqz, Today, 12:06 AM
      9 responses
      16 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by kevinenergy, 02-17-2023, 12:42 PM
      117 responses
      2,766 views
      1 like
      Last Post jculp
      by jculp
       
      Started by Mongo, Today, 11:05 AM
      5 responses
      15 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by SightCareAubetter, Today, 12:50 PM
      0 responses
      2 views
      0 likes
      Last Post SightCareAubetter  
      Working...
      X