KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
gokiwoom
★ 16
Open GitHub ↗
Go wrapper for 키움증권 OpenAPI+
Download README (.md)
Explore Similar Repositories
Beep-Music-Converter
:
Unraid container to convert mp3 or wav to PC beep speaker music
UX0toSD
:
A quick and easy way of migrating from the Sony memory to an SD2Vita adaptor
Nova
:
✨ Awesome polyglot framework for building distributed discord bots built on cloud native technologies, rust and containers.
laravel-vapor-multi-region-deploy
:
An artisan command to assist deploying your Laravel Vapor app to multiple AWS regions
skybox-image
:
存储天空盒图片。
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
gokiwoom
?
Download (.md)
# gokiwoom : Go wrapper for 키움증권 OpenAPI+ gokiwoom은 키움증권API를 golang에서 사용할 수 있도록 만든 모듈로 최대한 키움API 인터페이스를 그대로 유지하는 형태로 만들었습니다. </br></br> ## 필수환경 키움api를 사용하려면 키움 open API+(https://www.kiwoom.com/h/customer/download/VOpenApiInfoView) 서비스 사용신청 및 API모듈을 설치하셔야 합니다. 또한 모의투자의 경우에는 별도 신청(https://www.kiwoom.com/h/mock/ordinary/VMockTotalMHOMEView) 을 하셔야 합니다. (* 모의투자기간이 제한되어 있으며, 투자기간이 종료시 재신청 필요 ) </br></br></br> ## 키움API 개발가이드 문서 https://download.kiwoom.com/web/openapi/kiwoom_openapi_plus_devguide_ver_1.5.pdf </br></br></br> ## 예제 ```go package main import ( "fmt" kw "github.com/smok95/gokiwoom" ) func main() { kw.Initialize(1) // 연결상태 이벤트 kw.SetOnEventConnect(func(errCode int32) { if errCode == 0 { fmt.Println("접속 성공") } else { fmt.Println("접속 실패") } // 종료 kw.Disconnect() }) // 접속 kw.CommConnect() kw.Wait() kw.Uninitialize() } ``` ## 주의사항 32bit만 지원하며, kw_.dll이 프로세스 실행경로와 같은 위치에 존재하여 합니다.