Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions pykis/api/stock/daily_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def domestic_daily_chart(
한국투자증권 국내 기간 차트 조회

국내주식시세 -> 국내주식기간별시세(일/주/월/년)[v1_국내주식-016]
(업데이트 날짜: 2023-10-02)
(업데이트 날짜: 2026-07-06)

Args:
symbol (str): 종목 코드
Expand Down Expand Up @@ -285,7 +285,6 @@ def domestic_daily_chart(
"FID_ORG_ADJ_PRC": "0" if adjust else "1",
},
response_type=KisDomesticDailyChart(symbol=symbol),
domain="real",
)

if not chart:
Expand Down Expand Up @@ -330,7 +329,7 @@ def foreign_daily_chart(
한국투자증권 해외 기간 차트 조회

해외주식현재가 -> 해외주식 기간별시세[v1_해외주식-010]
(업데이트 날짜: 2023-10-03)
(업데이트 날짜: 2026-07-06)

Args:
symbol (str): 종목 코드
Expand Down Expand Up @@ -377,7 +376,6 @@ def foreign_daily_chart(
symbol=symbol,
market=market,
),
domain="real",
)

if not chart:
Expand Down
3 changes: 1 addition & 2 deletions pykis/api/stock/day_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def domestic_day_chart(
한국투자증권 국내 당일 봉 차트 조회

국내주식시세 -> 주식당일분봉조회[v1_국내주식-022]
(업데이트 날짜: 2023/09/05)
(업데이트 날짜: 2026/07/06)

Args:
symbol (str): 종목코드
Expand Down Expand Up @@ -343,7 +343,6 @@ def domestic_day_chart(
response_type=KisDomesticDayChart(
symbol=symbol,
),
domain="real",
)

if not chart:
Expand Down
3 changes: 1 addition & 2 deletions pykis/api/stock/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def quotable_market(

국내주식시세 -> 주식현재가 시세[v1_국내주식-008]
해외주식현재가 -> 해외주식 현재가상세[v1_해외주식-029]
(업데이트 날짜: 2024/11/05)
(업데이트 날짜: 2026/07/06)

Args:
symbol (str): 종목코드
Expand Down Expand Up @@ -302,7 +302,6 @@ def quotable_market(
"/uapi/domestic-stock/v1/quotations/inquire-price",
api="FHKST01010100",
params={"FID_COND_MRKT_DIV_CODE": "J", "FID_INPUT_ISCD": symbol},
domain="real",
)
).output.stck_prpr
):
Expand Down
3 changes: 1 addition & 2 deletions pykis/api/stock/quote.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def domestic_quote(
주식, ETF, ETN 조회가 가능합니다.

국내주식시세 -> 주식현재가 시세[v1_국내주식-008]
(업데이트 날짜: 2023/09/24)
(업데이트 날짜: 2026/07/06)

Args:
symbol (str): 종목코드
Expand All @@ -648,7 +648,6 @@ def domestic_quote(
"FID_INPUT_ISCD": symbol,
},
response_type=result,
domain="real",
)


Expand Down