Why this matters
LBC/USDT on MEXC has been thin on the order book. CoinGecko-style metrics look at how much size sits within ±2% of mid.
LBC-market-making-bot
Help keep MEXC LBC/USDT healthy. Run a small open-source bot on your computer that rests buy and sell orders near the mid price. Default targets CoinGecko-style ±2% depth. Community goal: about $100 on each side. Even $10 helps.
Forked from @neofutur’s multibot design · GPL-3.0 · Paper mode by default · Not financial advice
LBC/USDT on MEXC has been thin on the order book. CoinGecko-style metrics look at how much size sits within ±2% of mid.
Needs Python 3.10+ on Linux or macOS. Commands below match the official handoff — do not invent shortcuts.
git clone https://github.com/realrouse/LBC-market-making-bot.git
cd LBC-market-making-bot
bash install-lbcmm.sh
./bin/lbcmm gui
Open http://127.0.0.1:8787/ in your browser.
Complete the setup wizard → set USDT / LBC → press Start bot.
./bin/lbcmm depth # see public ±2% depth
./bin/lbcmm status
./bin/lbcmm run --paper
Use this when you want the GUI or bot to keep running after you close the terminal (VPS, SSH session, overnight).
cd LBC-market-making-bot
mkdir -p logs
# Browser control panel (GUI stays up; open http://127.0.0.1:8787/ anytime)
nohup ./bin/lbcmm gui > logs/gui.log 2>&1 &
echo $! > logs/gui.pid
# Or headless bot only (paper by default after wizard/config)
# nohup ./bin/lbcmm run --paper > logs/bot.log 2>&1 &
# echo $! > logs/bot.pid
Watch logs and stop cleanly:
tail -f logs/gui.log # or logs/bot.log
kill "$(cat logs/gui.pid)" # graceful stop; bot cancels its own orders on clean exit
# kill -9 only if a process is stuck
ssh -L 8787:127.0.0.1:8787 user@host)
or start the GUI bound for remote access:
nohup ./bin/lbcmm gui --host 0.0.0.0 > logs/gui.log 2>&1 &
(only on a trusted network / with a firewall; default is 127.0.0.1 only.)
screen / tmux work the same way: start
./bin/lbcmm gui inside a session, detach with Ctrl+A D (screen) or Ctrl+B D (tmux).
Full user doc: QUICKSTART-LBCMM.md ↗
Menu bar: Market Config · Status · Settings
This site does not host the bot, trade for you, or collect API keys.
This bot was forked from @neofutur’s multibot design (tradinebotte) to build an LBC-only standalone tool for the community. License: GNU GPL v3. When you talk about it: “I forked @neofutur’s multibot design to build an LBC-only bot.”
Upstream design: neofutur/tradinebotte ↗ · This fork: realrouse/LBC-market-making-bot ↗
No. It runs on your machine. The site only explains how to install it.
No.
How far from the mid price your resting orders may sit. Default ±2%. Range 0.5%–15%.
How many order levels on each side (1–30).
No. Never enter API keys on lbcrevival.com.
QUICKSTART-LBCMM.md in the repo.
Part of lbcrevival.com · Educational overview only · Not financial advice · GPL-3.0 community software — run at your own risk