using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace TIProChartsExtension { public static class ChartEnvironment { public static List> CrossHairSynchronization = new List>(); public static void CrossHairMoved(DateTime start, DateTime end, double yValue, string symbol, Form source) { foreach (Action crossHairSync in CrossHairSynchronization) { crossHairSync(start, end, yValue, symbol, source); } } } }