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

OzFx - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
3009
평가:
(24)
게시됨:
2017.11.03 12:21
업데이트됨:
2018.02.27 15:25
OzFx.mq5 (43.54 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Author of the idea:  Yuri, mq5 code author: barabashkakvn.

Description of generation of position open signals:

  • Stoh_main_1 - the value of Stochastic Oscillator on bar #1.
  • InpStochasticLevel - input for Stochastic level.
  • AC_1 - the value of Accelerator Oscillator on bar #1.
  • ACPrev_2 - the value of Accelerator Oscillator on bar #2.

BUY signal - when Stochastic Oscillator on bar #1 is greater than the Stochastic level input and Accelerator Oscillator on bar #1 is greater than Accelerator Oscillator on bar #2. In this case, Accelerator Oscillator on bar #1 should be above zero, and Accelerator Oscillator on #2 should be below zero:

if(Stoh_main_1>InpStochasticLevel && AC_1>ACPrev_2 && AC_1>0 && ACPrev_2<0 && count_buys==0)
...

SELL signal - when Stochastic Oscillator on bar #1 is less than the Stochastic level input and Accelerator Oscillator on bar #1 is less than Accelerator Oscillator on bar #2. In this case, Accelerator Oscillator on bar #1 should be below zero, and Accelerator Oscillator on #2 should be above zero:

if(Stoh_main_1<InpStochasticLevel && AC_1<ACPrev_2 && AC_1<0 && ACPrev_2>0 && count_sells==0)
...

An example of a SELL signal:

OzFx signal SELL

When a signal is received, we open five positions with the same lot. The first position has Stop Loss and Take Profit equal to zero. All subsequent positions have equal Stop Loss and each one has an increasing Take Profit with the step of the input Take Profit (in pips).

Testing results on all symbols on PERIOD_D1:

OzFx optimization results

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

Trade in Channel Trade in Channel

The Price Channel trading system.

Mikahekin_System Mikahekin_System

The indicator implements a breakout system using the Mikahekin indicator channel.

Nevalyashka Nevalyashka

We open a new position opposite to the previous one. Inputs only contain Stop loss, Take Profit and the minimum lot.

KoliErBands KoliErBands

Another version of Bollinger Bands using as the middle line the average of the High and Low over a selected period.