summaryrefslogtreecommitdiff
path: root/cli/src/trading_cli/commands/trade.py
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-02 10:26:52 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-02 10:26:52 +0900
commit53cadcf7e34f05f77082e84f0696b56bcbcbae36 (patch)
treee02650e10c4d5727bc1e32e27788c17327fa46f7 /cli/src/trading_cli/commands/trade.py
parentf5521da2876a2c19afc24f370b3258f2be95f81a (diff)
refactor: remove all crypto/Binance code, update to US stock symbols
Diffstat (limited to 'cli/src/trading_cli/commands/trade.py')
-rw-r--r--cli/src/trading_cli/commands/trade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/trading_cli/commands/trade.py b/cli/src/trading_cli/commands/trade.py
index f90e0ed..6bbd5a6 100644
--- a/cli/src/trading_cli/commands/trade.py
+++ b/cli/src/trading_cli/commands/trade.py
@@ -9,7 +9,7 @@ def trade():
@trade.command()
@click.option("--strategy", required=True, help="Strategy name to run")
-@click.option("--symbol", required=True, help="Trading symbol (e.g. BTCUSDT)")
+@click.option("--symbol", required=True, help="Trading symbol (e.g. AAPL)")
def start(strategy, symbol):
"""Start a trading bot for a strategy and symbol."""
click.echo(f"Starting trading bot: strategy={strategy}, symbol={symbol}...")