# RSI 指標

相對強弱指標。

計算方式：

```
有四天是漲的，共漲了 3+2+2+2=9 ，平均下來每天漲 9 / 6= 1.5 (平均漲幅)

有兩天是跌的，共跌了 4+1=5，平均下來每天跌 5 / 6= 0.83 (平均跌幅)
```

## RSI = (1.5/(1.5+0.83))\*100 = 64.3

解釋：

```
1. RSI 的範圍一定在 0-100 之間。

2. RSI 越大代表過去漲比跌多。
```


---

# 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://easonwang.gitbook.io/finance/gu-shi-ji-shu-mian/rsi-zhi-biao.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.
