All the code compiles without errors and this part is within the method Plot.
Below is part of the code within the method Plot.
protected override void Initialize()
{
CalculateOnBarClose = false;
}
protected override void OnStartUp()
{
}
protected override void OnBarUpdate()
{
}
public override void Plot(Graphics graphics, Rectangle bounds, double min, double max)
{
int left, top, whidh, heigh, border;
left = 13;
top = 25;
whidh = 55;
heigh = 18;
border = 2;
foreach ( LadderRow item in askRows )
{
graphics.DrawString ( "" + askRows [ 15 ] .Price , font , brush , new Point ( (left + whidh ) (top + heigh ))) ;
graphics.DrawString ( "" + askRows [ 15 ] .Volume , font , brush , new Point ( (top 5 * ) (top + heigh ))) ;
}
}
Thank you all

Comment