When the drawing object is a Global Drawing object, the objects on the other charts are not updated. I'm sure this used to work on a previous version of Ninjatrader, but at some stage it stopped working I can't get it to work with 8.0.24.2 or 8.0.25.0.
The code that executes in from the Context menu handler is:
public void IncreasePriceClick(object sender, RoutedEventArgs e)
{
foreach (var chartAnchor in Anchors)
{
chartAnchor.Price += 4;
}
ForceRefresh();
}
Any help would be much appreciated.

Comment