당사 팬 페이지에 가입하십시오
- 게시자:
- 조회수:
- 7
- 게시됨:
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
이 Expert Advisor는 순수한 진단 도구입니다. 거래 포지션을 개설하지는 않지만, MetaTrader 5가 실행되고 있는 환경을 분석하고 ‘스냅샷’을 찍어줍니다.
차트에 실행되면 브로커의 모든 기술적 사양을 수집하여 다음 세 가지 방식으로 표시합니다:
- 차트 왼쪽 상단의차트 패널 (데이터는 실시간으로 업데이트됨).
- 터미널 로그 (하단의 “전문가” 탭).
- CSV 파일 (사용자 PC의 MQL5/Files 폴더에 저장됨).
어떤 정보를 추출하나요?
EA는 수십 가지의 핵심 매개변수를 실시간으로 읽어와 다음과 같은 범주로 분류합니다:
- 시간대 (매우 중요): 브로커 서버 시간, 사용자의 PC 시간, 서버 시간과 UTC(그리니치) 시간 간의 정확한 시차를 계산합니다.
- 거래 비용: 스왑 계산 방식, 실제 통화 단위의 롱 및 숏 스왑 값(1 롯 기준), 그리고 현재 스프레드를 추출합니다.
- 종목 규칙: 소수점 자릿수(Digits), 계약 규모, 최소/최대/단위 거래량, 스톱 레벨(스톱 로스 및 테이크 프로핏 설정 시 최소 거리), 프리즈 레벨.
- 주문 실행 및 연결: 밀리초 단위의 핑(지연 시간), 연결 상태, 브로커가 허용하는 주문 체결 방식(FOK, IOC) 및 마진 계산 방식.
- 계좌: 브로커 이름, 서버, 계좌 통화, 레버리지 및 순자산.


Translated from Italian by MetaQuotes Ltd.
Original code: https://www.mql5.com/it/code/75827
Stochastic Reversal Signal
극단 구간의 교차에 기반해 매수 및 매도 신호를 생성하는, 리페인팅이 발생하지 않는 확률론 기반 지표로, 교대 신호 필터와 봉 종가 알림 기능을 갖추고 있습니다.
Contract Sizer: ladder, floor and a breaker that survives a deposit
Three position-sizing protections that do different things; confusing them is why so many accounts get wiped out: - ladder: one contract per X of balance, always applied as a CAP, even with manual lot sizing; - floor: below the minimum capital it does not trade; a new deposit is needed; - breaker: stops at X% below the peak, at any account size, and does not rearm by itself. What this library solves and almost none does: a deposit is not profit, and a withdrawal is not a loss. The breaker measures the drop against the balance peak. Untreated, a deposit made DURING a drawdown lifts balance and peak together, and the protection stops seeing the drop exactly when it would help. Here deposits and withdrawals shift the peak by the same amount. The peak is persisted to a file: a breaker that forgets the peak on a terminal restart is not a breaker. The demo simulates a deposit at the bottom of a drawdown. Run it with the deposit on and off and compare the "drop" column.
RiskPilot Pro — Drag-to-Trade Risk Panel with Break-Even, Trailing and a Daily Loss Guard
Drag your stop loss where you actually want it, hit Buy or Sell, and the lot size is already correct — no calculator, no spreadsheet. Handles break-even, trailing, and shuts trading down for the day if you hit your loss limit.
SMC Liquidity Sweep Scalper (Order Block EA with Live Win-Rate Tracking)
A liquidity-sweep / order-block scalper with ATR-based sizing and a higher-timeframe trend filter. Every trade is tagged on the chart with the live historical win rate of that setup type — a running scorecard, not just boxes.