31 lines
1,021 B
HTML
31 lines
1,021 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Multi-Source Trading Report</title>
|
||
|
<style>
|
||
|
body { font-family: Arial, sans-serif; margin: 20px; }
|
||
|
table { border-collapse: collapse; width: 100%; margin: 20px 0; }
|
||
|
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
|
||
|
th { background-color: #4CAF50; color: white; }
|
||
|
tr:nth-child(even) { background-color: #f2f2f2; }
|
||
|
.profit { color: green; font-weight: bold; }
|
||
|
.loss { color: red; font-weight: bold; }
|
||
|
.warning { background-color: #fff3cd; padding: 10px; margin: 10px 0; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Multi-Source Trading Report</h1>
|
||
|
<p>Generated: 2025.08.15 15:12</p>
|
||
|
<h2>Account Summary</h2>
|
||
|
<table>
|
||
|
<tr><td>Balance</td><td>$16074.62</td></tr>
|
||
|
<tr><td>Equity</td><td>$16074.62</td></tr>
|
||
|
<tr><td>Free Margin</td><td>$16074.62</td></tr>
|
||
|
</table>
|
||
|
<h2>Active Trades</h2>
|
||
|
<table>
|
||
|
<tr><th>Ticket</th><th>Symbol</th><th>Type</th><th>Volume</th><th>Entry</th><th>Current</th><th>P/L</th><th>Risk</th><th>Source</th></tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|