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')