체결되면 balance 갱신
This commit is contained in:
16
ULTrader.cs
16
ULTrader.cs
@@ -16,6 +16,8 @@ namespace upper_limit_crawler
|
||||
object lockBuy = new object();
|
||||
object lockSell = new object();
|
||||
|
||||
bool m_bHasConclusion = false;
|
||||
|
||||
public ULTrader()
|
||||
{
|
||||
}
|
||||
@@ -83,6 +85,20 @@ namespace upper_limit_crawler
|
||||
|
||||
|
||||
ULUtil.Trace(strLog);
|
||||
|
||||
|
||||
if (strResult == "1")
|
||||
m_bHasConclusion = true;
|
||||
}
|
||||
|
||||
public bool HasConclusion()
|
||||
{
|
||||
return m_bHasConclusion;
|
||||
}
|
||||
|
||||
public void ResetConclusion()
|
||||
{
|
||||
m_bHasConclusion = false;
|
||||
}
|
||||
|
||||
//0 - (string)주문종류코드 주문구분
|
||||
|
||||
Reference in New Issue
Block a user