feat:configurable time of day to capture daily changes

This commit is contained in:
hackerESQ
2024-10-25 15:41:07 -05:00
parent 194ad4a532
commit 0434bc6961
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ Schedule::command(RefreshMarketData::class)->everyMinute()->weekdays();
*
* This scheduled job records daily changes to your portfolios every weekday
*/
Schedule::command(CaptureDailyChange::class)->dailyAt('23:00')->weekdays();
Schedule::command(CaptureDailyChange::class)->dailyAt(config('daily_change_time_of_day'))->weekdays();
/**
*