// Shared layout for all legal / stub pages function LegalPage({ go, breadcrumb, eyebrow, title, children }) { const wide = useWide(); return (
go('landing')} style={{ cursor: 'pointer', color: TH.accent }}>HOME {breadcrumb}
{eyebrow}

{title}

{children}
); } function LegalSection({ title, children }) { return (
{title}
{children}
); } function LegalP({ children }) { return (

{children}

); } function Terms({ go }) { return (
EFFECTIVE DATE · MAY 2026
Walkforward Trading ("Walkforward", "we", "us") provides a research and tooling platform for informational purposes. By accessing this site or purchasing a membership, you agree to these terms. Walkforward provides research memos, a backtesting tool, video content, and access to a community chat. All content is for informational purposes only. Nothing constitutes investment advice, a solicitation, or a recommendation to trade any asset. Memberships are billed monthly or annually via Whop. You may cancel at any time from your billing page or directly in the Whop dashboard. A 30-day refund is available on request — no forms required. Archive access continues for 30 days after cancellation. Members may not redistribute paid content, automate access to the backtester in ways that place unreasonable load on the service, or use the platform in violation of applicable law. Walkforward is not liable for trading losses, missed opportunities, or decisions made based on content published here. All strategies published are historical analyses, not forward-looking recommendations.
Contact: contact@walkforwardtrading.com
); } function Privacy({ go }) { return (
EFFECTIVE DATE · MAY 2026
Account creation: email address, display name (optional), connected wallet address (optional). We do not collect payment information directly — all billing is handled by Whop. Email is used to manage your account and send membership-related communications. We do not send marketing email beyond what you explicitly opt in to. We do not sell or share your data with third parties for advertising purposes. Whop handles billing and payment processing. Binance and Yahoo Finance APIs are used to fetch market data (no personal data is sent). Fonts are loaded from Google Fonts. You may request deletion of your account and associated data at any time by emailing{' '} contact@walkforwardtrading.com. {' '}We will process requests within 30 days.
); } function Risk({ go }) { return ( Trading financial instruments, including cryptocurrencies, involves substantial risk of loss. Past performance — including the backtest results published on this site — is not indicative of future results. All strategies published by Walkforward are historical analyses produced under specific assumptions (fees, slippage, data source, parameter values). Live trading results will differ from backtest results due to execution differences, market impact, data latency, and the inherent unpredictability of markets. Walk-forward validation reduces but does not eliminate the risk of overfitting. A strategy that passes a walk-forward test may still fail in live trading. The research published here is one input — position sizing, risk management, and execution decisions are the sole responsibility of the trader. Walkforward Trading is not a registered investment adviser. Nothing on this site constitutes investment advice, a solicitation, or a recommendation to buy or sell any financial instrument.
IF YOU DO NOT UNDERSTAND THESE RISKS, DO NOT TRADE.
); } function Changelog({ go }) { return ( No public changelog yet. Member release notes are posted in the Telegram community. ); } function Press({ go }) { return ( No press kit yet. For media enquiries contact{' '} contact@walkforwardtrading.com. ); } function Contact({ go }) { return ( For general enquiries, billing questions, or account issues, email{' '} contact@walkforwardtrading.com. For urgent account or billing issues, you can also reach us via the Telegram community. ); } Object.assign(window, { Terms, Privacy, Risk, Changelog, Press, Contact });