investing-algorithm-framework 1.6__tar.gz → 1.6.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/PKG-INFO +1 -1
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/app.py +3 -1
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/dependency_container.py +3 -3
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/market_data_sources/ccxt.py +4 -4
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/services/ccxt_market_service.py +1 -1
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework.egg-info/PKG-INFO +1 -1
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/AUTHORS.md +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/LICENSE +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/README.md +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/algorithm.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/stateless/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/stateless/action_handlers/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/stateless/action_handlers/action_handler_strategy.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/stateless/action_handlers/check_online_handler.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/stateless/action_handlers/run_strategy_handler.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/stateless/exception_handler.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/strategy.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/task.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/controllers/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/controllers/orders.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/controllers/portfolio.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/controllers/positions.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/create_app.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/error_handler.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/responses.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/run_strategies.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/schemas/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/schemas/order.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/schemas/portfolio.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/schemas/position.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/app/web/setup_cors.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/create_app.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/config.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/constants.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/decimal_parsing.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/exceptions.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/backtest_profile.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/base_model.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/market_data/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/market_data/asset_price.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/market_data/ohlcv.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/market_data/order_book.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/market_data/ticker.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/order/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/order/order.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/order/order_fee.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/order/order_side.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/order/order_status.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/order/order_type.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/portfolio/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/portfolio/portfolio.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/portfolio/portfolio_configuration.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/portfolio/portfolio_snapshot.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/position/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/position/position.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/position/position_snapshot.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/strategy_profile.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/time_frame.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/time_interval.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/time_unit.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/trade.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/trading_data_types.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/models/trading_time_frame.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/services/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/services/market_data_sources.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/singleton.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/stateless_actions.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/strategy.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/utils/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/utils/backtesting.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/utils/csv.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/utils/random.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/utils/signatures.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/utils/stoppable_thread.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/domain/utils/synchronized.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/database/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/database/sql_alchemy.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/decimal_parser.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/market_data_sources/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/model_extension.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/order/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/order/order.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/order/order_fee.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/portfolio/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/portfolio/portfolio.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/portfolio/portfolio_snapshot.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/position/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/position/position.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/models/position/position_snapshot.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/repositories/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/repositories/order_fee_repository.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/repositories/order_repository.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/repositories/portfolio_repository.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/repositories/portfolio_snapshot_repository.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/repositories/position_repository.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/repositories/position_snapshot_repository.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/repositories/repository.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/services/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/services/market_backtest_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/services/market_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/services/performance_backtest_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/infrastructure/services/performance_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/__init__.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/backtest_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/configuration_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/market_data_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/order_backtest_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/order_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/portfolio_configuration_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/portfolio_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/portfolio_snapshot_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/position_cost_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/position_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/position_snapshot_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/repository_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework/services/strategy_orchestrator_service.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework.egg-info/SOURCES.txt +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework.egg-info/dependency_links.txt +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework.egg-info/requires.txt +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/investing_algorithm_framework.egg-info/top_level.txt +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/setup.cfg +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/setup.py +0 -0
- {investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/tests/test_create_app.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: investing_algorithm_framework
|
|
3
|
-
Version: 1.6
|
|
3
|
+
Version: 1.6.2
|
|
4
4
|
Summary: A framework for creating an investment algorithm
|
|
5
5
|
Home-page: https://github.com/coding-kitties/investing-algorithm-framework.git
|
|
6
6
|
Download-URL: https://github.com/coding-kitties/investing-algorithm-framework/archive/v0.1.1.tar.gz
|
|
@@ -19,7 +19,7 @@ from investing_algorithm_framework.domain import DATABASE_NAME, TimeUnit, \
|
|
|
19
19
|
SQLALCHEMY_DATABASE_URI, OperationalException, PortfolioConfiguration, \
|
|
20
20
|
BACKTESTING_FLAG, BACKTESTING_START_DATE, BACKTEST_DATA_DIRECTORY_NAME
|
|
21
21
|
from investing_algorithm_framework.infrastructure import setup_sqlalchemy, \
|
|
22
|
-
create_all_tables, MarketBacktestService, MarketService
|
|
22
|
+
create_all_tables, MarketBacktestService, MarketService, CCXTMarketService
|
|
23
23
|
from investing_algorithm_framework.services import OrderBacktestService
|
|
24
24
|
|
|
25
25
|
logger = logging.getLogger("investing_algorithm_framework")
|
|
@@ -513,6 +513,8 @@ class App:
|
|
|
513
513
|
self.algorithm, start_date, end_date
|
|
514
514
|
)
|
|
515
515
|
configuration_service.config[BACKTESTING_FLAG] = False
|
|
516
|
+
self.container.market_service.override(CCXTMarketService)
|
|
517
|
+
self.container.order_service.override(Order)
|
|
516
518
|
return report
|
|
517
519
|
|
|
518
520
|
def get_ohclv(
|
|
@@ -2,9 +2,9 @@ from dependency_injector import containers, providers
|
|
|
2
2
|
|
|
3
3
|
from investing_algorithm_framework.app.algorithm import Algorithm
|
|
4
4
|
from investing_algorithm_framework.infrastructure import SQLOrderRepository, \
|
|
5
|
-
SQLPositionRepository,
|
|
5
|
+
SQLPositionRepository, SQLPortfolioRepository, \
|
|
6
6
|
SQLOrderFeeRepository, SQLPortfolioSnapshotRepository, \
|
|
7
|
-
SQLPositionSnapshotRepository, PerformanceService
|
|
7
|
+
SQLPositionSnapshotRepository, PerformanceService, CCXTMarketService
|
|
8
8
|
from investing_algorithm_framework.services import OrderService, \
|
|
9
9
|
PositionService, PortfolioService, StrategyOrchestratorService, \
|
|
10
10
|
PortfolioConfigurationService, MarketDataService, BackTestService, \
|
|
@@ -33,7 +33,7 @@ class DependencyContainer(containers.DeclarativeContainer):
|
|
|
33
33
|
portfolio_snapshot_repository = providers.Factory(
|
|
34
34
|
SQLPortfolioSnapshotRepository
|
|
35
35
|
)
|
|
36
|
-
market_service = providers.Factory(
|
|
36
|
+
market_service = providers.Factory(CCXTMarketService)
|
|
37
37
|
market_data_service = providers.Factory(
|
|
38
38
|
MarketDataService,
|
|
39
39
|
market_service=market_service
|
|
@@ -279,15 +279,15 @@ class CCXTTickerBacktestMarketDataSource(
|
|
|
279
279
|
if backtest_index_date == row_date:
|
|
280
280
|
return {
|
|
281
281
|
"symbol": self.symbol,
|
|
282
|
-
"bid": row[4],
|
|
283
|
-
"ask": row[4],
|
|
282
|
+
"bid": float(row[4]),
|
|
283
|
+
"ask": float(row[4]),
|
|
284
284
|
"datetime": row[0],
|
|
285
285
|
}
|
|
286
286
|
elif previous_row is not None:
|
|
287
287
|
return {
|
|
288
288
|
"symbol": self.symbol,
|
|
289
|
-
"bid": previous_row[4],
|
|
290
|
-
"ask": previous_row[4],
|
|
289
|
+
"bid": float(previous_row[4]),
|
|
290
|
+
"ask": float(previous_row[4]),
|
|
291
291
|
"datetime": previous_row[0],
|
|
292
292
|
}
|
|
293
293
|
else:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: investing-algorithm-framework
|
|
3
|
-
Version: 1.6
|
|
3
|
+
Version: 1.6.2
|
|
4
4
|
Summary: A framework for creating an investment algorithm
|
|
5
5
|
Home-page: https://github.com/coding-kitties/investing-algorithm-framework.git
|
|
6
6
|
Download-URL: https://github.com/coding-kitties/investing-algorithm-framework/archive/v0.1.1.tar.gz
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{investing_algorithm_framework-1.6 → investing_algorithm_framework-1.6.2}/tests/test_create_app.py
RENAMED
|
File without changes
|