fix: hard code USD

This commit is contained in:
hackerESQ
2025-02-01 20:06:40 -06:00
parent 0035879a87
commit 576b22e4c9
@@ -64,6 +64,7 @@ class AlpacaMarketData implements MarketDataInterface
return new Quote([
'name' => Arr::get($fundamental, 'name'),
'symbol' => $symbol,
'currency' => 'USD', // Alpaca only has US equitities
'market_value' => Arr::get($quote, 'p'),
'fifty_two_week_high' => Arr::get($fundamental, 'bars.0.h'),
'fifty_two_week_low' => Arr::get($fundamental, 'bars.0.l'),