Skip to content

Commit

Permalink
revert/remove: class HistoricalDataProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes committed Feb 16, 2024
1 parent 6a15cec commit 64a8fbc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 32 deletions.
4 changes: 0 additions & 4 deletions lean/models/brokerages/local/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@
from lean.models.brokerages.local.local_brokerage import LocalBrokerage
from lean.models.brokerages.local.data_feed import DataFeed
from lean.models import json_modules
from lean.models.brokerages.local.historical_data_provider import HistoricalDataProvider

all_local_brokerages: List[LocalBrokerage] = []
all_local_data_feeds: List[DataFeed] = []
all_local_historical_data_providers: List[HistoricalDataProvider] = []
local_brokerage_data_feeds: Dict[Type[LocalBrokerage],
List[Type[DataFeed]]] = {}

Expand All @@ -30,8 +28,6 @@
all_local_brokerages.append(LocalBrokerage(json_module))
if "data-queue-handler" in json_module["type"]:
all_local_data_feeds.append(DataFeed(json_module))
if "data-provider" in json_module["type"]:
all_local_historical_data_providers.append(HistoricalDataProvider(json_module))

# Remove IQFeed DataFeed for other than windows machines
if not [container.platform_manager.is_host_windows() or environ.get("__README__", "false") == "true"]:
Expand Down
28 changes: 0 additions & 28 deletions lean/models/brokerages/local/historical_data_provider.py

This file was deleted.

0 comments on commit 64a8fbc

Please sign in to comment.