https://github.com/makevoid/centex-market-taker-bot
Simple market taker bot that trades on the Centex crypto exchange
https://github.com/makevoid/centex-market-taker-bot
automation bot centex centex-api exchange market-taker market-taker-bot ruby trading-bot
Last synced: 9 months ago
JSON representation
Simple market taker bot that trades on the Centex crypto exchange
- Host: GitHub
- URL: https://github.com/makevoid/centex-market-taker-bot
- Owner: makevoid
- Created: 2021-03-27T07:26:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-21T21:57:37.000Z (about 4 years ago)
- Last Synced: 2025-03-25T06:02:47.558Z (10 months ago)
- Topics: automation, bot, centex, centex-api, exchange, market-taker, market-taker-bot, ruby, trading-bot
- Language: Ruby
- Homepage:
- Size: 85.9 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# centex-market-taker-bot
Simple market taker bot for the Centex crypto exchange - this bot can place buy orders that take (match) active market offers (sell orders)
#### Exchange:
Centex
API: https://api.centex.io/docs
#### Secrets:
the secret config file is `env_secret.rb`, copy the default one and fill in your centex exchange api key `cp env_secret.default.rb env_secret.rb`
#### Bot config:
```rb
{
side: "buy", # or "sell" - default: "buy"
price: 0.0001, # maximum price you want to match orders at
amount: 50, # amount to buy (per hour) in cheapETHs
every: 60, # trigger an order every x minutes if the market is at that price level
coin: "cth", # or others listed # default: "eth"
}
```
#### Install dependencies:
bundle
#### Run:
bundle exec rake
---
License: The Unlicense
The program is provide it as is, this is not a finished product, use at your own risk.
----
@makevoid