We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c10207 commit 443450bCopy full SHA for 443450b
1 file changed
brain/alphas/alpha_12.py
@@ -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