From 231c9ffc6ebf977f081273258abc4da7c70392db Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Tue, 1 Oct 2024 13:41:40 -0500 Subject: [PATCH] fix:don't run dividend sync daily (run odd weekdays) --- routes/console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/console.php b/routes/console.php index 8392eea..5d7cf9a 100644 --- a/routes/console.php +++ b/routes/console.php @@ -20,7 +20,7 @@ Schedule::command(CaptureDailyChange::class)->daily()->weekdays(); * * Refreshes dividend data for your holdings (and syncs new dividends to holdings) */ -Schedule::command(RefreshDividendData::class)->daily()->weekdays(); +Schedule::command(RefreshDividendData::class)->days([1, 3, 5])->weekdays(); /** *