IList<double> ShortMA = ctx.GetData("Быстрая скользящая", new[] { ShortPeriod.ToString() },
delegate { return Series.SMA(source.CompressTo(60).ClosePrices, ShortPeriod); });
source.Decompress(longMA);
Отрисовка графика
mainPane.AddList(string.Format("Быстрая скользящая ({0}) [{1}]", ShortPeriod, source.Symbol), ShortMA, ListStyles.LINE,
0x00ff00, LineStyles.SOLID, PaneSides.RIGHT);