コード例 #1
0
        /// <summary>
        ///[33] 설명 행사가와 월물 콜풋으로 종목코드를 구한다.
        ///입력값
        ///strActPrice – 행사가(소수점포함)
        ///nCp – 콜풋구분 2:콜, 3:풋
        ///strMonth – 월물(6자리)
        ///반환값 종목코드
        ///비고 Ex) openApi.GetOptionCode(“260.00”, 2, “201407”);
        /// </summary>
        public String GetOptionCode(String strActPrice, int nCp, String strMonth)
        {
            String ret = axKHOpenAPI.GetOptionCode(strActPrice, nCp, strMonth);

            FileLog.PrintF("GetOptionCode(" + strActPrice + "," + nCp + "," + strMonth + "):" + ret);
            return(ret);
        }