Gianluca Gangemi / Profil
- Informations
|
Aucun
expérience
|
0
produits
|
0
versions de démo
|
|
0
offres d’emploi
|
0
signaux
|
0
les abonnés
|
MQL5 / MetaTrader 5 developer
à
Freelance
Developpeur MQL5, je travaille sur l'automatisation de MetaTrader 5 : Expert Advisors, controle du risque et pipelines de recherche de MT5 vers Python.
Je construis des EA avec stops cote serveur, protections sur le niveau de marge, limites d'exposition et restauration de l'etat apres un redemarrage du terminal ou du VPS : les parties qui decident si un systeme survit, pas seulement s'il compile.
Mon travail principal est la validation : backtests sur ticks reels, decoupage in-sample / out-of-sample fixe avant la premiere passe, et controles hors echantillon qui indiquent quand un resultat n'est que du bruit. Je ne livre pas la premiere ligne d'une optimisation, et je vous ecris noir sur blanc ce que les chiffres ne demontrent pas.
Je construis des EA avec stops cote serveur, protections sur le niveau de marge, limites d'exposition et restauration de l'etat apres un redemarrage du terminal ou du VPS : les parties qui decident si un systeme survit, pas seulement s'il compile.
Mon travail principal est la validation : backtests sur ticks reels, decoupage in-sample / out-of-sample fixe avant la premiere passe, et controles hors echantillon qui indiquent quand un resultat n'est que du bruit. Je ne livre pas la premiere ligne d'une optimisation, et je vous ecris noir sur blanc ce que les chiffres ne demontrent pas.
Amis
4
Demandes
Sortant
Gianluca Gangemi
Code publié TrueCostReport
Cost is the one input to a trading system that is knowable exactly, and it is almost always estimated wrongly - always in the direction that flatters the strategy.
This EA measures what one round trip really costs on YOUR broker: the live spread sampled from ticks, the swap for both sides including the triple-charge day, and the commission read from your own deals.
Most spread figures come from the bar's "spread" field, because that is the easy one to reach. It is a per-bar summary, not the quote at any instant. Measured on XAUUSD: 20 points live across 60 readings against a bar-field median of 6. A factor of 3.3.
So a filter set to "skip if spread > 15" never fires - it lets through exactly the moments it exists to block.
Swap is the half most custom simulators do not charge at all. It is asymmetric, one side pays while the other collects, and one weekday counts three times.
Read-only: it never opens, closes or modifies a position.
Gianluca Gangemi
Code publié GridCapitalCalculator
Everyone running a grid asks: is my account big enough? The usual answer - the loss at the last grid level - is the wrong number. What ends the account is the margin level reaching the broker's stop-out, while the chain is still open and still looks recoverable.
This EA computes the real figure, then counts how often a move that large has already happened on the symbol's own M1 history.
Three mistakes it fixes, all erring in the reassuring direction: a chain of N legs floats at step x N(N-1)/2, not step x N (at 10 legs, 45 steps of loss, not 10); open positions also lock up margin while they float; and stop-out is a percentage, not zero - at 50%, losing half the equity is enough.
"You need 86 dollars of room" is an abstraction. "A move that size happened 71 times in 100 days, one every 1.4" is a decision.
Set InpEquity to a size you do not have yet to see what the configuration would really need.
Strictly read-only: it never opens, closes or modifies a position.
Gianluca Gangemi
Code publié CalendarExport
This Expert Advisor is that missing bridge. Attach it to any chart and it periodically writes
the calendar to a CSV file in `MQL5\Files`, where anything outside the terminal can read it.
Gianluca Gangemi
Code publié TradeHistoryLogger
Exporting your deal history is easy and a dozen scripts already do it..
: