Menu

#73 LOWPASS indicator not working

open
nobody
None
5
2007-06-20
2007-06-20
e_qpd
No

LOWPASS indicator's output is the same as indicator's input. No operation seem to be performed on the input data.

Discussion

  • Nobody/Anonymous

    Logged In: NO

    The problem is still as described, in 0.36.

     
  • alon

    alon - 2009-11-06

    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

     
  • Nicolas

    Nicolas - 2011-02-09

    Is this fix going to be committed someday in CVS ?

     
MongoDB Logo MongoDB