Init mql5 project

This commit is contained in:
Bell
2025-10-09 22:06:54 +07:00
commit 5dbabfd64b
619 changed files with 500541 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
//+------------------------------------------------------------------+
//| test.mq5 |
//| Copyright 2025, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2025, MetaQuotes Ltd."
//#property link "https://www.mql5.com"
#property link "mailto:bellphil.play@gmail.com"
#property version "1.00"
//#property script_show_inputs
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
Print("Hello, MQL5 World!", " I have written my own program. ", "Hooray!");
}
//+------------------------------------------------------------------+