wip COB data source - not ready
This commit is contained in:
10
main.py
10
main.py
@ -51,12 +51,12 @@ async def run_web_dashboard():
|
||||
config = get_config()
|
||||
|
||||
# Initialize core components for streamlined pipeline
|
||||
from core.data_provider import DataProvider
|
||||
from core.standardized_data_provider import StandardizedDataProvider
|
||||
from core.orchestrator import TradingOrchestrator
|
||||
from core.trading_executor import TradingExecutor
|
||||
|
||||
# Create data provider
|
||||
data_provider = DataProvider()
|
||||
# Create standardized data provider (validated BaseDataInput, pivots, COB)
|
||||
data_provider = StandardizedDataProvider()
|
||||
|
||||
# Start real-time streaming for BOM caching
|
||||
try:
|
||||
@ -153,13 +153,13 @@ def start_web_ui(port=8051):
|
||||
|
||||
# Import and create the Clean Trading Dashboard
|
||||
from web.clean_dashboard import CleanTradingDashboard
|
||||
from core.data_provider import DataProvider
|
||||
from core.standardized_data_provider import StandardizedDataProvider
|
||||
from core.orchestrator import TradingOrchestrator
|
||||
from core.trading_executor import TradingExecutor
|
||||
|
||||
# Initialize components for the dashboard
|
||||
config = get_config()
|
||||
data_provider = DataProvider()
|
||||
data_provider = StandardizedDataProvider()
|
||||
|
||||
# Start real-time streaming for BOM caching (non-blocking)
|
||||
try:
|
||||
|
Reference in New Issue
Block a user