Files
cTrader-DataExport/ChartDisplay/ChartDisplayProject.dpr
T
Michael Schimmel f571965762 integrated TFuture
2025-06-04 01:55:24 +02:00

19 lines
452 B
ObjectPascal

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.