EGY-AI Logo
EGY-AI
Live GA trading engine
๐Ÿ“šReference

Glossary

Every technical term used across EGY-AI, explained in plain language.

AllGATradingIndicatorsRiskCryptoTechGeneral
Algorithm
General

A set of rules or steps a computer follows to solve a problem or make a decision.

Algorithmic trading
Trading

Using computer programs to execute trades automatically based on predefined rules or learned strategies.

Ask
Trading

The lowest price a seller is willing to accept right now. Also called the offer.

Backtest
Trading

Testing a trading strategy on historical data to see how it would have performed in the past.

Bid
Trading

The highest price a buyer is willing to pay right now.

BTC
Crypto

Bitcoin. The world's first and most traded cryptocurrency.

Candle / Kline
Trading

A data point summarising price movement over a time period โ€” open, high, low, close, and volume.

Chromosome
GA

Another word for genome in genetic algorithms โ€” the full set of parameters describing one individual.

Circuit breaker
Risk

An automatic rule that pauses trading when losses exceed a threshold. EGY-AI uses an 8% session stop-loss.

Crossover
GA

In a genetic algorithm, combining two parent individuals to create a child that inherits traits from both.

Depth
Trading

The volume of orders waiting at each price level in the order book. More depth = more liquidity.

Drawdown
Risk

The percentage drop from a portfolio's peak value to its lowest point. A key risk metric.

Elite / Elitism
GA

In a genetic algorithm, keeping the best individuals unchanged in the next generation so good solutions are never lost.

Evolution cycle
GA

One complete generation in a genetic algorithm: evaluate โ†’ select โ†’ crossover โ†’ mutate โ†’ repeat.

Fitness function
GA

The formula used to score how good an individual is. EGY-AI's fitness penalises drawdown and fees.

Generation
GA

One complete cycle of a genetic algorithm. EGY-AI runs one generation every 45 seconds.

Genetic Algorithm (GA)
GA

An optimisation technique inspired by biological evolution. Evolves a population of solutions toward better performance.

Genome / Individual
GA

One candidate solution in a genetic algorithm. In EGY-AI, a specific set of strategy parameters.

Leverage
Trading

Borrowing to amplify your position size. 2x leverage means you control twice as much as you put in โ€” gains and losses are both doubled.

Liquidity
Trading

How easily an asset can be bought or sold without significantly moving its price.

Long
Trading

A position that profits when the price goes up. 'Going long' means buying.

Momentum
Indicators

The speed and strength of recent price movement. RSI measures momentum.

Moving Average (MA)
Indicators

The average price over a recent window of candles. Smooths out noise to show trend direction.

Mutation
GA

Randomly changing part of an individual's genome to introduce new variation and prevent stagnation.

Next.js
Tech

The web framework EGY-AI is built on. A React-based framework for building production web applications.

Order book
Trading

A live list of all buy and sell orders waiting to be matched on an exchange.

Overbought
Indicators

RSI above 70 โ€” the asset has been rising strongly, potential reversal zone.

Oversold
Indicators

RSI below 30 โ€” the asset has been falling strongly, potential bounce zone.

P&L
Trading

Profit and Loss. The net gain or loss from your trading activity.

Population
GA

In a genetic algorithm, the group of candidate solutions being evolved simultaneously.

RSI
Indicators

Relative Strength Index. A 0โ€“100 momentum indicator measuring the speed of recent price changes.

Selection
GA

Choosing which individuals reproduce. EGY-AI uses tournament selection.

Short
Trading

A position that profits when the price goes down. 'Going short' means selling what you don't own.

Simulator
General

EGY-AI is a trading simulator โ€” real market data, but no real money.

Slippage
Trading

The difference between expected trade price and actual fill price, caused by fast market movement.

Spread
Trading

The gap between best bid and best ask. Smaller spread = more liquid market.

Stop-loss
Risk

A rule that closes a position or pauses trading when losses hit a set limit.

Tournament selection
GA

A selection method where a small random group competes and the best one wins โ€” used in EGY-AI's GA.

USDT
Crypto

A stablecoin pegged 1:1 to the US Dollar. Used as the quote currency in BTC/USDT.

Volatility
Trading

How much and how fast a price moves. High volatility = large price swings in short time.

WebSocket
Tech

A real-time communication protocol. EGY-AI uses it to receive live Binance data with minimal delay.

Zustand
Tech

The state management library EGY-AI uses. Manages shared data (price, balances, GA state) across all components.