StockMember1

설명

주식 종목에 대해 기관들의 매도 상위 5, 매수 상위 5 거래원의 수량

통신종류

Request/Reply

연속여부

X

관련 SB/PB

StockMember

관련CYBOS

[7021 현재가] 매도상위 매수상위

모듈 위치

cpdib.dll

Method

object.SetInputValue(type,value)

type 해당하는 입력 데이터를 value 값으로 지정합니다

0 - (string) 종목 코드

value = object.GetHeaderValue (type)

type 해당하는 헤더 데이터를 반환합니다

0 - (string) 종목 코드

1 - (short) count

2 - (long) 시각

3 - (long) 액면가

value = object.GetDataValue(Type,Index)

type 해당하는 데이터를 반환합니다

0 - (string) 매도 거래원

1 - (string) 매수 거래원

2 - (long) 총매도 수량

3 - (long) 총매수 수량

object.Subscribe()

사용하지 않음

object.Unsubscribe()

사용하지 않음

object.Request()

종목 코드에 해당하는 데이터를 요청한다

object.BlockRequest()

데이터 요청.Blocking Mode

Event

Object.Received

종목코드의 데이터를 수신할 발생하는 이벤트

Python ex)

>>> import win32com.client
>>> inStockMember1 = win32com.client.Dispatch("dscbo1.StockMember1")
>>> inStockMember1.SetInputValue(0, "A000100")               # 유한양행에 대해서 데이터를 얻어올 것임
>>> inStockMember1.BlockRequest()                                 # 서버에 데이터를 요청
>>> inStockMember1.GetHeaderValue(0)
'A000100'
>>> inStockMember1.GetHeaderValue(1)
5
>>> inStockMember1.GetHeaderValue(2)
1247                                                                                   # 12:47 분을 의미 (현재 데이터를 얻어온 시간)
>>> for type in range(4):                                                   # 0, 1, 2, 3에 대하여
           for index in range(5):                                             # 0, 1, 2, 3, 4에 대하여
'               print(type, index, inStockMember1.GetDataValue(type, index))

Converted from CHM to HTML with chm2web Pro 2.85 (unicode)