I declared EuiqtyLine DataSeries's name as "Equity Line", but if I do some operation on the DataSeries in the code as below, the description of EquityLine will be shown as "Equity Line+1000000/1000000*100" on the ChartPane. How can I still get the original description on the ChartPane? Thanks.
QUOTE:
DataSeries EquityLine = new DataSeries(Bars,"Equity Line");
ChartPane equitypane = CreatePane(80, true, true);
EquityLine = (EquityLine +StartingCapital)/StartingCapital*100;
PlotSeries(equitypane ,EquityLine , Color.Blue, LineStyle.Solid,2);
Size:
Color:
By explicitly assigning the "Equity Line" string to the DataSeries.Description property of EquityLine. Check out the QuickRef for more details.
Size:
Color: