Examples of place_order()


Examples of com.codeguin.jtradr.ExchangeInterface.place_order()

      {
        case "account":
          System.out.println(httpI.get_account());
          break;
        case "buy":
          System.out.println(httpI.place_order("bid",price,amount));
          break;
        case "sell":
          System.out.println(httpI.place_order("ask",price,amount));
          break;
        case "cancel":
View Full Code Here

Examples of com.codeguin.jtradr.ExchangeInterface.place_order()

          break;
        case "buy":
          System.out.println(httpI.place_order("bid",price,amount));
          break;
        case "sell":
          System.out.println(httpI.place_order("ask",price,amount));
          break;
        case "cancel":
          System.out.println(httpI.cancel_order(oid));
          break;
        case "depth":
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.