Available for New Projects

Architecting the
invisible logic.

I’m a Python developer who builds Telegram, Discord bots and Api's, enjoys automation, and loves learning new things. I specialize in high-frequency trading systems, distributed automation, and scalable backend infrastructure.

Core Competencies

Engineering Excellence

Backend Architecture

Engineering robust microservices and monolithic architectures capable of handling high concurrency. Utilizing FastAPI and AsyncIO for non-blocking I/O operations.

Data Pipelines

Constructing resilient ETL pipelines, distributed scrapers, and automation scripts. Transforming raw data into structured insights using Pandas and Celery.

Bot Development

Developing intelligent, stateful bots for Telegram and Discord. Integrating complex payment gateways, crypto wallets, and user management systems.

Selected Works

Production Systems

VIEW CHANNEL
FinTech Architecture

HFT Algorithmic Engine

A high-performance, asynchronous trading system connected to major centralized exchanges via WebSocket streams. Features real-time order book reconstruction, sub-millisecond execution latency, and automated risk management protocols.

Language Python 3.11
Protocol AsyncIO / WSS
Infrastructure Docker / Redis
engine.py
class ExecutionEngine:
  async def process_signal(self, signal):
    # Microsecond precision timing
    t0 = time.perf_counter()
    
    if not await self.risk.check(signal):
      return None
    
    # Execute via WebSocket pool
    order = await self.exchange.place(
      symbol=signal.pair,
      side=signal.side,
      size=self.sizing.calc()
    )

Distributed Crawler

A scalable data harvesting system utilizing rotating residential proxies and headless browser clusters to extract structured data from complex SPAs without detection.

Playwright Celery MongoDB

SaaS Payment Bot

Automated subscription management system integrated within Telegram. Handles recurring crypto/fiat payments, user access control, and trial expirations via webhooks.

Aiogram 3.0 Stripe Postgres