I checked the code the problem is in PlotLine.CPP
the method PlotLine::setData not setting the data!
the code should be :
void PlotLine::setData (int i, double d)
{
Val r = data[i];
r.open = d;
r.high = d;
r.low = d;
r.v = d;
data[i] = r;
checkHighLow(d);
}
this will solve the problem with the lowpass indicator.
2009-11-06 21:57:03 UTC in Qtstalker