EA编程第一步
HelloWorld //+------------------------------------------------------------------+ //| Hello World!.mq4 | //| Copyright 2016, metaQuotes Software Corp. | //| https://www.mql5.com | //+------------------------------------------------------------------+ #property copyright "Copyright 2016, metaQuotes Software Corp." #property link "QQ:3069404905" #property version "1.00" #property strict //+------------------------------------------------------------------+ //| Expert initialization function | //+------------------------------------------------------------------+ int onInit() { //--- //--- return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Expert deinitialization function | //+------------------------------------------------------------------+ void onDeinit(const int reason) { //--- } //+------------------------------------------------------------------+ //| Expert tick function | //+------------------------------------------------------------------+ void onTick() { //--- HelloWorld(); } //+------------------------------------------------------------------+ void HelloWorld() { string HelloWorld="Hello World!"; int MsgBoxInfo=MessageBox("Dear:"+HelloWorld); Print(MsgBoxInfo); } |
打赏
最新创建圈子
- 新闻EA运行效果图圈 2019-05-05
圈主:admin 帖子:1