Exemplo n.º 1
0
 private void btnSell_Click(object sender, RoutedEventArgs e)
 {
     try {
         _fw.ClosePair(pair, true, LotsToSell);
         Log = string.Format("Sold {0}K of {1}", LotsToSell, pair);
     } catch (Exception exc) {
         Log = exc + "";
     }
 }