- 시뮬레이션 수정중 : 표준편차 이용

This commit is contained in:
2017-02-20 04:15:45 +09:00
parent 0aec121fd5
commit dd7a1322e4
4 changed files with 191 additions and 60 deletions

View File

@@ -277,6 +277,7 @@ namespace AutoSellerNS
break;
case 4: // 접수
m_Listener.OnReceipt();
Util.Log(bBid ? Util.LOG_TYPE.BUY : Util.LOG_TYPE.SELL, string.Format("{0}:{1} {2} 접수 ({3:n0}원 {4}주)", strCodeName, strCode, strBidOrAsk, iPrice, iConclusionCnt));
break;
}
@@ -345,7 +346,7 @@ namespace AutoSellerNS
}
}
int GetUnitValue(int iValue)
public int GetUnitValue(int iValue)
{
int iUnit = 1;
if(iValue < 1000)