You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your task is to create a new alpha. Below is possible suggestion for the alpha.
93
+
94
+
/*
95
+
HYPOTHESIS: "Fair value accounting" aims to measure and report on-going valuations of assets and liabilities. A recent increase in the fair value of liabilities may indicate a higher cost to be borne by the company in the future. This may deteriorate the company's financial health, potentially leading to lower profitability or financial distress.
96
+
97
+
IMPLEMENTATION: Using ts_rank() operator, sell stocks when there is an increase in the fair value of liabilities within a year using fundamental data.
98
+
99
+
HINT TO IMPROVE THE ALPHA: Could observing the increase over a shorter period improve accuracy?
Copy file name to clipboardExpand all lines: brain/main.py
+17-6Lines changed: 17 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -17,16 +17,27 @@ def main():
17
17
"messages": [
18
18
{
19
19
"role": "user",
20
-
"content": (
21
-
"Come up with a new alpha expression, start by exploring possible data"
22
-
"fields and then test it."
23
-
),
20
+
"content": """
21
+
Your task is to create a new alpha. Below is possible suggestion for the alpha.
22
+
23
+
/*
24
+
HYPOTHESIS: "Fair value accounting" aims to measure and report on-going valuations of assets and liabilities. A recent increase in the fair value of liabilities may indicate a higher cost to be borne by the company in the future. This may deteriorate the company's financial health, potentially leading to lower profitability or financial distress.
25
+
26
+
IMPLEMENTATION: Using ts_rank() operator, sell stocks when there is an increase in the fair value of liabilities within a year using fundamental data.
27
+
28
+
HINT TO IMPROVE THE ALPHA: Could observing the increase over a shorter period improve accuracy?
0 commit comments