Primary finding
auto-copy.sh logs copy as 'amount_pct' but DAILY_SPENT sums 'usd_amount' — risk accounting is silently broken
- bankr-signals/scripts/auto-copy.sh:95-100
- bankr-signals/scripts/auto-copy.sh:125-140
Even if the daily-loss check were wired up (see prior finding), the keys don't match: the writer emits `amount_pct`, the reader sums `usd_amount`. DAILY_SPENT will therefore be permanently 0 across all runs.
Recommendation
Decide on a single source of truth (parse $RESULT from Bankr for USD notional, or pre-compute notional before execution) and write it as `usd_amount` so the existing grep matches.