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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        574 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        332 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        553 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        551 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X