- 현금잔고, 평가손익 표시 추가

This commit is contained in:
2016-08-01 03:09:01 +09:00
parent 62315062bf
commit 367c57cb49
4 changed files with 73 additions and 15 deletions

View File

@@ -42,6 +42,9 @@ namespace upper_limit_crawler
Dictionary<string, int> m_LossCutList = new Dictionary<string, int>();
List<string> m_BlackList = new List<string>();
long m_iCacheBalance = 0;
long m_iEvalProfit = 0;
public ULDataMgr()
{
}
@@ -144,5 +147,25 @@ namespace upper_limit_crawler
{
return m_WatchList;
}
public void SetCacheBalance(long iBalance)
{
m_iCacheBalance = iBalance;
}
public long GetCacheBalance()
{
return m_iCacheBalance;
}
public void SetEvalProfit(long iProfit)
{
m_iEvalProfit = iProfit;
}
public long GetEvalProfit()
{
return m_iEvalProfit;
}
}
}