Rename "Plot1"

Hi,

Is it possible to rename “Plot1” so that it is more meaningful when hovering over the plot line on the chart.

For example;

V1 = INDEX(XAO); 
V2 = MA(V1, BARS=75, CALC=Close);
Plot1 = V1;
Plot2 = V2;
Plot1.Colour = Maroon;
Plot2.Colour = Fuchsia;

if I use PlotXAO instead of Plot1 it works when hovering but if I then change Plot1.Colour to PlotXAO.Colour when you insert the dot after PlotXAO. the plot attributes are not available.

Thanks

Tim

Hi Tim,

Use the plot Caption option to label them, eg:

Plot1.Caption = XAO; 
Plot2.Caption = MA XAO;