everyMinute()->weekdays(); /** * * This scheduled job records daily changes to your portfolios every weekday */ Schedule::command(CaptureDailyChange::class)->dailyAt('23:00')->weekdays(); /** * * Refreshes dividend data for your holdings (and syncs new dividends to holdings) */ Schedule::command(RefreshDividendData::class)->days([1, 3, 5])->weekdays(); /** * * Refreshes split data for your holdings (and creates new transactions for new splits) */ Schedule::command(RefreshSplitData::class)->weekly(); /** * * Periodically reconciles your holdings with transactions and dividends */ Schedule::command(SyncHoldingData::class)->yearly();