Topics
Replies

Tebogo121
30 Apr 2013, 19:32

RE:
cAlgo_Development said:

Right now such painting is not supported in cAlgo. The only way you can color series like this is to use PlotType.Points or PlotType.Histogram. Try this in your example:

 

[Output("Dn", Color = Colors.Magenta, PlotType = PlotType.Points)]


You will get points colored correctly. You can also draw line and that draw points on top of it to indicate up or down trend.

Thanks a lot. It really helps to know some of this limitation when compiling a program.


@Tebogo121