e.g.
protected override void OnBarUpdate()
{
double newMax = customdoublehigh;
double newMin = customdoublehigh;
ChartPanel.SetYScale(newMin, newMax); //
}
something like
ChartPanel.ScaleMax = newMax; ChartPanel.ScaleMin = newMin;
Basically I want to problem an indicator to keep track of the high and low of a specific time period and keep the chart optimised for that,
and I want to run it on numerous different charts so they all behave the same way.
Thank you for your time,
David.

Comment