On-chain · Automatic

Live trading you can verify

When Cryptrade executes, it is real: a signed Uniswap swap on Ethereum mainnet, a transaction hash in the ledger, an SMS if configured, and a factual line on the live desk. No simulated fills.

Pipeline diagram: signal detection, multi-gate validation, Uniswap swap, on-chain transaction, trade ledger and desk publish

Signal → gates → swap → proof on chain and in logs.

What “live” means

Real wallet, real gas

MetaMask private key in secure env. USDC spent, WETH received (on BUY). Native ETH reserved for gas. Slippage and minimum trade USD enforced before broadcast.

Real mode flags

  • DRY_RUN=false
  • LIVE_TRADING_CONFIRM=yes
  • Preflight checks wallet balance, RPC, pair liquidity

Execution flow — what happens on a BUY

1

Signal

Strategy emits BUY — e.g. “dip 0.28% (need ≥0.21%, vol promising)”.

2

Gates pass

Intel, gas, cooldown, and optional AI/CEX checks complete. Skip reasons logged if blocked.

3

Size & approve

Bot caps size to wallet USDC. ERC-20 approve if allowance insufficient.

4

Swap broadcast

Uniswap V2 swapExactTokensForTokens with deadline and slippage bps.

5

Confirm & record

Wait for receipt. Log hash, amount, gas USD. Append memory. Publish desk TRADE event.

Audit trail — every action accounted for

RecordWhat it captures
data/bot.logHuman-readable HOLD/BUY/SIGNAL/SUCCESS lines
data/trades.jsonlStructured EXECUTED vs SIGNAL (not executed)
data/bot-memory.jsonlSession tape for AI context
Desk SSE feedLive subscriber stream — intel, signals, fills
Twilio SMSOptional text on LIVE BUY/SELL
Factual desk policy

Desk lines for execution require a real transaction. Strategy signals show as SIGNAL; commentary distinguishes “market view” from “trade executed.”

Core strengths — why teams use Cryptrade

Five pillars: 24/7 automatic operation, multi-source intelligence, Hermes RAG memory, factual audit trail, live desk transparency

24/7 automatic

Watchdog restarts on failure. Websocket reconnect. No per-trade human click.

Multi-source intel

DEX + CEX + macro + verified news + funding — fused before capital deploys.

Self-improving RAG

Hourly Hermes digest adds facts from live conditions — not static prompts.

Quant-first

EMA dip rules drive entries. AI and intel tune the bar — not random LLM trades.

Transparent desk

Embed live feed on canadapaywall.com or your site via Stripe subscription.

Event playbooks

IPO, Fed, space, crash scenarios — rules ready before headlines hit.

Get started

Watch the public demo, open the market desk, or subscribe to embed the full feed.

Subscribe — embed on your site Install plugin docs

Safety FAQ

Can I stop the bot instantly?

Yes. npm run bot:stop signals the watchdog to exit after the current process ends. No new trades after stop.

What if the websocket drops?

The bot schedules reconnect automatically and resumes the session on the same pair.

Maximum loss controls?

Stop-loss %, take-profit %, trade cooldown, min liquidity, and gate blocks limit exposure. Configure via env — not hidden in code.