public override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
// add your custom rendering logic here
GannFan gf = Draw.GannFan(this, "tag1", 0, Low[0]);
PriceLevel pLevel = new PriceLevel(99, Brushes.Black);
gf.PriceLevels[3] = pLevel;
}
The name 'Low' does not exist in the current context CS0103

Comment