- 5MA 계산 버그 수정

- 매수, 매도 조건 수정 : 5MA slope 조건 추가
- 기본 파라미터 수정
This commit is contained in:
2016-08-01 01:29:48 +09:00
parent b831b56934
commit 62315062bf
8 changed files with 307 additions and 209 deletions

View File

@@ -15,6 +15,7 @@ namespace upper_limit_crawler
//static string m_strLogServer = "http://mjjo53.us.to:8000";
static CPUTILLib.CpCybos m_CPUtil = new CPUTILLib.CpCybos();
static CPUTILLib.CpCodeMgr m_CPCodeMgr = new CPUTILLib.CpCodeMgr();
static TextBox m_tbLog = null;
static string m_strLogFileName;
static string m_strCSVFileName;
@@ -248,6 +249,11 @@ namespace upper_limit_crawler
return (m_CPUtil.IsConnect==1);
}
public static string GetCodeName(string strCode)
{
return m_CPCodeMgr.CodeToName(strCode);
}
public static void Reset()
{
m_CPUtil = null;