forked from robcarver17/pysystemtrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
private_config_example.yaml
41 lines (30 loc) · 1.27 KB
/
private_config_example.yaml
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
# YAML
# This is an example of the variables you need to set
# in your private_config.yaml file in the ~/pysystemtrade/private folder
#
####################################################################################################
#
# MUST BE SET! Not in defaults.yaml
#
broker_account: 'UXXXXXX' # your account number at IB
####################################################################################################
#
# OPTIONAL: Not in defaults.yaml
#
# email address variables - If missing emails won't be sent and you will have to check logs/echos
email_address: '[email protected]' # add your address here
email_pwd: 'terrible_mash_of_stuff_for_security' # your password
email_server: 'the_outgoing_smtp_server' # the smtp server
# email_port: 587 # for future use: currently hardcoded at 587.
# email_security: 'SSL or TLS' # for future use
####################################################################################################
#
# OVERRIDES: In defaults.yaml and will override
#
# ib_data
ib_ipaddress: 'localhost' # this changes if you set up elsewhere
ib_port: 4001 # the default for the ib Gateway
ib_idoffset: 1 # the default
#Mongo db variables
mongo_host: 'localhost' # can be elsewhere
mongo_db: 'production' # fits with all the documentation