728x90 키움자동매매66 🥰 func-GetActPriceList(지수옵션 행사가 리스트를 반환) func-GetActPriceList(지수옵션 행사가 리스트를 반환)Code Sampleprivate void funcGetActPriceList() { string actPriceList = axKHOpenAPI.GetActPriceList(); //반환값의 행사가간 구분은 ‘;' string[] spData = actPriceList.Split(';'); string[] columns = new string[] { "지수옵션 행사가" }; List list = new List(); list.Add(columns); for (int ni = 0; ni list) { string table = "\r\n"; for (int i = 0; i "; .. 2022. 10. 12. 🥰 func-GetFutureList(지수선물 리스트를 반환) tr-GetFutureList(지수선물 리스트를 반환)Code Sampleprivate void funcGetFutureList() { string futureList = axKHOpenAPI.GetFutureList(); //반환값의 종목코드간 구분은 ‘;’ string[] spData = futureList.Split(';'); string[] columns = new string[] { "지수선물 리스트" }; List list = new List(); list.Add(columns); for (int ni = 0; ni list) { string table = "\r\n"; for (int i = 0; i "; for (int j = .. 2022. 10. 12. 🥰 func-GetBranchCodeName(회원사 코드와 이름을 반환) func-GetBranchCodeName(회원사 코드와 이름을 반환)Code Sampleprivate void funcGetBranchCodeName() { string branchCodeNameList = axKHOpenAPI.GetBranchCodeName(); //종목코드 리스트, 종목간 구분은 ’;’ string[] spData = branchCodeNameList.Split(';'); string[] columns = new string[] { "회원사코드", "회원사명" }; List list = new List(); list.Add(columns); for (int ni = 0; ni list) { string table = "\r\n"; f.. 2022. 10. 12. 🥰 func-GetMasterStockState(종목코드의 종목상태를 반환) func-GetMasterStockState(종목코드의 종목상태를 반환)Code Sampleprivate void funcGetMasterStockState() { string stockCd = "000660"; //SK하이닉스 string result = axKHOpenAPI.GetMasterStockState(stockCd); string[] columns = new string[] { "종목코드의 종목상태" }; List list = new List(); list.Add(columns); string[] row = new string[1]; row[0] = result; list.Add(row); PrintHtmlTable(list);}public v.. 2022. 10. 12. 이전 1 2 3 4 5 ··· 17 다음 728x90