LBC Revival · liquidity
Open source · local bot

Contribute liquidity

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.

Get the bot on GitHub ↗ Install steps Live market depth

Forked from @neofutur’s multibot design · GPL-3.0 · Paper mode by default · Not financial advice

Community depth goal ~$100 on each side within ±2% of mid
Venue: MEXC spot LBC/USDT. This improves tradeability — it does not guarantee price.

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.

Problem Small depth → easy to move price → delisting / delist-risk narratives
Goal ~$100 resting on each side inside ±2%
How Optional: run the bot with your own capital (paper first)
Controls Depth 0.5%–15% · Steps 1–30 · Default ±2%

Install (3 steps)

Needs Python 3.10+ on Linux or macOS. Commands below match the official handoff — do not invent shortcuts.

Clone + install
git clone https://github.com/realrouse/LBC-market-making-bot.git
cd LBC-market-making-bot
bash install-lbcmm.sh

Run the control panel

GUI
./bin/lbcmm gui

Open http://127.0.0.1:8787/ in your browser. Complete the setup wizard → set USDT / LBC → press Start bot.

Optional terminal commands

./bin/lbcmm depth      # see public ±2% depth
./bin/lbcmm status
./bin/lbcmm run --paper

Run in the background

Use this when you want the GUI or bot to keep running after you close the terminal (VPS, SSH session, overnight).

nohup (no root required)
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

Full user doc: QUICKSTART-LBCMM.md ↗

What you do in the GUI

Menu bar: Market Config · Status · Settings

Safety

This site does not host the bot, trade for you, or collect API keys.

Attribution

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 ↗

FAQ

Is this a website wallet / cloud bot?

No. It runs on your machine. The site only explains how to install it.

Do I need API keys for paper mode?

No.

What is Depth %?

How far from the mid price your resting orders may sit. Default ±2%. Range 0.5%–15%.

What are Steps?

How many order levels on each side (1–30).

Can the site trade for me?

No. Never enter API keys on lbcrevival.com.

Where is full documentation?

QUICKSTART-LBCMM.md in the repo.

GitHub — LBC-market-making-bot ↗ QUICKSTART ↗ Trade LBC/USDT on MEXC ↗ Live ±2% depth

Part of lbcrevival.com · Educational overview only · Not financial advice · GPL-3.0 community software — run at your own risk