Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

PlotClose does not exist in the current context?

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

    PlotClose does not exist in the current context?

    When I add PlotClose.Set(Close[0]); at line 49 and
    Add(new Plot(Color.FromKnownColor(KnownColor.Yellow), PlotStyle.Line, "PlotClose"));//jm at line 35 I get error CS0103 'the name PlotClose does not exist in the current context'. however I expected line 35 to declare it's existence. The source code is attached. Help will be much appreciate
    Attached Files

    #2
    whoops looks like PlotClose.Set(Close[0]); at line 49 was not included in the attachment. maybe because it had not compiled?

    it was added to the onbarupdate region as follows:

    protected
    overridevoid OnBarUpdate()
    {
    if (CurrentBar < 2) return;//jm MUST .....
    // Use this method for calculating your indicator values. Assign a value to each
    // plot below by replacing 'Close[0]' with your own formula.
    //PlotHAO.Set(Close[0]);
    PlotHAO.Set(((PlotHAO[1]+joeHACindicator3(1)[1])/2));//jm
    PlotClose.Set(Close[0]);
    }

    Comment


      #3
      Hello joemiller,

      Thank you for your post.

      You have not set the values of this DataSeries object in the properties section. You will need to add the PlotCose just as you have the PlotHAO but change the Values to Values[1]:
      Code:
              [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 PlotHAO
              {
                  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 PlotClose
              {
                  get { return Values[1]; }
              }
      Please let me know if I may be of further assistance.

      Comment


        #4
        Thank you .... it worked

        Thank you .... it worked

        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
        333 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