Complete the file rename by removing the old file with typo.
This commit ensures the git history properly tracks the rename from
CoreTraidMath.py to CoreTradeMath.py.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Update test_decision.py to work with refactored core modules.
Changes:
- Removed wildcard imports, using explicit imports:
- from decisionManager_v2 import DecisionManager
- from indicators_v2 import ind_BB
- from signals_v2 import sig_BB
- Updated method calls to use snake_case naming:
- test.getRetroTrendAns() → test.get_retro_trend_answer()
- test.generateMatrixProbabilityFromDict() → test.generate_matrix_probability_from_dict()
- test.getOnlineAns() → test.get_online_answer()
- Updated variable names to snake_case:
- sigAgrReq → sig_agr_req
- sigAgrRetroTemplate → sig_agr_retro_template
- retroAns → retro_ans
- sigAgrData → sig_agr_data
- Improved spacing and formatting for PEP 8 compliance
The test file now follows the same coding standards as the refactored
core modules and maintains compatibility with all renamed methods.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Fix typo in core math module filename and update all references.
Changes:
- Renamed market_trade/core/CoreTraidMath.py → CoreTradeMath.py
- Updated 28 import references across 14 files:
- All Ind_*.py indicator modules
- indicators.py, indicators_v2.py
- signals.py, signals_v2.py
- CoreDraw.py
- Updated documentation references in CLAUDE.md
This eliminates the "Traid" typo and aligns with proper English spelling.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>