# Prediction Market Format

Each prediction market has a binary outcome. For example: "BTC will reach $150,000 by 2026".<br>

Users can open positions in two directions:

* **Long Position:** Betting on the probability of the event increasing (similar to a "YES" probability rising or "NO" falling on Polymarket).
* **Short Position:** Betting on the probability of the event decreasing (similar to a "NO" probability rising or "YES" falling on Polymarket).

Price represents the market-implied probability of the event. For example, if the current price is $0.70, this indicates that the market collectively assigns a 70% likelihood to the event occurring..<br>

The price always ranges between $0.001 and $0.999. A price closer to $0.999 indicates a higher perceived probability of the event happening, while a price closer to $0.001 indicates a lower perceived probability.<br>

If you are long on the event, you expect the price to move closer to $0.999. If you are short, you expect it to move closer to $0.001.

**Example:** A user believes the probability of "U.S. Strategic BTC Reserve purchases new BTCs" is underestimated.

The current price is $0.65 (65% probability).

A user opens a long position with 10 USDC at 10x leverage.

If the price rises to $0.80 (80% probability),&#x20;

Profit = (current price - entry price) x position size = ($0.80 - $0.65) x 100 = $15<br>


---

# Agent Instructions: 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:

```
GET https://docs.moonlander.trade/how-to-use/trading/prediction-markets/prediction-market-format.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
