Skip to content

Commit 287d4a3

Browse files
committed
format
1 parent 88bfbfe commit 287d4a3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/agent-context.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,10 @@ AVAILABLE TRADING TOOLS (use sparingly due to step budget):
174174
175175
QUOTE TOOL RAW BALANCE USAGE:
176176
- SELLING: Use EXACT RAW_BALANCE value from position list above (the large integer, not the formatted amount)
177-
${positionsWithPnl.filter((pos) => Number(pos.rawBalance) > 0).map((pos) => `${pos.symbol}: RAW_BALANCE=${pos.rawBalance}`).join("\n ")}
177+
${positionsWithPnl
178+
.filter((pos) => Number(pos.rawBalance) > 0)
179+
.map((pos) => `${pos.symbol}: RAW_BALANCE=${pos.rawBalance}`)
180+
.join("\n ")}
178181
- BUYING: Use EXACT RAW_BALANCE value for USDC (the large integer shown in AVAILABLE USDC line)
179182
180183
ADAPTIVE TRADING PRINCIPLES:

0 commit comments

Comments
 (0)