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で簡単に独自のプログラムが作成可能



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





Finance

お薦めBLOG:

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

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

Toyolab FX - 手ぶらで為替取引

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

とあるMetaTraderの備忘秘録

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

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

とあるMetaTraderの備忘秘録

FXデイトレード投資法


MT4(MetaTrader4)でデイトレード

お薦めHP:

MT4インディケーター

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

MT4インジケーター

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

MetaTrader4 Indicators Collection

FX自動売買研究所

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

ZuluTrade

FX外為カフェ

MetaSys-Seeker.net

MetaTraderLibrary

【SOURCE FILE】monster_v2.mq5

【解説】【MQL5 community】 Dual Trix 15 and 30 : 2つの移動平均を表示させたもの。

【シグナル】

2つの移動平均 を使用するシグナルとして、
 一般に中期の移動平均線が上昇し、長期の移動平均線を 下から上に突き抜ける形で交差すると、 低迷していた価格が上昇しはじめたことを示すと言われている。 これが「ゴールデンクロス(Golden Cross)」。 その逆の中期の移動平均線が下降し、長期の移動平均線を 上から下に突き抜ける形で交差すると、 価格が下降しはじめたことを示すと言われている。 これが「デットクロス(Dead Cross)」。

//+------------------------------------------------------------------+
//|                                                 Monster_v1.3.mq5 |
//|                                         Copyright 2010, Q-Import |
//|                                                                  |
//+------------------------------------------------------------------+
// Please Modify and Post More Examples of Indicators

#property copyright "Q-Import"
#property version   "2.3"
#property indicator_separate_window
#property indicator_buffers 2            //Buffer On Indicator
#property indicator_plots   2            //Line On Indicator
//--- plot First Plot
#property indicator_label1  "Plot1"      //Type Of Line To Draw On First Plot
#property indicator_type1   DRAW_LINE      
#property indicator_color1  Red
#property indicator_style1  STYLE_SOLID
#property indicator_width1  1
//--- plot Second Plot                
#property indicator_label2  "Plot2"     //Type Of Line To Draw On Second Plot
#property indicator_type2   DRAW_LINE
#property indicator_color2  Blue
#property indicator_style2  STYLE_SOLID
#property indicator_width2  1

//--- input parameters
input bool               State1=true;
input int                Plot1=15;              //Period Of The First Plot
input int                Plot2=30;              //Period Of The Second Plot
input ENUM_APPLIED_PRICE ToClose=PRICE_CLOSE;   //Price Applied To Both Plots
//--- Other input parameters
int TriX_Handle1;   // handle for our Trix First Plot
int TriX_Handle2;   // handle for our Trix Second Plot
double TriX1[];     // Dynamic array to hold the values of Trix for each bars Plot 1
double TriX2[];     // Dynamic array to hold the values of Trix for each bars Plot 2
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {

//--- indicator buffers mapping
   SetIndexBuffer(0,TriX1,INDICATOR_DATA);
   SetIndexBuffer(1,TriX2,INDICATOR_DATA);
// Get The Values For Array
   Print("Parameter AsSeries =",State1);
// Trix Plot1 Array
   ArraySetAsSeries(TriX1,State1);
// Trix Plot2 Array
   ArraySetAsSeries(TriX2,State1);
//Display Name of Indicator,Periods, and Value
   IndicatorSetString(INDICATOR_SHORTNAME,"Trix CrossOver("+Plot1+")( "+Plot2+")"+State1);
   IndicatorSetInteger(INDICATOR_LEVELS,1);
   IndicatorSetDouble(INDICATOR_LEVELVALUE,0,0.0);
//--- set accuracy of displaying the indicator values
   IndicatorSetInteger(INDICATOR_DIGITS,6);
   TriX_Handle1=iTriX(Symbol(),0,Plot1,ToClose);
   TriX_Handle2=iTriX(Symbol(),0,Plot2,ToClose);

//---
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {

   int calculated=BarsCalculated(TriX_Handle1);
   if(calculated<rates_total)
     {
      Print("Not all data of TriX_Handle1 is calculated (",calculated,"bars ). Error",GetLastError());
      return(0);
     }
   calculated=BarsCalculated(TriX_Handle2);
   if(calculated<rates_total)
     {
      Print("Not all data of TriX_Handle2 is calculated (",calculated,"bars ). Error",GetLastError());
      return(0);
     }
   int to_copy;
   if(prev_calculated>rates_total || prev_calculated<=0) to_copy=rates_total;
   else
     {
      to_copy=rates_total-prev_calculated;
      //--- last value is always copied
      to_copy++;
     }
//--- try to copy
   if(CopyBuffer(TriX_Handle1,0,0,to_copy,TriX1)<=0)return(0);
   if(CopyBuffer(TriX_Handle2,0,0,to_copy,TriX2)<=0)return(0);
//--- return value of prev_calculated for next call
   return(rates_total);
  }
//+------------------------------------------------------------------+


【表示結果】







Back to Meta Trader

Google

解説本:


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

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



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

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


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


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


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


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