Users
| Registered | Last Seen | Status | Live | Symbol | Profile | Balance | DD% | Entries | Entries/wk | Key | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| Loading… | |||||||||||
Padstal Sites
Total—
Verified—
Pending—
Expired—
| Site URL | Name | Status | Created | Expires | Action | |
|---|---|---|---|---|---|---|
| Loading… | ||||||
Hardware Telemetry
CPU Load
—%
Background alert activates at >90%
Memory (RAM)
—%
— / — MB
Background alert activates at >85%
Storage (Disk)
—%
— GB Free
Network I/O
TOTAL SENT
—
TOTAL RECEIVED
—
Managed MT5 Clients
| Status | Container | Broker | Profile | Balance | Equity | Last Seen | Applied | Actions | |
|---|---|---|---|---|---|---|---|---|---|
| Loading… | |||||||||
Current Published Checksum
99A7FB8BC13E8AE2B0E2EDFFE4AA2A9DA5A7F282935B07C737EC124084CB70CE
This is what users see on verify.html. Update it here and in that page when you rebuild.
EA Release Checklist
1 Compile & copy the .ex5
Compile in MetaEditor, then copy the output to the server static folder:
copy "C:\Users\d1tru\AppData\Roaming\MetaQuotes\Terminal\D0E8209F77C8CF37AD8BF550E51FF075\MQL5\Experts\DT_EURUSD\DT_SAAS_CONNECTOR.ex5" "E:\DeBrakke\CC_N8N\dt-saas\static\DT_SAAS_CONNECTOR.ex5"
2 Compute the new SHA-256 hash
Run this in Command Prompt — copy the 64-char hash from the second output line:
certutil -hashfile "E:\DeBrakke\CC_N8N\dt-saas\static\DT_SAAS_CONNECTOR.ex5" SHA256
Or using PowerShell (outputs just the hash, easier to copy):
(Get-FileHash "E:\DeBrakke\CC_N8N\dt-saas\static\DT_SAAS_CONNECTOR.ex5" -Algorithm SHA256).Hash.ToLower()
3 Update verify.html
File:
E:\DeBrakke\CC_N8N\html\daytrading\verify.html⚠ Two places to update — both must match the new hash:
① Main display hash — find the div with
② Version table — move the current row down (change
id="official-hash" and replace its content.② Version table — move the current row down (change
class="current" and remove tag-current span from old row), then add a new class="current" row at the top with the new version, date, and hash.
Also update the version badge label at the top of the hash card (
version-badge span).✓ After updating verify.html, also update the hash shown above in this panel.
4 Bump DT_CONNECTOR_VERSION in the .mq5
File:
DT_SAAS_CONNECTOR.mq5 — find and update:#define DT_CONNECTOR_VERSION "2.13"
Recompile after bumping the version so the .ex5 and version string stay in sync.
5 Run the test suite
All 65 tests must pass before committing:
cd E:/DeBrakke/CC_N8N/dt-saas && .venv/Scripts/python -m pytest tests/ -v
6 Commit & push
Stage both repos and push — the pipeline will rebuild and deploy automatically:
cd E:/DeBrakke/CC_N8N && git add -f dt-saas/static/DT_SAAS_CONNECTOR.ex5 html/daytrading/verify.html && git commit -m "Connector v2.12 — updated SHA" && git push
cd "c:/Users/d1tru/AppData/Roaming/MetaQuotes/Terminal/D0E8209F77C8CF37AD8BF550E51FF075/MQL5" && git add -f Experts/DT_EURUSD/DT_SAAS_CONNECTOR.ex5 Experts/DT_EURUSD/DT_SAAS_CONNECTOR.mq5 && git commit -m "Connector v2.12" && git push