Yun-SeYeong / Bitcoin-Trading-System

비트코인 자동매매 통합 시스템
1 stars 0 forks source link

분봉 slow stochastic 조회 API #24

Closed Yun-SeYeong closed 9 months ago

Yun-SeYeong commented 2 years ago

분봉 slow stochastic 조회 API

일정 기간동안 가격은 최고가와 최저가를 형성한다. 스토캐스틱은 최고가와 최저가 사이 어느정도에 있는지를 나타내는 기술적 지표이다. API를 통해 slow stochastic을 조회 할 수 있다.

Method

GET

URL

/candles/minute-candle/slow-stochastic/v1/{unit}

Path Param

:key:key type
unit string

Query Param

:key:key type
market string
count integer

Response

:key:key description type
market 마켓명 string
date_time_kst 시각(KST 기준) string
slow_k slow stochastic %K Double
slow_d slow stochastic %D Double
{
    "data": [
        {
            "market": "KRW-BTC",
            "date_time_kst": "2022-04-30T15:15",
            "slow_k": 80.00000000,
            "slow_d": 81.00000000
        }
    ]
}