Convert timezone from GMT+0 to Cambodia GMT+7

- Updated session input parameters with Cambodia timezone (GMT+7)
- Modified GetCurrentSession() function to use Cambodia time offset
- Adjusted session times to avoid midnight crossover complexity:
  * Asia Session: 07:00-16:00 Cambodia Time
  * London Session: 15:00-23:59 Cambodia Time
  * New York Session: 20:00-23:59 Cambodia Time
- Updated documentation (README.md, PRD.md) to reflect timezone changes
- Added debug logging for timezone verification
- Prepared for Phase 3 implementation with proper Cambodia timezone support
This commit is contained in:
rithsila
2025-09-26 10:02:26 +07:00
parent e80b78345e
commit e20b066d60
3 changed files with 62 additions and 34 deletions
+9 -9
View File
@@ -39,19 +39,19 @@ Develop a sophisticated MT5 Expert Advisor that implements institutional trading
#### Asia Session
- **Time Range**: 00:00 - 09:00 GMT
- **Time Range**: 07:00 - 16:00 Cambodia Time (GMT+7)
- **Characteristics**: Range-bound, lower volatility
- **Strategy Focus**: Liquidity sweep reversals
#### London Session
- **Time Range**: 08:00 - 17:00 GMT
- **Time Range**: 15:00 - 23:59 Cambodia Time (GMT+7)
- **Characteristics**: High volatility, strong trends
- **Strategy Focus**: BOS continuation trades
#### New York Session
- **Time Range**: 13:00 - 22:00 GMT
- **Time Range**: 20:00 - 23:59 Cambodia Time (GMT+7)
- **Characteristics**: High volume, institutional activity
- **Strategy Focus**: Order block reactions
@@ -148,12 +148,12 @@ UseTimeFilter = true // Enable session filtering
#### Session Settings
```
AsiaStart = "00:00" // Asia session start
AsiaEnd = "09:00" // Asia session end
LondonStart = "08:00" // London session start
LondonEnd = "17:00" // London session end
NYStart = "13:00" // New York session start
NYEnd = "22:00" // New York session end
AsiaStart = "07:00" // Asia session start (Cambodia Time GMT+7)
AsiaEnd = "16:00" // Asia session end (Cambodia Time GMT+7)
LondonStart = "15:00" // London session start (Cambodia Time GMT+7)
LondonEnd = "23:59" // London session end (Cambodia Time GMT+7)
NYStart = "20:00" // New York session start (Cambodia Time GMT+7)
NYEnd = "23:59" // New York session end (Cambodia Time GMT+7)
```
#### Symbol Configuration