- Simulation 기초

This commit is contained in:
2017-02-11 13:25:42 +09:00
parent af9ef4aa60
commit 8f6937c112
16 changed files with 65920 additions and 80 deletions

View File

@@ -362,5 +362,19 @@ namespace AutoSellerNS
int.TryParse(tbTrailingCnt.Text, out iTrailingCnt);
Config.SetTrailing(fTrailingPercent, iTrailingCnt);
}
#region Simulation
private void btLoad_Click(object sender, EventArgs e)
{
SimulationHelper helper = new SimulationHelper(m_CybosHelper);
helper.LoadExcel();
}
private void btSimulate_Click(object sender, EventArgs e)
{
SimulationHelper helper = new SimulationHelper(m_CybosHelper);
helper.StartSimuation();
}
#endregion
}
}