Additional information: Index was outside the bounds of the array.
The following code is from the indicator's OnStateChange() method
case State.DataLoaded:
foreach (ChartPanel panel in ChartControl.ChartPanels)
{
panel.MouseMove += new MouseEventHandler(OnMouseMove); // <== exception here
}
break;
- This usually (but not always) happens if I move the mouse over the first new chart I create after the workspace comes up
- I have never seen it happen with a subsequent new chart
- Perhaps NT has something uninitialized that the first chart often trips over, but that is initialized for any subsequent new charts? (Just a guess.)

Comment