거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
16139
평가:
(32)
게시됨:
2016.02.08 12:29
업데이트됨:
2016.11.22 07:32
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Trading robot based on the theorem "On the presence of memory (aftereffects) in random sequences".

Despite the complexity of the theorem itself, its conclusions are quite trivial. Therefore, the logic of making trading decisions in the robot is primitive: take two previous areas of historical data, from each of them subtract the difference of the prices at the start and at the end, and get two values. These values ​​are compared with each other. And depending on which is greater or less than the other, make the decision about the difference of prices in the area in the future.

The settings of the Expert Advisor are quite simple, as only three of the input parameters are optimizable:

Input Parameters

  1. sl — stop loss and trailing stop step size in points. In the above picture the parameters are set for 5 digits. All values must be reduced by 10 times in the columns Start, Step and Stop.
  2. p — size of the history data areas in bars for the technical analysis.
  3. random — quote randomness. If the quotes are not random, and therefore, the conditions of the theorem are not valid, then the trading signals are reversed.

Notes:

  • The input parameters specified in the code of the robot (by default), are not configured. Therefore, before launching the algo-trading, it is necessary to optimize them for each financial instrument on which the robot will trade.
  • Reoptimization needs to be done once the algo-trading results will become unsatisfactory.
  • It is not recommended to configure the robot to small timeframes. It will lose the money (already checked on the demo and the real cent accounts). The optimum timeframes are not less than H1.

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

Trade when the market is closed Trade when the market is closed

The script is designed to place orders at the time when it is not possible, for example, when the market is closed.

UP bot 1 UP bot 1

A simple Expert Advisor, which works without the use of any indicators. Enters at trend reversal attempt.

Info rectangle drawing Info rectangle drawing

Example of creating info panels.

Shved Supply and Demand Shved Supply and Demand

The indicator showing the supply and demand zones.