-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuyTemplate.py
49 lines (34 loc) · 1.11 KB
/
buyTemplate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import os
from dotenv import load_dotenv
import ccxt
from flask import Flask, request
app = Flask(__name__)
load_dotenv()
my_key = os.getenv("KEY")
api_secret = os.getenv("SECRET")
exchange_id = "bybit"
exchange_class = getattr(ccxt, exchange_id)
exchange = exchange_class({
"apiKey": my_key,
"secret": api_secret
})
@app.route("/webhookcallback", methods=["POST"])
def hook():
print(request.data)
balance = exchange.fetchBalance()
bitty_balance = balance["BTC"]["free"]
ask_price = exchange.fetchTicker('BTC/USD:BTC')["ask"]
print(bitty_balance * 0.05)
symbol = "BTC/USD:BTC"
#making five percent sized buy in bag
size = bitty_balance * 0.05 * ask_price * 25
#putting the buyorder a bit above the askprice to make sure it gets filled
price = ask_price * 1.01
buy_order = exchange.create_limit_buy_order(symbol, size, price)
take_profit_price = ask_price * 1.02
sell_order = exchange.create_limit_sell_order(symbol, size, take_profit_price)
print(buy_order)
print(sell_order)
return "Hello World"
if __name__ == "__main__":
app.run()