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

BreakOut15 - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
5260
평가:
(19)
게시됨:
2018.07.09 10:29
BreakOut15.mq5 (54.67 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Idea by: Scriptor.

MQL5 code by: Vladimir Karputov.

The EA only operates when a new bar appears on timeframe Working timeframe. Indicators are also taken from timeframe Working timeframe. The EA itself must only be used on timeframe M1!

As soon as a signal appears to open BUY or SELL, a price level will be defined. As soon as the price crosses this price level, a new position will be opened.

  • Signal to open BUY: MA Fast on bar #0 > MA Slow on bar #0;
  • Signal to open SELL: MA Fast on bar #0 < MA Slow on bar #0.

When defining a signal, the working time range is re-checked (if only Start Hour and Stop Hour are not equal to "-1").

Positions are closed by the opposite signal. If parameter Friday Close Hour is not equal to "-1", your positions will be closed forcedly at Friday Close Hour on Friday.


Inputs

  • Working timeframe - timeframe to calculate the indicators;
  • Stop Loss - stop loss ("0" disables the parameter);
  • Take Profit - take profit ("0" disables the parameter);
  • Trailing Stop - trailing ("0" disables the parameter);
  • Trailing Step - trailing step.
  • Start Hour - starting the time range (hours); "-1" disables BOTH parameters: Start Hour and Stop Hour;
  • Stop Hour - ending the time range (hours), "-1" disables BOTH parameters: Start Hour and Stop Hour;
  • Friday Close Hour - closing on Friday (hours), "-1" disables the parameter;
  • BreakOut Level - break-out level;
  • Lots - lot size is constant, parameter Risk having to be equal to "0";
  • Risk - lot size is dynamic, in risk percents per trade, parameter Lots having to be equal to "0";
  • magic number - unique identifier for the EA.

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/17057

JS-MA-Day JS-MA-Day

Working with indicator iMA (Moving Average, MA) with a rigidly defined timeframe: D1.

MACD Stochastic 2 MACD Stochastic 2

iMACD (Moving Average Convergence/Divergence, MACD) with adjustable timeframes and a Stochastic of the current timeframe.

Price Rollback Price Rollback

A trading system that only trades on resverse and from Thursday to Friday only.

EES Hedger EES Hedger

This utility tracks positions opened manually or by another EA for the current symbol and opens an opposite position. Opening the positions is tracked in OnTradeTransaction.