Initial commit: Arb Pulse monolith with CI and optional Fly deploy.

Real-time BTC cross-exchange arbitrage detection (Kraken, Bybit, OKX, Binance)
with React dashboard, GitHub Actions CI, and documented Fly.io deploy workflow.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Mauricio Barragan
2026-06-08 21:04:53 -06:00
co-authored by Cursor
parent 908aefb2d8
commit 2e8744ccf0
87 changed files with 10414 additions and 0 deletions
@@ -0,0 +1,10 @@
import type { IRebalancer } from "../../domain/ports/ports.js";
/** Periodic inventory correction (withdrawal fee only here, not per trade). */
export class RebalanceInventory {
constructor(private readonly rebalancer: IRebalancer) {}
tick(now: number): void {
this.rebalancer.tick(now);
}
}