MetaQuotes Language 4 (MQL4) is a new built-in language for programming of trading strategies.
MetaQuotes Language 4( MQL4 )は取引の戦略のプログラミングのための新しい統合言語です。
---
built-in language
統合言語
---
This language
この言語は
allows to create your own Expert Advisors that
そして、あなた自身の自動売買システム(Expert Advisors)作成する機能を提供します。
make trading management automated
自動化された取引のマネージメントを作って、
and are perfectly suitable for implementing of one's own trade strategies.
完全に自分自身のトレード戦略を実行することに適しています、
---
Besides, one can use MQL4 for creation of one's own Custom Indicators, Scripts, and Libraries.
そのほかに、自分自身のカスタムインディケーター、スクリプトとライブラリの作成のために MQL4 を使うことができます。
---
カスタムインディケーターとは、「オリジナルのテクニカル指標」
---
A large amount of functions necessary for analysis of the current and previously income quotes, as well as basic arithmetic and logic operations are included in MQL4 structure.
現在および以前の収入相場の分析に必要な沢山の関数、演算とロジックの基本操作も MQL4構造に含まれています。
There are also basic indicators built in and commands of order placement and control.
基本的なインディケーターによる発注コマンドとコントロールがあります。
---
income quotes:収入相場
order placement:発注
---
The MetaEditor 4 (text editor) that highlights different constructions of MQL4 language is used for writing the program code.
MetaEditor 4(テキストエディタ)は、MQL4 言語の特異な文法構造を強調し、プログラムコードを書くために使われます。
---
It helps users to orientate themselves in the expert system text quite easily.
それは非常に容易にユーザーがエキスパートシステムテキストにコード自身を適応させるのを手伝います。
---
orientate:環境に適応する
---
We use MetaQuotes Language Dictionary as a Help System for MQL4 language.
私たちは MQL4 言語のために MetaQuotes Language Dictionary をヘルプシステムとして用います。
---
MetaQuotes:ロシアにあるメタトレーダーの開発会社
---
An abridged guide contains functions divided into categories, operations, reserved words, and other language constructions and allows finding the description of every element we use.
要約されたガイドがカテゴリーに分けられた関数、操作、予約語と他の言語構成を含んでいて、私たちが使うすべての要素の記述を検索することができます。
---
abridge:要約する
---
Programs written in MetaQuotes Language 4 have different features and purposes:
MetaQuotes Language 4 で記述されたプログラムは、さまざまな機能と目的があります。
---
 Expert Advisor is a mechanical trading system (MTS) linked up to a certain chart.
エキスパートアドバイザー(Expert Advisor)は、特定のチャートにリンクされる自動売買システム( MTS )です。
---
An Advisor starts to run with every incoming tick for a given symbol.
アドバイザーが所定シンボル算出のためにティックデータ受信毎に実行を開始します。
---
The Advisor will not be launched for a new, tick if it is processing the previous one at this moment (i.e., the Advisor has not completed its operation yet).
アドバイザーは前のティックを処理しているなら、始動されません(すなわち、アドバイザーがまだそのオペレーションを完了していない)。
---
The Advisor can both inform you about a possibility to trade and trade at an account automatically sending orders directly to the trade server.
アドバイザーはあなたに取引可能であることを知らせるだけでなく、直接自動的に、取引サーバーに
命令を送信しているアカウントで、トレード可能であること知らせます。
---
Like most trading systems, the terminal supports testing strategies on history data with displaying trading in-and-out points in the chart.
たいていの取引システムのように、チャートにトレードのインポイントとアウトポイントを示すことで、ターミナルはヒストリーデータに対するテスト戦略を支援します。
---
Experts are stored in terminal_directory\experts.
エキスパートは terminal_directory\experts に格納されます。
---