Absolutely Faisal, here’s a full summary of your custom trading automation script in English, without tables: --- Script Capabilities Overview This script is designed to automate your trading workflow by integrating Telegram signals with MetaTrader 5 execution, dynamic lot sizing, and database logging. Here’s what it does: • Telegram Signal Listener: It uses your personal Telegram account (via Telethon) to monitor a specific group for trading signals. You don’t need to be an admin or add a bot to the group. • Signal Parsing: It detects messages like “Buy XAUUSD @ 1985 SL 1975 TP 2005” and extracts the trade type, symbol, entry price, stop loss, and take profit. • Trade Execution in MetaTrader 5: Once a valid signal is parsed, it sends the order directly to MT5 using the MetaTrader5 Python API. It supports both buy and sell orders with full SL/TP configuration. • Dynamic Recovery Lot System: If enabled, the script increases the lot size after each losing trade based on a predefined sequence (e.g., 0.01 → 0.03 → 0.07 → 0.15 → 0.31). You can configure how many recovery attempts are allowed. If a trade hits its target profit, the lot size resets to the base level. • Forwarding to Another Telegram Group: After processing a signal, the script can forward a formatted version of the message to another group for tracking or sharing. • Database Logging: Every signal and trade is saved to a MySQL database. This includes the signal content, trade parameters, lot size used, recovery attempt number, and result (profit or loss). • Configurable Settings: You can control everything from a config file—enable or disable recovery mode, set max attempts, define lot sizes per attempt, choose which groups to monitor and forward to, and set database credentials.