顺水外汇EA交易网MT4
标题:
EA编程教程系列之一,一个简单的程序
[打印本页]
作者:
顺水的鱼
时间:
2011-4-14 16:05
标题:
EA编程教程系列之一,一个简单的程序
从最简单的开始,不许说看不懂,不许说不会,没人响应我就不更新了。
[attach]2952[/attach]
[ol]
//+------------------------------------------------------------------+
//| Myma.mq4 |
//| anen |
//| http://my.fx678.com |
//+------------------------------------------------------------------+
#property copyright "anen"
#property link "http://my.fx678.com"
#property indicator_chart_window
#property indicator_buffers 1
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
double Extmapbuffer[];
int init
{
//---- indicators
//----
SetIndexBuffer;
return;
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit
{
//----
//----
return;
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start
{
int counted_bars=IndicatorCounted;
//----
int i;
for
{
//Extmapbuffer
=Close
;
Extmapbuffer
=Low
;
}
//----
return;
}
//+------------------------------------------------------------------+[/ol]复制代码
我就不上传源文件了,很简单,很简单的一个程序。
出来的结果是这样的:
忽略这个买单操作,这个是我找个模拟账户上的EA,自动执行的。
复制这个代码,然后打开你的MT4平台,然后工具,MQ语言编辑器,打开,新建一个EA源文件。
选择客户指标。
名字,作者随便你,自己填写。
然后不需要分割的窗口。
程序会自动生成需要的代码格式。
把上面的代码copy进去,就可以了。
F5编译一下,然后加载这个自己的代码看看效果。
期待大家上传自己的代码截图。
欢迎光临 顺水外汇EA交易网MT4 (http://waterforex.com/)
Powered by Discuz! X3.2