Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wiseplat
GitHub Repository: wiseplat/python-code
Path: blob/master/ invest-robot-contest_TradingCompetition2022-main/config.ini
5925 views
1
[main]
2
;is it combat mode or test(sand_box)?
3
combat_mode: True
4
;account id for trading. It could be blank (In this case We will use first available account)
5
account:
6
; This mail address will receive all notification (trading report, error log, etc.) (ToDo notification is not implemented)
7
email: beylak@yandex.ru
8
app_name: beilak
9
10
; Print all log (print_tech_log - use for debug)
11
print_tech_log: False
12
print_business_log: True
13
14
[TradingStrategy]
15
; Name of model from (Name of model available in folder models)
16
model: ARIMAdeMarkLongHFT
17
18
; List of Ticker for trading
19
ticker_list: SBER,AFKS,SNGS,ALRS,MTSS,GAZP,SBER,SNGS,YNDX
20
21
; The maximum daily limit of money that can be used in trading (ToDo implemented only for sandbox)
22
daily_limit: 20_000
23
24
; The maximum limit of money that can be used in trading for one Stock
25
stock_limit: 5000
26
27
; Count of stock which could be buy
28
stock_lot_limit = 1
29
30
; Daily drop limit. In the event of a drop, all positions will be liquidated and trading will be stopped until the next trading session (ToDo)
31
daily_drop_limit: 1
32
33
; Drop limit for one instrument (percent)
34
stock_drop_limit: 0.05
35
36
; Condition of close LONG positions (for model ARIMAdeMarkLongHFT)
37
take_profit_percent: 0.1
38
39