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
| #!/usr/bin/env python3 | |
| """ | |
| CandleBot v2 — Análise de Candles Rise/Fall (Entrada por Cruzamento RSI) | |
| Baseado no CandleBot original, com lógica de entrada por cruzamento de threshold. | |
| Porta 8006. | |
| """ | |
| import sys | |
| import os | |
| import json |
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
| #!/usr/bin/env python3 | |
| """ | |
| CandleBot — Análise de Candles Rise/Fall | |
| Baseado em candles (OHLC) da Deriv API. | |
| Suporte a mercados sintéticos e reais (Forex, Commodities, Índices OTC). | |
| Porta 8005. | |
| """ | |
| import sys | |
| import os |
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
| #!/usr/bin/env python3 | |
| """ | |
| CandleBot — Análise de Candles Rise/Fall | |
| Baseado em candles (OHLC) da Deriv API. | |
| Suporte a mercados sintéticos e reais (Forex, Commodities, Índices OTC). | |
| Porta 8005. | |
| """ | |
| import sys | |
| import os |