LOWPASS indicator's output is the same as indicator's input. No operation seem to be performed on the input data.
Logged In: YES user_id=643884 Originator: NO
There is a note in docs/CHANGELOG-0.34 20061127: Fixed LOWPASS bug that returned the input instead of the ouput.
This might be related, perhaps not complete.
The commit message is at: http://sourceforge.net/mailarchive/forum.php?thread_name=E1Gp8fJ-0004Rk-TC%40mail.sourceforge.net&forum_name=qtstalker-cvs-commits
Logged In: NO
The problem is still as described, in 0.36.
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
Is this fix going to be committed someday in CVS ?
Logged In: YES
user_id=643884
Originator: NO
There is a note in docs/CHANGELOG-0.34
20061127: Fixed LOWPASS bug that returned the input instead of the ouput.
This might be related, perhaps not complete.
The commit message is at:
http://sourceforge.net/mailarchive/forum.php?thread_name=E1Gp8fJ-0004Rk-TC%40mail.sourceforge.net&forum_name=qtstalker-cvs-commits
Logged In: NO
The problem is still as described, in 0.36.
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
Is this fix going to be committed someday in CVS ?