remove emojis from console

This commit is contained in:
Dobromir Popov
2025-10-25 16:35:08 +03:00
parent 5aa4925cff
commit b8f54e61fa
75 changed files with 828 additions and 828 deletions

View File

@@ -73,9 +73,9 @@ def generate_reports_example():
print(f"\nBatch Results:")
for symbol, data in results.items():
if data:
print(f" {symbol}: ${data.current_price:,.2f} (RSI: {data.current_rsi_7:.1f})")
print(f" {symbol}: ${data.current_price:,.2f} (RSI: {data.current_rsi_7:.1f})")
else:
print(f" {symbol}: Failed to get data")
print(f" {symbol}: Failed to get data")
return True