Skip to content

Commit 443450b

Browse files
committed
Add new alpha
1 parent 6c10207 commit 443450b

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

brain/alphas/alpha_12.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Code
2+
code = """
3+
signal = implied_volatility_call_60 - implied_volatility_put_60;
4+
clip = 0.3;
5+
min(max(signal, -clip), clip)
6+
"""
7+
8+
# Simulation Settings
9+
config = {
10+
"region": "USA",
11+
"universe": "TOP3000",
12+
"decay": 30,
13+
"delay": 0, # This could be 1 as well, check which gives better score in Performance Comparison
14+
"truncation": 0.08,
15+
"neutralization": "INDUSTRY",
16+
"pasteurization": "ON",
17+
"nan_handling": "OFF",
18+
"unit_handling": "VERIFY",
19+
}
20+
21+
# Score
22+
# TBA

0 commit comments

Comments
 (0)