-
-
Notifications
You must be signed in to change notification settings - Fork 53
Quick start
You can use both - PIP and Docker deployment schemas, as you choice.
For test purpose create API key pair:
- Log in at Binance Spot Test Network
- Create API Key
You can test strategy on Binance, OKX, Bitfinex and Bybit exchanges, where realized "paper trade mode"
- Register Telegram bot
- Get token
- Find channel_id. Just start IDBot and get channel_id
- After create environment specify this data into
/home/ubuntu/.MartinBinance/config/ms_cfg.toml
for 'Demo - Binance', 0
pip install martin-binance
After first install run:
exchanges-wrapper-init
then
martin-binance-init
The structure of the working directory will be created and the necessary files will be copied. On init output you can find location.
- Specify api_key and api_secret in
/home/ubuntu/.MartinBinance/config/exch_srv_cfg.toml
- Run in terminal window
exchanges-wrapper-srv
- Run in other terminal window
/home/ubuntu/.MartinBinance/cli_0_BTCUSDT.py
Strategy is started.
For upgrade to latest versions use:
pip install -U martin-binance
- Install and run exchanges-wrapper server.
- Pull last version of martin-binance image
docker pull ghcr.io/dogstailfarmer/martin-binance:latest
The structure of the working directory will be created and the necessary files will be copied:
For Ubuntu it will be here: home/user/.MartinBinance/
docker run --rm --entrypoint /bin/sh martin-binance -c "cat ./martin_binance/__init__.py" > init.py && \
docker run --rm --entrypoint /bin/sh martin-binance -c "cat ./martin_binance/templates/ms_cfg.toml" > ms_cfg.toml &&\
docker run --rm --entrypoint /bin/sh martin-binance -c "cat ./martin_binance/templates/funds_rate.db" > funds_rate.db &&\
docker run --rm --entrypoint /bin/sh martin-binance -c "cat ./martin_binance/templates/cli_0_BTCUSDT.py" > cli_0_BTCUSDT.py &&\
docker run --rm --entrypoint /bin/sh martin-binance -c "cat ./martin_binance/templates/cli_1_BTCUSDT.py" > cli_1_BTCUSDT.py &&\
docker run --rm --entrypoint /bin/sh martin-binance -c "cat ./martin_binance/templates/cli_2_TESTBTCTESTUSDT.py" > cli_2_TESTBTCTESTUSDT.py &&\
docker run --rm --entrypoint /bin/sh martin-binance -c "cat ./martin_binance/templates/cli_3_BTCUSDT.py" > cli_3_BTCUSDT.py &&\
python3 init.py &&\
rm init.py && rm ms_cfg && rm funds_rate.db && rm cli_0_BTCUSDT.py && rm cli_1_BTCUSDT.py && cli_2_TESTBTCTESTUSDT.py && cli_3_BTCUSDT.py
docker run -itP \
--mount type=bind,source=/home/ubuntu/.MartinBinance,target=/home/appuser/.MartinBinance \
--network=host \
--restart=always \
--name=0-BTCUSDT \
martin-binance \
/home/appuser/.MartinBinance/cli_0_BTCUSDT.py 1
The last '1' it is parameter for silent restart with restore operational status.
.MartinBinance/cli_0_BTCUSDT.py
where trading parameters must be setting.
For auto update running containers recommended use Watchtower
You must set pair name in three places the same (yes, it is crooked, but so far):
- base setting at top of the
cli_X_AAABBB.py
,ex.SYMBOL = 'AAABBB'
- the name of
cli_X_AAABBB.py
must match - the
X
it is index of element from exchange list inconfig/ms_cfg.toml
For 'Demo - Binance' and BTC/USDT trade pair it will be cli_0_BTCUSDT.py
- the name of pane in Tmux terminal window must match too, see explanation in the relevant section
For stop strategy use Ctrl-C and/or Telegram control function
Adding an account is in two parts- For server, it is
/home/ubuntu/.MartinBinance/config/exch_srv_cfg.toml
, where you place API key and account name - For client, it's
/home/ubuntu/.MartinBinance/config/ms_cfg.toml
, where you add account name into exchange list and setup Telegram parameters
The account name must be identically for server and client configs.
You can ask any questions about strategy in discussions section. Create issue if you have trouble or suggestions for development.
1. Home
- Trade idea
- Features
- Quick start
- Terminal Tmux (useful tips)
-
How it's work
- Place grid
- Reverse
- Grid only
- Place take profit order
- Restart
- Fee options
- Keeping level of first asset
- Maintaining a supply of BNB in a sub-account to pay fees
- Deposit and withdraw assets on active strategy
- Telegram notification
- Telegram control
- Save data for external analytics
- Consolidated asset valuation
- Asset management
- Recovery after any reason crash, restart etc.
- Back testing and parameters optimization
- For developers