PureBytes Links
Trading Reference Links
|
Hello,
I wrote the program to paint two different color on the same bar. But it =
only color the red only. Is there a way to get around it?
This code "((High - Low)/2)+low " find the midpoint of the bar.
PlotPaintbar(((High - Low)/2)+low, Low, "double", Blue);
PlotPaintbar(High, ((High - Low)/2)+Low, "double", Red);
Any help is appricate,
John W
|