8000 esshka (Eugeny) Β· GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View esshka's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report esshka

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
esshka/README.md

Hi there, I'm Eugene πŸ‘‹

πŸš€ About Me

I'm a passionate software engineer specializing in algorithmic trading systems and financial technology. Currently developing cutting-edge market making software that leverages genetic algorithms and deep learning to optimize trading strategies.

🎯 What I'm Working On

  • TA2 Trading Automation Platform - A comprehensive trading system with microservices architecture
  • Market Making Algorithms - Advanced genetic algorithms combined with deep learning models
  • Real-time Financial Data Processing - High-performance systems for market data analysis

🌟 Key Expertise

  • Algorithmic Trading - Market making, strategy development, and backtesting systems
  • Machine Learning - Deep learning models for financial prediction and optimization
  • Distributed Systems - Microservices, event-driven architecture, and real-time processing
  • Financial Technology - Exchange integrations, order management, and risk systems

πŸ› οΈ Technology Stack

Languages

Python Rust Java JavaScript Kotlin Clojure C# Ruby

Machine Learning & Data

TensorFlow PyTorch scikit-learn Pandas Keras

Infrastructure & DevOps

Docker Kubernetes AWS Terraform Grafana Prometheus

Databases & Messaging

PostgreSQL Redis Neo4j Apache Kafka NATS

Frontend & Web

React Node.js Three.js WebGL

πŸ“ˆ GitHub Activity

GitHub Activity Graph

GitHub Streak

πŸ† Achievements

GitHub Trophies

πŸ“Š Development Focus

Algorithmic Trading    β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ  90%
Machine Learning       β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ  85%
System Architecture    β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ   80%
Financial Technology   β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ  90%

πŸ“ Latest Articles & Insights

I share my thoughts on algorithmic trading, machine learning, and software engineering:

Medium

🀝 Let's Connect

I'm always interested in discussing:

  • Algorithmic Trading Strategies
  • Machine Learning in Finance
  • High-Performance Systems Design
  • Open Source Collaboration

Feel free to reach out if you'd like to collaborate on projects or discuss innovative approaches to financial technology!


"The best investment you can make is in yourself and your ability to learn."

Profile Views

Pinned Loading

  1. snake game state snake game state
    1
    import { makeAutoObservable } from 'mobx';
    2
    
                  
    3
    class SnakeGameStore {
    4
      // Defining the game grid size
    5
      gridSize = 10;
  2. tmux_cheatsheet.markdown tmux_cheatsheet.markdown
    1
    # tmux cheatsheet
    2
    
                  
    3
    As configured in [my dotfiles](https://github.com/henrik/dotfiles/blob/master/tmux.conf).
    4
    
                  
    5
    start new:
  3. Demonstration of implementation "inh... Demonstration of implementation "inheritance" in clojure
    1
    ;; Define a "base type" of Dog
    2
    (defrecord Dog [breed])
    3
    
                  
    4
    ;; Define a "sub type" of TrainedDog
    5
    (defrecord TrainedDog [dog word])
  4. pole balancing benchmark for genetic... pole balancing benchmark for genetic algorithm
    1
    const MAX_TIMESTEPS = 1000;
    2
    
                  
    3
    function initializeCartPoleEnvironment() {
    4
      const gravity = 9.8; // Acceleration due to gravity, m/s^2
    5
      const cartMass = 1.0; // Mass of the cart
  5. 0. description.md 0. description.md
    1
    - `defprotocol`: defines an interface
    2
    - `deftype`: create a bare-bones object which implements a protocol
    3
    - `defrecord`: creates an immutable persistent map which implements a protocol
    4
    
                  
    5
    Typically you'll use `defrecord` (or even a basic `map`);  
  6. compatibilityDistance.js compatibilityDistance.js
    1
    function compatibilityDistance(network1, network2, c1 = 1, c2 = 1, c3 = 0.4) {
    2
      const i1 = new Set(network1.connections.map((c) => c.innovation));
    3
      const i2 = new Set(network2.connections.map((c) => c.innovation));
    4
    
                  
    5
      const disjoint =
0