aboutsummaryrefslogtreecommitdiff
path: root/helper.py
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-02-27 00:58:52 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-02-27 00:58:52 +0100
commit2033e7fef780298be2ec15455a0ec1d26515de55 (patch)
tree7650db089756994dfbc0b77cad76fe662213e702 /helper.py
parentf70bb858007cd3be6766ee0aa4a3d9133952eb98 (diff)
downloadTrader-2033e7fef780298be2ec15455a0ec1d26515de55.tar.gz
Trader-2033e7fef780298be2ec15455a0ec1d26515de55.tar.zst
Trader-2033e7fef780298be2ec15455a0ec1d26515de55.zip
Add make_order and get_user_market helpers
Fix cancel order not actually fetching the order Fetch only necessary order to poloniex
Diffstat (limited to 'helper.py')
-rw-r--r--helper.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/helper.py b/helper.py
index 4d73078..d948dac 100644
--- a/helper.py
+++ b/helper.py
@@ -7,6 +7,62 @@ import sys
7 7
8import portfolio 8import portfolio
9 9
10def make_order(market, value, currency, action="acquire",
11 close_if_possible=False, base_currency="BTC", follow=True,
12 compute_value="average"):
13 """
14 Make an order on market
15 "market": The market on which to place the order
16 "value": The value in *base_currency* to acquire,
17 or in *currency* to dispose.
18 use negative for margin trade.
19 "action": "acquire" or "dispose".
20 "acquire" will buy long or sell short,
21 "dispose" will sell long or buy short.
22 "currency": The currency to acquire or dispose
23 "base_currency": The base currency. The value is expressed in that
24 currency (default: BTC)
25 "follow": Whether to follow the order once run (default: True)
26 "close_if_possible": Whether to try to close the position at the end
27 of the trade, i.e. reach exactly 0 at the end
28 (only meaningful in "dispose"). May have
29 unwanted effects if the end value of the
30 currency is not 0.
31 "compute_value": Compute value to place the order
32 """
33 market.report.log_stage("make_order_begin")
34 market.balances.fetch_balances(tag="make_order_begin")
35 if action == "acquire":
36 trade = portfolio.Trade(
37 portfolio.Amount(base_currency, 0),
38 portfolio.Amount(base_currency, value),
39 currency, market)
40 else:
41 amount = portfolio.Amount(currency, value)
42 trade = portfolio.Trade(
43 amount.in_currency(base_currency, market, compute_value=compute_value),
44 portfolio.Amount(base_currency, 0),
45 currency, market)
46 market.trades.all.append(trade)
47 order = trade.prepare_order(
48 close_if_possible=close_if_possible,
49 compute_value=compute_value)
50 market.report.log_orders([order], None, compute_value)
51 market.trades.run_orders()
52 if follow:
53 market.follow_orders()
54 market.balances.fetch_balances(tag="make_order_end")
55 else:
56 market.report.log_stage("make_order_end_not_followed")
57 return order
58 market.report.log_stage("make_order_end")
59
60def get_user_market(config_path, user_id, debug=False):
61 import market
62 pg_config, report_path = main_parse_config(config_path)
63 market_config = list(main_fetch_markets(pg_config, str(user_id)))[0][0]
64 return market.Market.from_config(market_config, debug=debug)
65
10def main_parse_args(argv): 66def main_parse_args(argv):
11 parser = argparse.ArgumentParser( 67 parser = argparse.ArgumentParser(
12 description="Run the trade bot") 68 description="Run the trade bot")