From 2448fe5c764c6f56e21ad05dd1e3bdebf9b64495 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Mon, 9 Sep 2024 20:50:38 -0500 Subject: [PATCH] noodle fill in graph --- app/Console/Commands/SyncDailyChange.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Console/Commands/SyncDailyChange.php b/app/Console/Commands/SyncDailyChange.php index 4b96190..dda0b35 100644 --- a/app/Console/Commands/SyncDailyChange.php +++ b/app/Console/Commands/SyncDailyChange.php @@ -3,6 +3,7 @@ namespace App\Console\Commands; use Illuminate\Console\Command; +use App\Interfaces\MarketData\MarketDataInterface; class SyncDailyChange extends Command { @@ -37,6 +38,7 @@ class SyncDailyChange extends Command */ public function handle() { - $this->line('test'); + // get history + // $history = app(MarketDataInterface::class)->history($symbol); } }