fix model mappings,dash updates, trading
This commit is contained in:
22
test_cob_dashboard.py
Normal file
22
test_cob_dashboard.py
Normal file
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Test COB Dashboard with Enhanced WebSocket
|
||||
"""
|
||||
|
||||
import asyncio
|
||||
import logging
|
||||
from web.cob_realtime_dashboard import COBDashboardServer
|
||||
|
||||
# Setup logging
|
||||
logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
|
||||
)
|
||||
|
||||
async def main():
|
||||
"""Test the COB dashboard"""
|
||||
dashboard = COBDashboardServer(host='localhost', port=8053)
|
||||
await dashboard.start()
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
Reference in New Issue
Block a user