Ejemplo n.º 1
0
        /// <summary>
        ///[34] 설명 입력된 종목코드와 동일한 행사가의 코드중 입력한 월물의 코드를 구한다.
        ///입력값
        ///strCode – 종목코드
        ///nCp – 콜풋구분 2:콜, 3:풋
        ///strMonth – 월물(6자리)
        ///반환값 종목코드
        ///비고 Ex) openApi.GetOptionCodeByMonth(“201J7260”, 2, “201412”);
        ///결과값 = 201JC260
        /// </summary>
        public String GetOptionCodeByMonth(String strCode, int nCp, String strMonth)
        {
            String ret = axKHOpenAPI.GetOptionCodeByMonth(strCode, nCp, strMonth);

            FileLog.PrintF("GetOptionCodeByMonth(" + strCode + "," + nCp + "," + strMonth + "):" + ret);
            return(ret);
        }