Schau, wie man Roboter kostenlos herunterladen kann
Finden Sie uns auf Facebook!
und werden Sie Mitglied unserer Fangruppe
Interessantes Skript?
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Hat Ihnen das Skript gefallen?
Bewerten Sie es im Terminal MetaTrader 5
Expert Advisors

BreakOut + MM + Multi-currencies - Experte für den MetaTrader 4

Ansichten:
28862
Rating:
(12)
Veröffentlicht:
2012.07.06 11:17
Aktualisiert:
2016.11.22 07:32
Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum Freelance

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.