> ## 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`을 지원하므로 필터를 query parameter로 전달하세요.

## 사용 가능한 지표

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