diff --git a/lib/automation-service-simple.ts b/lib/automation-service-simple.ts index 35698e2..ffe12ce 100644 --- a/lib/automation-service-simple.ts +++ b/lib/automation-service-simple.ts @@ -248,14 +248,14 @@ export class AutomationService { return } - // Step 2: Check daily trade limit - const todayTrades = await this.getTodayTradeCount(this.config.userId) - if (todayTrades >= this.config.maxDailyTrades) { - console.log(`📊 Daily trade limit reached (${todayTrades}/${this.config.maxDailyTrades})`) - // Run cleanup even when trade limit is reached - await this.runPostCycleCleanup('trade_limit_reached') - return - } + // Step 2: Check daily trade limit - DISABLED (no limits needed) + // const todayTrades = await this.getTodayTradeCount(this.config.userId) + // if (todayTrades >= this.config.maxDailyTrades) { + // console.log(`📊 Daily trade limit reached (${todayTrades}/${this.config.maxDailyTrades})`) + // // Run cleanup even when trade limit is reached + // await this.runPostCycleCleanup('trade_limit_reached') + // return + // } // Step 3: Take screenshot and analyze const analysisResult = await this.performAnalysis() diff --git a/prisma/prisma/dev.db b/prisma/prisma/dev.db index 9d38517..cb0f180 100644 Binary files a/prisma/prisma/dev.db and b/prisma/prisma/dev.db differ