Dot-style plot on extra chart

Posted By: wingt

Dot-style plot on extra chart - 06/19/16 13:23

Hi.
I'm trying to plot dot-type data on a new chart in this way:

function run()
{
ColorUp = ColorDn = 0;
PlotHeight1 = PlotHeight2 = 200;
PlotWidth = 800;
LookBack = 100;
set(PLOTNOW);
StartDate = 2010;
EndDate=2010;
asset("EUR/USD");

vars p = series(price());
plot("p",p,0,BLUE);
plot("HighPass",HighPass(p,30),NEW|DOT,BLUE);

}

But it seems an extra plot hasn't drawn at all. Maybe I do something wrong?
Meanwhile, for line-type both plots are drown as they should.

Attached picture 1.png
Attached picture 2.png
Posted By: jcl

Re: Dot-style plot on extra chart - 06/27/16 15:37

You've found a bug. The "NEW" flag works in combination with lines and bars, but not with dots. Version 1.46 was not offically released yet, so this can be fixed before the release.
© 2024 lite-C Forums