Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Alert..

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

    Alert..

    Is it possible to configure this in strategy analyzer?:

    Price crosses above keltner channel?

    I can only set values..

    Or do I have to code this in the indicator itself? How can I do that..?

    #2
    Hello no111,

    Yes, it's possible to test for crossing conditions using the Strategy wizard as well as set alerts.

    See here for help on using the condition builder to test for cross overs.

    Setting alerts is one of the default strategy actions available when creating through the wizard.
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_RyanM View Post
      Hello no111,

      Yes, it's possible to test for crossing conditions using the Strategy wizard as well as set alerts.

      See here for help on using the condition builder to test for cross overs.

      Setting alerts is one of the default strategy actions available when creating through the wizard.
      Ok I get it. But that is in the active chart I have on my screen right? How can I set that for all my symbols, I have on Market Analyzer?

      Also, this doesn't work really:

      PHP Code:
              protected override void Initialize()
              {
      
                  CalculateOnBarClose = true;
              }
      
              /// <summary>
              /// Called on each bar update event (incoming tick)
              /// </summary>
              protected override void OnBarUpdate()
              {
                  // Condition set 1
                  if (Close[0] > KeltnerChannel(2.5, 20).Midline[0])
                  {
                      Alert("MyAlert71", Priority.High, "momo UP", @"D:\Program Files\NinjaTrader 7\sounds\Alert1.wav", 0, Color.GreenYellow, Color.Black);
                  }
              } 
      
      Last edited by no111; 06-09-2010, 10:43 AM.

      Comment


        #4
        Yes, for the market analyzer it will be a little different. You can use the strategy wizard to generate the syntax needed and put this in a custom indicator.

        Please see this thread on setting crossover conditions in the market analyzer for additional information.
        Ryan M.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        152 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        89 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        131 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        127 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        107 views
        0 likes
        Last Post CarlTrading  
        Working...
        X