Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion investing_algorithm_framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
SnapshotInterval, AWS_S3_STATE_BUCKET_NAME, BacktestEvaluationFocus, \
save_backtests_to_directory, BacktestMetrics, DATA_DIRECTORY
from .infrastructure import AzureBlobStorageStateHandler, \
CSVOHLCVDataProvider, CCXTOHLCVDataProvider, CCXTTickerDataProvider, \
CSVOHLCVDataProvider, CSVTickerDataProvider, \
CCXTOHLCVDataProvider, CCXTTickerDataProvider, \
PandasOHLCVDataProvider, \
AWSS3StorageStateHandler
from .create_app import create_app
Expand Down Expand Up @@ -110,6 +111,7 @@
'select_backtest_date_ranges',
'DataType',
'CSVOHLCVDataProvider',
'CSVTickerDataProvider',
"CCXTOHLCVDataProvider",
"CCXTTickerDataProvider",
"DataProvider",
Expand Down
4 changes: 3 additions & 1 deletion investing_algorithm_framework/infrastructure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
SQLOrderMetadataRepository
from .services import AzureBlobStorageStateHandler, AWSS3StorageStateHandler, \
BacktestService
from .data_providers import CSVOHLCVDataProvider, get_default_data_providers, \
from .data_providers import CSVOHLCVDataProvider, \
CSVTickerDataProvider, get_default_data_providers, \
get_default_ohlcv_data_providers, CCXTOHLCVDataProvider, \
CCXTTickerDataProvider, PandasOHLCVDataProvider
from .order_executors import CCXTOrderExecutor, BacktestOrderExecutor
Expand Down Expand Up @@ -40,6 +41,7 @@
"SQLTradeStopLossRepository",
"SQLOrderMetadataRepository",
"CSVOHLCVDataProvider",
"CSVTickerDataProvider",
"CCXTOrderExecutor",
"CCXTPortfolioProvider",
"get_default_data_providers",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .ccxt import CCXTOHLCVDataProvider, CCXTTickerDataProvider
from .csv import CSVOHLCVDataProvider
from .csv import CSVOHLCVDataProvider, CSVTickerDataProvider
from .pandas import PandasOHLCVDataProvider


Expand Down Expand Up @@ -30,6 +30,7 @@ def get_default_ohlcv_data_providers():

__all__ = [
'CSVOHLCVDataProvider',
'CSVTickerDataProvider',
'CCXTOHLCVDataProvider',
'CCXTTickerDataProvider',
'get_default_data_providers',
Expand Down
Loading
Loading