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

이 슈퍼트렌드 지표는 평균 실제 범위(ATR) 변동성을 기반으로 시장 추세를 파악하는 데 도움이 됩니다. 무료 오픈 소스 사용을 위해 MIT 라이선스에 따라 출시되었습니다.

핵심 공식

  • 상위 밴드 = 소스 가격 + (승수 × ATR)
  • 하단 밴드 = 소스 가격 - (승수 × ATR)
  • 상승 추세: 슈퍼트렌드 = 하단 밴드(녹색)
  • 하락 추세에서: 슈퍼트렌드 = 상위 밴드(빨간색)

사용법

  • 녹색 선은 상승 추세(잠재적 매수 기회)를 나타냅니다.
  • 빨간색 선은 하락 추세(잠재적 매도 기회)를 나타냅니다.
  • 추세 추종 전략 또는 반전 식별에 사용 가능
  • 트레일링 스톱 메커니즘으로 잘 작동

설치

  1. 파일을 메타트레이더 5 보조지표 폴더(일반적으로 터미널_디렉토리\MQL5\지표\에 위치)에 복사합니다.
  2. 메타트레이더 5를 재시작하거나 내비게이터 패널을 새로고침합니다.
  3. 인디케이터를 아무 차트에나 드래그합니다.

매개변수

  • ATRPeriod: ATR 계산 기간(기본값: 22)
  • 승수: 승수: 민감도 조정을 위한 ATR 승수(기본값: 3.0)
  • 소스 가격: 계산에 사용되는 가격 유형
  • TakeWicksIntoAccount: 계산에 가격 심지를 포함할지 여부

다중 기간 버전은 다음을 참조하세요: https://www.mql5.com/ko/market/product/134432



MetaQuotes Ltd에서 영어로 번역함.
원본 코드: https://www.mql5.com/en/code/57063

2 MA 기준 지표 2 MA 기준 지표

안녕하세요 여러분) 처음으로 코드를 게시합니다!!!

정직한 지그재그 정직한 지그재그

표시기는 표준 지그재그의 상단을 덮어쓴("깨진") 상단을 표시합니다.

Show Positions on Custom Chart (or standard chart) for MT5 Show Positions on Custom Chart (or standard chart) for MT5

This indicator is a utility that shows labelled trade levels on any chart. If you want to replace your native trade levels on a native chart, then turn off "Show trade levels" in your F8 Chart Properties and attach this indicator. If you want to show trade levels on a Custom Chart (where native trade levels cannot be shown), then simply attach this indicator. BaseSymbol - specify the Symbol from which the trade level data will be pulled--handy for unique Custom Symbols. TextBarsBack - specify the number of bars back in history from the current bar where the level labels will be drawn. Note: Although magic number is referenced in the code, it is not presently included in the trade lines. If you're running multiple EA's on the same Symbol, you can edit the code to show magic numbers and then run multiple instances of the indicator on one chart. You can also edit the font sizes and text spacing in the object properties as needed for different display resolutions.

Baseline: iMA + ATR Bands Baseline: iMA + ATR Bands

Combines a Moving Average with ATR-based upper and lower bands to act as a trend filter and volatility channel.