Gianluca Gangemi
Gianluca Gangemi
  • 信息
经验
0
产品
0
演示版
0
工作
0
信号
0
订阅者
MQL5 / MetaTrader 5 developer Freelance
MQL5 开发者,专注于 MetaTrader 5 自动化:智能交易系统(EA)、风险控制,以及从 MT5 到 Python 的研究流程。

我编写的 EA 具备服务器端止损、保证金水平保护、敞口上限,以及终端或 VPS 重启后的状态恢复——这些正是决定一个系统能否存活的部分,而不仅仅是能否编译通过。

我的主要工作是验证:真实 tick 回测、在第一次运行之前就固定的样本内/样本外划分,以及能够指出结果何时只是噪声的样本外检验。我不会把优化结果的第一行交给您,并且会以书面形式告诉您哪些结论是数据无法支持的。
Gianluca Gangemi
已发布代码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.
11
Gianluca Gangemi
已发布代码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.
24
Gianluca Gangemi
已发布代码TradeHistoryLogger
Exporting your deal history is easy and a dozen scripts already do it..
11
Gianluca Gangemi
已在MQL5.community注册