types

https://github.com/Golden-Goose-Lab/creon/blob/master/creon/types.py

Candle

class Candle(TypedDict) 캔들 단위 타입입니다. 속성 start_time (타입 datetime) 캔들의 시작 시간입니다. end_time (타입 datetime) 캔들의 종료 시간입니다. open_price (타입 int) 캔들의 시가입니다. high_price (타입 int) 캔들의 고가입니다. low_price (타입 int) 캔들의 저가입니다. close_price (타입 int) 캔들의 종가입니다. volume (타입 int) 캔들의 거래량입니다.

Last updated