590 lines
23 KiB
Python
590 lines
23 KiB
Python
"""
|
|
mt5_parser.py
|
|
=============
|
|
Parsers for three MT5 trade report formats:
|
|
1. MT5 Real Account HTM export
|
|
2. MT5 Backtest HTM report
|
|
3. Quant Analyzer CSV export
|
|
|
|
All normalise to a common DataFrame schema.
|
|
"""
|
|
|
|
# from curses import raw - not used, and causes issues on Windows if imported at top level
|
|
|
|
import pandas as pd
|
|
import re
|
|
|
|
|
|
# ── Common schema ─────────────────────────────────────────────────────────────
|
|
# open_time, close_time, symbol, type, volume, open_price, close_price,
|
|
# sl, tp, commission, swap, profit, net_profit, comment, strategy,
|
|
# duration_min, win, day_of_week, hour, source
|
|
|
|
def _decode(file_bytes):
|
|
for enc in ['utf-16', 'utf-8', 'latin-1', 'cp1252']:
|
|
try:
|
|
return file_bytes.decode(enc)
|
|
except:
|
|
continue
|
|
return ''
|
|
|
|
|
|
def _strip(s):
|
|
return re.sub(r'<[^>]+>', '', s).strip().replace('\xa0', '').replace('\u00a0', '')
|
|
|
|
|
|
def _to_float(s):
|
|
try:
|
|
return float(str(s).replace(' ', '').replace(',', ''))
|
|
except:
|
|
return None
|
|
|
|
|
|
def _to_dt(s, fmt='%Y.%m.%d %H:%M:%S'):
|
|
return pd.to_datetime(s, format=fmt, errors='coerce')
|
|
|
|
|
|
def _strategy_from_filename(filename):
|
|
"""
|
|
Derive a clean strategy name from a filename.
|
|
Strips leading date prefix (DD_MM_YYYY_ or YYYY_MM_DD_) and file extension.
|
|
E.g. '22_03_2026GoldPhantomModerate.csv' -> 'GoldPhantomModerate'
|
|
'GoldPhantom_XAUUSD_Daily_OHLC_A.htm' -> 'GoldPhantom'
|
|
"""
|
|
import os
|
|
stem = os.path.splitext(os.path.basename(filename))[0]
|
|
# Strip leading date prefix like 22_03_2026 or 2026_03_22 (with optional separator)
|
|
stem = re.sub(r'^\d{2}_\d{2}_\d{4}', '', stem)
|
|
stem = re.sub(r'^\d{4}_\d{2}_\d{2}', '', stem)
|
|
# Strip leading underscores/hyphens left after date removal
|
|
stem = stem.lstrip('_-')
|
|
# If underscore-delimited, take only parts that look like a name (not symbol/period/model)
|
|
parts = stem.split('_')
|
|
clean = []
|
|
for p in parts:
|
|
# Stop at parts that look like: instrument suffix (.a), timeframe (H1/M15/Daily),
|
|
# model label (OHLC/EVERYTICK), or single uppercase letter (instance A/B/C)
|
|
if re.match(r'^(H\d+|M\d+|Daily|Weekly|Monthly|OHLC|EVERYTICK|CTRLPTS|[A-Z])$', p):
|
|
break
|
|
if re.match(r'^[A-Z]{3,8}(\.a)?$', p):
|
|
break
|
|
clean.append(p)
|
|
result = '_'.join(clean) if clean else stem
|
|
return result if result else stem
|
|
|
|
|
|
def _enrich(df, fallback_strategy=None):
|
|
"""Add derived columns common to all formats."""
|
|
df['open_time'] = pd.to_datetime(df['open_time'], errors='coerce')
|
|
df['close_time'] = pd.to_datetime(df['close_time'], errors='coerce')
|
|
df['open_date'] = df['open_time'].dt.date
|
|
df['close_date'] = df['close_time'].dt.date
|
|
df['day_of_week'] = df['open_time'].dt.day_name()
|
|
df['hour'] = df['open_time'].dt.hour
|
|
df['duration_min'] = ((df['close_time'] - df['open_time'])
|
|
.dt.total_seconds() / 60).round(1)
|
|
for col in ['volume', 'open_price', 'close_price', 'sl', 'tp',
|
|
'commission', 'swap', 'profit']:
|
|
if col in df.columns:
|
|
df[col] = pd.to_numeric(
|
|
df[col].astype(str).str.replace(' ', '').str.replace(',', ''),
|
|
errors='coerce'
|
|
)
|
|
if 'net_profit' not in df.columns:
|
|
df['net_profit'] = (
|
|
df.get('profit', 0).fillna(0) +
|
|
df.get('commission', 0).fillna(0) +
|
|
df.get('swap', 0).fillna(0)
|
|
)
|
|
df['win'] = df['net_profit'] > 0
|
|
df['type'] = df['type'].str.lower().str.strip()
|
|
if 'comment' not in df.columns:
|
|
df['comment'] = ''
|
|
df['strategy'] = df['comment'].apply(extract_strategy)
|
|
# If every trade resolved to 'Manual' and a fallback name was supplied
|
|
# (e.g. derived from the filename), use it instead.
|
|
if fallback_strategy and (df['strategy'] == 'Manual').all():
|
|
df['strategy'] = fallback_strategy
|
|
# Normalise symbol — strip .a suffix for display matching
|
|
df['symbol_base'] = df['symbol'].str.replace(r'\.[a-z]+$', '', regex=True).str.upper()
|
|
return df
|
|
|
|
|
|
# ── Format 1: Real Account HTM ────────────────────────────────────────────────
|
|
|
|
def parse_mt5_report(file_bytes, fallback_strategy=None):
|
|
"""Parse MT5 real account HTML trade history report."""
|
|
text = _decode(file_bytes)
|
|
rows = re.findall(r'<tr[^>]*>(.*?)</tr>', text, re.DOTALL)
|
|
trades = []
|
|
in_trades = False
|
|
|
|
COLS = ['open_time', 'position', 'symbol', 'type', 'comment', 'volume',
|
|
'open_price', 'sl', 'tp', 'close_time', 'close_price',
|
|
'commission', 'swap', 'profit']
|
|
|
|
for row in rows:
|
|
cells = re.findall(r'<t[dh][^>]*>(.*?)</t[dh]>', row, re.DOTALL)
|
|
cells = [re.sub(r'\s+', ' ', _strip(c)).strip() for c in cells]
|
|
|
|
if cells and cells[0] == 'Time' and len(cells) >= 13:
|
|
in_trades = True
|
|
continue
|
|
if not in_trades:
|
|
continue
|
|
if cells and any(kw in cells[0] for kw in
|
|
['Total Net Profit', 'Results', 'Balance', 'Equity']):
|
|
break
|
|
|
|
if len(cells) >= 14 and re.match(r'\d{4}\.\d{2}\.\d{2}', cells[0]):
|
|
last = [c.lower() for c in cells if c]
|
|
if any(s in last for s in ['placed', 'cancelled', 'expired', 'partial']):
|
|
continue
|
|
if len(cells) < 10 or not re.match(r'\d{4}\.\d{2}\.\d{2}', cells[9]):
|
|
continue
|
|
if '/' in str(cells[5]):
|
|
continue
|
|
try:
|
|
trade = dict(zip(COLS, cells[:14]))
|
|
trades.append(trade)
|
|
except:
|
|
continue
|
|
|
|
if not trades:
|
|
return None
|
|
|
|
df = pd.DataFrame(trades)
|
|
df['source'] = 'real'
|
|
return _enrich(df, fallback_strategy=fallback_strategy)
|
|
|
|
|
|
# ── Format 2: Backtest HTM ────────────────────────────────────────────────────
|
|
|
|
def parse_backtest_report(file_bytes, fallback_strategy=None):
|
|
"""
|
|
Parse MT5 Strategy Tester HTML report.
|
|
Pairs in/out deals into complete trades.
|
|
"""
|
|
text = _decode(file_bytes)
|
|
tables = re.findall(r'<table[^>]*>(.*?)</table>', text, re.DOTALL)
|
|
if len(tables) < 2:
|
|
return None
|
|
|
|
rows = re.findall(r'<tr[^>]*>(.*?)</tr>', tables[1], re.DOTALL)
|
|
|
|
# Find deals section
|
|
in_deals = False
|
|
deal_rows = []
|
|
for row in rows:
|
|
cells = [re.sub(r'\s+', ' ', _strip(c)).strip()
|
|
for c in re.findall(r'<t[dh][^>]*>(.*?)</t[dh]>', row, re.DOTALL)]
|
|
cells = [c for c in cells if c]
|
|
if not cells:
|
|
continue
|
|
if 'Deals' in cells:
|
|
in_deals = True
|
|
continue
|
|
if in_deals and cells[0] == 'Time' and 'Deal' in cells:
|
|
continue # header row
|
|
if in_deals and len(cells) >= 7 and re.match(r'\d{4}\.\d{2}\.\d{2}', cells[0]):
|
|
deal_rows.append(cells)
|
|
|
|
if not deal_rows:
|
|
return None
|
|
|
|
# Columns: Time, Deal, Symbol, Type, Direction, Volume, Price, Order,
|
|
# Commission, Swap, Profit, Balance, Comment
|
|
DEAL_COLS = ['time', 'deal', 'symbol', 'type', 'direction', 'volume',
|
|
'price', 'order', 'commission', 'swap', 'profit', 'balance', 'comment']
|
|
|
|
deals = []
|
|
for row in deal_rows:
|
|
d = dict(zip(DEAL_COLS, row[:len(DEAL_COLS)]))
|
|
deals.append(d)
|
|
|
|
df_deals = pd.DataFrame(deals)
|
|
df_deals = df_deals[df_deals['direction'].isin(['in', 'out'])]
|
|
|
|
# FIFO stack matching by symbol — handles concurrent positions on same symbol.
|
|
# Skip daily commission/balance rows (no symbol).
|
|
# Each 'in' is pushed to the stack; each 'out' pops the oldest open entry (FIFO).
|
|
open_stack = {} # symbol -> list of open 'in' deals (FIFO)
|
|
trades = []
|
|
|
|
for _, deal in df_deals.iterrows():
|
|
sym = deal.get('symbol', '').strip()
|
|
dirn = deal.get('direction', '').strip()
|
|
|
|
# Skip commission/balance rows
|
|
if not sym:
|
|
continue
|
|
|
|
if dirn == 'in':
|
|
open_stack.setdefault(sym, []).append(deal)
|
|
elif dirn == 'out':
|
|
stack = open_stack.get(sym, [])
|
|
if stack:
|
|
entry = stack.pop(0) # FIFO — oldest open first
|
|
trades.append({
|
|
'open_time' : entry['time'],
|
|
'close_time' : deal['time'],
|
|
'symbol' : sym,
|
|
'type' : entry.get('type', ''),
|
|
'volume' : entry['volume'],
|
|
'open_price' : entry['price'],
|
|
'close_price': deal['price'],
|
|
'sl' : None,
|
|
'tp' : None,
|
|
'commission' : _to_float(entry.get('commission', 0)),
|
|
'swap' : _to_float(deal.get('swap', 0)),
|
|
'profit' : _to_float(deal.get('profit', 0)),
|
|
'comment' : entry.get('comment', '') or deal.get('comment', ''),
|
|
'position' : entry.get('deal', ''),
|
|
})
|
|
|
|
if not trades:
|
|
return None
|
|
|
|
df = pd.DataFrame(trades)
|
|
df['source'] = 'backtest'
|
|
return _enrich(df, fallback_strategy=fallback_strategy)
|
|
|
|
|
|
# ── Format 3: Quant Analyzer CSV ─────────────────────────────────────────────
|
|
|
|
def parse_quant_csv(file_bytes, fallback_strategy=None):
|
|
"""Parse Quant Analyzer listOfTrades CSV export."""
|
|
try:
|
|
text = file_bytes.decode('utf-8-sig')
|
|
except:
|
|
text = file_bytes.decode('latin-1')
|
|
|
|
from io import StringIO
|
|
df_raw = pd.read_csv(StringIO(text))
|
|
|
|
# Normalise column names
|
|
df_raw.columns = [c.strip().lower().replace(' ', '_').replace('/', '_').replace('(', '').replace(')', '') for c in df_raw.columns]
|
|
|
|
col_map = {
|
|
'open_time' : ['open_time_$', 'open_time_$_', 'open_time', 'opentime'],
|
|
'close_time' : ['close_time_$', 'close_time_$_', 'close_time', 'closetime'],
|
|
'symbol' : ['symbol_$', 'symbol_$_', 'symbol'],
|
|
'type' : ['type_$', 'type_$_', 'type', 'direction'],
|
|
'volume' : ['size_$', 'size_$_', 'size', 'volume', 'lots'],
|
|
'open_price' : ['open_price_$', 'open_price_$_', 'open_price', 'openprice'],
|
|
'close_price' : ['close_price_$', 'close_price_$_', 'close_price', 'closeprice'],
|
|
'profit' : ['profit_loss_$', 'profit_loss_$_', 'profit_loss', 'profit', 'net_profit'],
|
|
'commission' : ['comm_swap_$', 'comm_swap_$_', 'commission', 'comm'],
|
|
'swap' : ['swap_$', 'swap'],
|
|
'sl' : ['stop_loss_$', 'stop_loss_$_', 'stop_loss', 'sl'],
|
|
'comment' : ['comment_$', 'comment_$_', 'comment'],
|
|
'strategy' : ['strategy_name_$', 'strategy_name_$_', 'strategy_name', 'strategy'],
|
|
'mae' : ['mae_$', 'mae_$_', 'mae'],
|
|
'mfe' : ['mfe_$', 'mfe_$_', 'mfe'],
|
|
'drawdown' : ['drawdown_$', 'drawdown_$_', 'drawdown'],
|
|
}
|
|
|
|
result = {}
|
|
for target, candidates in col_map.items():
|
|
for cand in candidates:
|
|
if cand in df_raw.columns:
|
|
result[target] = df_raw[cand]
|
|
break
|
|
|
|
df = pd.DataFrame(result)
|
|
|
|
# Parse datetimes — try QA format first (DD.MM.YYYY), then ISO (YYYY-MM-DD)
|
|
for col in ['open_time', 'close_time']:
|
|
if col in df.columns:
|
|
parsed = pd.to_datetime(df[col], format='%d.%m.%Y %H:%M:%S', errors='coerce')
|
|
if parsed.isna().all():
|
|
parsed = pd.to_datetime(df[col], format='%Y-%m-%d %H:%M:%S', errors='coerce')
|
|
if parsed.isna().all():
|
|
parsed = pd.to_datetime(df[col], errors='coerce')
|
|
df[col] = parsed
|
|
|
|
# QA comm_swap is combined — split evenly as approximation if no separate swap
|
|
if 'commission' in df.columns and 'swap' not in df.columns:
|
|
df['swap'] = 0.0
|
|
|
|
if 'sl' not in df.columns:
|
|
df['sl'] = None
|
|
if 'tp' not in df.columns:
|
|
df['tp'] = None
|
|
if 'position' not in df.columns:
|
|
df['position'] = df.get('ticket', range(len(df)))
|
|
|
|
df['source'] = 'quant_csv'
|
|
|
|
# Add extra QA-specific columns if present
|
|
for extra in ['mae', 'mfe', 'drawdown']:
|
|
if extra in df_raw.columns:
|
|
df[extra] = pd.to_numeric(df_raw[extra], errors='coerce')
|
|
|
|
return _enrich(df, fallback_strategy=fallback_strategy)
|
|
|
|
|
|
|
|
|
|
def parse_open_positions(file_bytes) -> 'pd.DataFrame | None':
|
|
"""Parse the Open Positions section from MT5 account history HTML."""
|
|
import pandas as pd
|
|
text = _decode(file_bytes)
|
|
rows = re.findall(r'<tr[^>]*>(.*?)</tr>', text, re.DOTALL)
|
|
|
|
in_open = False
|
|
in_orders = False
|
|
positions = []
|
|
|
|
for row in rows:
|
|
cells = re.findall(r'<t[dh][^>]*>(.*?)</t[dh]>', row, re.DOTALL)
|
|
cells = [re.sub(r'\s+', ' ', _strip(c)).strip() for c in cells]
|
|
cells = [c for c in cells if c]
|
|
|
|
if not cells:
|
|
continue
|
|
|
|
flat = ' '.join(cells)
|
|
if 'Open Positions' in flat:
|
|
in_open = True
|
|
in_orders = False
|
|
continue
|
|
if 'Working Orders' in flat or 'Pending Orders' in flat:
|
|
in_orders = True
|
|
in_open = False
|
|
continue
|
|
if 'Results' in flat or 'Closed Positions' in flat or 'Balance:' in flat:
|
|
if in_open or in_orders:
|
|
break
|
|
|
|
# Header row
|
|
if cells[0] in ('Time', 'Open Time'):
|
|
continue
|
|
|
|
# Open position row: Time, Position, Symbol, Type, Volume, Price, SL, TP
|
|
# followed sometimes by a profit row (fewer cols)
|
|
if in_open and len(cells) >= 6 and re.match(r'\d{4}\.', cells[0]):
|
|
try:
|
|
vol_str = cells[4].split('/')[0].strip()
|
|
positions.append({
|
|
'open_time' : _to_dt(cells[0]),
|
|
'position' : cells[1],
|
|
'symbol' : cells[2],
|
|
'type' : cells[3].lower(),
|
|
'volume' : _to_float(vol_str),
|
|
'open_price' : _to_float(cells[5]),
|
|
'sl' : _to_float(cells[6]) if len(cells) > 6 else None,
|
|
'tp' : _to_float(cells[7]) if len(cells) > 7 else None,
|
|
'market_price' : _to_float(cells[8]) if len(cells) > 8 else None,
|
|
'swap' : _to_float(cells[9]) if len(cells) > 9 else None,
|
|
'profit' : _to_float(cells[10]) if len(cells) > 10 else None,
|
|
'comment' : cells[11] if len(cells) > 11 else '',
|
|
'status' : 'open',
|
|
})
|
|
except Exception:
|
|
pass
|
|
|
|
if not positions:
|
|
return None
|
|
|
|
df = pd.DataFrame(positions)
|
|
df['symbol_base'] = df['symbol'].str.replace(r'\.[a-z]+$', '', regex=True).str.upper()
|
|
return df
|
|
|
|
|
|
# ── Format 4: Trade History Report (Deals format) ────────────────────────────
|
|
|
|
def parse_mt5_deals_report(file_bytes, fallback_strategy=None):
|
|
"""Parse MT5 Trade History Report (Deals format — newer MT5 prop/live accounts).
|
|
This format has separate Deals section with individual entry/exit rows,
|
|
rather than the older Positions format with entry+exit on the same row.
|
|
"""
|
|
text = _decode(file_bytes)
|
|
|
|
# Extract only the Deals section (stop at Working Orders)
|
|
deals_start = text.find('<b>Deals</b>')
|
|
working_start = text.find('<b>Working Orders</b>')
|
|
if deals_start == -1:
|
|
return None
|
|
|
|
section = text[deals_start:working_start] if working_start != -1 else text[deals_start:]
|
|
rows = re.findall(r'<tr[^>]*>(.*?)</tr>', section, re.DOTALL)
|
|
|
|
deals = []
|
|
for row in rows:
|
|
cells = re.findall(r'<t[dh][^>]*>(.*?)</t[dh]>', row, re.DOTALL)
|
|
cells = [re.sub(r'\s+', ' ', _strip(c)).strip() for c in cells]
|
|
# Remove hidden Cost cell (rendered but display:none — _strip removes tags
|
|
# but the empty cell is still present as empty string)
|
|
cells = [c for c in cells if c != '']
|
|
|
|
# Need at least: time, deal, symbol, type, direction, volume, price,
|
|
# order, commission, fee, swap, profit, balance, comment
|
|
if len(cells) < 12:
|
|
continue
|
|
if not re.match(r'\d{4}\.\d{2}\.\d{2}', cells[0]):
|
|
continue
|
|
|
|
deal_type = cells[3].lower()
|
|
if deal_type in ('balance', 'credit'):
|
|
continue # skip deposit/withdrawal rows
|
|
|
|
deals.append({
|
|
'open_time' : cells[0],
|
|
'position' : cells[1], # deal ID
|
|
'symbol' : cells[2],
|
|
'type' : cells[3],
|
|
'direction' : cells[4],
|
|
'volume' : cells[5],
|
|
'open_price' : cells[6],
|
|
'close_time' : cells[0], # deals don't have separate close time
|
|
'close_price': cells[6],
|
|
'commission' : cells[8] if len(cells) > 8 else '0',
|
|
'swap' : cells[10] if len(cells) > 10 else '0',
|
|
'profit' : cells[11] if len(cells) > 11 else '0',
|
|
'comment' : cells[13] if len(cells) > 13 else '',
|
|
'sl' : '',
|
|
'tp' : '',
|
|
})
|
|
|
|
if not deals:
|
|
# Valid case — new account with no closed trades yet
|
|
return pd.DataFrame()
|
|
|
|
df = pd.DataFrame(deals)
|
|
df['source'] = 'real'
|
|
return _enrich(df, fallback_strategy=fallback_strategy)
|
|
|
|
|
|
# ── Auto-detect format ────────────────────────────────────────────────────────
|
|
|
|
def detect_and_parse(file_bytes, filename=''):
|
|
"""
|
|
Auto-detect file format and parse.
|
|
Returns (df, format_name) or (None, None).
|
|
"""
|
|
fname = filename.lower()
|
|
fallback = _strategy_from_filename(filename) if filename else None
|
|
|
|
if fname.endswith('.csv'):
|
|
df = parse_quant_csv(file_bytes, fallback_strategy=fallback)
|
|
return df, 'Quant Analyzer CSV'
|
|
|
|
# HTML/HTM — decode with UTF-16 support first
|
|
text = None
|
|
for enc in ['utf-16', 'utf-8', 'latin-1']:
|
|
try:
|
|
text = file_bytes.decode(enc)
|
|
break
|
|
except Exception:
|
|
continue
|
|
|
|
if text is None:
|
|
return None, None
|
|
|
|
if 'Strategy Tester Report' in text or 'strategy tester' in text.lower():
|
|
df = parse_backtest_report(file_bytes, fallback_strategy=fallback)
|
|
return df, 'MT5 Backtest Report'
|
|
|
|
# Prefer Deals format if present (newer MT5 Trade History Reports)
|
|
if '<b>Deals</b>' in text:
|
|
df = parse_mt5_deals_report(file_bytes, fallback_strategy=fallback)
|
|
return df, 'MT5 Account History'
|
|
|
|
df = parse_mt5_report(file_bytes, fallback_strategy=fallback)
|
|
return df, 'MT5 Account History'
|
|
|
|
|
|
# ── Stats ─────────────────────────────────────────────────────────────────────
|
|
|
|
def calc_stats(df, deposit=0.0):
|
|
if df is None or len(df) == 0:
|
|
return {}
|
|
|
|
total = len(df)
|
|
wins = df[df['win'] == True]
|
|
losses = df[df['win'] == False]
|
|
win_rate = round(len(wins) / total * 100, 1) if total > 0 else 0
|
|
gross_profit = round(wins['net_profit'].sum(), 2)
|
|
gross_loss = round(losses['net_profit'].sum(), 2)
|
|
net_profit = round(df['net_profit'].sum(), 2)
|
|
pf = round(abs(gross_profit / gross_loss), 2) if gross_loss != 0 else float('inf')
|
|
avg_win = round(wins['net_profit'].mean(), 2) if len(wins) > 0 else 0
|
|
avg_loss = round(losses['net_profit'].mean(), 2) if len(losses) > 0 else 0
|
|
rr = round(abs(avg_win / avg_loss), 2) if avg_loss != 0 else float('inf')
|
|
expectancy = round((win_rate/100 * avg_win) + ((1 - win_rate/100) * avg_loss), 2)
|
|
|
|
results = df.sort_values('close_time')['win'].tolist()
|
|
max_cw = _max_consec(results, True)
|
|
max_cl = _max_consec(results, False)
|
|
|
|
cumulative = df.sort_values('close_time')['net_profit'].cumsum()
|
|
# Balance series: deposit + cumulative P&L (matches MT5 Balance Drawdown Maximal)
|
|
balance = deposit + cumulative
|
|
rolling_max = balance.cummax()
|
|
drawdown_ser = balance - rolling_max
|
|
max_dd = round(drawdown_ser.min(), 2)
|
|
peak_equity = round(rolling_max.max(), 2)
|
|
# % = max_dd / local peak at the point of max drawdown
|
|
peak_at_dd = rolling_max.loc[drawdown_ser.idxmin()] if not drawdown_ser.empty else peak_equity
|
|
max_dd_pct = round(max_dd / peak_at_dd * 100, 2) if peak_at_dd != 0 else 0
|
|
|
|
avg_dur = round(df['duration_min'].mean(), 1) if 'duration_min' in df.columns else 0
|
|
avg_win_dur = round(wins['duration_min'].mean(), 1) if len(wins) > 0 else 0
|
|
avg_los_dur = round(losses['duration_min'].mean(), 1) if len(losses) > 0 else 0
|
|
|
|
longs = df[df['type'] == 'buy']
|
|
shorts = df[df['type'] == 'sell']
|
|
|
|
trading_days = df['open_time'].dt.date.nunique() if 'open_time' in df.columns else 0
|
|
trades_per_day = round(total / trading_days, 2) if trading_days > 0 else 0
|
|
|
|
return {
|
|
'total_trades' : total,
|
|
'trading_days' : trading_days,
|
|
'trades_per_day' : trades_per_day,
|
|
'win_rate' : win_rate,
|
|
'net_profit' : net_profit,
|
|
'gross_profit' : gross_profit,
|
|
'gross_loss' : gross_loss,
|
|
'profit_factor' : pf,
|
|
'avg_win' : avg_win,
|
|
'avg_loss' : avg_loss,
|
|
'rr_ratio' : rr,
|
|
'expectancy' : expectancy,
|
|
'max_consec_wins' : max_cw,
|
|
'max_consec_losses' : max_cl,
|
|
'max_drawdown' : max_dd,
|
|
'max_drawdown_pct' : max_dd_pct,
|
|
'peak_equity' : peak_equity,
|
|
'best_trade' : round(df['net_profit'].max(), 2),
|
|
'worst_trade' : round(df['net_profit'].min(), 2),
|
|
'avg_duration_min' : avg_dur,
|
|
'avg_win_duration' : avg_win_dur,
|
|
'avg_loss_duration' : avg_los_dur,
|
|
'long_trades' : len(longs),
|
|
'short_trades' : len(shorts),
|
|
'long_win_rate' : round(len(longs[longs['win']]) / len(longs) * 100, 1) if len(longs) > 0 else 0,
|
|
'short_win_rate' : round(len(shorts[shorts['win']]) / len(shorts) * 100, 1) if len(shorts) > 0 else 0,
|
|
}
|
|
|
|
|
|
def extract_strategy(comment):
|
|
if not comment or str(comment).strip() in ('', 'nan'):
|
|
return 'Manual'
|
|
s = str(comment).strip()
|
|
# Filter out MT5 close-reason comments: "sl 1234.56", "tp 1234.56", "so 50%"
|
|
if re.match(r'^(sl|tp|so)\s+[\d\.]+%?$', s, re.IGNORECASE):
|
|
return 'Manual'
|
|
return s
|
|
|
|
|
|
def _max_consec(results, target):
|
|
max_c = cur_c = 0
|
|
for r in results:
|
|
if r == target:
|
|
cur_c += 1
|
|
max_c = max(max_c, cur_c)
|
|
else:
|
|
cur_c = 0
|
|
return max_c |