chore(examples): rename live_trading examples to live_binance (#301)

The examples stream a live Binance feed into the indicators and print signals;
they place no orders, so 'live_trading' overstated them and was inconsistent
with the C/Go/R examples already named live_binance. Rename the Python/Node/WASM
files to live_binance.* and update every reference, run command, header, and the
project-tree listings. Accurate use-case wording ('suitable for live trading
bots') and the risk disclaimers are left unchanged.
This commit is contained in:
kingchenc
2026-06-15 03:41:19 +02:00
committed by GitHub
parent 82d7479011
commit de1112ea91
8 changed files with 20 additions and 20 deletions
@@ -1,4 +1,4 @@
"""Live trading skeleton: stream Binance kline ticks → incremental indicators → signals.
"""Live Binance feed: stream Binance kline ticks → incremental indicators → signals.
This example connects to Binance's public WebSocket feed (no API key needed)
and runs RSI / MACD / Bollinger Bands on the close prices coming in. When the
@@ -7,7 +7,7 @@ confirms the direction, a `Signal` event is printed. No orders are placed.
Run with::
python -m examples.python.live_trading --symbol BTCUSDT --interval 1m
python -m examples.python.live_binance --symbol BTCUSDT --interval 1m
Dependencies::