8511cc833d
also add comments to each command
36 lines
1000 B
PHP
36 lines
1000 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schedule;
|
|
use App\Console\Commands\{RefreshMarketData, CaptureDailyChange, RefreshDividendData, RefreshSplitData, SyncHoldingData};
|
|
|
|
/**
|
|
*
|
|
* This scheduled job refreshes market data from your selected data provider
|
|
* Update the cadence with the MARKET_DATA_REFRESH key in your env file
|
|
*/
|
|
Schedule::command(RefreshMarketData::class)->weekdays()->everyMinute();
|
|
|
|
/**
|
|
*
|
|
* This scheduled job records daily changes to your portfolios every weekday
|
|
*/
|
|
Schedule::command(CaptureDailyChange::class)->weekdays();
|
|
|
|
/**
|
|
*
|
|
* Refreshes dividend data for your holdings (and syncs new dividends to holdings)
|
|
*/
|
|
Schedule::command(RefreshDividendData::class)->weekly();
|
|
|
|
/**
|
|
*
|
|
* Refreshes split data for your holdings (and creates new transactions for new splits)
|
|
*/
|
|
Schedule::command(RefreshSplitData::class)->monthly();
|
|
|
|
/**
|
|
*
|
|
* Periodically reconciles your holdings with transactions and dividends
|
|
*/
|
|
Schedule::command(SyncHoldingData::class)->yearly();
|