Example #1
0
 private void button1_Click(object sender, EventArgs e)
 {
     //Overview
     SendRequestToStrategy(StrategyCommand.STR_OVERVIEW);
     _lastOrderType = LastOrderType.Overview;
 }
Example #2
0
 private void button2_Click(object sender, EventArgs e)
 {
     //Internal
     SendRequestToStrategy(StrategyCommand.STR_INTERNAL);
     _lastOrderType = LastOrderType.Internal;
 }
Example #3
0
 private void button3_Click(object sender, EventArgs e)
 {
     //Position
     SendRequestToStrategy(StrategyCommand.STR_POSITION);
     _lastOrderType = LastOrderType.Position;
 }