fix:don't run dividend sync daily (run odd weekdays)

This commit is contained in:
hackerESQ
2024-10-01 13:41:40 -05:00
parent 9e173ecc35
commit 231c9ffc6e
+1 -1
View File
@@ -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();
/**
*