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

Advisor Based on RSI and Martingale - MetaTrader 5용 expert

Yury Smagin
Yury Smagin
👋 안녕하세요, 존경하는 트레이더 여러분. 제 이름은 유리입니다. 🙏
🛠️ MQL4 / MQL5 언어로 거래 시스템의 개발 및 연구 서비스를 제공합니다. 📈 프로그래밍 경험이 10년 이상 있으며, FORTRADER.ORG 매거진을 위한 거래 전략 연구를 여러 해 동안 수행했습니다. 📚
🔍 제 지도 하에 MetaTrader 4를 기반으로 한 계정 모니터링을 위한 몇 가지 주요 프로젝트와 실시간 통계 데이터 수집 시스템이 만들어졌습니다. 📊
조회수:
15186
평가:
(6)
게시됨:
업데이트됨:
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동


This advisor utilizes the RSI indicator and performs adaptive search for minimums and maximums to determine optimal entry and exit points in the market. The advisor analyzes the last `BarsForCondition` candles to gauge the current market condition.

Entry and Exit Strategy

Entry: The advisor opens a position based on signals from the RSI indicator.

  •   - Buy: if RSI reaches a minimum over the specified `BarsForCondition` bars.
  •   - Sell: if RSI reaches a maximum over the specified `BarsForCondition` bars. 

Exit: Positions are closed upon reaching TakeProfit or StopLoss levels, which are set in points via the `TakeProfit` and `StopLoss` parameters.

Signal Filtering

  • Time: The advisor trades only within the time interval specified between `StartTime` and `EndTime`.
  • News Avoidance: The advisor avoids trading during time periods specified in the `NewsTimeToAvoid` parameter.
  • Spread: Maximum allowable spread values are set through the `MaxSpread` parameter.

Additional Settings

Martingale: The advisor can employ a martingale strategy to increase the lot size during market reversals. This feature is activated by the `Upheaval` parameter and the `MartingaleMultiplier`.

Automatic Chart Refresher Automatic Chart Refresher

A tool which refreshes the chart automatically and will make active indicators update if something stopped plotting on the chart.

Stochastic code for beginners by William210 Stochastic code for beginners by William210

Stochastic beginner tutorial to learn how to code in MQL5

Wick Ratio Candlesticks Wick Ratio Candlesticks

Wick Ratio Candlesticks are recognized by its upper and lower wick ratio instead of open and close properties.

Hull Moving Average Hull Moving Average

Here is my implementation of a colored Hull Moving Average.