├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.ja-JP.md ├── README.ko-KR.md ├── README.md ├── README.zh-CN.md ├── assets ├── chart.png └── stats.png ├── go ├── main.go ├── models │ ├── chatgpt.go │ ├── deepseek.go │ └── qwen.go ├── traders │ └── rpc_bridge.go ├── utils │ └── encryption.go └── web │ └── dashboard.go └── src ├── exchange.rs ├── ffi.rs ├── lib.rs ├── orderbook.rs ├── pnl.rs └── risk.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/README.ja-JP.md -------------------------------------------------------------------------------- /README.ko-KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/README.ko-KR.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /assets/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/assets/chart.png -------------------------------------------------------------------------------- /assets/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/assets/stats.png -------------------------------------------------------------------------------- /go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/go/main.go -------------------------------------------------------------------------------- /go/models/chatgpt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/go/models/chatgpt.go -------------------------------------------------------------------------------- /go/models/deepseek.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/go/models/deepseek.go -------------------------------------------------------------------------------- /go/models/qwen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/go/models/qwen.go -------------------------------------------------------------------------------- /go/traders/rpc_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/go/traders/rpc_bridge.go -------------------------------------------------------------------------------- /go/utils/encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/go/utils/encryption.go -------------------------------------------------------------------------------- /go/web/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/go/web/dashboard.go -------------------------------------------------------------------------------- /src/exchange.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/src/exchange.rs -------------------------------------------------------------------------------- /src/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/src/ffi.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/orderbook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/src/orderbook.rs -------------------------------------------------------------------------------- /src/pnl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/src/pnl.rs -------------------------------------------------------------------------------- /src/risk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-trading-bots/qwen-trading-bot/HEAD/src/risk.rs --------------------------------------------------------------------------------