-
Notifications
You must be signed in to change notification settings - Fork 258
/
Copy pathdefault_algo.json
43 lines (43 loc) · 968 Bytes
/
default_algo.json
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
{
"name": "algo-1",
"ticker": "SPY",
"algo_path": "/opt/sa/analysis_engine/algo.py",
"algo_version": 1,
"timeseries": "minute",
"balance": 10000,
"buy_shares": 10,
"verbose": false,
"positions": {},
"trade_horizon": 5,
"buy_rules": {
"min_indicators": 1
},
"sell_rules": {
"min_indicators": 1
},
"indicators": [
{
"name": "wr_80_20",
"module_path": "/opt/sa/analysis_engine/indicators/williamsr.py",
"category": "technical",
"type": "momentum",
"uses_data": "minute",
"willr_value": 0,
"num_points": 20,
"buy_below": -80,
"sell_above": -20,
"is_buy": null,
"is_sell": null,
"verbose": false
}
],
"verbose_processor": false,
"verbose_indicators": false,
"verbose_history": false,
"verbose_trading": false,
"verbose_load": false,
"verbose_extract": false,
"verbose_report": false,
"verbose_task": false,
"inspect_datasets": false
}