Rejoignez notre page de fans
- Publié par:
- Vues:
- 13
- Publié:
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Cet Expert Advisor est un outil purement diagnostique: il n'ouvre pas de positions de trading, mais analyse et « photographie » l'environnement dans lequel MetaTrader 5 fonctionne.
Une fois lancé sur le graphique, il recueille toutes les spécifications techniques du courtier et les affiche de trois manières différentes :
- Panneau graphique en haut à gauche du graphique (avec des données mises à jour en temps réel).
- Journal du terminal (onglet « Experts » en bas).
- Fichier CSV (enregistré dans le dossier MQL5/Files de votre PC).
Quelles informations extrait-il ?
L'EA lit en temps réel des dizaines de paramètres essentiels, qu'il regroupe par catégories :
- Fuseau horaire (crucial) : calcule l'heure du serveur du courtier, l'heure de votre PC et la différence exacte entre l'heure du serveur et l'heure UTC (Greenwich).
- Coûts de trading : extrait le type de calcul du swap, la valeur du swap long et court en devise réelle (pour 1 lot), ainsi que le spread actuel.
- Règles du symbole : nombre de décimales, taille du contrat, volume minimum/maximum/pas de volume, niveaux de stop (distance minimale pour placer un Stop Loss et un Take Profit) et niveau de gel.
- Exécution et connexion : ping en millisecondes (latence), état de la connexion, modes d'exécution acceptés par le courtier (FOK, IOC) et méthode de calcul de la marge.
- Compte : nom du courtier, serveur, devise du compte, effet de levier et capital propre.


Translated from Italian by MetaQuotes Ltd.
Original code: https://www.mql5.com/it/code/75827
Stochastic Reversal Signal
Un indicateur stochastique sans rafraîchissement qui génère des signaux d'achat et de vente en fonction des franchissements de zones extrêmes, doté d'un filtre de signaux alternés et d'alertes à la clôture des barres.
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.