From 958388dcd43c84fdad1d4386d86f918f5b546000 Mon Sep 17 00:00:00 2001 From: "S.W.S. de Zeeuw" Date: Sat, 12 Dec 2020 07:36:33 +0100 Subject: [PATCH] added info.txt --- info.txt | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 info.txt diff --git a/info.txt b/info.txt new file mode 100644 index 0000000..a02bab0 --- /dev/null +++ b/info.txt @@ -0,0 +1,59 @@ + + +Exchange Object +* id +* exchange name # binance only at first +* api_key +* api_secret +* enabled + +Trade Object +* id # internal id of trade object +* exchange id +* stoploss + * price + * type #limit, conditional + * delay # immediate or candle close +* volume # amount of coins to buy, OR +* amount # amount of BTC to spend for this trade +* entry # should be able to add funds at multiple levels + * max 4 multiple levels + * ability to add funds after initial object creation + * ability to open immidiatelly so limit->market +* target1 # limit, entered after entree is bought + * order id + * price + * percentage + * ability to create or change after initial object creation +* target2 # limit + * order id + * price + * percentage + * ability to create or change after initial object creation +* target3 # limit + * order id + * price + * percentage + * ability to create or change after initial object creation +* target4 # limit + * order id + * price + * percentage + * ability to create or change after initial object creation +* close at market price (panic sell) + + +Order Object +* id # internal id of order object +* order_id # order_id at the exchange +* timestamp_entered +* side # buy, sell +* type # market, limit, conditional +* price # wanted price +* volume # wanted volume +* remaining # remaining volume of partially executed order +* status # open, finished, partial +* timestamp_completed + + +