diff --git a/web/app/backtest/page.tsx b/web/app/backtest/page.tsx index f13e363..14d1786 100644 --- a/web/app/backtest/page.tsx +++ b/web/app/backtest/page.tsx @@ -1,5 +1,11 @@ +import type { Metadata } from "next"; import Link from "next/link"; +export const metadata: Metadata = { + title: "Backtest Results", + description: "ARES backtest results: M5 Momentum FVG scalper on XAUUSDm. Best run: PF 1.42, +43.2% net return, −11.5% max drawdown.", +}; + const results = [ { period: "1 Month", tf: "M5", risk: "1%", trades: 159, wr: 55.3, pf: 1.42, ret: 43.2, dd: -11.5, highlight: true }, { period: "1 Month", tf: "M5", risk: "5%", trades: 159, wr: 55.3, pf: 1.26, ret: 390, dd: -156, highlight: false }, diff --git a/web/app/layout.tsx b/web/app/layout.tsx index 310d909..96062b0 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -2,13 +2,44 @@ import type { Metadata } from "next"; import "./globals.css"; import Nav from "@/components/Nav"; +const SITE_URL = "https://ares-six-peach.vercel.app"; + export const metadata: Metadata = { - title: "ARES — Automated Trading Bot", - description: "Live forward-test results for ARES, an M5 Momentum FVG scalper built in Rust.", + metadataBase: new URL(SITE_URL), + title: { + default: "ARES — Automated Gold Trading Bot", + template: "%s · ARES", + }, + description: + "Live forward-test results for ARES, an M5 Momentum FVG scalper built in Rust. Trades XAUUSDm with EMA-20 trend filter and automated risk management.", + keywords: [ + "algorithmic trading", "gold trading bot", "XAUUSD EA", + "MT5 expert advisor", "Rust trading bot", "FVG scalper", + "forex robot", "automated trading", "ICT strategy", + ], + authors: [{ name: "Romy Saputra Sihananda" }], + creator: "Romy Saputra Sihananda", + robots: { + index: true, + follow: true, + googleBot: { index: true, follow: true, "max-snippet": -1, "max-image-preview": "large" }, + }, openGraph: { - title: "ARES Trading Bot", - description: "Live forward-test · M5 Momentum FVG · XAUUSDm", type: "website", + url: SITE_URL, + siteName: "ARES Trading Bot", + title: "ARES — Automated Gold Trading Bot", + description: "Live forward-test · M5 Momentum FVG scalper · XAUUSDm · Built in Rust", + locale: "en_US", + }, + twitter: { + card: "summary_large_image", + title: "ARES — Automated Gold Trading Bot", + description: "Live forward-test · M5 Momentum FVG scalper · XAUUSDm · Built in Rust", + }, + icons: { + icon: "/favicon.svg", + shortcut: "/favicon.svg", }, }; @@ -20,25 +51,32 @@ export default function RootLayout({ children }: { children: React.ReactNode })
{children}
-