19 lines
452 B
ObjectPascal
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.
|