[Browsable(false)]
[XmlIgnore()]
public DataSeries BB_UpperBand
{
get { return Values[0]; }
}
/// <summary>
/// </summary>
[Browsable(false)]
[XmlIgnore()]
public DataSeries BB_LowerBand
{
get { return Values[1]; }
}
if (macdFlag[0] == false && CrossAbove(MACDBBLines().Value, MACDBBLines().BB_LowerBand,1))
{
macdFlag[0] = true;
}
if (macdFlag[0] == true && CrossAbove(MACDBBLines().Value, MACDBBLines().BB_UpperBand,1))
{
if (Low[16] <= ((CurrentPeakHigh - CurrentPeakLow) * .382) + CurrentPeakLow)
{
CurrentPeakLow = (Low[16]);
}
macdFlag[0] = false;
}
Should I not be able to access this?

Comment