Files
investbrain/app/Models/Dividend.php
T

134 lines
5.3 KiB
PHP
Raw Normal View History

2024-08-10 13:30:19 -05:00
<?php
namespace App\Models;
2024-09-06 19:50:28 -05:00
use App\Models\Holding;
use App\Models\MarketData;
use App\Models\Transaction;
use Illuminate\Support\Facades\DB;
2024-08-10 13:30:19 -05:00
use Illuminate\Database\Eloquent\Model;
2024-08-30 21:58:38 -05:00
use App\Interfaces\MarketData\MarketDataInterface;
2024-08-17 18:40:50 -05:00
use Illuminate\Database\Eloquent\Concerns\HasUuids;
2024-08-10 13:30:19 -05:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Dividend extends Model
{
use HasFactory;
2024-08-17 18:40:50 -05:00
use HasUuids;
2024-08-10 13:30:19 -05:00
protected $fillable = [
'symbol',
'date',
'dividend_amount',
];
protected $hidden = [];
protected $casts = [
'date' => 'datetime',
'last_date' => 'datetime',
];
2024-09-01 15:34:55 -05:00
public function marketData() {
return $this->belongsTo(MarketData::class, 'symbol', 'symbol');
}
public function holdings() {
return $this->hasMany(Holding::class, 'symbol', 'symbol');
}
public function transactions() {
return $this->hasMany(Transaction::class, 'symbol', 'symbol');
}
2024-08-10 13:30:19 -05:00
/**
2024-08-30 21:58:38 -05:00
* Grab new dividend data
2024-08-10 13:30:19 -05:00
*
2024-08-30 21:58:38 -05:00
* @param string $symbol
2024-08-10 13:30:19 -05:00
* @return void
*/
2024-08-30 21:58:38 -05:00
public static function refreshDividendData(string $symbol)
2024-08-10 13:30:19 -05:00
{
2024-08-30 21:58:38 -05:00
$dividends_meta = self::where(['symbol' => $symbol])
->selectRaw('COUNT(symbol) as total_dividends')
->selectRaw('MAX(date) as last_date')
->get()
->first();
// assume we need to populate ALL dividend data
$start_date = new \DateTime('@0');
$end_date = now();
// nope, refresh forward looking only
if ( $dividends_meta->total_dividends ) {
$start_date = $dividends_meta->last_date->addHours(48);
2024-08-10 13:30:19 -05:00
}
2024-08-30 21:58:38 -05:00
// get some data
if ($dividend_data = collect() && $start_date && $end_date) {
$dividend_data = app(MarketDataInterface::class)->dividends($symbol, $start_date, $end_date);
}
// ah, we found some dividends...
if ($dividend_data->isNotEmpty()) {
// create mass insert
foreach ($dividend_data as $index => $dividend){
$dividend_data[$index] = [...$dividend, ...['updated_at' => now(), 'created_at' => now()]];
}
// insert records
(new self)->insert($dividend_data->toArray());
// sync to holdings
2024-09-01 15:34:55 -05:00
self::syncHoldings($dividend_data);
2024-08-30 21:58:38 -05:00
2024-09-01 15:34:55 -05:00
// sync last dividend amount to market data table
2024-08-30 21:58:38 -05:00
$market_data = MarketData::symbol($symbol)->first();
2024-09-01 15:34:55 -05:00
$market_data->last_dividend_amount = $dividend_data->sortByDesc('date')->first()['amount'];
$market_data->save();
2024-08-30 21:58:38 -05:00
}
return $dividend_data;
2024-08-10 13:30:19 -05:00
}
2024-09-01 15:34:55 -05:00
public static function syncHoldings($dividend_data): void
{
$symbol = $dividend_data->last()->symbol;
// group by holdings
2024-09-06 19:50:28 -05:00
$dividends = self::select('holdings.portfolio_id', 'dividends.date', 'dividends.symbol', 'dividends.dividend_amount')
->join('transactions', 'transactions.symbol', 'dividends.symbol')
->join('holdings', 'transactions.portfolio_id', 'holdings.portfolio_id')
->leftJoin(DB::raw('(SELECT symbol, portfolio_id, COALESCE(SUM(quantity), 0) AS total_purchased
FROM transactions
WHERE transaction_type = "BUY"
GROUP BY symbol, portfolio_id) AS purchases'), function($join) {
$join->on('purchases.symbol', 'dividends.symbol')
->on('purchases.portfolio_id', 'holdings.portfolio_id');
})
->leftJoin(DB::raw('(SELECT symbol, portfolio_id, COALESCE(SUM(quantity), 0) AS total_sold
FROM transactions
WHERE transaction_type = "SELL"
GROUP BY symbol, portfolio_id) AS sales'), function($join) {
$join->on('sales.symbol', 'dividends.symbol')
->on('sales.portfolio_id', 'holdings.portfolio_id');
})
->selectRaw('COALESCE(purchases.total_purchased, 0) - COALESCE(sales.total_sold, 0) AS owned')
->selectRaw('(COALESCE(purchases.total_purchased, 0) - COALESCE(sales.total_sold, 0)) * dividends.dividend_amount AS dividends_received')
->where('dividends.symbol', $dividend_data->last()->symbol)
->groupBy('holdings.portfolio_id', 'dividends.date', 'dividends.symbol', 'dividends.dividend_amount')
->get();
2024-09-01 15:34:55 -05:00
// iterate through holdings and update
Holding::where(['symbol' => $symbol])
->get()
->each(function ($holding) use ($dividends) {
$holding->update([
'dividends_earned' => $dividends->where('portfolio_id', $holding->portfolio_id)
->sum('dividends_received')
]);
});
2024-08-10 13:30:19 -05:00
}
}