mirror of
https://github.com/saymrwulf/alpha-arena.git
synced 2026-09-04 18:43:39 +00:00
A comprehensive autonomous trading system for Polymarket prediction markets featuring multi-LLM provider support, a native macOS menu bar app, and a web-based control dashboard. Key features: - Multi-agent trading system (Research, Risk, Execution, Reflection agents) - LLM provider flexibility (Anthropic, OpenAI, Google, xAI, Local models) - Automatic provider fallback chain for resilience - Native Swift/SwiftUI macOS menu bar application - FastAPI web dashboard with real-time WebSocket updates - Risk management with kill switch - Technical indicators and market analysis
21 lines
452 B
Swift
21 lines
452 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AlphaArena",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.executable(name: "AlphaArena", targets: ["AlphaArena"])
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "AlphaArena",
|
|
path: "AlphaArena",
|
|
resources: [
|
|
.process("Resources/Assets.xcassets")
|
|
]
|
|
)
|
|
]
|
|
)
|