From 76ebbf39543c5e90736136a3624552f45d46e1a2 Mon Sep 17 00:00:00 2001 From: zefiroff Date: Tue, 9 Jun 2026 19:58:06 +0400 Subject: [PATCH] worker: align Telegram bot copy with the site (drop paper / dry-run wording) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Boot, status and help messages now say "Quant Agent" instead of "$QUANT paper agent โ€” dry-run", matching the de-paper'd site voice. Co-Authored-By: Claude Opus 4.8 (1M context) --- worker/loop.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worker/loop.ts b/worker/loop.ts index b142c80..5254362 100644 --- a/worker/loop.ts +++ b/worker/loop.ts @@ -55,7 +55,7 @@ function statusMsg(): string { ? st.positions.map((p) => `${p.coin} ${p.dir}`).join(' ยท ') : 'โ€”' return [ - `๐Ÿ“Š $QUANT โ€” paper ยท ${CONFIG.mode}`, + `๐Ÿ“Š Quant Agent`, `equity ${usd(s.equity)} (${pct(s.roiPct)})`, `open ${open}`, `closed ${s.trades} ยท win ${Math.round(s.winRate * 100)}%`, @@ -93,7 +93,7 @@ function positionsMsg(): string { const helpMsg = () => [ - '๐Ÿค– $QUANT paper agent', + '๐Ÿค– Quant Agent', '/status โ€” equity, open positions, win rate', '/positions โ€” open positions detail', '/pnl or /learn โ€” retrospective over closed trades', @@ -164,7 +164,7 @@ async function commandLoop(): Promise { // โ”€โ”€ boot โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ function bootMsg(s: Stats): string { return [ - `๐ŸŸฉ $QUANT paper agent online โ€” ${CONFIG.mode}`, + `๐ŸŸฉ Quant Agent online`, `${CONFIG.coins.join(' ยท ')} ยท ${CONFIG.interval} ยท poll ${CONFIG.pollMs / 1000}s`, `equity ${usd(s.equity)} ยท ${s.trades} trades so far`, ].join('\n')