bxbot
A simple Bitcoin trading bot written in Java.
시스템 구조
저장소별 전략/실행 조건 확인 필요
거래소 API 기반 자동 주문 실행
에디터 요약저장소 설명과 공개 메타데이터 기준으로 암호화폐 거래 봇, 거래소 API/프레임워크, 백테스트, 기술적 분석 성격의 프로젝트로 파악했습니다. 확인 근거는 README, 저장소 토픽, 저장소 설명, GitHub 지표, 파이프라인 필드이며, 주요 데이터는 Coinbase, Kraken, Bitfinex, 가격/거래량 데이터입니다. 전략/실행 조건은 저장소별 문서와 코드 확인이 필요하며, 실행 방식은 "거래소 API 기반 자동 주문 실행"라고 보수적으로 기록했습니다. GitHub 지표는 별 862개, 포크 285개입니다.
| 저장소 | gazbert/bxbot |
|---|---|
| 제작자 | gazbert |
| 스타 / 포크 | ★ 862 / 285 |
| 라이선스 | MIT |
| 최근 업데이트 | 2024-11-30 |
| 스냅샷 시점 | 2026-07-08 (아래 README는 이 시점의 사본입니다) |
아래는 제3자가 작성·공개한 오픈소스 코드입니다. QuantField는 해당 코드의 동작과 안전성을 보증하지 않으며, 설치·실행 전 코드를 직접 검토하시기 바랍니다.
README
BX-bot
What is BX-bot?
BX-bot (Bex) is a simple Bitcoin trading bot written in Java for trading on cryptocurrency exchanges.
The project contains the basic infrastructure to trade on a cryptocurrency exchange...
except for the trading strategies - you'll need to write those yourself! A simple
ExampleScalpingStrategy
is included to get you started with the Trading API - see Ta4j for more ideas.
Exchange Adapters for using Bitstamp, Bitfinex, Kraken, and Gemini are included. Feel free to improve these or contribute new adapters to the project; that would be shiny!
A TryModeExchangeAdapter is
configured by default to delegate public API calls to Bitstamp, but it simulates the private
API (order management) calls; it's good for testing your initial setup and
paper trading without actually sending orders to the exchange.
The Trading API provides support for limit orders traded at the spot price. If you're looking for something more sophisticated with a much richer Trading API, take a look at XChange.
Warning: Trading cryptocurrency carries significant financial risk; you could lose money. This software is provided 'as is' and released under the MIT license.
Architecture

- Trading Engine - the execution unit. It provides a framework for integrating Exchange Adapters and executing Trading Strategies.
- Exchange Adapters - the data stream unit. They provide access to a given exchange.
- Trading Strategies - the decision or strategy unit. This is where the trading decisions happen.
- Trading API - Trading Strategies use this API to make trades. Exchange Adapters implement this to provide access to a given exchange.
- Strategy API - Trading Strategies implement this so the Trading Engine can execute them.
Trading Strategies and Exchange