39875112a0
Python bot (bot/alpaclaudia): alpaca-py client, wheel strategy (CSP + covered calls) plus equity trailing stops, risk gates (cash buffer, cost-basis guard, per-symbol concentration cap), SQLite state log, Typer CLI (tick/loop/status/ report/dump-state), Discord daily report, pytest suite. Next.js 14 dashboard (dashboard/): read-only — reads the bot's SQLite directly and pulls live account/positions/orders from Alpaca. KPIs, equity chart, positions, bot-intents audit table, and orders table. Dark UI with Tailwind. systemd/: user-unit templates for the polling loop and the post-close report timer. docs/STRATEGY.md: wheel mechanics, risk invariants, later candidates. Defaults to BOT_MODE=dry — nothing is submitted to Alpaca until explicitly enabled in .env. ALPACA_ENV=paper by default; flipping to live requires an explicit second guard.
27 lines
583 B
TypeScript
27 lines
583 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./app/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: "#0b0d11",
|
|
panel: "#13161d",
|
|
panel2: "#1a1e27",
|
|
border: "#252a35",
|
|
ink: "#e6e8ee",
|
|
mute: "#8a94a6",
|
|
brand: "#5eead4",
|
|
up: "#34d399",
|
|
down: "#f87171",
|
|
warn: "#fbbf24",
|
|
},
|
|
fontFamily: {
|
|
mono: ["ui-monospace", "SFMono-Regular", "Menlo", "Consolas", "monospace"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|