> ## Documentation Index
> Fetch the complete documentation index at: https://docs.joinmobius.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Chart types in Mobius

> Mobius supports line, area, candlestick, baseline, histogram, trade setup, scatter, stacked bar, and multi-series overlay charts — all generated from natural language.

Mobius automatically selects the most appropriate chart type based on your request. You can also specify a chart type explicitly in your message. Below is a reference for every chart type available.

## Price and time series charts

### Line chart

A continuous line connecting data points over time. Best for tracking a single metric over time with clean visual clarity.

```
Show me AAPL closing price over the last 5 years as a line chart.
```

### Area chart

A line chart with the area below the line filled in. Good for emphasizing cumulative growth or portfolio value over time.

```
Plot my portfolio equity curve as an area chart.
```

### Baseline chart

A line chart with a horizontal baseline (typically zero or a reference value). The area above the baseline is colored differently from the area below, making it easy to spot periods of outperformance and underperformance.

```
Show SPY returns relative to its baseline since 2020.
```

### Bar / histogram chart

Vertical bars representing value at each time period. Useful for volume, earnings, or any discrete periodic data.

```
Plot AAPL quarterly revenue as a bar chart.
```

### Candlestick chart

Shows OHLC (Open, High, Low, Close) for each period as a candle. Green candles indicate the price closed higher; red candles indicate it closed lower. The standard chart for price action analysis.

```
Candlestick chart of BTC/USD for the past 30 days on daily bars.
```

## Technical analysis charts

### Trade setup chart

A candlestick chart with overlaid annotations for trade analysis — entry price, stop-loss level, take-profit target, Fibonacci retracement levels, support/resistance zones, and trendlines. Use this to plan or review a trade.

```
Show me a trade setup for NVDA — mark entry at 900, stop at 860, target at 1000.
```

```
Draw Fibonacci retracement on TSLA from the last swing low to the recent high.
```

### Multi-series overlay

Multiple data series plotted on the same time axis with optional secondary y-axis. Use for comparing assets, overlaying an indicator on a price chart, or plotting two correlated series.

```
Overlay the SPY price with its 50-day and 200-day SMA.
```

```
Compare AAPL, MSFT, and GOOGL performance on the same chart since 2022.
```

```
Plot RSI below the TSLA candlestick chart.
```

## Statistical and analytical charts

### Scatter chart

Individual data points plotted on x/y axes. Best for showing correlation between two variables — for example, a stock's P/E ratio vs. its earnings growth across a sector.

```
Scatter plot of S&P 500 companies by P/E ratio vs. earnings growth.
```

### Stacked bar chart

Multiple bar series stacked on top of each other. Useful for showing composition over time — for example, sector allocation in a portfolio or revenue breakdown by segment.

```
Show Apple's revenue breakdown by segment as a stacked bar chart for the past 8 quarters.
```

## Choosing a chart type explicitly

Mobius selects a chart type automatically based on context. To override, include the chart type in your request:

* `"... as a candlestick chart"`
* `"... as a line chart"`
* `"... as a bar chart"`
* `"... scatter plot"`
* `"... stacked bar chart"`

If you don't specify, Mobius picks the best format for the data (candlestick for OHLC data, line for single metrics, bar for discrete periodic values, etc.).
