Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plot from another indicator

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

    Plot from another indicator

    From another indicator, I'm calling and plotting the Current High and Low fromt the CurrentDayOHL indicator. Why it is not plotting? Am I using the wrong function/syntax? Thanks in advance.

    Code:
    Protected override void Initialize ()
    {
          Add(new Plot(new Pen(Color.Yellow, 2), PlotStyle.Hash, "Today High"));
          Add(new Plot(new Pen(Color.Yellow, 2), PlotStyle.Hash, "Today Low"));  }
      
    Protected override void OnBarUpdate()
     {
          double TodayHi  =   CurrentDayOHL().CurrentHigh[0];
          double TodayLo  =   CurrentDayOHL().CurrentLow[0];
      }
        #region Properties
              [Browsable(false)]      // this line prevents the data series from being displayed in the indicator properties dialog, do not remove
              [XmlIgnore()]         // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove
              public DataSeries TodayHi
              {
                  get { return Values[0]; }
              }
       
              [Browsable(false)]    // this line prevents the data series from being displayed in the indicator properties dialog, do not remove
              [XmlIgnore()]         // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove
              public DataSeries TodayLo
              {
                  get { return Values[1]; }
              }
      #endregion

    #2
    Originally posted by 2Look4me View Post
    From another indicator, I'm calling and plotting the Current High and Low fromt the CurrentDayOHL indicator. Why it is not plotting? Am I using the wrong function/syntax? Thanks in
    You haven't set your plots..

    Look in the code here to see an example

    Comment


      #3
      Hello 2Look4me,

      Thank you for writing in. You would need to actually set the plot values for them to draw on the chart. For example:
      Code:
      protected override void OnBarUpdate()
       {
            double TodayHi  =   CurrentDayOHL().CurrentHigh[0];
            Values[0].Set(TodayHi);
            double TodayLo  =   CurrentDayOHL().CurrentLow[0];
            Values[1].Set(TodayLow);
        }
      Please let me know if I may be of further assistance.
      Michael M.NinjaTrader Quality Assurance

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      637 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      366 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      107 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      569 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      572 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X