We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88bfbfe commit 287d4a3Copy full SHA for 287d4a3
1 file changed
lib/agent-context.ts
@@ -174,7 +174,10 @@ AVAILABLE TRADING TOOLS (use sparingly due to step budget):
174
175
QUOTE TOOL RAW BALANCE USAGE:
176
- 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 ")}
+ ${positionsWithPnl
178
+ .filter((pos) => Number(pos.rawBalance) > 0)
179
+ .map((pos) => `${pos.symbol}: RAW_BALANCE=${pos.rawBalance}`)
180
+ .join("\n ")}
181
- BUYING: Use EXACT RAW_BALANCE value for USDC (the large integer shown in AVAILABLE USDC line)
182
183
ADAPTIVE TRADING PRINCIPLES:
0 commit comments