Example #1
0
 /// <summary>
 /// Shows the strategy form for live trading.
 /// Not entirely finished
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnStrategy_Click(object sender, EventArgs e)
 {
     using (var f = new BackTestingForm())
     {
         if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
         {
             _strategy = f.TradingStrategy;
         }
     }
 }
Example #2
0
        private void btnBackTesting_Click(object sender, EventArgs e)
        {
            var asf = new BackTestingForm(true);

            asf.Show();
        }
Example #3
0
 private void btnBackTesting_Click(object sender, EventArgs e)
 {
     var asf = new BackTestingForm(true);
     asf.Show();
 }
Example #4
0
 /// <summary>
 /// Shows the strategy form for live trading.
 /// Not entirely finished
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnStrategy_Click(object sender, EventArgs e)
 {
     using (var f = new BackTestingForm())
     {
         if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
         {
             _strategy = f.TradingStrategy;
         }
     }
 }