Install
openclaw skills install @frederica123/trading-bot-ai-agentBuild and evaluate an offline crypto grid-trading simulation without connecting an exchange, wallet, Telegram bot, or user account. Use when a user asks to model grid levels, estimate quote and base reserves, compare grid parameters, replay a hypothetical price path, review grid-strategy risks, or asks for a safe alternative to the trading_bot_ai_agent runtime. Never accept credentials, expose a service, or execute trades.
openclaw skills install @frederica123/trading-bot-ai-agentModel a grid strategy locally with deterministic arithmetic. Keep the workflow read-only and offline.
Not investment advice..env contents.Read references/safety-boundaries.md when explaining why the original runtime is not distributed.
Ask only for non-sensitive scenario parameters:
BTC/USDT;Require positive finite numbers, upper > lower, and a starting price inside
the selected range. Never infer a position size from a user's finances.
Use explicit bounds:
node {baseDir}/scripts/simulate-grid.mjs \
--symbol BTC/USDT \
--price 60000 \
--lower 57000 \
--upper 63000 \
--levels 7 \
--amount 0.001 \
--fee-bps 10
Use an automatic symmetric range:
node {baseDir}/scripts/simulate-grid.mjs \
--symbol BTC/USDT \
--price 60000 \
--range-percent 5 \
--levels 7 \
--amount 0.001 \
--fee-bps 10
Add a hypothetical path to simulate crossings:
node {baseDir}/scripts/simulate-grid.mjs \
--symbol BTC/USDT \
--price 60000 \
--range-percent 5 \
--levels 7 \
--amount 0.001 \
--fee-bps 10 \
--path 60000,58500,61500,59500,62500
Do not alter the returned values. Distinguish:
Return:
Explain that the path model uses simplified fills exactly at grid prices, ignores spread, slippage, latency, funding, partial fills, liquidation, minimum order rules, outages, and tax. Never label the output as verified performance.
For credentials, live orders, withdrawals, or wallet exports: