> For the complete documentation index, see [llms.txt](https://guide.moontrader.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.moontrader.com/en-moontrader-docs/welcome.md).

# Welcome!

**MoonTrader** is a professional trading terminal for the cryptocurrency market suitable for both manual and algorithmic trading that supports three major exchanges: Binance, OKX, Bybit.

The terminal solves tradings fundamental issues: high latency of order execution, insecure API key storage, and inability to trade 24/7 — MoonTrader algorithms work around the clock without breaks or weekends. Taking advantage of a client-server architecture, our users can place the trading core close to the exchange servers and achieve institutional execution speed.

**Key Features:**

* **Flexible Trading** — work with candlestick or tick charts with a full set of technical analysis tools
* **Algorithmic Trading** — configure trading algorithms for automated trade execution
* **Remote Management** — manage the terminal through the built-in Telegram bot
* **Maximum Security** — API keys are never stored in plain text. The secret part of the key remains only on your server and exists only in RAM. Uses banking-grade AES256 encryption
* **Minimal Latency** — client-server architecture allows placing the core on a VPS near exchange servers

### How MoonTrader Works

The terminal consists of two independent parts:

#### 1. Core (MTCore)

A console application that works directly with exchanges. Performs all calculations, places orders, runs algorithms, and monitors the market 24/7.

**Important:** trading is impossible without a running core.

#### 2. Client (MoonTrader)

A graphical application on your computer. Displays charts, shows balances and positions, sends trading commands to the core.

**Important:** you can close the client — the core will continue to work and execute algorithms according to the set parameters.

#### How They Communicate

The client and core exchange data via UDP protocol:

* Public information (quotes, trade flow) is transmitted in compressed form
* Private information (your orders, balances, history) is additionally encrypted


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://guide.moontrader.com/en-moontrader-docs/welcome.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
