Tokyo:

Meta Trader

MQL 5 community

Technical Analysis Library



Meta Traderが使える有名な証券会社:

フォレックス・ドットコムMT4
↑ まずは Meta Trader口座を開設。 今なら5650円キャッシュバック中(初回入金10万+取引)。 特徴:1000通貨取引。 スプレッド:USD/JPY:1-3 pips, EURO/JPY:2-4pips


↑ まずは Robot FX の口座を開設 (初回入金5万円以上)。
スプレッド: USD/JPY 1〜3, EUR/JPY 2〜4, EUR/USD 1〜3など



↑ CFDもアリ



↑ EA Generatorで簡単に独自のプログラムが作成可能


すべてのサービスが業界最高水準の「Spot Board」
↑ まずは口座開設。 MJ MetaTrader PLANEX1(β版)でMetaTraderがチャートして利用可。



↑ Metatraderで作成したプログラムをJavaに変換して、使用できるようになっています。





↑ Metatrader は使えませんが、 MT4と同様にDDE接続し、データをリアルタイムで入手し、 Excel VBAでプログラムできます。 詳しくは、こちらへ



Economic Indicators

お薦めBLOG:

しろふくろうFXテクニカル分析研究所

しろふくろうのメタトレーダーでFXシステムトレード

しろふくろうの海外FXでもメタトレーダー

Toyolab FX - 手ぶらで為替取引

基礎から学ぶシステムトレード(豊嶋久道さん)

とあるMetaTraderの備忘秘録

『Expert adviser』は、おもしろい!

【FX】システムトレードするならMetaTraderでしょ

FXデイトレード投資法

MT4(MetaTrader4)でデイトレード

Duck-butt tiger's FX trading soliloquy

MetaTraderでFX自動売買ブログ

お嬢さん、FXはおよしなさい

運に頼らないEAの運用方法について考えていく!

MT4自動売買&ポイントサイトで生活するぞ!

くーちゃんさん(GodSpeedで有名)

FXシステムトレード研究ノート〜上級者用〜

FXで1億稼ぐ!初心者マサキの自動売買ブログ

MetaTrader 4 で永久に稼ぐ!

気ままにMT4: MetaTrader4/メタトレーダー4

ボブとメタバイザーによる、メタトレーダーアカデミア

FXテクニカル分析&業者比較Blog

FinanceMap - MT4,Metatrader,FX,為替でシステムトレード

Automation Finance

◆ Clockwork FX ◆

あほすけのFX売買記録

ヘパイストスの錬金ロボット!

ちょびちょびFX

Volatily Scalp

シストレラボ

クララの自動売買でFX

ドリームゲートFXは詐欺なのか?! 61日間の検証と評価から学んだ ドリームゲートFXで負けない「7つのルール」

お薦めHP:

MT4インディケーター

MT4 インジケーターと自動売買EA

MT4インジケーター

MT4(MetaTrader4) インディケータ置き場

MetaTrader4 Indicators Collection

Forex TSD

FX自動売買研究所

為替・FX大好き主婦の楽ちんシステムトレード(^▽^)

ZuluTrade

FX外為カフェ

MetaSys-Seeker.net

MetaTraderLibrary

MTAW MetaTrader Autotrader World

FXトレードサポーター MT4売買履歴解析

MetaTraderでFX自動売買.net

システムトレード研究所 〜FXで完全自動売買〜

MetaTraderでFX自動売買研究所

MT4LIVE.COM

FX自動売買ソフト検証:

FX自動売買ソフトで楽に稼ぐ事は出来るのか?!

FX情報商材で稼ぐためにあなたが一番知りたいこと

無料のFX自動売買ソフト|FX自動売買 検証 評価 比較 ブログ

FXで夢をかなえるゾウ

FX情報商材検証レビューブログ masa!!

FX情報商材レビューブログの決定版!(FX情報商材レビュー・勝率検証&評価ブログ)

FX情報商材・自動売買を徹底検証!【FXマイスターよしゆきのブログ】

定年退職後に一から始めるFX奮闘日記

MetaTraderで自動売買!

ご注意:

無登録で金融商品取引業を行う者の名称等について(金融庁)

自動売買ソフトの販売・レンタル業者にご注意!(北海道財務局)

【SOURCE FILE】Moving Average.mq4

【解説】 Moving Average :
【シグナル】
売りシグナル:移動平均がロウソク足を上から下を抜いたら。
買いシグナル:移動平均がロウソク足を下から上を抜いたら。


//+------------------------------------------------------------------+
//|                                               Moving Average.mq4 |
//|                      Copyright  2005, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#define MAGICMA  20050610

extern double Lots               = 0.1;
extern double MaximumRisk        = 0.02;
extern double DecreaseFactor     = 3;
extern double MovingPeriod       = 12;
extern double MovingShift        = 6;
//+------------------------------------------------------------------+
//| Calculate open positions                                         |
//+------------------------------------------------------------------+
int CalculateCurrentOrders(string symbol)
  {
   int buys=0,sells=0;
//----
   for(int i=0;i<OrdersTotal();i++)
     {
      if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false) break;
      if(OrderSymbol()==Symbol() && OrderMagicNumber()==MAGICMA)
        {
         if(OrderType()==OP_BUY)  buys++;
         if(OrderType()==OP_SELL) sells++;
        }
     }
//---- return orders volume
   if(buys>0) return(buys);
   else       return(-sells);
  }
//+------------------------------------------------------------------+
//| Calculate optimal lot size                                       |
//+------------------------------------------------------------------+
double LotsOptimized()
  {
   double lot=Lots;
   int    orders=HistoryTotal();     // history orders total
   int    losses=0;                  // number of losses orders without a break
//---- select lot size
   lot=NormalizeDouble(AccountFreeMargin()*MaximumRisk/1000.0,1);
//---- calcuulate number of losses orders without a break
   if(DecreaseFactor>0)
     {
      for(int i=orders-1;i>=0;i--)
        {
         if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY)==false) { Print("Error in history!"); break; }
         if(OrderSymbol()!=Symbol() || OrderType()>OP_SELL) continue;
         //----
         if(OrderProfit()>0) break;
         if(OrderProfit()<0) losses++;
        }
      if(losses>1) lot=NormalizeDouble(lot-lot*losses/DecreaseFactor,1);
     }
//---- return lot size
   if(lot<0.1) lot=0.1;
   return(lot);
  }
//+------------------------------------------------------------------+
//| Check for open order conditions                                  |
//+------------------------------------------------------------------+
void CheckForOpen()
  {
   double ma;
   int    res;
//---- go trading only for first tiks of new bar
   if(Volume[0]>1) return;
//---- get Moving Average 
   ma=iMA(NULL,0,MovingPeriod,MovingShift,MODE_SMA,PRICE_CLOSE,0);
//---- sell conditions  ★(売りの条件)★
   if(Open[1]>ma && Close[1]<ma) 
     {
      res=OrderSend(Symbol(),OP_SELL,LotsOptimized(),Bid,3,0,0,"",MAGICMA,0,Red);
      return;
     }
//---- buy conditions   ★(買いの条件)★
   if(Open[1]<ma && Close[1]>ma)  
     {
      res=OrderSend(Symbol(),OP_BUY,LotsOptimized(),Ask,3,0,0,"",MAGICMA,0,Blue);
      return;
     }
//----
  }
//+------------------------------------------------------------------+
//| Check for close order conditions                                 |
//+------------------------------------------------------------------+
void CheckForClose()
  {
   double ma;
//---- go trading only for first tiks of new bar
   if(Volume[0]>1) return;
//---- get Moving Average 
   ma=iMA(NULL,0,MovingPeriod,MovingShift,MODE_SMA,PRICE_CLOSE,0);
//----
   for(int i=0;i<OrdersTotal();i++)
     {
      if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false)        break;
      if(OrderMagicNumber()!=MAGICMA || OrderSymbol()!=Symbol()) continue;
      //---- check order type 
      if(OrderType()==OP_BUY)
        {
         if(Open[1]>ma && Close[1]<ma) OrderClose(OrderTicket(),OrderLots(),Bid,3,White);
         break;
        }
      if(OrderType()==OP_SELL)
        {
         if(Open[1]<ma && Close[1]>ma) OrderClose(OrderTicket(),OrderLots(),Ask,3,White);
         break;
        }
     }
//----
  }
//+------------------------------------------------------------------+
//| Start function                                                   |
//+------------------------------------------------------------------+
void start()
  {
//---- check for history and trading
   if(Bars<100 || IsTradeAllowed()==false) return;
//---- calculate open orders by current symbol
   if(CalculateCurrentOrders(Symbol())==0) CheckForOpen();
   else                                    CheckForClose();
//----
  }
//+------------------------------------------------------------------+


【バックテスト】
Strategy Tester: Moving Average
Strategy Tester Report
Moving Average
FOREX.comJapan-Demo(I) (Build 229)

通貨ペアEURUSDfxf. (Euro vs US Dollar)
期間5分足(M5) 2011.03.23 21:45 - 2011.04.01 20:55 (2011.01.01 - 2011.04.02)
モデルEvery tick (the most precise method based on all available least timeframes)
パラメーターLots=0.1; MaximumRisk=0.02; DecreaseFactor=3; MovingPeriod=12; MovingShift=6;
Bars in test2106Ticks modelled103973Modelling quality38.45%
Mismatched charts errors11
Initial deposit10000.00
Total net profit-359.40Gross profit635.30Gross loss-994.70
Profit factor0.64Expected payoff-4.18
Absolute drawdown368.40Maximal drawdown506.00 (4.99%)Relative drawdown4.99% (506.00)
Total trades86Short positions (won %)33 (9.09%)Long positions (won %)53 (26.42%)
Profit trades (% of total)17 (19.77%)Loss trades (% of total)69 (80.23%)
Largestprofit trade122.00loss trade-83.80
Averageprofit trade37.37loss trade-14.42
Maximumconsecutive wins (profit in money)2 (131.00)consecutive losses (loss in money)15 (-186.00)
Maximalconsecutive profit (count of wins)131.00 (2)consecutive loss (count of losses)-186.00 (15)
Averageconsecutive wins1consecutive losses5
Graph
#時間取引種別注文番号数量PriceS/L:決済逆指値T/P:決済指値損益Balance
12011.03.23 23:20buy10.201.41030.00000.0000
22011.03.24 06:30close10.201.40850.00000.0000-35.409964.60
32011.03.24 06:35buy20.201.40890.00000.0000
42011.03.24 06:50close20.201.40820.00000.0000-14.009950.60
52011.03.24 08:00buy30.101.40750.00000.0000
62011.03.24 11:10close30.101.41200.00000.000045.009995.60
72011.03.24 11:25buy40.201.41320.00000.0000
82011.03.24 14:15close40.201.41250.00000.0000-14.009981.60
92011.03.24 14:20buy50.201.41340.00000.0000
102011.03.24 16:05close50.201.41920.00000.0000116.0010097.60
112011.03.24 16:35buy60.201.42040.00000.0000
122011.03.24 16:55close60.201.41800.00000.0000-48.0010049.60
132011.03.24 18:25buy70.201.41850.00000.0000
142011.03.24 18:30close70.201.41770.00000.0000-16.0010033.60
152011.03.24 18:40buy80.101.41870.00000.0000
162011.03.24 19:05close80.101.41800.00000.0000-7.0010026.60
172011.03.24 19:25buy90.101.41840.00000.0000
182011.03.24 19:40close90.101.41800.00000.0000-4.0010022.60
192011.03.24 21:50sell100.101.41690.00000.0000
202011.03.24 23:50close100.101.41800.00000.0000-11.0010011.60
212011.03.25 00:00sell110.101.41690.00000.0000
222011.03.25 00:10close110.101.41740.00000.0000-5.0010006.60
232011.03.25 00:15sell120.101.41680.00000.0000
242011.03.25 00:30close120.101.41770.00000.0000-9.009997.60
252011.03.25 01:50buy130.101.41810.00000.0000
262011.03.25 02:15close130.101.41720.00000.0000-9.009988.60
272011.03.25 04:15buy140.101.41720.00000.0000
282011.03.25 05:05close140.101.41670.00000.0000-5.009983.60
292011.03.25 05:50buy150.101.41760.00000.0000
302011.03.25 09:40close150.101.41560.00000.0000-20.009963.60
312011.03.25 09:55sell160.101.41510.00000.0000
322011.03.25 10:00close160.101.41610.00000.0000-10.009953.60
332011.03.25 10:15buy170.101.41680.00000.0000
342011.03.25 10:55close170.101.41570.00000.0000-11.009942.60
352011.03.25 11:10buy180.101.41680.00000.0000
362011.03.25 11:55close180.101.41610.00000.0000-7.009935.60
372011.03.25 13:35buy190.101.41390.00000.0000
382011.03.25 13:45close190.101.41230.00000.0000-16.009919.60
392011.03.25 14:00sell200.101.41250.00000.0000
402011.03.25 14:30close200.101.41330.00000.0000-8.009911.60
412011.03.25 16:05sell210.101.41340.00000.0000
422011.03.25 18:35close210.101.40790.00000.000055.009966.60
432011.03.25 19:00sell220.201.40710.00000.0000
442011.03.25 20:00close220.201.40770.00000.0000-12.009954.60
452011.03.27 23:55buy230.201.40330.00000.0000
462011.03.28 03:35close230.201.40570.00000.000048.2010002.80
472011.03.28 05:00buy240.201.40600.00000.0000
482011.03.28 05:15close240.201.40530.00000.0000-14.009988.80
492011.03.28 05:45buy250.201.40580.00000.0000
502011.03.28 05:50close250.201.40490.00000.0000-18.009970.80
512011.03.28 06:00buy260.101.40590.00000.0000
522011.03.28 06:50close260.101.40490.00000.0000-10.009960.80
532011.03.28 09:15buy270.101.40770.00000.0000
542011.03.28 09:35close270.101.40600.00000.0000-17.009943.80
552011.03.28 11:00buy280.101.40580.00000.0000
562011.03.28 11:05close280.101.40470.00000.0000-11.009932.80
572011.03.28 11:15buy290.101.40550.00000.0000
582011.03.28 11:30close290.101.40440.00000.0000-11.009921.80
592011.03.28 11:35buy300.101.40540.00000.0000
602011.03.28 15:40close300.101.41020.00000.000048.009969.80
612011.03.28 16:15buy310.201.41080.00000.0000
622011.03.28 16:25close310.201.40970.00000.0000-22.009947.80
632011.03.28 18:30buy320.201.40990.00000.0000
642011.03.28 19:45close320.201.40930.00000.0000-12.009935.80
652011.03.28 21:00sell330.101.40860.00000.0000
662011.03.28 22:15close330.101.40900.00000.0000-4.009931.80
672011.03.28 22:40sell340.101.40810.00000.0000
682011.03.29 00:15close340.101.40810.00000.0000-1.509930.30
692011.03.29 00:25buy350.101.40820.00000.0000
702011.03.29 01:15close350.101.40640.00000.0000-18.009912.30
712011.03.29 02:25sell360.101.40730.00000.0000
722011.03.29 02:35close360.101.40800.00000.0000-7.009905.30
732011.03.29 03:00buy370.101.40790.00000.0000
742011.03.29 03:05close370.101.40730.00000.0000-6.009899.30
752011.03.29 03:10buy380.101.40800.00000.0000
762011.03.29 09:05close380.101.41270.00000.000047.009946.30
772011.03.29 12:30sell390.201.40730.00000.0000
782011.03.29 12:45close390.201.40780.00000.0000-10.009936.30
792011.03.29 12:55sell400.201.40690.00000.0000
802011.03.29 14:50close400.201.40840.00000.0000-30.009906.30
812011.03.29 14:55sell410.101.40690.00000.0000
822011.03.29 15:25close410.101.40880.00000.0000-19.009887.30
832011.03.29 16:30sell420.101.40800.00000.0000
842011.03.29 16:40close420.101.40860.00000.0000-6.009881.30
852011.03.29 17:05buy430.101.40880.00000.0000
862011.03.29 17:20close430.101.40820.00000.0000-6.009875.30
872011.03.29 17:30sell440.101.40810.00000.0000
882011.03.29 17:35close440.101.40870.00000.0000-6.009869.30
892011.03.29 17:50sell450.101.40790.00000.0000
902011.03.29 18:00close450.101.40910.00000.0000-12.009857.30
912011.03.29 18:30sell460.101.40840.00000.0000
922011.03.29 18:55close460.101.40910.00000.0000-7.009850.30
932011.03.29 19:05sell470.101.40850.00000.0000
942011.03.29 22:10close470.101.41120.00000.0000-27.009823.30
952011.03.29 22:30buy480.101.41130.00000.0000
962011.03.30 00:30close480.101.41170.00000.00004.109827.40
972011.03.30 03:05sell490.201.40810.00000.0000
982011.03.30 03:15close490.201.40880.00000.0000-14.009813.40
992011.03.30 04:35buy500.201.40910.00000.0000
1002011.03.30 04:40close500.201.40840.00000.0000-14.009799.40
1012011.03.30 05:30buy510.101.40910.00000.0000
1022011.03.30 06:15close510.101.40810.00000.0000-10.009789.40
1032011.03.30 06:20buy520.101.40890.00000.0000
1042011.03.30 06:25close520.101.40820.00000.0000-7.009782.40
1052011.03.30 07:20buy530.101.40830.00000.0000
1062011.03.30 09:05close530.101.40940.00000.000011.009793.40
1072011.03.30 10:45buy540.201.40850.00000.0000
1082011.03.30 12:35close540.201.40890.00000.00008.009801.40
1092011.03.30 13:05buy550.201.40970.00000.0000
1102011.03.30 13:10close550.201.40870.00000.0000-20.009781.40
1112011.03.30 14:45buy560.201.40830.00000.0000
1122011.03.30 17:35close560.201.41220.00000.000078.009859.40
1132011.03.30 17:40buy570.201.41300.00000.0000
1142011.03.30 18:05close570.201.41240.00000.0000-12.009847.40
1152011.03.30 19:15buy580.201.41250.00000.0000
1162011.03.30 20:05close580.201.41210.00000.0000-8.009839.40
1172011.03.30 20:25buy590.101.41290.00000.0000
1182011.03.30 21:20close590.101.41220.00000.0000-7.009832.40
1192011.03.30 21:25buy600.101.41300.00000.0000
1202011.03.30 21:40close600.101.41220.00000.0000-8.009824.40
1212011.03.30 21:45buy610.101.41320.00000.0000
1222011.03.30 22:55close610.101.41220.00000.0000-10.009814.40
1232011.03.31 00:00buy620.101.41300.00000.0000
1242011.03.31 00:10close620.101.41190.00000.0000-11.009803.40
1252011.03.31 00:15buy630.101.41260.00000.0000
1262011.03.31 05:05close630.101.41350.00000.00009.009812.40
1272011.03.31 05:20buy640.201.41520.00000.0000
1282011.03.31 10:05close640.201.42130.00000.0000122.009934.40
1292011.03.31 11:20sell650.201.42080.00000.0000
1302011.03.31 11:25close650.201.42190.00000.0000-22.009912.40
1312011.03.31 12:15sell660.201.42060.00000.0000
1322011.03.31 15:00close660.201.41930.00000.000026.009938.40
1332011.03.31 15:05sell670.201.41790.00000.0000
1342011.03.31 15:20close670.201.41930.00000.0000-28.009910.40
1352011.03.31 15:30sell680.201.41800.00000.0000
1362011.03.31 15:45close680.201.41960.00000.0000-32.009878.40
1372011.03.31 16:00sell690.101.41820.00000.0000
1382011.03.31 16:10close690.101.41880.00000.0000-6.009872.40
1392011.03.31 16:15buy700.101.41910.00000.0000
1402011.03.31 18:25close700.101.41920.00000.00001.009873.40
1412011.03.31 18:35buy710.201.42000.00000.0000
1422011.03.31 18:40close710.201.41950.00000.0000-10.009863.40
1432011.03.31 19:40buy720.201.42000.00000.0000
1442011.04.01 00:40close720.201.41580.00000.0000-83.809779.60
1452011.04.01 00:45buy730.101.41660.00000.0000
1462011.04.01 01:25close730.101.41610.00000.0000-5.009774.60
1472011.04.01 02:15buy740.101.41650.00000.0000
1482011.04.01 02:40close740.101.41570.00000.0000-8.009766.60
1492011.04.01 03:15buy750.101.41630.00000.0000
1502011.04.01 05:30close750.101.41700.00000.00007.009773.60
1512011.04.01 06:00buy760.201.41780.00000.0000
1522011.04.01 06:10close760.201.41710.00000.0000-14.009759.60
1532011.04.01 06:25sell770.201.41660.00000.0000
1542011.04.01 07:10close770.201.41800.00000.0000-28.009731.60
1552011.04.01 07:20sell780.101.41670.00000.0000
1562011.04.01 08:45close780.101.41600.00000.00007.009738.60
1572011.04.01 09:15sell790.201.41440.00000.0000
1582011.04.01 09:30close790.201.41620.00000.0000-36.009702.60
1592011.04.01 09:35sell800.201.41560.00000.0000
1602011.04.01 09:50close800.201.41630.00000.0000-14.009688.60
1612011.04.01 09:55sell810.101.41560.00000.0000
1622011.04.01 11:10close810.101.41620.00000.0000-6.009682.60
1632011.04.01 11:55sell820.101.41500.00000.0000
1642011.04.01 12:00close820.101.41620.00000.0000-12.009670.60
1652011.04.01 14:15sell830.101.40960.00000.0000
1662011.04.01 14:25close830.101.41160.00000.0000-20.009650.60
1672011.04.01 19:15sell840.101.42230.00000.0000
1682011.04.01 20:25close840.101.42310.00000.0000-8.009642.60
1692011.04.01 20:30sell850.101.42230.00000.0000
1702011.04.01 20:40close850.101.42280.00000.0000-5.009637.60
1712011.04.01 20:45buy860.101.42300.00000.0000
1722011.04.01 20:59close at stop860.101.42330.00000.00003.009640.60


Back to Meta Trader

Google
解説本:


【初級編】 基本的な事項からプログラムの仕方まで解説

【中級編】 独自のテクニカル分析をするためのプログラミングについての解説



【初級編】 基本的な事項から筆者のトレード手法も公開している

【初級編】 しろふくろうさんによるメタトレーダーの使い方が少し書かれている


【初級編】 基本的な事項からメタトレーダーのExpert Advisorを使って、自動売買システムの作り方が書かれている.


【初級編】 EAが4つついており、なおかつジェネレーターを使った自動売買プログラム(EA)の作り方を解説


【初級編】 FXの必勝法を説いた本。その中でメタトレーダー4の活用法も紹介


【中級編】 自動売買システムの構築に必要な、MQL言語の知識をこの1冊に集約しています。 サンプルコードも豊富に用意されており、サンプルコードで個々の機能を実際に確認しながら学習していくことができます。