-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquant_fields.py
More file actions
82 lines (55 loc) · 777 Bytes
/
quant_fields.py
File metadata and controls
82 lines (55 loc) · 777 Bytes
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
"""
MA(interval){
5,
10,
15,
30,
60,
120,
}
MA_intersect{
5 & 10;
5 & 30;
30 & 120;
}
volumn_ratio (interval){
5 bars avg;
10 bars avg;
30 bars avg;
60 bars avg;
120 bars avg;
}
recurrence(recurring_event){
next_day;
3_days;
5_days;
10_days;
20_days;
}
recurring_event: seasonal report; annual report; new product realease;
unexpected(unexpected_events){
next_day;
3_days;
5_days;
10_days;
20_days;
}
unexpected_events: interest rate; weather; policy; election; commodity
PE, PB, yield of return; capital per share{
}
Bid, Ask{
}
--- index correlation ---
S&P & Dow & NASDAQ{
}
interest rate{
}
annuity{
}
commodity{
}
future rate{
}
options rate{
}
"""