import Link from "next/link"; import LiveDashboard from "@/components/LiveDashboard"; export default function DashboardPage() { return ( <> {/* Hero */}

Live Forward Test · Demo Account

ARES Trading Bot

Open-source algorithmic trading bot built in Rust. Momentum FVG scalper with ATR quality filter, EMA trend filter, configurable session window, automatic position sizing, and Telegram alerts — runs on any MT5 symbol.

View Trades Backtest Results
{/* Live data — client-side polling */} {/* Strategy */}

Strategy

{/* Backtest CTA */}

Backtest Highlight · v1.4.0

M5 · 50k Bars · 5% Risk

XAUUSDm · Sep 2025 – Jun 2026 · 83 trades

Full Results →
{[ { label: "Profit Factor", value: "2.08", sub: "vs 1.17 in v1.3.0" }, { label: "Net Return", value: "+448.7%", sub: "$5k → $27,439" }, { label: "Win Rate", value: "62.7%", sub: "vs 50% in v1.3.0" }, { label: "Max Drawdown", value: "−$2,669", sub: "vs −$5,482 in v1.3.0" }, ].map(({ label, value, sub }) => (

{label}

{value}

{sub}

))}
); } function FeatureCard({ icon, title, body }: { icon: string; title: string; body: string }) { return (
{icon}

{title}

{body}

); }