agentson
09e6eef3bf
feat: unify domestic scanner and sizing; update docs
CI / test (pull_request) Has been cancelled
2026-02-17 06:15:20 +09:00
agentson
10b15a4563
docs: reflect overseas ranking integration and volatility-first selection
2026-02-17 05:57:56 +09:00
agentson
9a8936ab34
docs: add plan-implementation consistency check to code review checklist ( #114 )
...
CI / test (pull_request) Has been cancelled
리뷰 시 플랜과 구현의 일치 여부를 필수로 확인하는 규칙 추가.
- workflow.md에 Code Review Checklist 섹션 신설
- requirements-log.md에 사용자 요구사항 기록
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-10 04:15:51 +09:00
agentson
7725e7a8de
docs: update documentation for Smart Volatility Scanner
...
CI / test (pull_request) Has been cancelled
Update project documentation to reflect new Smart Volatility Scanner feature:
## CLAUDE.md
- Add Smart Volatility Scanner section with configuration guide
- Update project structure to include analysis/ module
- Update test count (273→343 tests)
## docs/architecture.md
- Add Analysis component (VolatilityAnalyzer + SmartVolatilityScanner)
- Add new KIS API methods (fetch_market_rankings, get_daily_prices)
- Update data flow diagram to show Python-first filtering pipeline
- Add selection_context to database schema documentation
- Add Smart Scanner configuration section
- Renumber components (Brain 2→3, Risk Manager 3→4, etc.)
## docs/requirements-log.md
- Document 2026-02-06 requirement for Smart Volatility Scanner
- Explain Python-First, AI-Last pipeline rationale
- Record implementation details and benefits
- Reference issue #76 and PR #77
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2026-02-06 07:35:25 +09:00
agentson
0057de4d12
feat: implement daily trading mode with batch decisions (issue #57 )
...
CI / test (pull_request) Has been cancelled
Add API-efficient daily trading mode for Gemini Free tier compatibility:
## Features
- **Batch Decisions**: GeminiClient.decide_batch() analyzes multiple stocks
in a single API call using compressed JSON format
- **Daily Trading Mode**: run_daily_session() executes N sessions per day
at configurable intervals (default: 4 sessions, 6 hours apart)
- **Mode Selection**: TRADE_MODE env var switches between daily (batch)
and realtime (per-stock) modes
- **Requirements Log**: docs/requirements-log.md tracks user feedback
chronologically for project evolution
## Configuration
- TRADE_MODE: "daily" (default) | "realtime"
- DAILY_SESSIONS: 1-10 (default: 4)
- SESSION_INTERVAL_HOURS: 1-24 (default: 6)
## API Efficiency
- 2 markets × 4 sessions = 8 API calls/day (within Free tier 20 calls)
- 3 markets × 4 sessions = 12 API calls/day (within Free tier 20 calls)
## Testing
- 9 new batch decision tests (all passing)
- All existing tests maintained (298 passed)
## Documentation
- docs/architecture.md: Trading Modes section with daily vs realtime
- CLAUDE.md: Requirements Management section
- docs/requirements-log.md: Initial entries for API efficiency needs
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2026-02-05 09:28:10 +09:00