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

# 选股器与指标

> 使用 Financial Context 市场数据接口进行筛选和访问行情衍生指标

使用选股器接口列出策略、查看指标元数据，并运行基于条件的股票筛选。

## 推荐策略

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/screener/strategies?market=US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

## 策略详情

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/screener/strategy?id=19" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

## 搜索

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/screener/search?market=US&conditions=pettm:10:50,roe:5:&show=roe,divyld&count=20" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

选股器接口支持 `GET`，因此请通过查询参数传入筛选条件。

## 可用指标

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/screener/indicators" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```
