fix model mappings,dash updates, trading

This commit is contained in:
Dobromir Popov
2025-07-22 15:44:59 +03:00
parent 3e35b9cddb
commit 1a54fb1d56
32 changed files with 6168 additions and 857 deletions

22
test_cob_dashboard.py Normal file
View 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())