거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Experts

BreakOut + MM + Multi-currencies - MetaTrader 4용 expert

조회수:
29339
평가:
(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.