This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Sistema de reconexión automática para el Trading Bot | |
| Maneja recuperación automática de conexiones caídas | |
| """ | |
| import asyncio | |
| import logging | |
| import time | |
| from typing import Dict, List, Optional | |
| from datetime import datetime, timedelta |