티스토리 뷰
제목 : 주식일봉차트조회
목적 : KOSPI와 KOSDAQ에서 거래됐던 1분 단위 주식 데이터를 이용함에 있어 일간 데이터를 참조하기 위함.
내용 : kiwoom의 trcode '10081' 활용
10081 주요 항목
- 종목코드
- 현재가
- 거래량
- 거래대금
- 일자
- 시가
- 고가
- 저가
- 수정주가구분
- 수정비율
- 대업종구분
- 소업종구분
- 종목정보
- 수정주가이벤트
- 전일종가
def GetData_10081(self, itemInfo):
trCode = 'opt10081'
#print(trCode, ' :', itemInfo['ItemCode'], ' ... ', )
Data_10081 = []
itemCode = itemInfo['ItemCode']
time1 = time()
time1 = self.WaitRequestInterval(time1)
df = self.kiwoom.block_request(trCode,
종목코드=itemCode,
#기준일자= '20190101',
output="주식일봉차트조회요청",
next=0
)
#print(df.head())
rets1 = self.ExtractData_10081(df)
if not rets1: return None
for ret1 in rets1:
Data_10081.append(ret1)
if itemInfo: return Data_10081
while self.kiwoom.tr_remained:
time1 = self.WaitRequestInterval(time1)
#print("[time1]", time1)
df = self.kiwoom.block_request(trCode,
종목코드=itemCode,
#기준일자= '20190101',
output="주식일봉차트조회요청",
next=0
)
#print(df.head())
try:
rets1 = self.ExtractData_10081(df)
for ret1 in rets1:
Data_10081.append(ret1)
except Exception as e:
expMessage = "[???-F08-1]"+str(e)
self.PrintException(expMessage)
break;
return Data_10081
반응형
'SWDesk' 카테고리의 다른 글
[Python] Class Member Variables (0) | 2021.10.30 |
---|---|
[Python] 알람 메시지 보내기 (0) | 2021.10.02 |
[Python] 1분 단위 데이터 파헤치기 (0) | 2021.09.18 |
[Python] 1분 데이터 가져오기 (0) | 2021.09.11 |
[Python] 최근 신규 키워드 찾아서 표시하기 (2) | 2021.08.27 |
반응형
250x250
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 치매방지
- bilient
- ServantClock
- Video
- Innovations
- 배프
- BSC
- 심심풀이치매방지기
- Innovation&Hurdles
- badp
- 둎
- Hurdles
- 절연형
- 전류
- 전압전류모니터링
- 오블완
- 전압
- DYOV
- image
- 심심풀이
- 치매
- Innovations&Hurdles
- 허들
- 혁신
- 아두이노
- Decorator
- 티스토리챌린지
- 빌리언트
- 혁신과허들
- arduino
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함