Files
AITrader/app/routes/stocks.tsx
T
henry 8429db504a feat: add stock indicators route and Alpaca account info
- New /stocks route with StockViewer component
- New /api/indicators endpoint with SMA, EMA, RSI, MACD
- New /api/alpaca/account endpoint
- AlpacaAccountInfo component on home page
- Indicator calculation utilities
- Tests for utilities and components
- Vite proxy config for /api
2026-05-12 21:07:18 +02:00

9 lines
205 B
TypeScript

import StockViewer from "../components/StockViewer";
export default function Stocks() {
return (
<main className="flex items-start justify-center pt-8 pb-4">
<StockViewer />
</main>
);
}