De Brakke Network
DeBrakke
Operations Hub
Users
Live
Users
Email Registered Last Seen Status Live Symbol Profile Balance DD% Entries Entries/wk Key
Loading…
Padstal Sites
Total
Verified
Pending
Expired
Renewal Due
Site URL Name Email Status Plan Created Expires Renewal Due Action
Loading…
Cold Outreach
Contacts
Contacted
Visited
Clicked
Awaiting
Replied
Interested
Signed Up
Unsub
Email Campaign Lang First Sent Follow-up Clicked Visited by C&V Outcome Signed Up Unsub
Loading…
Custom Domains

When a customer ticks “Get my own domain” and verifies their site, it appears here as Requested. Buy the domain in the Hostinger panel (DeBrakke account), then click Mark Purchased & Provision — the server writes DNS, waits for it to resolve, issues the TLS cert, and flips the site to the real domain (the subdomain 301-redirects). Fresh .co.za domains can take a while to delegate; use Retry if it times out.

Site Requested Domain Status Renewal 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
Bespoke Themes

Owners whose email verified for the guide-designed ("bespoke") theme flow — Circuit on enrol/, Violet on enrol_c/. Each gets 2 generations and 5 drafts per field (look, words), tracked on the verified email itself. Reset zeroes all three counters as a goodwill comp or after a failed run — it never touches verification status.

Email Verified Generations Look Drafts Words Drafts Action
Loading…
Managed MT5 Clients
Email Status Container Broker Profile Balance Equity Last Seen Applied Actions
Loading…
Current Published Checksum
DT_SAAS_CONNECTOR.ex5 v2.37
6A5CCD7DE63AFC592ED7E4B805A9E61645F9C716886132FE09A15617C3B43DA2
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 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