wip sync daily holdings

This commit is contained in:
hackerESQ
2024-09-11 23:04:21 -05:00
parent eb6e7b9002
commit a4f2def766
4 changed files with 53 additions and 11 deletions
@@ -89,7 +89,7 @@ class AlphaVantageMarketData implements MarketDataInterface
public function history($symbol, $startDate, $endDate): Collection
{
$history = Alphavantage::timeSeries()->daily($symbol);
$history = Alphavantage::timeSeries()->daily($symbol, 'full');
$history = Arr::get($history, 'Time Series (Daily)', []);