Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

cant see my indicator in the chart indicators menu

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

    cant see my indicator in the chart indicators menu

    I developed an indicator and compiled it sucessfully but i cannot see it in the indicators menu of the plotted chart

    #2
    Hello,

    You see all of the other indicators though?

    Try posting the indicator and I will test it on my end.
    DenNinjaTrader Customer Service

    Comment


      #3

      protectedoverridevoid Initialize()
      {
      Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "Zobv1"));
      Add(new Plot(Color.FromKnownColor(KnownColor.Green), PlotStyle.Line, "Zobv9"));
      Add(new Plot(Color.FromKnownColor(KnownColor.DarkViolet), PlotStyle.Line, "Zobv21"));
      CalculateOnBarClose = true;
      Overlay = false;
      PriceTypeSupported = false;
      }
      ///<summary>
      /// Called on each bar update event (incoming tick)
      ///</summary>
      protectedoverridevoid OnBarUpdate()
      {
      // Use this method for calculating your indicator values. Assign a value to each
      // plot below by replacing 'Close[0]' with your own formula.\
      double Obv1=OBV()[0];
      Zobv1.Set(Obv1);
      Obv9=EMA(OBV(),9)[0];
      Zobv9.Set(Obv9);
      Obv21=EMA(OBV(),21)[0];
      Zobv21.Set(Obv21);
      }

      Comment


        #4
        Hello,

        Try putting if(CurrentBar < 22) return; right after OnBarUpDate(). This link will help understand why:


        If that does not work, let me know.
        DenNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        597 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        343 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        556 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        555 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X