Exemplo n.º 1
0
 private void GoForward(Object o, EventArgs e)
 {
     _Sim.TimeSize = 100000;
     _Sim.Advance();
     if (_Sim.Changers.ContainsKey(_Symbol))
     {
         // define price here
         Price = (this.Ask + this.Bid) / 2.0;
         TickList.Add(Price);
         OnInstrumentUpdate(this);
     }
 }