]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Trader.git/blame - main.py
Add quiet flag for running
[perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Trader.git] / main.py
CommitLineData
1f117ac7
IB
1from datetime import datetime
2import argparse
3import configparser
4import psycopg2
5import os
eb9c92e1 6import sys
eb9c92e1 7
1f117ac7
IB
8import market
9import portfolio
eb9c92e1 10
1f117ac7 11__all__ = ["make_order", "get_user_market"]
eb9c92e1 12
1f117ac7
IB
13def make_order(market, value, currency, action="acquire",
14 close_if_possible=False, base_currency="BTC", follow=True,
15 compute_value="average"):
16 """
17 Make an order on market
18 "market": The market on which to place the order
19 "value": The value in *base_currency* to acquire,
20 or in *currency* to dispose.
21 use negative for margin trade.
22 "action": "acquire" or "dispose".
23 "acquire" will buy long or sell short,
24 "dispose" will sell long or buy short.
25 "currency": The currency to acquire or dispose
26 "base_currency": The base currency. The value is expressed in that
27 currency (default: BTC)
28 "follow": Whether to follow the order once run (default: True)
29 "close_if_possible": Whether to try to close the position at the end
30 of the trade, i.e. reach exactly 0 at the end
31 (only meaningful in "dispose"). May have
32 unwanted effects if the end value of the
33 currency is not 0.
34 "compute_value": Compute value to place the order
35 """
36 market.report.log_stage("make_order_begin")
37 market.balances.fetch_balances(tag="make_order_begin")
38 if action == "acquire":
39 trade = portfolio.Trade(
40 portfolio.Amount(base_currency, 0),
41 portfolio.Amount(base_currency, value),
42 currency, market)
43 else:
44 amount = portfolio.Amount(currency, value)
45 trade = portfolio.Trade(
46 amount.in_currency(base_currency, market, compute_value=compute_value),
47 portfolio.Amount(base_currency, 0),
48 currency, market)
49 market.trades.all.append(trade)
50 order = trade.prepare_order(
51 close_if_possible=close_if_possible,
52 compute_value=compute_value)
53 market.report.log_orders([order], None, compute_value)
54 market.trades.run_orders()
55 if follow:
56 market.follow_orders()
57 market.balances.fetch_balances(tag="make_order_end")
58 else:
59 market.report.log_stage("make_order_end_not_followed")
60 return order
61 market.report.log_stage("make_order_end")
62
63def get_user_market(config_path, user_id, debug=False):
64 pg_config, report_path = parse_config(config_path)
65 market_config = list(fetch_markets(pg_config, str(user_id)))[0][0]
07fa7a4b
IB
66 args = type('Args', (object,), { "debug": debug, "quiet": False })()
67 return market.Market.from_config(market_config, args, user_id=user_id, report_path=report_path)
1f117ac7
IB
68
69def fetch_markets(pg_config, user):
70 connection = psycopg2.connect(**pg_config)
71 cursor = connection.cursor()
72
73 if user is None:
74 cursor.execute("SELECT config,user_id FROM market_configs")
75 else:
76 cursor.execute("SELECT config,user_id FROM market_configs WHERE user_id = %s", user)
77
78 for row in cursor:
79 yield row
80
81def parse_config(config_file):
82 config = configparser.ConfigParser()
83 config.read(config_file)
84
85 if "postgresql" not in config:
86 print("no configuration for postgresql in config file")
87 sys.exit(1)
88
89 if "app" in config and "report_path" in config["app"]:
90 report_path = config["app"]["report_path"]
91
92 if not os.path.exists(report_path):
93 os.makedirs(report_path)
94 else:
95 report_path = None
96
97 return [config["postgresql"], report_path]
98
99def parse_args(argv):
100 parser = argparse.ArgumentParser(
101 description="Run the trade bot")
102
103 parser.add_argument("-c", "--config",
104 default="config.ini",
105 required=False,
106 help="Config file to load (default: config.ini)")
107 parser.add_argument("--before",
108 default=False, action='store_const', const=True,
109 help="Run the steps before the cryptoportfolio update")
110 parser.add_argument("--after",
111 default=False, action='store_const', const=True,
112 help="Run the steps after the cryptoportfolio update")
07fa7a4b
IB
113 parser.add_argument("--quiet",
114 default=False, action='store_const', const=True,
115 help="Don't print messages")
1f117ac7
IB
116 parser.add_argument("--debug",
117 default=False, action='store_const', const=True,
118 help="Run in debug mode")
119 parser.add_argument("--user",
120 default=None, required=False, help="Only run for that user")
121 parser.add_argument("--action",
122 action='append',
123 help="Do a different action than trading (add several times to chain)")
dc1ca9a3
IB
124 parser.add_argument("--parallel", action='store_true', default=True, dest="parallel")
125 parser.add_argument("--no-parallel", action='store_false', dest="parallel")
1f117ac7
IB
126
127 args = parser.parse_args(argv)
128
129 if not os.path.exists(args.config):
130 print("no config file found, exiting")
131 sys.exit(1)
132
133 return args
134
a18ce2f1
IB
135def process(market_config, user_id, report_path, args):
136 try:
137 market.Market\
07fa7a4b 138 .from_config(market_config, args, user_id=user_id, report_path=report_path)\
a18ce2f1
IB
139 .process(args.action, before=args.before, after=args.after)
140 except Exception as e:
141 print("{}: {}".format(e.__class__.__name__, e))
142
1f117ac7
IB
143def main(argv):
144 args = parse_args(argv)
145
146 pg_config, report_path = parse_config(args.config)
147
dc1ca9a3
IB
148 if args.parallel:
149 import threading
150 market.Portfolio.start_worker()
151
152 for market_config, user_id in fetch_markets(pg_config, args.user):
153 threading.Thread(target=process, args=[market_config, user_id, report_path, args]).start()
154 else:
155 for market_config, user_id in fetch_markets(pg_config, args.user):
156 process(market_config, user_id, report_path, args)
1f117ac7
IB
157
158if __name__ == '__main__': # pragma: no cover
159 main(sys.argv[1:])