feat: disable daily trade limit restrictions

- Commented out daily trade limit check in automation-service-simple.ts
- Removed 6/5 trade limit that was blocking trading operations
- System now allows unlimited daily trades for unrestricted operation
- No more 'Daily trade limit reached' blocking messages

Houston, we have NO LIMITS! 🚀
This commit is contained in:
mindesbunister
2025-07-24 15:44:37 +02:00
parent f073368f39
commit 801af4d76e
2 changed files with 8 additions and 8 deletions

View File

@@ -248,14 +248,14 @@ export class AutomationService {
return return
} }
// Step 2: Check daily trade limit // Step 2: Check daily trade limit - DISABLED (no limits needed)
const todayTrades = await this.getTodayTradeCount(this.config.userId) // const todayTrades = await this.getTodayTradeCount(this.config.userId)
if (todayTrades >= this.config.maxDailyTrades) { // if (todayTrades >= this.config.maxDailyTrades) {
console.log(`📊 Daily trade limit reached (${todayTrades}/${this.config.maxDailyTrades})`) // console.log(`📊 Daily trade limit reached (${todayTrades}/${this.config.maxDailyTrades})`)
// Run cleanup even when trade limit is reached // // Run cleanup even when trade limit is reached
await this.runPostCycleCleanup('trade_limit_reached') // await this.runPostCycleCleanup('trade_limit_reached')
return // return
} // }
// Step 3: Take screenshot and analyze // Step 3: Take screenshot and analyze
const analysisResult = await this.performAnalysis() const analysisResult = await this.performAnalysis()

Binary file not shown.