1st commit

This commit is contained in:
Michael Schimmel
2025-05-23 12:51:32 +02:00
parent 94753a720c
commit 06ec0db105
17 changed files with 6639 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
program ChartDisplayProject;
uses
Vcl.Forms,
ChartDisplayMain in 'ChartDisplayMain.pas' {ChartForm},
Myc.OHLCCache in '..\common\Myc.OHLCCache.pas',
Myc.ChartDataController in '..\common\Myc.ChartDataController.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TChartForm, ChartForm);
Application.Run;
end.