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