Files
mql-trading-bots/BROWSER-ACCESS.md
T
garfield 0894d18db4 WIP: 6+ weeks of uncommitted EA development and preset tuning
Confluence EA (v1.16 → v1.20):
- Per-EA realized P&L tracking via history deals
- Weekly drawdown protection
- Warmup bars, pivot cache, state persistence
- Point-scaled pivot thresholds, ranging ATR factor
- Market filling mode helper per symbol

Grid EA (v3.1 → v4.1):
- Adaptive filters, adaptive entry, spread filter
- Session filter, breakeven, correlation caps, range drift
- Profit protection (stop-after-profit, cycle reports)
- Edge cleanup v5.0 — close wrong-side positions outside grid
- Master one-shot shutdown, grid state persistence

Presets:
- Fix GetOut=Y shutdown bug on 4 grid presets
- Relax ADXMax 18→40, widen RSI 20/80 across grid presets
- Standardize daily drawdown 3%→5%, add weekly 10%
- Increase grid lots 0.01→0.03
- Normalize confluence ATR thresholds per pair
- Add XAGUSD, EURCHF, EURGBP, AUDNZD presets

Docs & DevOps:
- April 23 audit files (preset mismatch, code review, checklist)
- n8n workflow and validation infrastructure updates
- AI agent analyses in notes/

Known issues carried forward:
- Shared drawdown budget contamination (both EAs)
- Confluence ranging-market threshold inversion
- Older grid presets missing v4.1 safety controls
2026-05-12 09:02:25 -04:00

51 lines
1.6 KiB
Markdown
Executable File

# Quick Browser Access to MT5 Reports
## 🌐 Direct File Access (No Export Needed!)
You can view MT5 HTML reports **directly in your browser** using the file:// protocol.
### URL Format
```
file:///home/garfield/mt5-docker/config/.wine/drive_c/users/abc/Desktop/ReportHistory-104125640.html
```
### How to Use
1. Open any web browser (Firefox, Chrome, etc.)
2. Copy the file path above
3. Paste in the address bar and press Enter
4. The report displays immediately!
### Why This Works
- MT5 saves reports to: `C:\users\abc\Desktop\` (in Wine)
- This maps to: `~/mt5-docker/config/.wine/drive_c/users/abc/Desktop/`
- Browsers can read local files via `file://` protocol
- No need to export, copy, or use utilities!
### Report Locations
| Type | Path | Access |
|------|------|--------|
| HTML Report | `~/mt5-docker/config/.wine/drive_c/users/abc/Desktop/ReportHistory-104125640.html` | `file:///home/garfield/.../ReportHistory-104125640.html` |
| Binary Data | `~/mt5-docker/config/.wine/drive_c/Program Files/MetaTrader 5/Bases/...` | Use `parse-deals.py` |
| Live Terminal | MT5 Window | Direct view |
### Important Notes
⚠️ **HTML Report Date**: The ReportHistory file is from **March 15** (3.07% profit)
**Live Data**: Current terminal shows **$6,935 / 6.94%** (March 21)
For live/current data:
- View MT5 terminal directly, OR
- Use `./create-live-report.sh 6935.12 106935.12 45`
---
## Alternative: Export Utilities
If you need to:
- View in terminal (no GUI): `./show-latest-report.sh`
- Export to clean HTML: `./export-to-browser.sh`
- Create from live data: `./create-live-report.sh`
See `UTILS.md` for details.