당사 팬 페이지에 가입하십시오
MQL5에 Rust 스타일의 Result 타입을 도입하는, 크기가 작고 의존성이 적은 라이브러리입니다. 함수는 전역 GetLastError() 상태에 의존하는 대신 단일 값 또는 오류 객체를 반환하므로, 오류가 명확하게 드러나 무시할 수 없습니다. 이 라이브러리에는 ResultValue(값형) 및 Result(포인터로 참조되는 객체), Error 구조체, 조기 반환 매크로(TRY, RETURN_ON_ERROR 등)와 선택적 Then/Match/MapError 콜백이 포함되어 있습니다.
Advanced MQL5 risk management class providing deterministic lot sizing, auto-suffix detection, and cross-currency triangular conversion.
MQTTFive — MQL5용 MQTT 5.0 클라이언트의 완전한 구현체입니다. 기능: • MQTT v5.0 — 모든 패킷 유형, 속성, QoS 0/1/2 • 네이티브 MQL5 소켓 API를 통한 TCP + TLS • 속성(will_delay_interval, payload_format, message_expiry)이 포함된 Will 메시지 • 발신 PUBLISH용 Topic Alias • 흐름 제어(수신 최대값) • 구독 옵션(no_local, retain_as_published, retain_handling) • 바이너리 및 UTF-8 페이로드 • QoS 1/2에 대한 자동 재시도 • DLL 의존성 없음 — 순수 MQL5 Mosquitto 5.0에서 테스트 완료 (15회 테스트, 모두 통과). 문서: https://github.com/chekh/MQTTFive 라이선스: MIT
정적 리테일 리스크 모델을 기관용 변동성 조정 포지션 크기 조정(VAPS) 및 켈리 기준 수식으로 대체하는 객체 지향 MQL5 라이브러리(.mqh)입니다.
ASQ Order Executor — Institutional order execution wrapper for MQL5 EAs ASQ Order Executor provides institutional-grade order execution with automatic retry logic, slippage monitoring, partial fill handling, requote management, and comprehensive execution statistics. Drop it into any EA for production-ready trade execution.
기술적 세부 사항 현재 매수/매도 호가로 즉시 시장가 청산을 위해 TRADE_ACTION_DEAL과 함께 MQL5의 OrderSend를 사용합니다. 슬리피지 허용 오차(10포인트), 적절한 거래량 매칭, 매직넘버 보존 기능이 포함되어 있습니다. 실행 중 지수 이동을 방지하기 위해 포지션을 역순으로 반복합니다.
Institutional-grade forex session detection and analysis library for MetaTrader 5.
Economic calendar trading guard library for MetaTrader 5 with live MQL5 Calendar API integration.
A comprehensive stop-loss and trade management module offering multiple stop-loss methods (Fixed Pips, ATR-based, Swing High/Low, and Percentage) and trailing stop options (Fixed, ATR, Step, and Breakeven). It includes automatic broker stop-level adjustment, risk-reward–based take profit calculation, and visual stop-loss lines on the chart. The code follows a clean, structured architecture with a dedicated `CStopLossManager` class, standardized enums and structures, and fully documented English comments for clarity and maintainability.
Institutional risk analysis library for MetaTrader 5. Zero external dependencies. Pure MQL5 mathematics.
Complete deep learning library in pure MQL5. Build, train and deploy neural networks natively in MetaTrader 5. No DLLs, no Python, no external APIs.
거래 작업 전에 터미널 핑 + 실행 대기 시간을 결합하여 검증하는 클래스를 포함합니다. 임계값을 초과하면 false를 반환합니다.
A professional object-oriented MQL5 library designed for quantitative developers. It provides asynchronous order execution and dynamic slippage control to prevent terminal freezing during high-frequency algorithmic trading.
Include-file class that measures inter-tick latency, filters false alarms via a self-normalising ATR volatility gate, and broadcasts persistent lag alerts to other EAs via GlobalVariable IPC.
Expert Advisor 코드에 액세스할 수 있는 경우 이 라이브러리에서 코드를 추가하여 잔고 및 주식 차트를 저장하고 최적화 기준을 추가로 계산할 수 있습니다.
Automates MQL5 buffer and plot index management. Eliminates manual counting, simplifies Z-order layering, and handles complex plot types (Candles, Color Lines) with a single line of code.
시계열 작업용 함수 라이브러리: iBars, iTime, iOpen, iHigh, iLow, iClose, iVolume, iHighest, iLowest, iBarshift. 모든 함수에 대해 짧은 호출 변형(현재 차트의 기호 및 기간 포함)을 사용할 수 있습니다.
Securing data transfer between client and Server could be a big challenge for you as MQL5 programmer. You may have experience in using built in MQL5 encryption systems like AES.AES can securely encrypt your data but on the other hand is not secure when it comes to sending the AES key through insecure channels. You can only rely on asymmetric encryption systems Like RSA in such cases. you keep the private key at your server side and only share the public key with your clients. Even more you can use hybrid RSA_AES approach to archive more performance
두 벡터 사이의 코사인 거리와 유사도를 계산합니다. 코사인 거리는 1-cosine_similarity이고 코사인 유사도는 두 벡터의 도트 곱에 크기를 곱한 값입니다.