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

Expert_RSI_Stochastic_MA - MetaTrader 4용 expert

조회수:
34642
평가:
(50)
게시됨:
2015.12.11 15:40
업데이트됨:
2016.11.22 07:32
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

This Expert Advisor uses three indicators: MA(150), RSI(3) with the levels of 80 and 20, Stochastic(6, 3, 3) with the levels of 70 and 30. These parameters can be changed and customized. Also, the input parameters of the Expert Advisor need to be changed if the used quotes are not 5-digit.

1. The direction of the deal entry is based on the MA (Moving Average). Only one deal per each side can be opened.

  • If Bid > MA, then consider the buy direction.
  • If Ask < MA, then consider the sell direction.
2. The position entry when the RSI and Stochastic conditions are met.
  • Buy if RSI and Stochastic are below the minimum level, i.e. RSI < 20 and Stochastic < 30.
  • Sell if RSI and Stochastic are above the maximum level, i.e. RSI > 80 and Stochastic > 70.

3. Exit the deal by Stochastic.

Exit in the green in points.

  • (Trailing Stop = 0) If the Trailing Stop in the input parameters is zero, then close the position once the Stochastic reaches the opposite level, if the deal is in green in points.

b) close if the position is BUY and Stochastic > 70 and OpenPrice <= Bid
s) Close if the position is SELL and Stochastic < 30 and OpenPrice >= Ask

  • (Trailing Stop > 0) if the Trailing Stop is set in the input parameters, then once the Stochastic reaches the opposite level, the Stop Loss is trailed every time a new candlestick is opened on a specified distance from the price. It can be seen in the first figure. As a result, closed by trailing stop. It should be noted that a negative closure is also possible here, as Stop Loss does not get into the breakeven immediately at times.

Closure at a loss in points.

  • (allow Loss = 0) If allow Loss in the input parameters is equal to 0, then close the position once the Stochastic reaches the opposite level, if the deal is at a loss in points.

b) Close if the position is BUY and Stochastic > 70 and OpenPrice > Bid
s) Close if the position is SELL and Stochastic < 30 and OpenPrice < Ask

  • (allow Loss > 0) If allow Loss is set in the input parameters, and the position is out of the deal entry zone by Stochastic, and the deal is at a loss by the specified amount or more, then the position is closed.
b) Close if the position is BUY and Stochastic > 30 and OpenPrice - Bid >= allow Loss in points
s) Close if the position is SELL and Stochastic < 70 and Ask - OpenPrice >= allow Loss in points

RSI_Stochastic_MA_01

RSI_Stochastic_MA_03

Important!

The purpose of this Expert Advisor is researching the market and the RSI and the Stochastic indicators. If this EA gets thought through, then a result with good profit may be obtained.

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

Updated Nevalyashka Updated Nevalyashka

The Expert Advisor reverses the orders after closing.

VR Engulfing Pattern VR Engulfing Pattern

A simple indicator, which informs the trader about the appearance of "Bullish Engulfing" or "Bearish Engulfing" candlestick patterns on all timeframes.

iFibonacci iFibonacci

This indicator will Draw Fibonacci Tools such as Retracement, Arc, Fan, Expansion, Time Zones. Based on ZigZag indicator.

Trailing Stop that can do everything Trailing Stop that can do everything

The Expert Advisor moves the Stop Loss in the direction of the price movement using various methods.