devto 2026-06-23 원문 보기 ↗
Prop firm traders (people who trade with other people's money) need specific calculators that account for strict drawdown rules. Every existing calculator is either ugly, full of ads, or doesn't know that FTMO has a 5% daily drawdown limit.
So I built PropWise — 10 interactive tools across 168 SEO-optimized pages, all in vanilla HTML, CSS, and JS. No framework. No build step. No dependencies.
10 core tools:
Plus 158 programmatic pages:
Intentionally simple:
Instead of 10 pages targeting broad keywords like "position size calculator," I generated pages for every combination:
Each page has:
One Python script generates everything:
python
for firm in FIRMS:
for account in firm["accounts"]:
# Generate unique page with pre-filled calculations
build_page(
slug=f"{firm['slug']}-{format(account)}-position-size-calculator",
title=f"{firm['name']} {format(account)} Position Size Calculator",
body=generate_calculator_page(firm, account)
)
/// Design decisions
Dark theme — traders stare at dark charts all day. A bright white tool site would feel jarring.
No signup wall — every tool works immediately. No email capture, no "sign up to see results." Trust is built by being useful, not by gating.
Share cards — every calculation produces a shareable card with the result, optimized for Twitter screenshots. Organic distribution > paid ads.
Sound effects — subtle audio feedback: a cha-ching for positive results, an alert for dangerous risk levels. Small detail, big UX impact.
What I'd do differently
Would use a static site generator instead of a custom Python script
Would add a service worker for offline use
Would build a proper design system instead of inline styles
Results
Just launched. 168 pages indexed in Google, zero budget spent. Let's see what happens.
Check it out: propwise.site
Source approach and all tools are free. If you're a trader, I'd love feedback on what's missing.
---