Exemplo n.º 1
0
    def bid_info(self, ticker):
        temp_api = Setting()
        dict1 = {}
        api = temp_api.requesttradeapi()
        t1 = api.get_last_trade(ticker)
        t2 = api.get_last_quote(ticker)
        dict1['trade'] = t1._raw
        dict1['quote'] = t2._raw
        return dict1


# x = Bid(userid="1234userid")
# y=x.bid_info(ticker="AAPL")
# print(y)
Exemplo n.º 2
0
    def cancel_all_order(self):
        temp_api=Setting()
        api=temp_api.requesttradeapi()
        api.cancel_all_orders()
        x=self.get_orders()
        return x


# x=Orders_data(userid="1234userid")
# y1=x.get_orders(None)
# print(y1)
# y1=x.bought_sell_orders("buy",limit=1)
# print(y1)
# # # print(y)
# # # y=x.update_orders(orderid="3585882b-ff35-475c-8d6f-d19fb41a0c92",qty="2")
# # y=x.cancel_all_order()
# y=x.cancel_single_order("f7f9a324-058f-479c-a639-904d6a2f2dd8")
# print(y)
	def check_value_symbol(self,symbol):
		temp_api=Setting()
		api=temp_api.requesttradeapi()
		t1=api.get_last_trade(symbol)
		return t1._raw['price']
Exemplo n.º 4
0
 def cancel_single_order(self,orderid):
     temp_api = Setting()
     api = temp_api.requesttradeapi()
     api.cancel_order(orderid)
     x = self.get_orders()
     return "successfully cancel order"