program ChartDisplayProject; uses FastMM5, Vcl.Forms, ChartDisplayMain in 'ChartDisplayMain.pas' {ChartForm}, Myc.OHLCCache in '..\common\Myc.OHLCCache.pas', Myc.ChartDataController in '..\common\Myc.ChartDataController.pas', DataStreamer in 'DataStreamer.pas'; {$R *.res} begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TChartForm, ChartForm); Application.Run; end.