Files
conversation-history/2026-03-21-mql-trading-report-analysis.md

164 lines
4.4 KiB
Markdown
Executable File

# MT5 Trading Report Analysis - Account 104125640
**Date**: 2026-03-21
**Account**: 104125640 (MetaQuotes-Demo)
**EA**: MultiSignal Confluence EA
---
## 📊 Performance Summary (March 15, 2026 Report)
| Metric | Value |
|--------|-------|
| **Starting Balance** | $100,000.00 |
| **Current Balance** (March 15) | $103,065.68 |
| **Net Profit** | $3,065.68 |
| **Return** | **3.07%** |
| **Win Rate** | **86.67%** (13/15) |
| **Profit Factor** | **2.52** ✅ |
| **Max Drawdown** | $1,029.06 (1.03%) |
## 📈 Trade Statistics
| Statistic | Value |
|-----------|-------|
| Total Trades | 15 |
| Long Trades | 15 |
| Short Trades | 0 |
| Winning Trades | 13 |
| Losing Trades | 2 |
| Largest Win | $978.82 |
| Largest Loss | -$1,029.06 |
| Expected Payoff | $204.38 per trade |
## 💰 Financial Breakdown
```
Gross Profit: $5,081.62
Gross Loss: -$2,015.94
-----------
Net Profit: $3,065.68
```
## 🎯 Strategy Details
- **EA**: MultiSignal Confluence EA
- **Primary Pair**: USDJPY
- **Timeframe**: H1
- **Signal Type**: Confluence BUY (0.70)
- **Position Type**: Long positions
## 📈 Updated Performance (March 21 - Current)
From live screenshot (2026-03-21 18:58):
- **Balance**: **$106,935.12**
- **Profit**: **$6,935.12**
- **Return**: **~6.9%**
**Progress since March 15**: +$3,869.44 additional profit
## ✅ Performance Highlights
- **86.67% Win Rate** - Excellent!
- **Profit Factor 2.52** - Very Good (above 2.0 threshold)
- **Only 2 losing trades** out of 15
- **Max drawdown 1.03%** - Well controlled risk
- **Consistent profits** over 6-day period
## 📝 Report Extraction Notes
### Problem
MT5 crashed when trying to generate HTML report because:
- Wine/VM environment has no browser
- MT5 tries to open report in default browser
- Browser launch fails → VM crash
### Solution Files Created
1. **Text Report Viewer**: `~/mt5-docker/view-report.sh`
- Extracts key data from HTML without browser
2. **Python Parser**: `~/mt5-docker/parse-deals.py`
- Parses binary deal files directly
- Exports to readable format
3. **Safe Export Guide**: `~/mt5-docker/export-history.sh`
- Instructions for safe report export
### Report Location
- **File**: `ReportHistory-104125640.html`
- **Path**: `~/mt5-docker/config/.wine/drive_c/users/abc/Desktop/`
- **Format**: UTF-16 LE encoded HTML
- **Size**: 83,456 bytes
## 🔍 How to View Future Reports (Without Crashing)
```bash
# Method 1: Use the viewer script
cd ~/mt5-docker
./view-report.sh /path/to/report.htm
# Method 2: Use Python parser
python3 ~/mt5-docker/parse-deals.py
# Method 3: Export via History tab
# In MT5: History → Right-click → Save as Report
# Save to: C:\users\abc\AppData\Roaming\MetaQuotes\Terminal\
# Then read from host: ~/mt5-docker/config/.wine/...
```
## 📊 Comparison: Binary Data vs Report
| Source | Net Profit | Trades | Period |
|--------|-----------|--------|--------|
| Binary deals_2026.03.dat | ~$15,000+ | Many | Full month |
| ReportHistory-104125640.html | $3,065.68 | 15 | To March 15 |
| Live Screenshot (March 21) | $6,935.12 | N/A | Current |
**Note**: The binary file contains more trades than the HTML report. The report appears to be a subset or different date range.
## 🎯 Conclusion
**Account 104125640 is PROFITABLE and performing well:**
- ✅ 3-7% return in ~2 weeks
- ✅ 86% win rate
- ✅ 2.52 profit factor
- ✅ Low drawdown (1%)
- ✅ Consistent confluence signals
The MultiSignal Confluence EA is successfully trading on USDJPY H1 with strong risk management.
---
*Report extracted from: ReportHistory-104125640.html*
*Screenshot date: 2026-03-21 18:58:57*
*Analysis by: Kimi Code CLI*
---
## 🛠️ New Utility Created
### show-latest-report.sh
Created a utility that automatically finds and displays the latest MT5 trading report without needing a browser.
**Location:** `~/mql-trading-bots/show-latest-report.sh`
**Usage:**
```bash
cd ~/mql-trading-bots
./show-latest-report.sh # Display latest report
./show-latest-report.sh --save # Save to text file
```
**Features:**
- Automatically finds the most recent `ReportHistory-*.html` file
- Displays formatted summary with colors
- Shows account info, P&L, trade stats, and performance assessment
- No browser needed (prevents VM crash)
**Also Created:** `parse-report.py` - Python parser for MT5 HTML reports
**Repository:** Both files pushed to `mql-trading-bots` repo on Gitea