-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.py
103 lines (80 loc) · 2.83 KB
/
config.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
"""
Read and parse values from `config.ini` into their appropriate types,
to be referenced by other modules.
"""
# Non-local imports
import alpaca_trade_api as alpaca_api
# Local imports
import configparser
import sys # ensure Python > 3.10
import os # ensure file exists
# Project modules
import keys
# Ensure Python > 3.10
if sys.version_info < (3, 10):
raise Exception("You must use Python 3.10 or later.")
# ---- Exceptions ----
class ParameterError(Exception):
"""
If invalid parameters values are given in config.ini.
"""
pass
class AccountError(Exception):
"""
If there's something wrong with the account, ex. margin
unavailable with a multiplier set.
"""
pass
# ---- Ensure margin if requested ----
_alpaca = alpaca_api.REST(
key_id = keys.Alpaca.API_KEY,
secret_key = keys.Alpaca.API_SECRET,
base_url = keys.Alpaca.BASE_URL
)
def account_margin_status() -> bool:
"""
Returns True if the account has margin enabled and
a positive, tradable margin balance.
"""
account = _alpaca.get_account()
if float(account.multiplier) > 1:
return True
return False
# ---- Config Parameters ----
# Ensure config file exists
if not os.path.exists(
config_path := os.path.join(os.path.dirname(os.path.abspath(__file__)), 'config.ini')
):
raise Exception(
"You must have a config.ini, it comes with the repository. "
"See the GitHub repository to understand the behavior of each attribute."
)
class Config:
"""
Parse parameter values from config.ini in their appropriate types,
to be referenced by other modules.
"""
config = configparser.ConfigParser()
config.read(config_path)
# Portfolio
portfolio_type = config['Portfolio']['portfolio_type'].title()
account_multiplier = float(
config['Portfolio']['account_multiplier'].replace('x', '') # ex. if '2x' given
)
# Ensure account multiplier is reasonable
if not 0 < account_multiplier <= 2:
raise ParameterError("Your account multiplier must be between 0 and 2.")
# Ensure margin is enabled if multiplier > 1
if account_multiplier > 1 and not account_margin_status():
raise AccountError("You must have margin enabled to have a multiplier higher than 1.")
# Rebalancing
rebalance_threshold = float(config["Rebalancing"]["rebalance_threshold"])
# Reports
if config['Reports']['text_reports'].lower() == 'false':
text_reports = False
else:
text_reports = True
# Email recipients
_email_recipients = [keys.User.email_address]
_email_recipients.extend(config['Reports']['additional_recipients'].split(', '))
email_recipients = [email for email in _email_recipients if email != '']