009860096353a3b86353e0ea3485f2b10fe70443
PROBLEM: - "bad operand type for unary -: 'list'" error - Line 265 tried to negate a list: support_levels = -support_levels - _find_peaks() returns a list, not numpy array - Caused S/R Score to default to 50/100 SOLUTION: - Changed: support_levels = -support_levels - To: support_levels = [-s for s in support_levels] - Negates each element in the list individually IMPACT: - S/R Score now calculated correctly - Enhanced Score will be more accurate - Better trade filtering 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Description
Trading Bot um XAUSD auf Vantage via MT5 zu traden
5.2 MiB
Languages
Python
71.4%
Jupyter Notebook
24.7%
Batchfile
1.7%
PowerShell
1.2%
Shell
1%