Tutorial 1 : Membuat Program “Hello World !”

//+——————————————————————+ //| mateusea1.mq4 | //| Copyright 2025, MetaQuotes Ltd. | //| https://www.mql5.com | //+——————————————————————+ #property copyright “Copyright 2025, MetaQuotes Ltd.” #property link “https://www.mql5.com” #property version “1.00” #property strict //+——————————————————————+ //| Script program start function | //+——————————————————————+ void OnStart() { Alert(“Hello Word!”); } //+——————————————————————+

Leave a Reply

Your email address will not be published. Required fields are marked *