如何编制外汇EA自动交易系统

阅读 :
欢迎访问 外 汇 邦 WWW.WaiHuiBang.com

    以下是一些简单的源码,供参考学习。

 

    //+------------------------------------------------------------------+ //| designed by okwh, china | //| copyright 2007, okwh dxdcn | //| | //+------------------------------------------------------------------+

 

    #property copyright "copyright 2007 , dxd, china." #property link "" #define magicma 200610011231 //+------------------------------------------------------------------+

 

    //| 注意没有指标文件那些property | //+------------------------------------------------------------------+ extern int whichmethod = 1; //1~4 种下单方式 1 仅开仓, 2 有止损无止赢, 3 有止赢无止损, 4 有止赢也有止损 extern double takeprofit = 100; //止赢点数 extern double stoploss = 20; //止损点数 extern double maximumrisk = 0.3; //资金控制,控制下单量 extern double trailingstop =25;

 

    //跟踪止赢点数设置 extern int maxopen = 3; //最多开仓次数限制 extern int maxlots = 5; //最多单仓持仓量限制 extern int bb = 0; //非零就允许跟踪止赢 extern double matrendperiod=26;

 

    //使用26均线 开仓条件参数 本例子 int i, p2, xxx,p1, res; double lots; datetime lasttime; //时间控制, 仅当一个时间周期完成才检查条件 int init() //初始化 { lots = 1; lasttime = null; return(0); } int deinit() { return(0); }

 

    //反初始化 //主程序 int start() { checkforopen(); //开仓 平仓 条件检查 和操作 if (bb>0) ctp(); //跟踪止赢 return(0); }

 

    //+------下面是各子程序--------------------------------------------+ double lotsoptimized() //确定下单量,开仓调用 资金控制 { double lot=lots; int orders=historytotal();

 

    // history orders total int losses=0; // number of losses orders without a break //marketinfo(symbol(),mode_minlot); 相关信息 //marketinfo(symbol(),mode_maxlot);

 

    //marketinfo(symbol(),mode_lotstep); lot=normalizedouble(maximumrisk * accountbalance()/accountleverage(),1); //开仓量计算 if(lot<0.1) lot=0.1; if(lot>maxlots) lot=maxlots; return(lot); }

 

    //平仓持有的买单 void closebuy() { if (orderstotal( ) > 0 ) { for(i=orderstotal()-1;i>=0;i--) { if(orderselect(i,select_by_pos,mode_trades)==false) break; if(ordertype()==op_buy)

 

    { orderclose(orderticket(),orderlots(),bid,3,white); sleep(5000); } } } } //平仓持有的卖单 void closesell() { if (orderstotal( ) > 0 ) { for(i=orderstotal()-1;i>=0;i--)

 

    { if(orderselect(i,select_by_pos,mode_trades)==false) break; if(ordertype()==op_sell) { orderclose(orderticket(),orderlots(),ask,3,white); sleep(5000); } } } }

 

    //判断是否买或卖或平仓 int buyorsell() //在这个函数计算设置你的交易信号 这里使用macd 和ma 做例子

 

    { double macdcurrent, macdprevious, signalcurrent; double signalprevious, macurrent, maprevious; macdcurrent=imacd(null,0,12,26,9,price_close,mode_main,0);

 

    macdprevious=imacd(null,0,12,26,9,price_close,mode_main,1); signalcurrent=imacd(null,0,12,26,9,price_close,mode_signal,0);

 

    signalprevious=imacd(null,0,12,26,9,price_close,mode_signal,1); macurrent=ima(null,0,matrendperiod,0,mode_ema,price_close,0);

 

    maprevious=ima(null,0,matrendperiod,0,mode_ema,price_close,1); if(macdcurrent<0 && macdcurrent>signalcurrent && macdpreviousmaprevious) return (1);

 

    // 买 ma在上升,macd在0线上,并且两线上交叉 if(macdcurrent>0 && macdcurrentsignalprevious && macurrent

欢迎访问 外 汇 邦 WWW.WaiHuiBang.com
本文标题:如何编制外汇EA自动交易系统 - MT4平台MQL4编程学习
本文地址:http://www.ea666.cn/fxschool/autotrading/mql4/40608.html

相关文章

  • MQL4程序运行

    目录[hide]程序运行导入函数调用 想让MQL4程序运行起来,就必须对它进行编译(按“编译”按钮或F5键)。在程序编译过程中不允许出现任何错误(允许有警告信息,但一定要对它进行具体分析)。编译成功之后,将会在相...

    MQL4编程学习
  • 外汇交易VPS使用步骤
    外汇交易VPS使用步骤

    VPS(Virtual Private Server 虚拟专用服务器)技术,将一部服务器分割成多个虚拟专享服务器的优质服务。 每个VPS都可分配独立公网IP地址、独立操作系统、独立超大空间、独立内存、独立CPU资源、独立执行程序和独立系统配...

    MQL4编程学习
  • MQL4实例EA教程:连拉3个阴柱或阳柱后做交易

    代码如下:int MAGIC=35207814; extern double lots=1; //+------------------------------------------------------------------+ //| 下面定义start函数,函数会在价格每次波动的时候运行。 //+-------------------...

    MQL4编程学习
  • 建立一套良好的外汇交易系统

     1、操作系统要达成的目标:改善进出时机;待在赚钱的仓位中尽可能长的时间;尽早退出赔钱的仓位。   2、一个良好的追踪趋势的长期系统最吸引人的地方是:仓位通常建立在趋势就要发动的起始点,而不是往趋势进行的...

    MQL4编程学习
  • Flex智能交易系统:这就是摇滚
    Flex智能交易系统:这就是摇滚

    今天,我们了解一款盈利非常高的智能交易系统——Flex智能交易系统,该系统使用风险非常高的赌博方式实现收益。这款智能交易系统的名称来自其设置的灵活性,开发人员声称,该系统能够以任何方式运行,从剥头皮到...

    MQL4编程学习
你可能感兴趣