- 현금잔고, 평가손익 표시 추가
This commit is contained in:
23
ULDataMgr.cs
23
ULDataMgr.cs
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user