모의 투자가 아닐 경우 IOC 매수
This commit is contained in:
10
NewsForm.cs
10
NewsForm.cs
@@ -791,6 +791,16 @@ namespace NewsCrawler
|
||||
}
|
||||
}
|
||||
|
||||
private void btnManualBuy_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (lvList.SelectedItems.Count <= 0)
|
||||
return;
|
||||
|
||||
string strCodeName = lvList.SelectedItems[0].SubItems[chCodeName.Index].Text;
|
||||
CodeList.CODE_VALUE Code = m_CodeList.GetCodeByName(strCodeName);
|
||||
m_CybosHelper.Buy(Code, Config.GetBuyPrice());
|
||||
}
|
||||
|
||||
public void OnConfigFormClosing()
|
||||
{
|
||||
m_ConfigForm = null;
|
||||
|
||||
Reference in New Issue
Block a user