-
Notifications
You must be signed in to change notification settings - Fork 327
/
commands.json
55 lines (55 loc) · 1.76 KB
/
commands.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
44
45
46
47
48
49
50
51
52
53
54
55
[{
"comm": "--history_to_use",
"type": "str",
"default": "all",
"help": "How many bars of 1 hour do you want to use for the anomaly detection model. Either an integer or all"
},
{
"comm": "--data_granularity_minutes",
"type": "int",
"default": "15",
"help": "Minute level data granularity that you want to use. Default is 60 minute bars."
},
{
"comm": "--is_test",
"type": "int",
"default": "1",
"help": "Whether to test the tool or just predict for future. When testing you should set the future_bars to larger than 1."
},
{
"comm": "--future_bars",
"type": "int",
"default": "30",
"help": "How many bars to keep for testing purposes."
},
{
"comm": "--apply_noise_filtering",
"type": "int",
"default": "1",
"help": "Whether to apply the random matrix theory to filter out the eigen values."
},
{
"comm": "--only_long",
"type": "int",
"default": "1",
"help": "Whether to only long the stocks or do both long and short."
},
{
"comm": "--market_index",
"type": "str",
"default": "SPY",
"help": "Which index to use for comparisons."
},
{
"comm": "--eigen_portfolio_number",
"type": "int",
"default": "2",
"help": "Which eigen portfolio to choose. By default the 2nd one is choosen as it gives the most risk and reward."
},
{
"comm": "--stocks_file_path",
"type": "str",
"default": "stocks/stocks.txt",
"help": "Stocks file that contains the list of stocks you want to build your portfolio with."
}
]