您现在的位置: 比特财富网 >> 财经 >  >> 外匯
如何編制外匯EA自動交易系統

    以下是一些簡單的源碼,供參考學習。www.emoneybtc.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.emoneybtc.com