無料でロボットをダウンロードする方法を見る
Facebook上で私たちを見つけてください。
私たちのファンページに参加してください
興味深いスクリプト?
それではリンクにそれを投稿してください。-
他の人にそれを評価してもらいます
記事を気に入りましたか?MetaTrader 5ターミナルの中でそれを試してみてください。
エキスパート

BreakOut + MM + Multi-currencies - MetaTrader 4のためのエキスパート

ビュー:
28868
評価:
(12)
パブリッシュ済み:
2012.07.06 11:17
アップデート済み:
2016.11.22 07:32
このコードに基づいたロボットまたはインジケーターが必要なら、フリーランスでご注文ください フリーランスに移動

Description:

The EA based on break-outs with money management. It is able to trade on multiple pairs.

The bot allows you to select one or more Symbol Pairs. It then computes support and resistence values given the price for each Symbol and places incremental orders. Once the global Profit has been reached, it tries to follow the gain and then takes the pips. The bot also has a smart money management both avoiding to open orders if there is margin available and also trying to protect the balance if the loss is higher of a certain percentage.

The gain is not "galactical" but is assured and secure. The aim of the bot is to protect the capital and get a constant good profit.

For the installation you need to put the two mqh files into the "include" folder.

Recommendations:

Comma separated list of Symbol Pairs: EURUSD,USDCHF (must be equal to the string of your account provider).

extern string Symbols = "EURUSD";
extern double xFactor = 1.5;
extern string TimeSet = "07:32"; // Balance percentage order balance and Lot value
extern double RiskPercent = 10;  // Percentage of the risk for each Lot
extern double RiskPerTrade = 2;  // Fixed value if RiskPerTrade == 0
extern double Lots = 0.01;
extern double StopLoss = 0;
extern double MinPipsProfit = 30;
extern double TrailingUnlockStop = 35;
extern int Slippage = 3; 
extern bool AllOrders = false;  // Wheather or not manage ALL opened orders (manual too)
extern bool AllSymbols = true;
extern bool LogToFile = false;  // Log to console or to a file

MACD MA Price MACD MA Price

MACD indicator with possibility to establish mode of moving average and applied price.

PSAR trader PSAR trader

Trades using parabolic sar signals

Running Median Indicator for MT4 Running Median Indicator for MT4

This indicator computes the median of odd span. It is often considered as one of the most robust smoothing operator in the presence of outlier values, and particularly more robust than the mean.

QEMA QEMA

QEMA is the Quadruple Exponential Moving Average.