> ## 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"
```
