Spaces:
Sleeping
Sleeping
gauravlochab commited on
Commit ·
3e6c41e
1
Parent(s): 28d3431
fix: fit values to x axis
Browse files- app.py +14 -6
- debug_graph_data.csv +0 -0
- debug_roi_data.csv +110 -105
- initial_value_fixer.py +138 -39
- optimus_apr_statistics.csv +6 -6
- optimus_apr_values.csv +5 -0
- optimus_roi_values.csv +399 -171
app.py
CHANGED
|
@@ -1403,13 +1403,17 @@ def create_combined_roi_time_series_graph(df):
|
|
| 1403 |
title=None # Remove the built-in axis title since we're using annotations
|
| 1404 |
)
|
| 1405 |
|
| 1406 |
-
# Update x-axis with better formatting and
|
|
|
|
|
|
|
|
|
|
| 1407 |
fig.update_xaxes(
|
| 1408 |
showgrid=True,
|
| 1409 |
gridwidth=1,
|
| 1410 |
gridcolor='rgba(0,0,0,0.1)',
|
| 1411 |
-
#
|
| 1412 |
-
|
|
|
|
| 1413 |
tickformat="%b %d", # Simplified date format without time
|
| 1414 |
tickangle=-30, # Angle the labels for better readability
|
| 1415 |
tickfont=dict(size=14, family="Arial, sans-serif", color="black", weight="bold"), # Adjusted font size
|
|
@@ -2107,13 +2111,17 @@ def create_combined_time_series_graph(df):
|
|
| 2107 |
title=None # Remove the built-in axis title since we're using annotations
|
| 2108 |
)
|
| 2109 |
|
| 2110 |
-
# Update x-axis with better formatting and
|
|
|
|
|
|
|
|
|
|
| 2111 |
fig.update_xaxes(
|
| 2112 |
showgrid=True,
|
| 2113 |
gridwidth=1,
|
| 2114 |
gridcolor='rgba(0,0,0,0.1)',
|
| 2115 |
-
#
|
| 2116 |
-
|
|
|
|
| 2117 |
tickformat="%b %d", # Simplified date format without time
|
| 2118 |
tickangle=-30, # Angle the labels for better readability
|
| 2119 |
tickfont=dict(size=14, family="Arial, sans-serif", color="black", weight="bold"), # Adjusted font size
|
|
|
|
| 1403 |
title=None # Remove the built-in axis title since we're using annotations
|
| 1404 |
)
|
| 1405 |
|
| 1406 |
+
# Update x-axis with better formatting and dynamic date range from data
|
| 1407 |
+
min_date = df['timestamp'].min()
|
| 1408 |
+
max_date = df['timestamp'].max()
|
| 1409 |
+
logger.info(f"ROI Graph - Dynamic date range: min_date = {min_date}, max_date = {max_date}")
|
| 1410 |
fig.update_xaxes(
|
| 1411 |
showgrid=True,
|
| 1412 |
gridwidth=1,
|
| 1413 |
gridcolor='rgba(0,0,0,0.1)',
|
| 1414 |
+
# Set dynamic range based on actual data min/max dates (autoscale OFF)
|
| 1415 |
+
range=[min_date, max_date],
|
| 1416 |
+
autorange=False, # Explicitly disable autoscale
|
| 1417 |
tickformat="%b %d", # Simplified date format without time
|
| 1418 |
tickangle=-30, # Angle the labels for better readability
|
| 1419 |
tickfont=dict(size=14, family="Arial, sans-serif", color="black", weight="bold"), # Adjusted font size
|
|
|
|
| 2111 |
title=None # Remove the built-in axis title since we're using annotations
|
| 2112 |
)
|
| 2113 |
|
| 2114 |
+
# Update x-axis with better formatting and dynamic date range from data
|
| 2115 |
+
min_date = df['timestamp'].min()
|
| 2116 |
+
max_date = df['timestamp'].max()
|
| 2117 |
+
logger.info(f"APR Graph - Dynamic date range: min_date = {min_date}, max_date = {max_date}")
|
| 2118 |
fig.update_xaxes(
|
| 2119 |
showgrid=True,
|
| 2120 |
gridwidth=1,
|
| 2121 |
gridcolor='rgba(0,0,0,0.1)',
|
| 2122 |
+
# Set dynamic range based on actual data min/max dates (autoscale OFF)
|
| 2123 |
+
range=[min_date, max_date],
|
| 2124 |
+
autorange=False, # Explicitly disable autoscale
|
| 2125 |
tickformat="%b %d", # Simplified date format without time
|
| 2126 |
tickangle=-30, # Angle the labels for better readability
|
| 2127 |
tickfont=dict(size=14, family="Arial, sans-serif", color="black", weight="bold"), # Adjusted font size
|
debug_graph_data.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
debug_roi_data.csv
CHANGED
|
@@ -28,108 +28,113 @@
|
|
| 28 |
26,2.8,2025-06-12 22:29:06.555260,115,yenot-zoncen49,False,ROI,142.55,136.2
|
| 29 |
27,1.24,2025-06-13 22:40:52.426319,115,yenot-zoncen49,False,ROI,55.41,53.77
|
| 30 |
28,-0.28,2025-06-15 04:17:24.547659,115,yenot-zoncen49,False,ROI,-0.28,2.65
|
| 31 |
-
29,
|
| 32 |
-
30,-3.48,2025-06-06
|
| 33 |
-
31,-3.48,2025-06-06
|
| 34 |
-
32,-
|
| 35 |
-
33,-2.38,2025-06-07
|
| 36 |
-
34,-2.38,2025-06-07
|
| 37 |
-
35,-
|
| 38 |
-
36,-1.55,2025-06-08
|
| 39 |
-
37,-1.55,2025-06-08
|
| 40 |
-
38,-1.55,2025-06-08
|
| 41 |
-
39,-1.55,2025-06-08
|
| 42 |
-
40,-1.55,2025-06-08
|
| 43 |
-
41,-1.55,2025-06-08
|
| 44 |
-
42,-1.55,2025-06-08
|
| 45 |
-
43,-1.
|
| 46 |
-
44,-1.88,2025-06-09
|
| 47 |
-
45,-1.88,2025-06-09
|
| 48 |
-
46,1.
|
| 49 |
-
47,1.38,2025-06-10
|
| 50 |
-
48,
|
| 51 |
-
49,-1.88,2025-06-09
|
| 52 |
-
50,1.
|
| 53 |
-
51,1.38,2025-06-10
|
| 54 |
-
52,1.38,2025-06-10
|
| 55 |
-
53,1.38,2025-06-10
|
| 56 |
-
54,1.38,2025-06-10 12:
|
| 57 |
-
55,1.38,2025-06-10
|
| 58 |
-
56,1.38,2025-06-10
|
| 59 |
-
57,1.38,2025-06-10
|
| 60 |
-
58,1.38,2025-06-10
|
| 61 |
-
59,1.38,2025-06-10 17:
|
| 62 |
-
60,1.38,2025-06-10
|
| 63 |
-
61,
|
| 64 |
-
62,2.68,2025-06-11
|
| 65 |
-
63,
|
| 66 |
-
64,
|
| 67 |
-
65,-
|
| 68 |
-
66,-
|
| 69 |
-
67,-1.
|
| 70 |
-
68,1.
|
| 71 |
-
69,
|
| 72 |
-
70,3.
|
| 73 |
-
71,
|
| 74 |
-
72,
|
| 75 |
-
73,-
|
| 76 |
-
74,1.
|
| 77 |
-
75,
|
| 78 |
-
76,1.14,2025-06-07
|
| 79 |
-
77,1.14,2025-06-07
|
| 80 |
-
78,1.14,2025-06-07
|
| 81 |
-
79,
|
| 82 |
-
80,
|
| 83 |
-
81,2.0,2025-06-08
|
| 84 |
-
82,2.0,2025-06-08
|
| 85 |
-
83,2.0,2025-06-08
|
| 86 |
-
84,
|
| 87 |
-
85,
|
| 88 |
-
86,
|
| 89 |
-
87,
|
| 90 |
-
88,1.
|
| 91 |
-
89,
|
| 92 |
-
90,
|
| 93 |
-
91,
|
| 94 |
-
92,
|
| 95 |
-
93,
|
| 96 |
-
94,
|
| 97 |
-
95,
|
| 98 |
-
96,
|
| 99 |
-
97,
|
| 100 |
-
98,
|
| 101 |
-
99,
|
| 102 |
-
100,
|
| 103 |
-
101,1.
|
| 104 |
-
102,
|
| 105 |
-
103,
|
| 106 |
-
104,
|
| 107 |
-
105,
|
| 108 |
-
106,
|
| 109 |
-
107,
|
| 110 |
-
108,
|
| 111 |
-
109,1.
|
| 112 |
-
110,
|
| 113 |
-
111,
|
| 114 |
-
112,1.
|
| 115 |
-
113,
|
| 116 |
-
114,
|
| 117 |
-
115,
|
| 118 |
-
116,
|
| 119 |
-
117,
|
| 120 |
-
118,
|
| 121 |
-
119,
|
| 122 |
-
120,
|
| 123 |
-
121,
|
| 124 |
-
122,4.
|
| 125 |
-
123,
|
| 126 |
-
124,
|
| 127 |
-
125,
|
| 128 |
-
126,
|
| 129 |
-
127,
|
| 130 |
-
128,
|
| 131 |
-
129,
|
| 132 |
-
130,
|
| 133 |
-
131,
|
| 134 |
-
132,-
|
| 135 |
-
133,0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
26,2.8,2025-06-12 22:29:06.555260,115,yenot-zoncen49,False,ROI,142.55,136.2
|
| 29 |
27,1.24,2025-06-13 22:40:52.426319,115,yenot-zoncen49,False,ROI,55.41,53.77
|
| 30 |
28,-0.28,2025-06-15 04:17:24.547659,115,yenot-zoncen49,False,ROI,-0.28,2.65
|
| 31 |
+
29,0.07,2025-06-17 02:16:08.931664,115,yenot-zoncen49,False,ROI,2.27,4.15
|
| 32 |
+
30,-3.48,2025-06-06 11:29:18.913469,116,honji-hahi60,False,ROI,-3.48,3.75
|
| 33 |
+
31,-3.48,2025-06-06 12:31:08.139923,116,honji-hahi60,False,ROI,-3.48,3.75
|
| 34 |
+
32,-3.48,2025-06-06 22:15:03.771384,116,honji-hahi60,False,ROI,-3.48,3.75
|
| 35 |
+
33,-2.38,2025-06-07 00:12:24.552821,116,honji-hahi60,False,ROI,-2.38,2.56
|
| 36 |
+
34,-2.38,2025-06-07 02:01:48.183436,116,honji-hahi60,False,ROI,-2.38,2.56
|
| 37 |
+
35,-2.38,2025-06-07 15:35:09.317222,116,honji-hahi60,False,ROI,-2.38,2.56
|
| 38 |
+
36,-1.55,2025-06-08 00:16:07.222875,116,honji-hahi60,False,ROI,-1.55,1.67
|
| 39 |
+
37,-1.55,2025-06-08 04:13:13.395768,116,honji-hahi60,False,ROI,-1.55,1.67
|
| 40 |
+
38,-1.55,2025-06-08 02:11:01.421104,116,honji-hahi60,False,ROI,-1.55,1.67
|
| 41 |
+
39,-1.55,2025-06-08 03:12:05.231210,116,honji-hahi60,False,ROI,-1.55,1.67
|
| 42 |
+
40,-1.55,2025-06-08 14:28:01.349077,116,honji-hahi60,False,ROI,-1.55,1.67
|
| 43 |
+
41,-1.55,2025-06-08 21:32:22.234368,116,honji-hahi60,False,ROI,-1.55,1.67
|
| 44 |
+
42,-1.55,2025-06-08 22:36:17.834229,116,honji-hahi60,False,ROI,-1.55,1.67
|
| 45 |
+
43,-1.55,2025-06-08 23:59:43.295623,116,honji-hahi60,False,ROI,-1.55,1.67
|
| 46 |
+
44,-1.88,2025-06-09 01:00:58.054069,116,honji-hahi60,False,ROI,-1.88,2.02
|
| 47 |
+
45,-1.88,2025-06-09 19:31:39.204380,116,honji-hahi60,False,ROI,-1.88,2.02
|
| 48 |
+
46,-1.88,2025-06-09 20:34:23.789481,116,honji-hahi60,False,ROI,-1.88,2.02
|
| 49 |
+
47,1.38,2025-06-10 00:05:22.986881,116,honji-hahi60,False,ROI,119.67,116.81
|
| 50 |
+
48,1.38,2025-06-10 01:11:09.610266,116,honji-hahi60,False,ROI,118.39,115.52
|
| 51 |
+
49,-1.88,2025-06-09 21:40:11.196609,116,honji-hahi60,False,ROI,-1.88,2.02
|
| 52 |
+
50,-1.88,2025-06-09 22:59:27.051209,116,honji-hahi60,False,ROI,-1.88,2.02
|
| 53 |
+
51,1.38,2025-06-10 02:15:06.888709,116,honji-hahi60,False,ROI,117.16,114.3
|
| 54 |
+
52,1.38,2025-06-10 03:16:08.200810,116,honji-hahi60,False,ROI,116.01,113.15
|
| 55 |
+
53,1.38,2025-06-10 13:06:56.183812,116,honji-hahi60,False,ROI,105.98,103.12
|
| 56 |
+
54,1.38,2025-06-10 14:12:49.085955,116,honji-hahi60,False,ROI,104.97,102.11
|
| 57 |
+
55,1.38,2025-06-10 12:05:28.212332,116,honji-hahi60,False,ROI,106.95,104.09
|
| 58 |
+
56,1.38,2025-06-10 15:17:49.725694,116,honji-hahi60,False,ROI,103.99,101.13
|
| 59 |
+
57,1.38,2025-06-10 19:30:50.269289,116,honji-hahi60,False,ROI,100.35,97.49
|
| 60 |
+
58,1.38,2025-06-10 20:30:54.841382,116,honji-hahi60,False,ROI,99.52,96.66
|
| 61 |
+
59,1.38,2025-06-10 16:17:52.268774,116,honji-hahi60,False,ROI,103.1,100.24
|
| 62 |
+
60,1.38,2025-06-10 17:23:51.522272,116,honji-hahi60,False,ROI,102.14,99.28
|
| 63 |
+
61,1.38,2025-06-10 18:29:24.025681,116,honji-hahi60,False,ROI,101.21,98.35
|
| 64 |
+
62,2.68,2025-06-11 22:14:54.110285,116,honji-hahi60,False,ROI,159.56,151.96
|
| 65 |
+
63,2.68,2025-06-11 23:15:11.685382,116,honji-hahi60,False,ROI,158.47,150.88
|
| 66 |
+
64,0.8,2025-06-13 18:28:24.365605,116,honji-hahi60,False,ROI,36.62,34.98
|
| 67 |
+
65,-0.48,2025-06-16 13:54:43.588418,116,honji-hahi60,False,ROI,-0.48,1.92
|
| 68 |
+
66,-2.38,2025-06-07 12:07:37.903080,117,furye-himkon89,False,ROI,-2.38,2.56
|
| 69 |
+
67,-1.55,2025-06-08 14:06:51.667566,117,furye-himkon89,False,ROI,-1.55,1.67
|
| 70 |
+
68,-1.88,2025-06-09 18:36:45.190353,117,furye-himkon89,False,ROI,-1.88,2.02
|
| 71 |
+
69,1.38,2025-06-10 19:00:01.668753,117,furye-himkon89,False,ROI,104.84,101.98
|
| 72 |
+
70,3.66,2025-06-11 20:01:40.606767,117,furye-himkon89,False,ROI,228.68,221.09
|
| 73 |
+
71,3.06,2025-06-12 20:03:47.365734,117,furye-himkon89,False,ROI,163.34,156.99
|
| 74 |
+
72,0.79,2025-06-13 20:08:14.584427,117,furye-himkon89,False,ROI,36.83,35.19
|
| 75 |
+
73,-0.62,2025-06-14 20:11:08.489286,117,furye-himkon89,False,ROI,-0.62,0.66
|
| 76 |
+
74,-1.41,2025-06-15 20:54:19.955496,117,furye-himkon89,False,ROI,-1.41,1.51
|
| 77 |
+
75,-0.91,2025-06-17 04:52:36.207967,117,furye-himkon89,False,ROI,-0.91,0.97
|
| 78 |
+
76,1.14,2025-06-07 16:03:45.373863,118,lonwus-patu86,False,ROI,324.01,321.54
|
| 79 |
+
77,1.14,2025-06-07 17:07:58.993795,118,lonwus-patu86,False,ROI,313.15,310.68
|
| 80 |
+
78,1.14,2025-06-07 14:59:15.300909,118,lonwus-patu86,False,ROI,335.69,333.22
|
| 81 |
+
79,1.14,2025-06-07 18:11:58.599501,118,lonwus-patu86,False,ROI,303.03,300.56
|
| 82 |
+
80,1.14,2025-06-07 19:15:56.087703,118,lonwus-patu86,False,ROI,293.55,291.09
|
| 83 |
+
81,2.0,2025-06-08 20:18:54.565690,118,lonwus-patu86,False,ROI,296.37,292.05
|
| 84 |
+
82,2.0,2025-06-08 19:12:17.097068,118,lonwus-patu86,False,ROI,302.04,297.72
|
| 85 |
+
83,2.0,2025-06-08 17:00:30.730686,118,lonwus-patu86,False,ROI,313.93,309.6
|
| 86 |
+
84,2.0,2025-06-08 18:06:00.793190,118,lonwus-patu86,False,ROI,307.91,303.58
|
| 87 |
+
85,2.0,2025-06-08 21:24:29.536035,118,lonwus-patu86,False,ROI,290.99,286.67
|
| 88 |
+
86,-25.3,2025-06-11 13:51:16.740004,118,lonwus-patu86,False,ROI,-25.3,-41.28
|
| 89 |
+
87,0.0,2025-06-06 21:16:18.171681,119,lonlim-zapgi60,False,ROI,0.0,0.0
|
| 90 |
+
88,1.14,2025-06-07 21:20:52.452249,119,lonlim-zapgi60,False,ROI,307.76,305.29
|
| 91 |
+
89,2.0,2025-06-08 21:24:43.897906,119,lonlim-zapgi60,False,ROI,309.78,305.45
|
| 92 |
+
90,1.67,2025-06-09 21:25:09.568709,119,lonlim-zapgi60,False,ROI,181.01,177.41
|
| 93 |
+
91,5.04,2025-06-10 21:27:14.352202,119,lonlim-zapgi60,False,ROI,421.68,410.8
|
| 94 |
+
92,4.08,2025-06-12 19:40:26.414300,119,lonlim-zapgi60,False,ROI,237.2,222.56
|
| 95 |
+
93,2.48,2025-06-13 20:14:38.143005,119,lonlim-zapgi60,False,ROI,123.86,114.3
|
| 96 |
+
94,0.92,2025-06-15 02:29:15.201154,119,lonlim-zapgi60,False,ROI,39.17,34.53
|
| 97 |
+
95,1.1,2025-06-16 19:00:11.977194,119,lonlim-zapgi60,False,ROI,39.24,34.03
|
| 98 |
+
96,1.32,2025-06-06 21:35:10.663781,120,joyus-goson39,False,ROI,2081.35,2081.35
|
| 99 |
+
97,-28.02,2025-06-08 17:03:45.278780,120,joyus-goson39,False,ROI,-28.02,-32.34
|
| 100 |
+
98,2.35,2025-06-08 22:12:15.454361,120,joyus-goson39,False,ROI,379.37,375.05
|
| 101 |
+
99,3.99,2025-06-13 21:09:43.972117,120,joyus-goson39,False,ROI,201.84,192.27
|
| 102 |
+
100,3.0,2025-06-14 21:11:33.782224,120,joyus-goson39,False,ROI,133.33,126.91
|
| 103 |
+
101,1.33,2025-06-06 21:50:52.233090,121,cilwar-rimlu27,False,ROI,2108.94,2108.94
|
| 104 |
+
102,0.66,2025-06-07 20:35:53.079934,122,tevi-kulo15,False,ROI,1038.47,1038.47
|
| 105 |
+
103,1.24,2025-06-08 22:11:03.101491,122,tevi-kulo15,False,ROI,350.05,348.24
|
| 106 |
+
104,3.25,2025-06-10 18:57:11.357853,122,tevi-kulo15,False,ROI,375.58,367.38
|
| 107 |
+
105,4.51,2025-06-11 19:15:27.075172,122,tevi-kulo15,False,ROI,394.52,381.34
|
| 108 |
+
106,4.1,2025-06-12 19:16:57.908495,122,tevi-kulo15,False,ROI,289.14,277.26
|
| 109 |
+
107,2.53,2025-06-13 19:20:13.259482,122,tevi-kulo15,False,ROI,149.59,142.67
|
| 110 |
+
108,1.56,2025-06-14 19:22:15.337790,122,tevi-kulo15,False,ROI,79.1,75.24
|
| 111 |
+
109,1.19,2025-06-16 00:58:44.095764,122,tevi-kulo15,False,ROI,51.44,48.76
|
| 112 |
+
110,1.35,2025-06-17 01:17:35.998975,122,tevi-kulo15,False,ROI,52.44,49.22
|
| 113 |
+
111,-0.14,2025-06-09 00:31:18.357811,123,cordron-yelku44,False,ROI,-0.14,0.55
|
| 114 |
+
112,1.97,2025-06-10 02:17:21.916446,123,cordron-yelku44,False,ROI,346.8,340.52
|
| 115 |
+
113,3.47,2025-06-11 08:14:14.656064,123,cordron-yelku44,False,ROI,381.81,370.64
|
| 116 |
+
114,3.09,2025-06-12 08:16:43.196306,123,cordron-yelku44,False,ROI,261.07,251.18
|
| 117 |
+
115,1.59,2025-06-13 20:51:54.959756,123,cordron-yelku44,False,ROI,99.58,94.56
|
| 118 |
+
116,0.7,2025-06-14 20:58:08.060349,123,cordron-yelku44,False,ROI,37.24,35.23
|
| 119 |
+
117,0.34,2025-06-16 01:13:39.374306,123,cordron-yelku44,False,ROI,15.26,14.41
|
| 120 |
+
118,0.49,2025-06-17 01:18:21.000045,123,cordron-yelku44,False,ROI,19.96,18.57
|
| 121 |
+
119,0.0,2025-06-09 18:32:36.558142,126,tonvel-beeprel23,False,ROI,0.0,0.0
|
| 122 |
+
120,3.31,2025-06-10 18:35:49.668890,126,tonvel-beeprel23,False,ROI,978.68,971.66
|
| 123 |
+
121,4.84,2025-06-11 18:38:07.704650,126,tonvel-beeprel23,False,ROI,789.88,777.93
|
| 124 |
+
122,4.41,2025-06-12 18:42:17.665709,126,tonvel-beeprel23,False,ROI,497.65,486.99
|
| 125 |
+
123,1.43,2025-06-16 17:52:55.063058,126,tonvel-beeprel23,False,ROI,72.71,71.16
|
| 126 |
+
124,0.81,2025-06-09 22:20:14.827769,127,lunel-luwus85,False,ROI,1280.5,1280.5
|
| 127 |
+
125,2.83,2025-06-10 11:46:19.456686,127,lunel-luwus85,False,ROI,1305.08,1298.06
|
| 128 |
+
126,4.45,2025-06-11 11:52:17.821684,127,lunel-luwus85,False,ROI,904.96,893.01
|
| 129 |
+
127,4.04,2025-06-12 12:14:06.850694,127,lunel-luwus85,False,ROI,524.63,513.98
|
| 130 |
+
128,2.42,2025-06-13 12:18:45.544337,127,lunel-luwus85,False,ROI,231.49,225.74
|
| 131 |
+
129,1.44,2025-06-14 20:55:17.651663,127,lunel-luwus85,False,ROI,101.72,99.0
|
| 132 |
+
130,0.88,2025-06-15 20:58:03.786280,127,lunel-luwus85,False,ROI,51.95,50.94
|
| 133 |
+
131,1.06,2025-06-16 21:00:02.716458,127,lunel-luwus85,False,ROI,53.98,52.42
|
| 134 |
+
132,-30.96,2025-06-10 09:06:37.010122,128,kozu-hanfil63,False,ROI,-30.96,-30.96
|
| 135 |
+
133,-0.31,2025-06-10 09:29:20.119072,128,kozu-hanfil63,False,ROI,-0.31,-0.31
|
| 136 |
+
134,1.2,2025-06-11 12:58:00.236662,128,kozu-hanfil63,False,ROI,314.71,310.11
|
| 137 |
+
135,-0.69,2025-06-13 07:59:58.559461,128,kozu-hanfil63,False,ROI,-0.69,0.49
|
| 138 |
+
136,-2.12,2025-06-15 20:59:08.057917,128,kozu-hanfil63,False,ROI,-2.12,3.5
|
| 139 |
+
137,0.0,2025-06-15 21:22:42.073588,133,ronwus-yusrus90,False,ROI,0.0,0.0
|
| 140 |
+
138,0.0,2025-06-16 21:26:14.464595,133,ronwus-yusrus90,False,ROI,1.43,0.89
|
initial_value_fixer.py
CHANGED
|
@@ -395,11 +395,14 @@ def fetch_optimism_transfers(
|
|
| 395 |
address: str,
|
| 396 |
last_timestamp: int
|
| 397 |
) -> Dict:
|
|
|
|
|
|
|
|
|
|
| 398 |
base_url = "https://safe-transaction-optimism.safe.global/api/v1"
|
| 399 |
all_transfers_by_date = {}
|
| 400 |
|
| 401 |
try:
|
| 402 |
-
logger.info("Fetching Optimism transfers
|
| 403 |
|
| 404 |
last_date = datetime.fromtimestamp(last_timestamp).strftime("%Y-%m-%d")
|
| 405 |
|
|
@@ -407,7 +410,13 @@ def fetch_optimism_transfers(
|
|
| 407 |
transfers_url = f"{base_url}/safes/{address}/incoming-transfers/"
|
| 408 |
|
| 409 |
processed_count = 0
|
| 410 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 411 |
success, response_json = request_with_retries(
|
| 412 |
endpoint=transfers_url,
|
| 413 |
headers={"Accept": "application/json"},
|
|
@@ -416,11 +425,12 @@ def fetch_optimism_transfers(
|
|
| 416 |
)
|
| 417 |
|
| 418 |
if not success:
|
| 419 |
-
logger.error("Failed to fetch Optimism transfers")
|
| 420 |
break
|
| 421 |
|
| 422 |
transfers = response_json.get("results", [])
|
| 423 |
if not transfers:
|
|
|
|
| 424 |
break
|
| 425 |
|
| 426 |
for transfer in transfers:
|
|
@@ -449,11 +459,9 @@ def fetch_optimism_transfers(
|
|
| 449 |
if tx_date not in all_transfers_by_date:
|
| 450 |
all_transfers_by_date[tx_date] = []
|
| 451 |
|
| 452 |
-
should_include = should_include_transfer_optimism(
|
| 453 |
-
from_address
|
| 454 |
-
)
|
| 455 |
if not should_include:
|
| 456 |
-
|
| 457 |
|
| 458 |
# Process different transfer types
|
| 459 |
if transfer_type == "ERC20_TRANSFER":
|
|
@@ -471,7 +479,7 @@ def fetch_optimism_transfers(
|
|
| 471 |
symbol = token_info.get("symbol", "Unknown")
|
| 472 |
decimals = int(token_info.get("decimals", 18) or 18)
|
| 473 |
|
| 474 |
-
if symbol.lower()
|
| 475 |
continue
|
| 476 |
|
| 477 |
value_raw = int(transfer.get("value", "0") or "0")
|
|
@@ -517,19 +525,22 @@ def fetch_optimism_transfers(
|
|
| 517 |
processed_count += 1
|
| 518 |
|
| 519 |
# Show progress
|
| 520 |
-
if processed_count %
|
| 521 |
-
logger.info(f"Processed {processed_count} Optimism transfers...")
|
| 522 |
|
| 523 |
# Check for next page
|
| 524 |
cursor = response_json.get("next")
|
| 525 |
if not cursor:
|
|
|
|
| 526 |
break
|
|
|
|
|
|
|
| 527 |
|
| 528 |
-
logger.info(f"Completed Optimism transfers: {processed_count} found")
|
| 529 |
return all_transfers_by_date
|
| 530 |
|
| 531 |
except Exception as e:
|
| 532 |
-
logger.error(f"Error fetching Optimism transfers: {e}")
|
| 533 |
return {}
|
| 534 |
|
| 535 |
def calculate_initial_investment_value_from_funding_events(
|
|
@@ -700,43 +711,131 @@ def calculate_apr_and_roi(
|
|
| 700 |
|
| 701 |
|
| 702 |
def fix_apr_and_roi(df: DataFrame) -> DataFrame:
|
| 703 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 704 |
# Remove rows with excluded addresses
|
|
|
|
| 705 |
df = df[~df['address'].isin(EXCLUDED_ADDRESSES)]
|
|
|
|
|
|
|
|
|
|
| 706 |
|
| 707 |
# Remove rows with timestamps before 2025-06-06
|
|
|
|
| 708 |
df = df[df['timestamp'] >= '2025-06-06 00:00:00.000000']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 709 |
|
| 710 |
-
|
| 711 |
-
|
| 712 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 713 |
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
|
| 718 |
-
if row["volume"] > 0:
|
| 719 |
-
final_value += row["volume"]
|
| 720 |
|
| 721 |
-
|
| 722 |
-
|
| 723 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 724 |
continue
|
| 725 |
|
| 726 |
-
|
| 727 |
-
|
| 728 |
-
|
| 729 |
-
|
| 730 |
-
apr, adjusted_apr, roi = calculate_apr_and_roi(
|
| 731 |
-
initial_value=initial_value,
|
| 732 |
-
final_value=final_value,
|
| 733 |
-
initial_timestamp=initial_timestamp,
|
| 734 |
-
final_timestamp=final_timestamp
|
| 735 |
-
)
|
| 736 |
-
df.at[idx, 'apr'] = apr
|
| 737 |
-
df.at[idx, 'adjusted_apr'] = adjusted_apr
|
| 738 |
-
df.at[idx, 'roi'] = roi
|
| 739 |
|
|
|
|
| 740 |
return df
|
| 741 |
|
| 742 |
|
|
@@ -748,4 +847,4 @@ if __name__ == "__main__":
|
|
| 748 |
test_address,
|
| 749 |
test_final_timestamp
|
| 750 |
)
|
| 751 |
-
print(v)
|
|
|
|
| 395 |
address: str,
|
| 396 |
last_timestamp: int
|
| 397 |
) -> Dict:
|
| 398 |
+
"""
|
| 399 |
+
Fetch Optimism transfers for a given address with improved error handling and rate limiting.
|
| 400 |
+
"""
|
| 401 |
base_url = "https://safe-transaction-optimism.safe.global/api/v1"
|
| 402 |
all_transfers_by_date = {}
|
| 403 |
|
| 404 |
try:
|
| 405 |
+
logger.info(f"Fetching Optimism transfers for address {address}...")
|
| 406 |
|
| 407 |
last_date = datetime.fromtimestamp(last_timestamp).strftime("%Y-%m-%d")
|
| 408 |
|
|
|
|
| 410 |
transfers_url = f"{base_url}/safes/{address}/incoming-transfers/"
|
| 411 |
|
| 412 |
processed_count = 0
|
| 413 |
+
page_count = 0
|
| 414 |
+
max_pages = 10 # Limit to prevent infinite loops
|
| 415 |
+
|
| 416 |
+
while page_count < max_pages:
|
| 417 |
+
page_count += 1
|
| 418 |
+
logger.info(f"Fetching page {page_count} for address {address}")
|
| 419 |
+
|
| 420 |
success, response_json = request_with_retries(
|
| 421 |
endpoint=transfers_url,
|
| 422 |
headers={"Accept": "application/json"},
|
|
|
|
| 425 |
)
|
| 426 |
|
| 427 |
if not success:
|
| 428 |
+
logger.error(f"Failed to fetch Optimism transfers for address {address} on page {page_count}")
|
| 429 |
break
|
| 430 |
|
| 431 |
transfers = response_json.get("results", [])
|
| 432 |
if not transfers:
|
| 433 |
+
logger.info(f"No more transfers found for address {address} on page {page_count}")
|
| 434 |
break
|
| 435 |
|
| 436 |
for transfer in transfers:
|
|
|
|
| 459 |
if tx_date not in all_transfers_by_date:
|
| 460 |
all_transfers_by_date[tx_date] = []
|
| 461 |
|
| 462 |
+
should_include = should_include_transfer_optimism(from_address)
|
|
|
|
|
|
|
| 463 |
if not should_include:
|
| 464 |
+
continue
|
| 465 |
|
| 466 |
# Process different transfer types
|
| 467 |
if transfer_type == "ERC20_TRANSFER":
|
|
|
|
| 479 |
symbol = token_info.get("symbol", "Unknown")
|
| 480 |
decimals = int(token_info.get("decimals", 18) or 18)
|
| 481 |
|
| 482 |
+
if symbol.lower() not in ["usdc", "eth"]:
|
| 483 |
continue
|
| 484 |
|
| 485 |
value_raw = int(transfer.get("value", "0") or "0")
|
|
|
|
| 525 |
processed_count += 1
|
| 526 |
|
| 527 |
# Show progress
|
| 528 |
+
if processed_count % 50 == 0:
|
| 529 |
+
logger.info(f"Processed {processed_count} Optimism transfers for address {address}...")
|
| 530 |
|
| 531 |
# Check for next page
|
| 532 |
cursor = response_json.get("next")
|
| 533 |
if not cursor:
|
| 534 |
+
logger.info(f"No more pages for address {address}")
|
| 535 |
break
|
| 536 |
+
else:
|
| 537 |
+
transfers_url = cursor # Update URL for next page
|
| 538 |
|
| 539 |
+
logger.info(f"Completed Optimism transfers for address {address}: {processed_count} found")
|
| 540 |
return all_transfers_by_date
|
| 541 |
|
| 542 |
except Exception as e:
|
| 543 |
+
logger.error(f"Error fetching Optimism transfers for address {address}: {e}")
|
| 544 |
return {}
|
| 545 |
|
| 546 |
def calculate_initial_investment_value_from_funding_events(
|
|
|
|
| 711 |
|
| 712 |
|
| 713 |
def fix_apr_and_roi(df: DataFrame) -> DataFrame:
|
| 714 |
+
"""
|
| 715 |
+
Fix APR and ROI values by recalculating them based on actual blockchain data.
|
| 716 |
+
This function processes each row only once and includes proper error handling.
|
| 717 |
+
"""
|
| 718 |
+
if df.empty:
|
| 719 |
+
logger.info("Empty DataFrame provided to fix_apr_and_roi, returning as-is")
|
| 720 |
+
return df
|
| 721 |
+
|
| 722 |
+
logger.info(f"Starting fix_apr_and_roi with {len(df)} rows")
|
| 723 |
+
|
| 724 |
# Remove rows with excluded addresses
|
| 725 |
+
original_count = len(df)
|
| 726 |
df = df[~df['address'].isin(EXCLUDED_ADDRESSES)]
|
| 727 |
+
excluded_count = original_count - len(df)
|
| 728 |
+
if excluded_count > 0:
|
| 729 |
+
logger.info(f"Excluded {excluded_count} rows with excluded addresses")
|
| 730 |
|
| 731 |
# Remove rows with timestamps before 2025-06-06
|
| 732 |
+
original_count = len(df)
|
| 733 |
df = df[df['timestamp'] >= '2025-06-06 00:00:00.000000']
|
| 734 |
+
old_data_count = original_count - len(df)
|
| 735 |
+
if old_data_count > 0:
|
| 736 |
+
logger.info(f"Excluded {old_data_count} rows with timestamps before 2025-06-06")
|
| 737 |
+
|
| 738 |
+
# Check for future timestamps and filter them out
|
| 739 |
+
current_time = datetime.now().timestamp()
|
| 740 |
+
future_rows = df[df['timestamp'].apply(lambda x: x.timestamp()) > current_time]
|
| 741 |
+
if not future_rows.empty:
|
| 742 |
+
logger.warning(f"Found {len(future_rows)} rows with future timestamps, excluding them")
|
| 743 |
+
for idx, row in future_rows.iterrows():
|
| 744 |
+
logger.warning(f"Future timestamp found: {row['timestamp']} (timestamp: {row['timestamp'].timestamp()})")
|
| 745 |
+
df = df[df['timestamp'].apply(lambda x: x.timestamp()) <= current_time]
|
| 746 |
+
|
| 747 |
+
if df.empty:
|
| 748 |
+
logger.warning("No valid rows remaining after filtering, returning empty DataFrame")
|
| 749 |
+
return df
|
| 750 |
+
|
| 751 |
+
logger.info(f"Processing {len(df)} valid rows")
|
| 752 |
+
|
| 753 |
+
# Create a copy to avoid modifying the original DataFrame during iteration
|
| 754 |
+
df_copy = df.copy()
|
| 755 |
+
rows_to_drop = []
|
| 756 |
+
processed_count = 0
|
| 757 |
+
|
| 758 |
+
for idx, row in df_copy.iterrows():
|
| 759 |
+
try:
|
| 760 |
+
if row['is_dummy']:
|
| 761 |
+
logger.debug(f"Skipping dummy row {idx}")
|
| 762 |
+
continue
|
| 763 |
|
| 764 |
+
processed_count += 1
|
| 765 |
+
logger.info(f"Processing row {processed_count}/{len(df_copy)} - Address: {row['address']}")
|
| 766 |
+
|
| 767 |
+
final_timestamp = int(row['timestamp'].timestamp())
|
| 768 |
+
|
| 769 |
+
# Validate timestamp is not in the future
|
| 770 |
+
if final_timestamp > current_time:
|
| 771 |
+
logger.warning(f"Skipping row {idx} with future timestamp: {final_timestamp}")
|
| 772 |
+
rows_to_drop.append(idx)
|
| 773 |
+
continue
|
| 774 |
+
|
| 775 |
+
calculation_metrics = row['calculation_metrics']
|
| 776 |
+
|
| 777 |
+
# Calculate initial value and timestamp with error handling
|
| 778 |
+
try:
|
| 779 |
+
initial_value, initial_timestamp = calculate_initial_value_from_address_and_timestamp(
|
| 780 |
+
row['address'], final_timestamp
|
| 781 |
+
)
|
| 782 |
+
except Exception as e:
|
| 783 |
+
logger.error(f"Error calculating initial value for address {row['address']}: {e}")
|
| 784 |
+
rows_to_drop.append(idx)
|
| 785 |
+
continue
|
| 786 |
+
|
| 787 |
+
# Calculate final value with error handling
|
| 788 |
+
try:
|
| 789 |
+
final_value = calculate_final_value_from_address_and_timestamp(
|
| 790 |
+
row['address'], final_timestamp
|
| 791 |
+
)
|
| 792 |
+
if row["volume"] > 0:
|
| 793 |
+
final_value += row["volume"]
|
| 794 |
+
except Exception as e:
|
| 795 |
+
logger.error(f"Error calculating final value for address {row['address']}: {e}")
|
| 796 |
+
rows_to_drop.append(idx)
|
| 797 |
+
continue
|
| 798 |
|
| 799 |
+
if initial_value <= 0:
|
| 800 |
+
logger.warning(f"Initial value for address {row['address']} is non-positive ({initial_value}), skipping row.")
|
| 801 |
+
rows_to_drop.append(idx)
|
| 802 |
+
continue
|
|
|
|
|
|
|
| 803 |
|
| 804 |
+
# Update calculation metrics
|
| 805 |
+
calculation_metrics['initial_value'] = initial_value
|
| 806 |
+
calculation_metrics['final_value'] = final_value
|
| 807 |
+
df.at[idx, 'calculation_metrics'] = calculation_metrics
|
| 808 |
+
|
| 809 |
+
# Calculate APR and ROI with error handling
|
| 810 |
+
try:
|
| 811 |
+
apr, adjusted_apr, roi = calculate_apr_and_roi(
|
| 812 |
+
initial_value=initial_value,
|
| 813 |
+
final_value=final_value,
|
| 814 |
+
initial_timestamp=initial_timestamp,
|
| 815 |
+
final_timestamp=final_timestamp
|
| 816 |
+
)
|
| 817 |
+
df.at[idx, 'apr'] = apr
|
| 818 |
+
df.at[idx, 'adjusted_apr'] = adjusted_apr
|
| 819 |
+
df.at[idx, 'roi'] = roi
|
| 820 |
+
|
| 821 |
+
logger.info(f"Successfully processed address {row['address']}: APR={apr:.2f}, ROI={roi:.2f}")
|
| 822 |
+
|
| 823 |
+
except Exception as e:
|
| 824 |
+
logger.error(f"Error calculating APR/ROI for address {row['address']}: {e}")
|
| 825 |
+
rows_to_drop.append(idx)
|
| 826 |
+
continue
|
| 827 |
+
|
| 828 |
+
except Exception as e:
|
| 829 |
+
logger.error(f"Unexpected error processing row {idx}: {e}")
|
| 830 |
+
rows_to_drop.append(idx)
|
| 831 |
continue
|
| 832 |
|
| 833 |
+
# Drop rows that had errors
|
| 834 |
+
if rows_to_drop:
|
| 835 |
+
logger.info(f"Dropping {len(rows_to_drop)} rows due to errors")
|
| 836 |
+
df = df.drop(rows_to_drop)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 837 |
|
| 838 |
+
logger.info(f"Completed fix_apr_and_roi: {len(df)} rows remaining")
|
| 839 |
return df
|
| 840 |
|
| 841 |
|
|
|
|
| 847 |
test_address,
|
| 848 |
test_final_timestamp
|
| 849 |
)
|
| 850 |
+
print(v)
|
optimus_apr_statistics.csv
CHANGED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
agent_id,agent_name,total_points,apr_points,performance_points,real_apr_points,real_performance_points,avg_apr,avg_performance,max_apr,min_apr,avg_adjusted_apr,max_adjusted_apr,min_adjusted_apr,latest_timestamp
|
| 2 |
111,furtek-gilje55,5,5,0,5,0,48.2,,132.09,-1.5,49.162,125.13,5.19,2025-06-16 20:22:51
|
| 3 |
112,vuzus-fazi89,1,1,0,1,0,-34.65,,-34.65,-34.65,-31.43,-31.43,-31.43,2025-06-08 02:03:32
|
| 4 |
-
115,yenot-zoncen49,
|
| 5 |
116,honji-hahi60,36,36,0,36,0,47.61749999999999,,159.56,-3.48,48.455000000000005,151.96,1.67,2025-06-16 13:54:43
|
| 6 |
-
117,furye-himkon89,
|
| 7 |
118,lonwus-patu86,11,11,0,11,0,277.7609090909091,,335.69,-25.3,273.22090909090906,333.22,-41.28,2025-06-11 13:51:16
|
| 8 |
119,lonlim-zapgi60,9,9,0,9,0,184.41111111111113,,421.68,0.0,178.26333333333335,410.8,0.0,2025-06-16 19:00:11
|
| 9 |
120,joyus-goson39,5,5,0,5,0,553.574,,2081.35,-28.02,548.6479999999999,2081.35,-32.34,2025-06-14 21:11:33
|
| 10 |
121,cilwar-rimlu27,1,1,0,1,0,2108.94,,2108.94,2108.94,2108.94,2108.94,2108.94,2025-06-06 21:50:52
|
| 11 |
-
122,tevi-kulo15,
|
| 12 |
-
123,cordron-yelku44,
|
| 13 |
126,tonvel-beeprel23,5,5,0,5,0,467.784,,978.68,0.0,461.54799999999994,971.66,0.0,2025-06-16 17:52:55
|
| 14 |
127,lunel-luwus85,8,8,0,8,0,556.78875,,1305.08,51.95,551.7062500000001,1298.06,50.94,2025-06-16 21:00:02
|
| 15 |
128,kozu-hanfil63,5,5,0,5,0,56.126,,314.71,-30.96,56.56600000000001,310.11,-30.96,2025-06-15 20:59:08
|
| 16 |
-
133,ronwus-yusrus90,
|
| 17 |
-
ALL,All Agents,
|
|
|
|
| 1 |
agent_id,agent_name,total_points,apr_points,performance_points,real_apr_points,real_performance_points,avg_apr,avg_performance,max_apr,min_apr,avg_adjusted_apr,max_adjusted_apr,min_adjusted_apr,latest_timestamp
|
| 2 |
111,furtek-gilje55,5,5,0,5,0,48.2,,132.09,-1.5,49.162,125.13,5.19,2025-06-16 20:22:51
|
| 3 |
112,vuzus-fazi89,1,1,0,1,0,-34.65,,-34.65,-34.65,-31.43,-31.43,-31.43,2025-06-08 02:03:32
|
| 4 |
+
115,yenot-zoncen49,24,24,0,24,0,18.655833333333334,,190.0,-3.48,22.937916666666666,182.41,2.56,2025-06-17 02:16:08
|
| 5 |
116,honji-hahi60,36,36,0,36,0,47.61749999999999,,159.56,-3.48,48.455000000000005,151.96,1.67,2025-06-16 13:54:43
|
| 6 |
+
117,furye-himkon89,10,10,0,10,0,52.49400000000001,,228.68,-2.38,52.46400000000001,221.09,0.66,2025-06-17 04:52:36
|
| 7 |
118,lonwus-patu86,11,11,0,11,0,277.7609090909091,,335.69,-25.3,273.22090909090906,333.22,-41.28,2025-06-11 13:51:16
|
| 8 |
119,lonlim-zapgi60,9,9,0,9,0,184.41111111111113,,421.68,0.0,178.26333333333335,410.8,0.0,2025-06-16 19:00:11
|
| 9 |
120,joyus-goson39,5,5,0,5,0,553.574,,2081.35,-28.02,548.6479999999999,2081.35,-32.34,2025-06-14 21:11:33
|
| 10 |
121,cilwar-rimlu27,1,1,0,1,0,2108.94,,2108.94,2108.94,2108.94,2108.94,2108.94,2025-06-06 21:50:52
|
| 11 |
+
122,tevi-kulo15,9,9,0,9,0,308.92555555555555,,1038.47,51.44,303.17555555555555,1038.47,48.76,2025-06-17 01:17:35
|
| 12 |
+
123,cordron-yelku44,8,8,0,8,0,145.1975,,381.81,-0.14,140.70749999999998,370.64,0.55,2025-06-17 01:18:21
|
| 13 |
126,tonvel-beeprel23,5,5,0,5,0,467.784,,978.68,0.0,461.54799999999994,971.66,0.0,2025-06-16 17:52:55
|
| 14 |
127,lunel-luwus85,8,8,0,8,0,556.78875,,1305.08,51.95,551.7062500000001,1298.06,50.94,2025-06-16 21:00:02
|
| 15 |
128,kozu-hanfil63,5,5,0,5,0,56.126,,314.71,-30.96,56.56600000000001,310.11,-30.96,2025-06-15 20:59:08
|
| 16 |
+
133,ronwus-yusrus90,2,2,0,2,0,0.715,,1.43,0.0,0.445,0.89,0.0,2025-06-16 21:26:14
|
| 17 |
+
ALL,All Agents,139,139,0,139,0,169.08158273381295,,2108.94,-34.65,168.02330935251797,2108.94,-41.28,2025-06-17 04:52:36
|
optimus_apr_values.csv
CHANGED
|
@@ -28,6 +28,7 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
| 28 |
142.55,136.2,2025-06-12 22:29:06.555260,"{'portfolio': {'portfolio_value': 30.351423879956, 'value_in_pools': 0.0, 'value_in_safe': 30.351423879956, 'initial_investment': 519.3005766438965, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749745865}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 46.17661277882512, 'f_i_ratio': -0.9415532636683955, 'first_investment_timestamp': 1749747546, 'time_ratio': 8760.0}",2.8,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 29 |
55.41,53.77,2025-06-13 22:40:52.426319,"{'portfolio': {'portfolio_value': 30.352911473112, 'value_in_pools': 0.0, 'value_in_safe': 30.352911473112, 'initial_investment': 833.7257614244643, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749831611}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 45.47591008026921, 'f_i_ratio': -0.9635936504813616, 'first_investment_timestamp': 1749834652, 'time_ratio': 8760.0}",1.24,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 30 |
-0.28,2.65,2025-06-15 04:17:24.547659,"{'portfolio': {'portfolio_value': 30.35054346768, 'value_in_pools': 0.0, 'value_in_safe': 30.35054346768, 'initial_investment': 1013.3972955847887, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749941221}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 44.79423281705253, 'f_i_ratio': -0.970050696207783, 'first_investment_timestamp': 1749941244, 'time_ratio': 8760.0}",-0.28,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"['balancer_pools_search', 'uniswap_pools_search', 'velodrome_pools_search']"
|
|
|
|
| 31 |
-3.48,3.75,2025-06-06 11:29:18.913469,"{'portfolio': {'portfolio_value': 28.28379, 'value_in_pools': 0.0, 'value_in_safe': 28.28379, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2457.43, 'value_usd': 12.28715, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.99979, 'value_usd': 15.99664, 'ratio': 0.0}], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749189495}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5419683668321018, 'first_investment_timestamp': 1749189558, 'time_ratio': 8760.0}",-3.48,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 32 |
-3.48,3.75,2025-06-06 12:31:08.139923,"{'portfolio': {'portfolio_value': 28.28379, 'value_in_pools': 0.0, 'value_in_safe': 28.28379, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2457.43, 'value_usd': 12.28715, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.99979, 'value_usd': 15.99664, 'ratio': 0.0}], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749189495}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5419683668321018, 'first_investment_timestamp': 1749193268, 'time_ratio': 8760.0}",-3.48,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 33 |
-3.48,3.75,2025-06-06 22:15:03.771384,"{'portfolio': {'portfolio_value': 28.544854, 'value_in_pools': 0.0, 'value_in_safe': 28.544854, 'initial_investment': 92.62610249551965, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2509.71, 'value_usd': 12.54855, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999769, 'value_usd': 15.996304, 'ratio': 0.0}], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749228239}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.6918271067123792, 'first_investment_timestamp': 1749228303, 'time_ratio': 8760.0}",-3.48,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
|
@@ -73,6 +74,7 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
| 73 |
36.83,35.19,2025-06-13 20:08:14.584427,"{'portfolio': {'portfolio_value': 28.766334, 'value_in_pools': 0.0, 'value_in_safe': 28.766334, 'initial_investment': 895.3856574566896, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749822232}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 31.119770160623126, 'f_i_ratio': -0.9678726884215347, 'first_investment_timestamp': 1749825494, 'time_ratio': 8760.0}",0.79,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 74 |
-0.62,0.66,2025-06-14 20:11:08.489286,"{'portfolio': {'portfolio_value': 28.620052, 'value_in_pools': 0.0, 'value_in_safe': 28.620052, 'initial_investment': 957.1363924537027, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749909970}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.684659279118137, 'f_i_ratio': -0.9700982511733464, 'first_investment_timestamp': 1749912068, 'time_ratio': 8760.0}",-0.62,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 75 |
-1.41,1.51,2025-06-15 20:54:19.955496,"{'portfolio': {'portfolio_value': 28.73215, 'value_in_pools': 0.0, 'value_in_safe': 28.73215, 'initial_investment': 988.0117599522092, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1750001038}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.4394509928197, 'f_i_ratio': -0.9709192226604775, 'first_investment_timestamp': 1750001059, 'time_ratio': 8760.0}",-1.41,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
|
|
|
| 76 |
324.01,321.54,2025-06-07 16:03:45.373863,"{'portfolio': {'portfolio_value': 28.437878, 'value_in_pools': 0.0, 'value_in_safe': 28.437878, 'initial_investment': 59.600275679908535, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2488.35, 'value_usd': 12.44175, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999758, 'value_usd': 15.996128, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749288375}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.140478299059993, 'f_i_ratio': -0.522856603000806, 'first_investment_timestamp': 1749292425, 'time_ratio': 8760.0}",1.14,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
| 77 |
313.15,310.68,2025-06-07 17:07:58.993795,"{'portfolio': {'portfolio_value': 28.437878, 'value_in_pools': 0.0, 'value_in_safe': 28.437878, 'initial_investment': 59.600275679908535, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2488.35, 'value_usd': 12.44175, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999758, 'value_usd': 15.996128, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749288375}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.140478299059993, 'f_i_ratio': -0.522856603000806, 'first_investment_timestamp': 1749296278, 'time_ratio': 8760.0}",1.14,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
| 78 |
335.69,333.22,2025-06-07 14:59:15.300909,"{'portfolio': {'portfolio_value': 28.437878, 'value_in_pools': 0.0, 'value_in_safe': 28.437878, 'initial_investment': 59.600275679908535, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2488.35, 'value_usd': 12.44175, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999758, 'value_usd': 15.996128, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749288375}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.140478299059993, 'f_i_ratio': -0.522856603000806, 'first_investment_timestamp': 1749288555, 'time_ratio': 8760.0}",1.14,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
|
@@ -107,6 +109,7 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
| 107 |
149.59,142.67,2025-06-13 19:20:13.259482,"{'portfolio': {'portfolio_value': 28.543246888948, 'value_in_pools': 0.0, 'value_in_safe': 28.543246888948, 'initial_investment': 279.4700980426851, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xb0Df5A11C1186201A588353F322128cb1fc1C6c7', 'last_updated': 1749818166}, 'positons': []}","{'initial_value': 41.55493662393751, 'final_value': 42.60709513953155, 'f_i_ratio': -0.8978665442605297, 'first_investment_timestamp': 1749822613, 'time_ratio': 8760.0}",2.53,122,False,0xb0Df5A11C1186201A588353F322128cb1fc1C6c7,tevi-kulo15,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
| 108 |
79.1,75.24,2025-06-14 19:22:15.337790,"{'portfolio': {'portfolio_value': 28.545673734743, 'value_in_pools': 0.0, 'value_in_safe': 28.545673734743, 'initial_investment': 362.57997129056014, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xb0Df5A11C1186201A588353F322128cb1fc1C6c7', 'last_updated': 1749907858}, 'positons': []}","{'initial_value': 41.55493662393751, 'final_value': 42.20142283252129, 'f_i_ratio': -0.9212706823459165, 'first_investment_timestamp': 1749909135, 'time_ratio': 8760.0}",1.56,122,False,0xb0Df5A11C1186201A588353F322128cb1fc1C6c7,tevi-kulo15,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
| 109 |
51.44,48.76,2025-06-16 00:58:44.095764,"{'portfolio': {'portfolio_value': 28.545730836997002, 'value_in_pools': 0.0, 'value_in_safe': 28.545730836997002, 'initial_investment': 404.13490791449766, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xb0Df5A11C1186201A588353F322128cb1fc1C6c7', 'last_updated': 1750015702}, 'positons': []}","{'initial_value': 41.55493662393751, 'final_value': 42.04761733525614, 'f_i_ratio': -0.9293658373034275, 'first_investment_timestamp': 1750015724, 'time_ratio': 8760.0}",1.19,122,False,0xb0Df5A11C1186201A588353F322128cb1fc1C6c7,tevi-kulo15,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
|
|
|
| 110 |
-0.14,0.55,2025-06-09 00:31:18.357811,"{'portfolio': {'portfolio_value': 20.48830040096, 'value_in_pools': 0.0, 'value_in_safe': 20.48830040096, 'initial_investment': 35.31977903399317, 'volume': 12.850468713455362, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749409011}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 35.31977903399317, 'final_value': 35.27006024007327, 'f_i_ratio': -0.4199199156585539, 'first_investment_timestamp': 1749344469, 'time_ratio': 486.5963969582805}",-0.14,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.850468713455362,balanced,
|
| 111 |
346.8,340.52,2025-06-10 02:17:21.916446,"{'portfolio': {'portfolio_value': 20.507856658, 'value_in_pools': 0.0, 'value_in_safe': 20.507856658, 'initial_investment': 2548.4297198347545, 'volume': 12.850468713455362, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749501754}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 48.63267806279609, 'f_i_ratio': -0.9919527478045069, 'first_investment_timestamp': 1749344469, 'time_ratio': 200.13591619225525}",1.97,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.850468713455362,balanced,
|
| 112 |
381.81,370.64,2025-06-11 08:14:14.656064,"{'portfolio': {'portfolio_value': 20.497705024200002, 'value_in_pools': 0.0, 'value_in_safe': 20.497705024200002, 'initial_investment': 3693.0776606218556, 'volume': 12.850468713455362, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749609810}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 49.35003012484369, 'f_i_ratio': -0.9944496956447029, 'first_investment_timestamp': 1749344469, 'time_ratio': 118.83083836449264}",3.47,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.850468713455362,balanced,
|
|
@@ -114,6 +117,7 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
| 114 |
99.58,94.56,2025-06-13 20:51:54.959756,"{'portfolio': {'portfolio_value': 20.48904741152, 'value_in_pools': 0.0, 'value_in_safe': 20.48904741152, 'initial_investment': 9988.641334950877, 'volume': 12.850468713455362, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749827812}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 48.45435878622558, 'f_i_ratio': -0.9979487653300927, 'first_investment_timestamp': 1749344469, 'time_ratio': 65.20472127156118}",1.59,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.850468713455362,balanced,
|
| 115 |
37.24,35.23,2025-06-14 20:58:08.060349,"{'portfolio': {'portfolio_value': 20.487553390400002, 'value_in_pools': 0.0, 'value_in_safe': 20.487553390400002, 'initial_investment': 14090.296456104577, 'volume': 12.850468713455362, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749914572}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 48.02699417703207, 'f_i_ratio': -0.9985459813812843, 'first_investment_timestamp': 1749344469, 'time_ratio': 55.28567011892272}",0.7,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.850468713455362,balanced,
|
| 116 |
15.26,14.41,2025-06-16 01:13:39.374306,"{'portfolio': {'portfolio_value': 20.48846279456, 'value_in_pools': 0.0, 'value_in_safe': 20.48846279456, 'initial_investment': 15950.349359883581, 'volume': 12.850468713455362, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1750016309}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 47.85373070064347, 'f_i_ratio': -0.9987154850133823, 'first_investment_timestamp': 1749344469, 'time_ratio': 46.918072511025315}",0.34,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.850468713455362,balanced,
|
|
|
|
| 117 |
0.0,0.0,2025-06-09 18:32:36.558142,"{'portfolio': {'portfolio_value': 28.724588, 'value_in_pools': 0.0, 'value_in_safe': 28.724588, 'initial_investment': 30.2963222595072, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1749474141}, 'positons': []}","{'initial_value': 30.2963222595072, 'final_value': 30.2963222595072, 'f_i_ratio': -0.05187871471805383, 'first_investment_timestamp': 1749474156, 'time_ratio': 8760.0}",0.0,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
| 118 |
978.68,971.66,2025-06-10 18:35:49.668890,"{'portfolio': {'portfolio_value': 29.825018, 'value_in_pools': 0.0, 'value_in_safe': 29.825018, 'initial_investment': 181.7779335570432, 'volume': None, 'agent_hash': 'bafybeiatbumpchrtaws3j6qwfycudkhcd6idqva5ffibiizy5xgucbsgii', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1749559830}, 'positons': []}","{'initial_value': 42.64732311069726, 'final_value': 44.05696363847583, 'f_i_ratio': -0.8359260807052761, 'first_investment_timestamp': 1749560749, 'time_ratio': 8760.0}",3.31,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeiatbumpchrtaws3j6qwfycudkhcd6idqva5ffibiizy5xgucbsgii,,risky,"[""uniswap_pools_search""]"
|
| 119 |
789.88,777.93,2025-06-11 18:38:07.704650,"{'portfolio': {'portfolio_value': 29.824845653892, 'value_in_pools': 0.0, 'value_in_safe': 29.824845653892, 'initial_investment': 354.51522614786535, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1749645511}, 'positons': []}","{'initial_value': 43.72132318471379, 'final_value': 45.83533836834465, 'f_i_ratio': -0.9158714676998039, 'first_investment_timestamp': 1749647287, 'time_ratio': 8760.0}",4.84,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""uniswap_pools_search""]"
|
|
@@ -133,3 +137,4 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
| 133 |
-0.69,0.49,2025-06-13 07:59:58.559461,"{'portfolio': {'portfolio_value': 15.92175820919, 'value_in_pools': 0.0, 'value_in_safe': 15.92175820919, 'initial_investment': 729.7294822666192, 'volume': 13.377491477361414, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1749781643}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.948351555846092, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x4e71cb688dbfd6ff1dc0621d64060bf7e8822b13b16fc8de2bfac197fbee89dc', 'enter_timestamp': 1749527585, 'amount0': 8357118, 'amount1': 5030943, 'positions': [{'token_id': 2725143, 'liquidity': 264979290127, 'amount0': 8308255, 'amount1': 4939809, 'current_liquidity': 264979290127}, {'token_id': 2725144, 'liquidity': 867486957, 'amount0': 27200, 'amount1': 59543, 'current_liquidity': 867486957}, {'token_id': 2725145, 'liquidity': 266293532, 'amount0': 21663, 'amount1': 31591, 'current_liquidity': 266293532}]}]}","{'initial_value': 43.651793124577026, 'final_value': 43.34997633402806, 'f_i_ratio': -0.9781812869068476, 'first_investment_timestamp': 1749527585, 'time_ratio': 124.05317822877024}",-0.69,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,13.377491477361414,balanced,
|
| 134 |
-2.12,3.5,2025-06-15 20:59:08.057917,"{'portfolio': {'portfolio_value': 15.91742693134, 'value_in_pools': 0.0, 'value_in_safe': 15.91742693134, 'initial_investment': 991.6402410140813, 'volume': 13.377491477361414, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1750001244}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.948351555846092, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x4e71cb688dbfd6ff1dc0621d64060bf7e8822b13b16fc8de2bfac197fbee89dc', 'enter_timestamp': 1749527585, 'amount0': 8357118, 'amount1': 5030943, 'positions': [{'token_id': 2725143, 'liquidity': 264979290127, 'amount0': 8308255, 'amount1': 4939809, 'current_liquidity': 264979290127}, {'token_id': 2725144, 'liquidity': 867486957, 'amount0': 27200, 'amount1': 59543, 'current_liquidity': 867486957}, {'token_id': 2725145, 'liquidity': 266293532, 'amount0': 21663, 'amount1': 31591, 'current_liquidity': 266293532}]}]}","{'initial_value': 43.651793124577026, 'final_value': 42.725034164014204, 'f_i_ratio': -0.9839483854396002, 'first_investment_timestamp': 1749527585, 'time_ratio': 66.56491989613303}",-2.12,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,13.377491477361414,balanced,
|
| 135 |
0.0,0.0,2025-06-15 21:22:42.073588,"{'portfolio': {'portfolio_value': 15.996608, 'value_in_pools': 0.0, 'value_in_safe': 15.996608, 'initial_investment': 15.995250741464774, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC', 'last_updated': 1750002578}, 'positons': []}","{'initial_value': 15.995250741464774, 'final_value': 15.995250741464774, 'f_i_ratio': 8.485384550471764e-05, 'first_investment_timestamp': 1750002762, 'time_ratio': 8760.0}",0.0,133,False,0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC,ronwus-yusrus90,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
|
|
|
|
|
| 28 |
142.55,136.2,2025-06-12 22:29:06.555260,"{'portfolio': {'portfolio_value': 30.351423879956, 'value_in_pools': 0.0, 'value_in_safe': 30.351423879956, 'initial_investment': 519.3005766438965, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749745865}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 46.17661277882512, 'f_i_ratio': -0.9415532636683955, 'first_investment_timestamp': 1749747546, 'time_ratio': 8760.0}",2.8,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 29 |
55.41,53.77,2025-06-13 22:40:52.426319,"{'portfolio': {'portfolio_value': 30.352911473112, 'value_in_pools': 0.0, 'value_in_safe': 30.352911473112, 'initial_investment': 833.7257614244643, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749831611}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 45.47591008026921, 'f_i_ratio': -0.9635936504813616, 'first_investment_timestamp': 1749834652, 'time_ratio': 8760.0}",1.24,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 30 |
-0.28,2.65,2025-06-15 04:17:24.547659,"{'portfolio': {'portfolio_value': 30.35054346768, 'value_in_pools': 0.0, 'value_in_safe': 30.35054346768, 'initial_investment': 1013.3972955847887, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749941221}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 44.79423281705253, 'f_i_ratio': -0.970050696207783, 'first_investment_timestamp': 1749941244, 'time_ratio': 8760.0}",-0.28,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"['balancer_pools_search', 'uniswap_pools_search', 'velodrome_pools_search']"
|
| 31 |
+
2.27,4.15,2025-06-17 02:16:08.931664,"{'portfolio': {'portfolio_value': 30.350118441064, 'value_in_pools': 0.0, 'value_in_safe': 30.350118441064, 'initial_investment': 1058.31517912487, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1750106742}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 44.94960010677301, 'f_i_ratio': -0.9713222308063645, 'first_investment_timestamp': 1750106768, 'time_ratio': 8760.0}",0.07,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""velodrome_pools_search""]"
|
| 32 |
-3.48,3.75,2025-06-06 11:29:18.913469,"{'portfolio': {'portfolio_value': 28.28379, 'value_in_pools': 0.0, 'value_in_safe': 28.28379, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2457.43, 'value_usd': 12.28715, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.99979, 'value_usd': 15.99664, 'ratio': 0.0}], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749189495}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5419683668321018, 'first_investment_timestamp': 1749189558, 'time_ratio': 8760.0}",-3.48,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 33 |
-3.48,3.75,2025-06-06 12:31:08.139923,"{'portfolio': {'portfolio_value': 28.28379, 'value_in_pools': 0.0, 'value_in_safe': 28.28379, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2457.43, 'value_usd': 12.28715, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.99979, 'value_usd': 15.99664, 'ratio': 0.0}], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749189495}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5419683668321018, 'first_investment_timestamp': 1749193268, 'time_ratio': 8760.0}",-3.48,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 34 |
-3.48,3.75,2025-06-06 22:15:03.771384,"{'portfolio': {'portfolio_value': 28.544854, 'value_in_pools': 0.0, 'value_in_safe': 28.544854, 'initial_investment': 92.62610249551965, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2509.71, 'value_usd': 12.54855, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999769, 'value_usd': 15.996304, 'ratio': 0.0}], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749228239}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.6918271067123792, 'first_investment_timestamp': 1749228303, 'time_ratio': 8760.0}",-3.48,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
|
|
|
| 74 |
36.83,35.19,2025-06-13 20:08:14.584427,"{'portfolio': {'portfolio_value': 28.766334, 'value_in_pools': 0.0, 'value_in_safe': 28.766334, 'initial_investment': 895.3856574566896, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749822232}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 31.119770160623126, 'f_i_ratio': -0.9678726884215347, 'first_investment_timestamp': 1749825494, 'time_ratio': 8760.0}",0.79,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 75 |
-0.62,0.66,2025-06-14 20:11:08.489286,"{'portfolio': {'portfolio_value': 28.620052, 'value_in_pools': 0.0, 'value_in_safe': 28.620052, 'initial_investment': 957.1363924537027, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749909970}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.684659279118137, 'f_i_ratio': -0.9700982511733464, 'first_investment_timestamp': 1749912068, 'time_ratio': 8760.0}",-0.62,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 76 |
-1.41,1.51,2025-06-15 20:54:19.955496,"{'portfolio': {'portfolio_value': 28.73215, 'value_in_pools': 0.0, 'value_in_safe': 28.73215, 'initial_investment': 988.0117599522092, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1750001038}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.4394509928197, 'f_i_ratio': -0.9709192226604775, 'first_investment_timestamp': 1750001059, 'time_ratio': 8760.0}",-1.41,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 77 |
+
-0.91,0.97,2025-06-17 04:52:36.207967,"{'portfolio': {'portfolio_value': 28.892858, 'value_in_pools': 0.0, 'value_in_safe': 28.892858, 'initial_investment': 1018.8871274507158, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1750116124}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.594824226534584, 'f_i_ratio': -0.9716427293842737, 'first_investment_timestamp': 1750116156, 'time_ratio': 8760.0}",-0.91,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
| 78 |
324.01,321.54,2025-06-07 16:03:45.373863,"{'portfolio': {'portfolio_value': 28.437878, 'value_in_pools': 0.0, 'value_in_safe': 28.437878, 'initial_investment': 59.600275679908535, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2488.35, 'value_usd': 12.44175, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999758, 'value_usd': 15.996128, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749288375}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.140478299059993, 'f_i_ratio': -0.522856603000806, 'first_investment_timestamp': 1749292425, 'time_ratio': 8760.0}",1.14,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
| 79 |
313.15,310.68,2025-06-07 17:07:58.993795,"{'portfolio': {'portfolio_value': 28.437878, 'value_in_pools': 0.0, 'value_in_safe': 28.437878, 'initial_investment': 59.600275679908535, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2488.35, 'value_usd': 12.44175, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999758, 'value_usd': 15.996128, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749288375}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.140478299059993, 'f_i_ratio': -0.522856603000806, 'first_investment_timestamp': 1749296278, 'time_ratio': 8760.0}",1.14,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
| 80 |
335.69,333.22,2025-06-07 14:59:15.300909,"{'portfolio': {'portfolio_value': 28.437878, 'value_in_pools': 0.0, 'value_in_safe': 28.437878, 'initial_investment': 59.600275679908535, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2488.35, 'value_usd': 12.44175, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999758, 'value_usd': 15.996128, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749288375}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.140478299059993, 'f_i_ratio': -0.522856603000806, 'first_investment_timestamp': 1749288555, 'time_ratio': 8760.0}",1.14,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
|
|
|
| 109 |
149.59,142.67,2025-06-13 19:20:13.259482,"{'portfolio': {'portfolio_value': 28.543246888948, 'value_in_pools': 0.0, 'value_in_safe': 28.543246888948, 'initial_investment': 279.4700980426851, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xb0Df5A11C1186201A588353F322128cb1fc1C6c7', 'last_updated': 1749818166}, 'positons': []}","{'initial_value': 41.55493662393751, 'final_value': 42.60709513953155, 'f_i_ratio': -0.8978665442605297, 'first_investment_timestamp': 1749822613, 'time_ratio': 8760.0}",2.53,122,False,0xb0Df5A11C1186201A588353F322128cb1fc1C6c7,tevi-kulo15,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
| 110 |
79.1,75.24,2025-06-14 19:22:15.337790,"{'portfolio': {'portfolio_value': 28.545673734743, 'value_in_pools': 0.0, 'value_in_safe': 28.545673734743, 'initial_investment': 362.57997129056014, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xb0Df5A11C1186201A588353F322128cb1fc1C6c7', 'last_updated': 1749907858}, 'positons': []}","{'initial_value': 41.55493662393751, 'final_value': 42.20142283252129, 'f_i_ratio': -0.9212706823459165, 'first_investment_timestamp': 1749909135, 'time_ratio': 8760.0}",1.56,122,False,0xb0Df5A11C1186201A588353F322128cb1fc1C6c7,tevi-kulo15,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
| 111 |
51.44,48.76,2025-06-16 00:58:44.095764,"{'portfolio': {'portfolio_value': 28.545730836997002, 'value_in_pools': 0.0, 'value_in_safe': 28.545730836997002, 'initial_investment': 404.13490791449766, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xb0Df5A11C1186201A588353F322128cb1fc1C6c7', 'last_updated': 1750015702}, 'positons': []}","{'initial_value': 41.55493662393751, 'final_value': 42.04761733525614, 'f_i_ratio': -0.9293658373034275, 'first_investment_timestamp': 1750015724, 'time_ratio': 8760.0}",1.19,122,False,0xb0Df5A11C1186201A588353F322128cb1fc1C6c7,tevi-kulo15,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
| 112 |
+
52.44,49.22,2025-06-17 01:17:35.998975,"{'portfolio': {'portfolio_value': 28.542561661900002, 'value_in_pools': 0.0, 'value_in_safe': 28.542561661900002, 'initial_investment': 611.9095910341852, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xb0Df5A11C1186201A588353F322128cb1fc1C6c7', 'last_updated': 1750103239}, 'positons': []}","{'initial_value': 41.55493662393751, 'final_value': 42.11768855931876, 'f_i_ratio': -0.9533549366113704, 'first_investment_timestamp': 1750103255, 'time_ratio': 8760.0}",1.35,122,False,0xb0Df5A11C1186201A588353F322128cb1fc1C6c7,tevi-kulo15,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
| 113 |
-0.14,0.55,2025-06-09 00:31:18.357811,"{'portfolio': {'portfolio_value': 20.48830040096, 'value_in_pools': 0.0, 'value_in_safe': 20.48830040096, 'initial_investment': 35.31977903399317, 'volume': 12.850468713455362, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749409011}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 35.31977903399317, 'final_value': 35.27006024007327, 'f_i_ratio': -0.4199199156585539, 'first_investment_timestamp': 1749344469, 'time_ratio': 486.5963969582805}",-0.14,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.850468713455362,balanced,
|
| 114 |
346.8,340.52,2025-06-10 02:17:21.916446,"{'portfolio': {'portfolio_value': 20.507856658, 'value_in_pools': 0.0, 'value_in_safe': 20.507856658, 'initial_investment': 2548.4297198347545, 'volume': 12.850468713455362, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749501754}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 48.63267806279609, 'f_i_ratio': -0.9919527478045069, 'first_investment_timestamp': 1749344469, 'time_ratio': 200.13591619225525}",1.97,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.850468713455362,balanced,
|
| 115 |
381.81,370.64,2025-06-11 08:14:14.656064,"{'portfolio': {'portfolio_value': 20.497705024200002, 'value_in_pools': 0.0, 'value_in_safe': 20.497705024200002, 'initial_investment': 3693.0776606218556, 'volume': 12.850468713455362, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749609810}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 49.35003012484369, 'f_i_ratio': -0.9944496956447029, 'first_investment_timestamp': 1749344469, 'time_ratio': 118.83083836449264}",3.47,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.850468713455362,balanced,
|
|
|
|
| 117 |
99.58,94.56,2025-06-13 20:51:54.959756,"{'portfolio': {'portfolio_value': 20.48904741152, 'value_in_pools': 0.0, 'value_in_safe': 20.48904741152, 'initial_investment': 9988.641334950877, 'volume': 12.850468713455362, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749827812}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 48.45435878622558, 'f_i_ratio': -0.9979487653300927, 'first_investment_timestamp': 1749344469, 'time_ratio': 65.20472127156118}",1.59,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.850468713455362,balanced,
|
| 118 |
37.24,35.23,2025-06-14 20:58:08.060349,"{'portfolio': {'portfolio_value': 20.487553390400002, 'value_in_pools': 0.0, 'value_in_safe': 20.487553390400002, 'initial_investment': 14090.296456104577, 'volume': 12.850468713455362, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1749914572}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 48.02699417703207, 'f_i_ratio': -0.9985459813812843, 'first_investment_timestamp': 1749344469, 'time_ratio': 55.28567011892272}",0.7,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.850468713455362,balanced,
|
| 119 |
15.26,14.41,2025-06-16 01:13:39.374306,"{'portfolio': {'portfolio_value': 20.48846279456, 'value_in_pools': 0.0, 'value_in_safe': 20.48846279456, 'initial_investment': 15950.349359883581, 'volume': 12.850468713455362, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1750016309}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 47.85373070064347, 'f_i_ratio': -0.9987154850133823, 'first_investment_timestamp': 1749344469, 'time_ratio': 46.918072511025315}",0.34,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.850468713455362,balanced,
|
| 120 |
+
19.96,18.57,2025-06-17 01:18:21.000045,"{'portfolio': {'portfolio_value': 20.488372010281, 'value_in_pools': 0.0, 'value_in_safe': 20.488372010281, 'initial_investment': 17333.46562166797, 'volume': 12.850468713455362, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1750103262}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 7.203504137155402, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x014828b184e2301849636d82e67614b62b6a83d207ea906c8fbdbc4c94abf6fb', 'enter_timestamp': 1749344469, 'amount0': 9927081, 'amount1': 2922255, 'positions': [{'token_id': 2701571, 'liquidity': 83208800509, 'amount0': 9710239, 'amount1': 2771695, 'current_liquidity': 83208800509}, {'token_id': 2701572, 'liquidity': 822967616, 'amount0': 178339, 'amount1': 109677, 'current_liquidity': 822967616}, {'token_id': 2701573, 'liquidity': 144365258, 'amount0': 38503, 'amount1': 40883, 'current_liquidity': 144365258}]}]}","{'initial_value': 47.69366419946237, 'final_value': 47.929195677066666, 'f_i_ratio': -0.9988179875590102, 'first_investment_timestamp': 1749344469, 'time_ratio': 41.55860585495515}",0.49,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.850468713455362,balanced,
|
| 121 |
0.0,0.0,2025-06-09 18:32:36.558142,"{'portfolio': {'portfolio_value': 28.724588, 'value_in_pools': 0.0, 'value_in_safe': 28.724588, 'initial_investment': 30.2963222595072, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1749474141}, 'positons': []}","{'initial_value': 30.2963222595072, 'final_value': 30.2963222595072, 'f_i_ratio': -0.05187871471805383, 'first_investment_timestamp': 1749474156, 'time_ratio': 8760.0}",0.0,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
| 122 |
978.68,971.66,2025-06-10 18:35:49.668890,"{'portfolio': {'portfolio_value': 29.825018, 'value_in_pools': 0.0, 'value_in_safe': 29.825018, 'initial_investment': 181.7779335570432, 'volume': None, 'agent_hash': 'bafybeiatbumpchrtaws3j6qwfycudkhcd6idqva5ffibiizy5xgucbsgii', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1749559830}, 'positons': []}","{'initial_value': 42.64732311069726, 'final_value': 44.05696363847583, 'f_i_ratio': -0.8359260807052761, 'first_investment_timestamp': 1749560749, 'time_ratio': 8760.0}",3.31,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeiatbumpchrtaws3j6qwfycudkhcd6idqva5ffibiizy5xgucbsgii,,risky,"[""uniswap_pools_search""]"
|
| 123 |
789.88,777.93,2025-06-11 18:38:07.704650,"{'portfolio': {'portfolio_value': 29.824845653892, 'value_in_pools': 0.0, 'value_in_safe': 29.824845653892, 'initial_investment': 354.51522614786535, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1749645511}, 'positons': []}","{'initial_value': 43.72132318471379, 'final_value': 45.83533836834465, 'f_i_ratio': -0.9158714676998039, 'first_investment_timestamp': 1749647287, 'time_ratio': 8760.0}",4.84,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""uniswap_pools_search""]"
|
|
|
|
| 137 |
-0.69,0.49,2025-06-13 07:59:58.559461,"{'portfolio': {'portfolio_value': 15.92175820919, 'value_in_pools': 0.0, 'value_in_safe': 15.92175820919, 'initial_investment': 729.7294822666192, 'volume': 13.377491477361414, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1749781643}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.948351555846092, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x4e71cb688dbfd6ff1dc0621d64060bf7e8822b13b16fc8de2bfac197fbee89dc', 'enter_timestamp': 1749527585, 'amount0': 8357118, 'amount1': 5030943, 'positions': [{'token_id': 2725143, 'liquidity': 264979290127, 'amount0': 8308255, 'amount1': 4939809, 'current_liquidity': 264979290127}, {'token_id': 2725144, 'liquidity': 867486957, 'amount0': 27200, 'amount1': 59543, 'current_liquidity': 867486957}, {'token_id': 2725145, 'liquidity': 266293532, 'amount0': 21663, 'amount1': 31591, 'current_liquidity': 266293532}]}]}","{'initial_value': 43.651793124577026, 'final_value': 43.34997633402806, 'f_i_ratio': -0.9781812869068476, 'first_investment_timestamp': 1749527585, 'time_ratio': 124.05317822877024}",-0.69,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,13.377491477361414,balanced,
|
| 138 |
-2.12,3.5,2025-06-15 20:59:08.057917,"{'portfolio': {'portfolio_value': 15.91742693134, 'value_in_pools': 0.0, 'value_in_safe': 15.91742693134, 'initial_investment': 991.6402410140813, 'volume': 13.377491477361414, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1750001244}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.948351555846092, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x4e71cb688dbfd6ff1dc0621d64060bf7e8822b13b16fc8de2bfac197fbee89dc', 'enter_timestamp': 1749527585, 'amount0': 8357118, 'amount1': 5030943, 'positions': [{'token_id': 2725143, 'liquidity': 264979290127, 'amount0': 8308255, 'amount1': 4939809, 'current_liquidity': 264979290127}, {'token_id': 2725144, 'liquidity': 867486957, 'amount0': 27200, 'amount1': 59543, 'current_liquidity': 867486957}, {'token_id': 2725145, 'liquidity': 266293532, 'amount0': 21663, 'amount1': 31591, 'current_liquidity': 266293532}]}]}","{'initial_value': 43.651793124577026, 'final_value': 42.725034164014204, 'f_i_ratio': -0.9839483854396002, 'first_investment_timestamp': 1749527585, 'time_ratio': 66.56491989613303}",-2.12,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,13.377491477361414,balanced,
|
| 139 |
0.0,0.0,2025-06-15 21:22:42.073588,"{'portfolio': {'portfolio_value': 15.996608, 'value_in_pools': 0.0, 'value_in_safe': 15.996608, 'initial_investment': 15.995250741464774, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC', 'last_updated': 1750002578}, 'positons': []}","{'initial_value': 15.995250741464774, 'final_value': 15.995250741464774, 'f_i_ratio': 8.485384550471764e-05, 'first_investment_timestamp': 1750002762, 'time_ratio': 8760.0}",0.0,133,False,0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC,ronwus-yusrus90,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
| 140 |
+
1.43,0.89,2025-06-16 21:26:14.464595,"{'portfolio': {'portfolio_value': 15.9952, 'value_in_pools': 0.0, 'value_in_safe': 15.9952, 'initial_investment': 191.94300889757733, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC', 'last_updated': 1750083813}, 'positons': []}","{'initial_value': 15.995250741464774, 'final_value': 15.996026011060543, 'f_i_ratio': -0.9166669310235978, 'first_investment_timestamp': 1750089374, 'time_ratio': 8760.0}",0.0,133,False,0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC,ronwus-yusrus90,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
optimus_roi_values.csv
CHANGED
|
@@ -1,171 +1,399 @@
|
|
| 1 |
-
roi,timestamp,agent_id,agent_name,is_dummy,metric_type
|
| 2 |
-
-0.0002765562977782299,2025-05-15 21:37:27.000000,86,nusus-tayar25,False,ROI
|
| 3 |
-
-0.0002765562977782299,2025-05-15 21:39:37.000000,86,nusus-tayar25,False,ROI
|
| 4 |
-
-0.0002765562977782299,2025-05-15 21:40:02.000000,86,nusus-tayar25,False,ROI
|
| 5 |
-
-0.0002765562977782299,2025-05-15 21:40:28.000000,86,nusus-tayar25,False,ROI
|
| 6 |
-
-0.0002765562977782299,2025-05-15 21:36:35.000000,86,nusus-tayar25,False,ROI
|
| 7 |
-
-0.0002765562977782299,2025-05-15 21:37:02.000000,86,nusus-tayar25,False,ROI
|
| 8 |
-
-0.0002765562977782299,2025-05-15 21:39:10.000000,86,nusus-tayar25,False,ROI
|
| 9 |
-
-0.0002765562977782299,2025-05-15 21:41:11.000000,86,nusus-tayar25,False,ROI
|
| 10 |
-
-0.0002765562977782299,2025-05-15 21:41:55.000000,86,nusus-tayar25,False,ROI
|
| 11 |
-
-0.0002765562977782299,2025-05-15 21:42:41.000000,86,nusus-tayar25,False,ROI
|
| 12 |
-
-0.0002765562977782299,2025-05-15 21:43:24.000000,86,nusus-tayar25,False,ROI
|
| 13 |
-
-0.0002765562977782299,2025-05-15 21:44:09.000000,86,nusus-tayar25,False,ROI
|
| 14 |
-
-0.0002765562977782299,2025-05-15 21:44:51.000000,86,nusus-tayar25,False,ROI
|
| 15 |
-
-0.0002765562977782299,2025-05-15 21:45:37.000000,86,nusus-tayar25,False,ROI
|
| 16 |
-
-0.0002765562977782299,2025-05-15 21:46:20.000000,86,nusus-tayar25,False,ROI
|
| 17 |
-
-0.00012649422506416652,2025-05-19 22:39:16.682649,86,nusus-tayar25,False,ROI
|
| 18 |
-
-0.00010449205744944567,2025-05-19 22:47:57.660329,86,nusus-tayar25,False,ROI
|
| 19 |
-
-0.00010449205744944567,2025-05-19 22:53:48.567618,86,nusus-tayar25,False,ROI
|
| 20 |
-
-0.00012649422506416652,2025-05-19 22:39:37.060636,86,nusus-tayar25,False,ROI
|
| 21 |
-
-0.00010449205744944567,2025-05-19 22:46:29.056289,86,nusus-tayar25,False,ROI
|
| 22 |
-
-0.00010449205744944567,2025-05-19 22:51:30.269824,86,nusus-tayar25,False,ROI
|
| 23 |
-
-0.00010449205744944567,2025-05-19 22:57:07.717697,86,nusus-tayar25,False,ROI
|
| 24 |
-
-0.0011357601313007892,2025-05-23 19:05:51.628406,86,nusus-tayar25,False,ROI
|
| 25 |
-
-0.0016374352988718366,2025-05-27 05:42:54.798079,86,nusus-tayar25,False,ROI
|
| 26 |
-
-0.8666050938279419,2025-06-04 21:48:07.115718,86,nusus-tayar25,False,ROI
|
| 27 |
-
-0.8666050938279419,2025-06-04 21:52:00.578098,86,nusus-tayar25,False,ROI
|
| 28 |
-
-0.999999999999975,2025-06-05 01:55:15.033359,86,nusus-tayar25,False,ROI
|
| 29 |
-
-0.1696775721419591,2025-06-05 18:27:57.578268,86,nusus-tayar25,False,ROI
|
| 30 |
-
1.8675787957432175,2025-06-06 05:14:51.027065,86,nusus-tayar25,False,ROI
|
| 31 |
-
1.8675787957432175,2025-06-06 03:39:44.505985,86,nusus-tayar25,False,ROI
|
| 32 |
-
1.0420726955249058,2025-05-30 01:10:42.776945,102,kelrus-muha52,False,ROI
|
| 33 |
-
1.0371385033661085,2025-05-30 16:11:26.814088,102,kelrus-muha52,False,ROI
|
| 34 |
-
-0.20964670158400078,2025-06-03 19:28:54.348419,102,kelrus-muha52,False,ROI
|
| 35 |
-
-0.6044365419107054,2025-06-04 12:35:13.593971,102,kelrus-muha52,False,ROI
|
| 36 |
-
-0.6040367838477997,2025-06-04 14:25:41.343980,102,kelrus-muha52,False,ROI
|
| 37 |
-
-0.5407000717190478,2025-06-06 13:40:55.755362,111,furtek-gilje55,False,ROI
|
| 38 |
-
-0.5407000717190478,2025-06-06 14:42:37.722147,111,furtek-gilje55,False,ROI
|
| 39 |
-
-0.7884286963057436,2025-06-10 22:35:07.125343,111,furtek-gilje55,False,ROI
|
| 40 |
-
-0.9488224700727876,2025-06-12 21:50:15.066243,111,furtek-gilje55,False,ROI
|
| 41 |
-
-0.9708794234421507,2025-06-16 20:22:51.755115,111,furtek-gilje55,False,ROI
|
| 42 |
-
-0.36854758417016864,2025-06-05 20:46:51.369656,112,vuzus-fazi89,False,ROI
|
| 43 |
-
-0.7496728527619763,2025-06-08 02:03:32.248014,112,vuzus-fazi89,False,ROI
|
| 44 |
-
-0.5456503958801932,2025-06-06 06:06:41.681577,115,yenot-zoncen49,False,ROI
|
| 45 |
-
-0.5456503958801932,2025-06-06 08:19:44.944148,115,yenot-zoncen49,False,ROI
|
| 46 |
-
-0.5456503958801932,2025-06-06 09:23:09.755892,115,yenot-zoncen49,False,ROI
|
| 47 |
-
-0.5456503958801932,2025-06-06 07:13:18.351148,115,yenot-zoncen49,False,ROI
|
| 48 |
-
-0.5456503958801932,2025-06-06 10:29:34.181627,115,yenot-zoncen49,False,ROI
|
| 49 |
-
-0.5456503958801932,2025-06-06 11:29:53.721747,115,yenot-zoncen49,False,ROI
|
| 50 |
-
-0.6935346167526257,2025-06-06 18:03:43.542513,115,yenot-zoncen49,False,ROI
|
| 51 |
-
-0.6935346167526257,2025-06-06 19:04:52.884426,115,yenot-zoncen49,False,ROI
|
| 52 |
-
-0.6935346167526257,2025-06-06 20:11:32.564197,115,yenot-zoncen49,False,ROI
|
| 53 |
-
-0.6935346167526257,2025-06-06 21:17:44.644404,115,yenot-zoncen49,False,ROI
|
| 54 |
-
-0.6935346167526257,2025-06-06 23:49:32.590705,115,yenot-zoncen49,False,ROI
|
| 55 |
-
-0.6935346167526257,2025-06-06 22:42:27.626419,115,yenot-zoncen49,False,ROI
|
| 56 |
-
-0.7694497887241564,2025-06-07 00:58:38.934274,115,yenot-zoncen49,False,ROI
|
| 57 |
-
-0.7694497887241564,2025-06-07 01:59:14.908032,115,yenot-zoncen49,False,ROI
|
| 58 |
-
-0.7694497887241564,2025-06-07 03:06:00.184228,115,yenot-zoncen49,False,ROI
|
| 59 |
-
-0.7694497887241564,2025-06-07 04:12:56.442833,115,yenot-zoncen49,False,ROI
|
| 60 |
-
-0.7694497887241564,2025-06-07 05:17:05.382648,115,yenot-zoncen49,False,ROI
|
| 61 |
-
-0.8157364377840948,2025-06-07 10:38:37.999244,115,yenot-zoncen49,False,ROI
|
| 62 |
-
-0.8419242567103777,2025-06-10 04:19:24.254702,115,yenot-zoncen49,False,ROI
|
| 63 |
-
-0.9107340650896589,2025-06-11 22:23:52.680327,115,yenot-zoncen49,False,ROI
|
| 64 |
-
-0.9415532636683955,2025-06-12 22:29:06.555260,115,yenot-zoncen49,False,ROI
|
| 65 |
-
-0.9635936504813616,2025-06-13 22:40:52.426319,115,yenot-zoncen49,False,ROI
|
| 66 |
-
-0.970050696207783,2025-06-15 04:17:24.547659,115,yenot-zoncen49,False,ROI
|
| 67 |
-
-0.
|
| 68 |
-
-0.5419683668321018,2025-06-06
|
| 69 |
-
-0.
|
| 70 |
-
-0.6918271067123792,2025-06-
|
| 71 |
-
-0.6918271067123792,2025-06-07
|
| 72 |
-
-0.
|
| 73 |
-
-0.
|
| 74 |
-
-0.8148303173953624,2025-06-08
|
| 75 |
-
-0.8148303173953624,2025-06-08
|
| 76 |
-
-0.8148303173953624,2025-06-08
|
| 77 |
-
-0.
|
| 78 |
-
-0.
|
| 79 |
-
-0.8677918616728917,2025-06-08
|
| 80 |
-
-0.8677918616728917,2025-06-08
|
| 81 |
-
-0.8677918616728917,2025-06-
|
| 82 |
-
-0.
|
| 83 |
-
-0.8842017831796516,2025-06-09
|
| 84 |
-
-0.8842017831796516,2025-06-
|
| 85 |
-
-0.8842017831796516,2025-06-10
|
| 86 |
-
-0.8842017831796516,2025-06-
|
| 87 |
-
-0.8842017831796516,2025-06-09
|
| 88 |
-
-0.
|
| 89 |
-
-0.8959727145977444,2025-06-10
|
| 90 |
-
-0.
|
| 91 |
-
-0.9049633984067742,2025-06-10
|
| 92 |
-
-0.9049633984067742,2025-06-10 12:
|
| 93 |
-
-0.9049633984067742,2025-06-10
|
| 94 |
-
-0.
|
| 95 |
-
-0.9122831964482513,2025-06-10
|
| 96 |
-
-0.
|
| 97 |
-
-0.9049633984067742,2025-06-10 17:
|
| 98 |
-
-0.
|
| 99 |
-
-0.
|
| 100 |
-
-0.9182298315923811,2025-06-11
|
| 101 |
-
-0.
|
| 102 |
-
-0.
|
| 103 |
-
-0.
|
| 104 |
-
-0.
|
| 105 |
-
-0.
|
| 106 |
-
-0.
|
| 107 |
-
-0.
|
| 108 |
-
-0.
|
| 109 |
-
-0.
|
| 110 |
-
-0.
|
| 111 |
-
-0.
|
| 112 |
-
-0.
|
| 113 |
-
-0.
|
| 114 |
-
-0.522856603000806,2025-06-07
|
| 115 |
-
-0.522856603000806,2025-06-07
|
| 116 |
-
-0.522856603000806,2025-06-07
|
| 117 |
-
-0.
|
| 118 |
-
-0.
|
| 119 |
-
-0.6808073824663021,2025-06-08
|
| 120 |
-
-0.6808073824663021,2025-06-08
|
| 121 |
-
-0.6808073824663021,2025-06-08
|
| 122 |
-
-0.
|
| 123 |
-
-0.
|
| 124 |
-
-0.
|
| 125 |
-
-0.
|
| 126 |
-
-0.
|
| 127 |
-
-0.
|
| 128 |
-
-0.
|
| 129 |
-
-0.
|
| 130 |
-
-0.
|
| 131 |
-
-0.
|
| 132 |
-
-0.
|
| 133 |
-
-0.
|
| 134 |
-
-0.
|
| 135 |
-
-0.
|
| 136 |
-
-0.
|
| 137 |
-
-0.
|
| 138 |
-
-0.
|
| 139 |
-
-0.
|
| 140 |
-
-0.
|
| 141 |
-
-0.
|
| 142 |
-
-0.
|
| 143 |
-
-0.
|
| 144 |
-
-0.
|
| 145 |
-
-0.
|
| 146 |
-
-0.
|
| 147 |
-
-0.
|
| 148 |
-
-0.
|
| 149 |
-
-0.
|
| 150 |
-
-0.
|
| 151 |
-
-0.
|
| 152 |
-
-0.
|
| 153 |
-
-0.
|
| 154 |
-
-0.
|
| 155 |
-
-0.
|
| 156 |
-
-0.
|
| 157 |
-
-0.
|
| 158 |
-
-0.
|
| 159 |
-
-0.
|
| 160 |
-
-0.
|
| 161 |
-
-0.
|
| 162 |
-
-0.
|
| 163 |
-
-0.
|
| 164 |
-
-0.
|
| 165 |
-
-0.
|
| 166 |
-
-0.
|
| 167 |
-
-0.
|
| 168 |
-
-0.
|
| 169 |
-
-0.
|
| 170 |
-
-0.
|
| 171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
| 2 |
+
-0.0002765562977782299,2025-05-15 21:37:27.000000,86,nusus-tayar25,False,ROI,,
|
| 3 |
+
-0.0002765562977782299,2025-05-15 21:39:37.000000,86,nusus-tayar25,False,ROI,,
|
| 4 |
+
-0.0002765562977782299,2025-05-15 21:40:02.000000,86,nusus-tayar25,False,ROI,,
|
| 5 |
+
-0.0002765562977782299,2025-05-15 21:40:28.000000,86,nusus-tayar25,False,ROI,,
|
| 6 |
+
-0.0002765562977782299,2025-05-15 21:36:35.000000,86,nusus-tayar25,False,ROI,,
|
| 7 |
+
-0.0002765562977782299,2025-05-15 21:37:02.000000,86,nusus-tayar25,False,ROI,,
|
| 8 |
+
-0.0002765562977782299,2025-05-15 21:39:10.000000,86,nusus-tayar25,False,ROI,,
|
| 9 |
+
-0.0002765562977782299,2025-05-15 21:41:11.000000,86,nusus-tayar25,False,ROI,,
|
| 10 |
+
-0.0002765562977782299,2025-05-15 21:41:55.000000,86,nusus-tayar25,False,ROI,,
|
| 11 |
+
-0.0002765562977782299,2025-05-15 21:42:41.000000,86,nusus-tayar25,False,ROI,,
|
| 12 |
+
-0.0002765562977782299,2025-05-15 21:43:24.000000,86,nusus-tayar25,False,ROI,,
|
| 13 |
+
-0.0002765562977782299,2025-05-15 21:44:09.000000,86,nusus-tayar25,False,ROI,,
|
| 14 |
+
-0.0002765562977782299,2025-05-15 21:44:51.000000,86,nusus-tayar25,False,ROI,,
|
| 15 |
+
-0.0002765562977782299,2025-05-15 21:45:37.000000,86,nusus-tayar25,False,ROI,,
|
| 16 |
+
-0.0002765562977782299,2025-05-15 21:46:20.000000,86,nusus-tayar25,False,ROI,,
|
| 17 |
+
-0.00012649422506416652,2025-05-19 22:39:16.682649,86,nusus-tayar25,False,ROI,,
|
| 18 |
+
-0.00010449205744944567,2025-05-19 22:47:57.660329,86,nusus-tayar25,False,ROI,,
|
| 19 |
+
-0.00010449205744944567,2025-05-19 22:53:48.567618,86,nusus-tayar25,False,ROI,,
|
| 20 |
+
-0.00012649422506416652,2025-05-19 22:39:37.060636,86,nusus-tayar25,False,ROI,,
|
| 21 |
+
-0.00010449205744944567,2025-05-19 22:46:29.056289,86,nusus-tayar25,False,ROI,,
|
| 22 |
+
-0.00010449205744944567,2025-05-19 22:51:30.269824,86,nusus-tayar25,False,ROI,,
|
| 23 |
+
-0.00010449205744944567,2025-05-19 22:57:07.717697,86,nusus-tayar25,False,ROI,,
|
| 24 |
+
-0.0011357601313007892,2025-05-23 19:05:51.628406,86,nusus-tayar25,False,ROI,,
|
| 25 |
+
-0.0016374352988718366,2025-05-27 05:42:54.798079,86,nusus-tayar25,False,ROI,,
|
| 26 |
+
-0.8666050938279419,2025-06-04 21:48:07.115718,86,nusus-tayar25,False,ROI,,
|
| 27 |
+
-0.8666050938279419,2025-06-04 21:52:00.578098,86,nusus-tayar25,False,ROI,,
|
| 28 |
+
-0.999999999999975,2025-06-05 01:55:15.033359,86,nusus-tayar25,False,ROI,,
|
| 29 |
+
-0.1696775721419591,2025-06-05 18:27:57.578268,86,nusus-tayar25,False,ROI,,
|
| 30 |
+
1.8675787957432175,2025-06-06 05:14:51.027065,86,nusus-tayar25,False,ROI,,
|
| 31 |
+
1.8675787957432175,2025-06-06 03:39:44.505985,86,nusus-tayar25,False,ROI,,
|
| 32 |
+
1.0420726955249058,2025-05-30 01:10:42.776945,102,kelrus-muha52,False,ROI,,
|
| 33 |
+
1.0371385033661085,2025-05-30 16:11:26.814088,102,kelrus-muha52,False,ROI,,
|
| 34 |
+
-0.20964670158400078,2025-06-03 19:28:54.348419,102,kelrus-muha52,False,ROI,,
|
| 35 |
+
-0.6044365419107054,2025-06-04 12:35:13.593971,102,kelrus-muha52,False,ROI,,
|
| 36 |
+
-0.6040367838477997,2025-06-04 14:25:41.343980,102,kelrus-muha52,False,ROI,,
|
| 37 |
+
-0.5407000717190478,2025-06-06 13:40:55.755362,111,furtek-gilje55,False,ROI,,
|
| 38 |
+
-0.5407000717190478,2025-06-06 14:42:37.722147,111,furtek-gilje55,False,ROI,,
|
| 39 |
+
-0.7884286963057436,2025-06-10 22:35:07.125343,111,furtek-gilje55,False,ROI,,
|
| 40 |
+
-0.9488224700727876,2025-06-12 21:50:15.066243,111,furtek-gilje55,False,ROI,,
|
| 41 |
+
-0.9708794234421507,2025-06-16 20:22:51.755115,111,furtek-gilje55,False,ROI,,
|
| 42 |
+
-0.36854758417016864,2025-06-05 20:46:51.369656,112,vuzus-fazi89,False,ROI,,
|
| 43 |
+
-0.7496728527619763,2025-06-08 02:03:32.248014,112,vuzus-fazi89,False,ROI,,
|
| 44 |
+
-0.5456503958801932,2025-06-06 06:06:41.681577,115,yenot-zoncen49,False,ROI,,
|
| 45 |
+
-0.5456503958801932,2025-06-06 08:19:44.944148,115,yenot-zoncen49,False,ROI,,
|
| 46 |
+
-0.5456503958801932,2025-06-06 09:23:09.755892,115,yenot-zoncen49,False,ROI,,
|
| 47 |
+
-0.5456503958801932,2025-06-06 07:13:18.351148,115,yenot-zoncen49,False,ROI,,
|
| 48 |
+
-0.5456503958801932,2025-06-06 10:29:34.181627,115,yenot-zoncen49,False,ROI,,
|
| 49 |
+
-0.5456503958801932,2025-06-06 11:29:53.721747,115,yenot-zoncen49,False,ROI,,
|
| 50 |
+
-0.6935346167526257,2025-06-06 18:03:43.542513,115,yenot-zoncen49,False,ROI,,
|
| 51 |
+
-0.6935346167526257,2025-06-06 19:04:52.884426,115,yenot-zoncen49,False,ROI,,
|
| 52 |
+
-0.6935346167526257,2025-06-06 20:11:32.564197,115,yenot-zoncen49,False,ROI,,
|
| 53 |
+
-0.6935346167526257,2025-06-06 21:17:44.644404,115,yenot-zoncen49,False,ROI,,
|
| 54 |
+
-0.6935346167526257,2025-06-06 23:49:32.590705,115,yenot-zoncen49,False,ROI,,
|
| 55 |
+
-0.6935346167526257,2025-06-06 22:42:27.626419,115,yenot-zoncen49,False,ROI,,
|
| 56 |
+
-0.7694497887241564,2025-06-07 00:58:38.934274,115,yenot-zoncen49,False,ROI,,
|
| 57 |
+
-0.7694497887241564,2025-06-07 01:59:14.908032,115,yenot-zoncen49,False,ROI,,
|
| 58 |
+
-0.7694497887241564,2025-06-07 03:06:00.184228,115,yenot-zoncen49,False,ROI,,
|
| 59 |
+
-0.7694497887241564,2025-06-07 04:12:56.442833,115,yenot-zoncen49,False,ROI,,
|
| 60 |
+
-0.7694497887241564,2025-06-07 05:17:05.382648,115,yenot-zoncen49,False,ROI,,
|
| 61 |
+
-0.8157364377840948,2025-06-07 10:38:37.999244,115,yenot-zoncen49,False,ROI,,
|
| 62 |
+
-0.8419242567103777,2025-06-10 04:19:24.254702,115,yenot-zoncen49,False,ROI,,
|
| 63 |
+
-0.9107340650896589,2025-06-11 22:23:52.680327,115,yenot-zoncen49,False,ROI,,
|
| 64 |
+
-0.9415532636683955,2025-06-12 22:29:06.555260,115,yenot-zoncen49,False,ROI,,
|
| 65 |
+
-0.9635936504813616,2025-06-13 22:40:52.426319,115,yenot-zoncen49,False,ROI,,
|
| 66 |
+
-0.970050696207783,2025-06-15 04:17:24.547659,115,yenot-zoncen49,False,ROI,,
|
| 67 |
+
-0.9713222308063645,2025-06-17 02:16:08.931664,115,yenot-zoncen49,False,ROI,,
|
| 68 |
+
-0.5419683668321018,2025-06-06 11:29:18.913469,116,honji-hahi60,False,ROI,,
|
| 69 |
+
-0.5419683668321018,2025-06-06 12:31:08.139923,116,honji-hahi60,False,ROI,,
|
| 70 |
+
-0.6918271067123792,2025-06-06 22:15:03.771384,116,honji-hahi60,False,ROI,,
|
| 71 |
+
-0.6918271067123792,2025-06-07 00:12:24.552821,116,honji-hahi60,False,ROI,,
|
| 72 |
+
-0.6918271067123792,2025-06-07 02:01:48.183436,116,honji-hahi60,False,ROI,,
|
| 73 |
+
-0.7697658335453386,2025-06-07 15:35:09.317222,116,honji-hahi60,False,ROI,,
|
| 74 |
+
-0.8148303173953624,2025-06-08 00:16:07.222875,116,honji-hahi60,False,ROI,,
|
| 75 |
+
-0.8148303173953624,2025-06-08 04:13:13.395768,116,honji-hahi60,False,ROI,,
|
| 76 |
+
-0.8148303173953624,2025-06-08 02:11:01.421104,116,honji-hahi60,False,ROI,,
|
| 77 |
+
-0.8148303173953624,2025-06-08 03:12:05.231210,116,honji-hahi60,False,ROI,,
|
| 78 |
+
-0.845686327990629,2025-06-08 14:28:01.349077,116,honji-hahi60,False,ROI,,
|
| 79 |
+
-0.8677918616728917,2025-06-08 21:32:22.234368,116,honji-hahi60,False,ROI,,
|
| 80 |
+
-0.8677918616728917,2025-06-08 22:36:17.834229,116,honji-hahi60,False,ROI,,
|
| 81 |
+
-0.8677918616728917,2025-06-08 23:59:43.295623,116,honji-hahi60,False,ROI,,
|
| 82 |
+
-0.8677918616728917,2025-06-09 01:00:58.054069,116,honji-hahi60,False,ROI,,
|
| 83 |
+
-0.8842017831796516,2025-06-09 19:31:39.204380,116,honji-hahi60,False,ROI,,
|
| 84 |
+
-0.8842017831796516,2025-06-09 20:34:23.789481,116,honji-hahi60,False,ROI,,
|
| 85 |
+
-0.8842017831796516,2025-06-10 00:05:22.986881,116,honji-hahi60,False,ROI,,
|
| 86 |
+
-0.8842017831796516,2025-06-10 01:11:09.610266,116,honji-hahi60,False,ROI,,
|
| 87 |
+
-0.8842017831796516,2025-06-09 21:40:11.196609,116,honji-hahi60,False,ROI,,
|
| 88 |
+
-0.8842017831796516,2025-06-09 22:59:27.051209,116,honji-hahi60,False,ROI,,
|
| 89 |
+
-0.8959727145977444,2025-06-10 02:15:06.888709,116,honji-hahi60,False,ROI,,
|
| 90 |
+
-0.8959727145977444,2025-06-10 03:16:08.200810,116,honji-hahi60,False,ROI,,
|
| 91 |
+
-0.9049633984067742,2025-06-10 13:06:56.183812,116,honji-hahi60,False,ROI,,
|
| 92 |
+
-0.9049633984067742,2025-06-10 14:12:49.085955,116,honji-hahi60,False,ROI,,
|
| 93 |
+
-0.9049633984067742,2025-06-10 12:05:28.212332,116,honji-hahi60,False,ROI,,
|
| 94 |
+
-0.9049633984067742,2025-06-10 15:17:49.725694,116,honji-hahi60,False,ROI,,
|
| 95 |
+
-0.9122831964482513,2025-06-10 19:30:50.269289,116,honji-hahi60,False,ROI,,
|
| 96 |
+
-0.9122831964482513,2025-06-10 20:30:54.841382,116,honji-hahi60,False,ROI,,
|
| 97 |
+
-0.9049633984067742,2025-06-10 16:17:52.268774,116,honji-hahi60,False,ROI,,
|
| 98 |
+
-0.9049633984067742,2025-06-10 17:23:51.522272,116,honji-hahi60,False,ROI,,
|
| 99 |
+
-0.9122831964482513,2025-06-10 18:29:24.025681,116,honji-hahi60,False,ROI,,
|
| 100 |
+
-0.9182298315923811,2025-06-11 22:14:54.110285,116,honji-hahi60,False,ROI,,
|
| 101 |
+
-0.9182298315923811,2025-06-11 23:15:11.685382,116,honji-hahi60,False,ROI,,
|
| 102 |
+
-0.9435336077967746,2025-06-13 18:28:24.365605,116,honji-hahi60,False,ROI,,
|
| 103 |
+
-0.9515049258814656,2025-06-16 13:54:43.588418,116,honji-hahi60,False,ROI,,
|
| 104 |
+
-0.539434826138091,2025-06-07 12:07:37.903080,117,furye-himkon89,False,ROI,,
|
| 105 |
+
-0.8457106839760286,2025-06-08 14:06:51.667566,117,furye-himkon89,False,ROI,,
|
| 106 |
+
-0.9230692071887114,2025-06-09 18:36:45.190353,117,furye-himkon89,False,ROI,,
|
| 107 |
+
-0.9405482339574164,2025-06-10 19:00:01.668753,117,furye-himkon89,False,ROI,,
|
| 108 |
+
-0.9557433990624431,2025-06-11 20:01:40.606767,117,furye-himkon89,False,ROI,,
|
| 109 |
+
-0.9644214185359603,2025-06-12 20:03:47.365734,117,furye-himkon89,False,ROI,,
|
| 110 |
+
-0.9678726884215347,2025-06-13 20:08:14.584427,117,furye-himkon89,False,ROI,,
|
| 111 |
+
-0.9700982511733464,2025-06-14 20:11:08.489286,117,furye-himkon89,False,ROI,,
|
| 112 |
+
-0.9709192226604775,2025-06-15 20:54:19.955496,117,furye-himkon89,False,ROI,,
|
| 113 |
+
-0.9716427293842737,2025-06-17 04:52:36.207967,117,furye-himkon89,False,ROI,,
|
| 114 |
+
-0.522856603000806,2025-06-07 16:03:45.373863,118,lonwus-patu86,False,ROI,,
|
| 115 |
+
-0.522856603000806,2025-06-07 17:07:58.993795,118,lonwus-patu86,False,ROI,,
|
| 116 |
+
-0.522856603000806,2025-06-07 14:59:15.300909,118,lonwus-patu86,False,ROI,,
|
| 117 |
+
-0.522856603000806,2025-06-07 18:11:58.599501,118,lonwus-patu86,False,ROI,,
|
| 118 |
+
-0.522856603000806,2025-06-07 19:15:56.087703,118,lonwus-patu86,False,ROI,,
|
| 119 |
+
-0.6808073824663021,2025-06-08 20:18:54.565690,118,lonwus-patu86,False,ROI,,
|
| 120 |
+
-0.6808073824663021,2025-06-08 19:12:17.097068,118,lonwus-patu86,False,ROI,,
|
| 121 |
+
-0.6808073824663021,2025-06-08 17:00:30.730686,118,lonwus-patu86,False,ROI,,
|
| 122 |
+
-0.6808073824663021,2025-06-08 18:06:00.793190,118,lonwus-patu86,False,ROI,,
|
| 123 |
+
-0.6808073824663021,2025-06-08 21:24:29.536035,118,lonwus-patu86,False,ROI,,
|
| 124 |
+
-0.8205651694178833,2025-06-11 13:51:16.740004,118,lonwus-patu86,False,ROI,,
|
| 125 |
+
-0.9982869245880929,2025-06-17 15:11:09.841348,118,lonwus-patu86,False,ROI,,
|
| 126 |
+
-0.5209472494164171,2025-06-06 21:16:18.171681,119,lonlim-zapgi60,False,ROI,,
|
| 127 |
+
-0.8806121461884667,2025-06-07 21:20:52.452249,119,lonlim-zapgi60,False,ROI,,
|
| 128 |
+
-0.9494425475236697,2025-06-08 21:24:43.897906,119,lonlim-zapgi60,False,ROI,,
|
| 129 |
+
-0.9581661316409477,2025-06-09 21:25:09.568709,119,lonlim-zapgi60,False,ROI,,
|
| 130 |
+
-0.9718003547903387,2025-06-10 21:27:14.352202,119,lonlim-zapgi60,False,ROI,,
|
| 131 |
+
-0.9787591800715275,2025-06-12 19:40:26.414300,119,lonlim-zapgi60,False,ROI,,
|
| 132 |
+
-0.9794772304169566,2025-06-13 20:14:38.143005,119,lonlim-zapgi60,False,ROI,,
|
| 133 |
+
-0.9830628598456759,2025-06-15 02:29:15.201154,119,lonlim-zapgi60,False,ROI,,
|
| 134 |
+
-0.984600066632907,2025-06-16 19:00:11.977194,119,lonlim-zapgi60,False,ROI,,
|
| 135 |
+
-0.04228785271807323,2025-06-06 21:35:10.663781,120,joyus-goson39,False,ROI,,
|
| 136 |
+
-0.7433267707945117,2025-06-08 17:03:45.278780,120,joyus-goson39,False,ROI,,
|
| 137 |
+
-0.93143110654765,2025-06-08 22:12:15.454361,120,joyus-goson39,False,ROI,,
|
| 138 |
+
-0.9954715886959313,2025-06-13 21:09:43.972117,120,joyus-goson39,False,ROI,,
|
| 139 |
+
-0.9958974311434143,2025-06-14 21:11:33.782224,120,joyus-goson39,False,ROI,,
|
| 140 |
+
-0.0420238942074701,2025-06-06 21:50:52.233090,121,cilwar-rimlu27,False,ROI,,
|
| 141 |
+
-0.051812127318122125,2025-06-07 20:35:53.079934,122,tevi-kulo15,False,ROI,,
|
| 142 |
+
-0.6001593353781343,2025-06-08 22:11:03.101491,122,tevi-kulo15,False,ROI,,
|
| 143 |
+
-0.8147388067528492,2025-06-10 18:57:11.357853,122,tevi-kulo15,False,ROI,,
|
| 144 |
+
-0.8540570698375662,2025-06-11 19:15:27.075172,122,tevi-kulo15,False,ROI,,
|
| 145 |
+
-0.880022345073269,2025-06-12 19:16:57.908495,122,tevi-kulo15,False,ROI,,
|
| 146 |
+
-0.8978665442605297,2025-06-13 19:20:13.259482,122,tevi-kulo15,False,ROI,,
|
| 147 |
+
-0.9212706823459165,2025-06-14 19:22:15.337790,122,tevi-kulo15,False,ROI,,
|
| 148 |
+
-0.9293658373034275,2025-06-16 00:58:44.095764,122,tevi-kulo15,False,ROI,,
|
| 149 |
+
-0.9533549366113704,2025-06-17 01:17:35.998975,122,tevi-kulo15,False,ROI,,
|
| 150 |
+
-0.4199199156585539,2025-06-09 00:31:18.357811,123,cordron-yelku44,False,ROI,,
|
| 151 |
+
-0.9919527478045069,2025-06-10 02:17:21.916446,123,cordron-yelku44,False,ROI,,
|
| 152 |
+
-0.9944496956447029,2025-06-11 08:14:14.656064,123,cordron-yelku44,False,ROI,,
|
| 153 |
+
-0.9970053478645255,2025-06-12 08:16:43.196306,123,cordron-yelku44,False,ROI,,
|
| 154 |
+
-0.9979487653300927,2025-06-13 20:51:54.959756,123,cordron-yelku44,False,ROI,,
|
| 155 |
+
-0.9985459813812843,2025-06-14 20:58:08.060349,123,cordron-yelku44,False,ROI,,
|
| 156 |
+
-0.9987154850133823,2025-06-16 01:13:39.374306,123,cordron-yelku44,False,ROI,,
|
| 157 |
+
-0.9988179875590102,2025-06-17 01:18:21.000045,123,cordron-yelku44,False,ROI,,
|
| 158 |
+
-0.05187871471805383,2025-06-09 18:32:36.558142,126,tonvel-beeprel23,False,ROI,,
|
| 159 |
+
-0.8359260807052761,2025-06-10 18:35:49.668890,126,tonvel-beeprel23,False,ROI,,
|
| 160 |
+
-0.9158714676998039,2025-06-11 18:38:07.704650,126,tonvel-beeprel23,False,ROI,,
|
| 161 |
+
-0.9251027694298075,2025-06-12 18:42:17.665709,126,tonvel-beeprel23,False,ROI,,
|
| 162 |
+
-0.9385866783643811,2025-06-16 17:52:55.063058,126,tonvel-beeprel23,False,ROI,,
|
| 163 |
+
-0.04820460539724125,2025-06-09 22:20:14.827769,127,lunel-luwus85,False,ROI,,
|
| 164 |
+
-0.8982926246499542,2025-06-10 11:46:19.456686,127,lunel-luwus85,False,ROI,,
|
| 165 |
+
-0.9902463093068504,2025-06-11 11:52:17.821684,127,lunel-luwus85,False,ROI,,
|
| 166 |
+
-0.9934574000002231,2025-06-12 12:14:06.850694,127,lunel-luwus85,False,ROI,,
|
| 167 |
+
-0.9973549609872299,2025-06-13 12:18:45.544337,127,lunel-luwus85,False,ROI,,
|
| 168 |
+
-0.9986309926914669,2025-06-14 20:55:17.651663,127,lunel-luwus85,False,ROI,,
|
| 169 |
+
-0.9989898592815917,2025-06-15 20:58:03.786280,127,lunel-luwus85,False,ROI,,
|
| 170 |
+
-0.9991130426143372,2025-06-16 21:00:02.716458,127,lunel-luwus85,False,ROI,,
|
| 171 |
+
-0.06059521614727914,2025-06-10 09:06:37.010122,128,kozu-hanfil63,False,ROI,,
|
| 172 |
+
-0.7876204161976992,2025-06-10 09:29:20.119072,128,kozu-hanfil63,False,ROI,,
|
| 173 |
+
-0.9581645051657031,2025-06-11 12:58:00.236662,128,kozu-hanfil63,False,ROI,,
|
| 174 |
+
-0.9781812869068476,2025-06-13 07:59:58.559461,128,kozu-hanfil63,False,ROI,,
|
| 175 |
+
-0.9839483854396002,2025-06-15 20:59:08.057917,128,kozu-hanfil63,False,ROI,,
|
| 176 |
+
-0.9933352211205551,2025-06-17 14:59:52.085823,128,kozu-hanfil63,False,ROI,,
|
| 177 |
+
8.485384550471764e-05,2025-06-15 21:22:42.073588,133,ronwus-yusrus90,False,ROI,,
|
| 178 |
+
-0.9166669310235978,2025-06-16 21:26:14.464595,133,ronwus-yusrus90,False,ROI,,
|
| 179 |
+
-0.005,2025-06-17 15:21:09.841348,86,nusus-tayar25,True,ROI,,
|
| 180 |
+
-0.007581610399236414,2025-06-17 15:31:09.841348,86,nusus-tayar25,True,ROI,,
|
| 181 |
+
-0.01,2025-06-17 15:41:09.841348,86,nusus-tayar25,True,ROI,,
|
| 182 |
+
-0.005877209709558261,2025-06-17 15:51:09.841348,86,nusus-tayar25,True,ROI,,
|
| 183 |
+
-0.0020052652098459973,2025-06-17 16:01:09.841348,86,nusus-tayar25,True,ROI,,
|
| 184 |
+
-0.0005622839265487354,2025-06-17 16:11:09.841348,86,nusus-tayar25,True,ROI,,
|
| 185 |
+
0.0,2025-06-17 16:21:09.841348,86,nusus-tayar25,True,ROI,,
|
| 186 |
+
-0.00387889503820549,2025-06-17 16:31:09.841348,86,nusus-tayar25,True,ROI,,
|
| 187 |
+
-0.008114467034595488,2025-06-17 16:41:09.841348,86,nusus-tayar25,True,ROI,,
|
| 188 |
+
-0.006513610306589332,2025-06-17 16:51:09.841348,86,nusus-tayar25,True,ROI,,
|
| 189 |
+
-0.005148729087830699,2025-06-17 17:01:09.841348,86,nusus-tayar25,True,ROI,,
|
| 190 |
+
-0.0054925271793973465,2025-06-17 17:11:09.841348,86,nusus-tayar25,True,ROI,,
|
| 191 |
+
-0.005952920647457793,2025-06-17 17:21:09.841348,86,nusus-tayar25,True,ROI,,
|
| 192 |
+
-0.005,2025-06-17 15:21:09.841348,102,kelrus-muha52,True,ROI,,
|
| 193 |
+
-0.005925453660611798,2025-06-17 15:31:09.841348,102,kelrus-muha52,True,ROI,,
|
| 194 |
+
-0.007425188078387403,2025-06-17 15:41:09.841348,102,kelrus-muha52,True,ROI,,
|
| 195 |
+
-0.0054004701520644705,2025-06-17 15:51:09.841348,102,kelrus-muha52,True,ROI,,
|
| 196 |
+
-0.003036768870424424,2025-06-17 16:01:09.841348,102,kelrus-muha52,True,ROI,,
|
| 197 |
+
-0.006455637229194739,2025-06-17 16:11:09.841348,102,kelrus-muha52,True,ROI,,
|
| 198 |
+
-0.01,2025-06-17 16:21:09.841348,102,kelrus-muha52,True,ROI,,
|
| 199 |
+
-0.0054457059272440735,2025-06-17 16:31:09.841348,102,kelrus-muha52,True,ROI,,
|
| 200 |
+
-0.0009228256483617297,2025-06-17 16:41:09.841348,102,kelrus-muha52,True,ROI,,
|
| 201 |
+
-0.0027316793873919804,2025-06-17 16:51:09.841348,102,kelrus-muha52,True,ROI,,
|
| 202 |
+
-0.004590675642955092,2025-06-17 17:01:09.841348,102,kelrus-muha52,True,ROI,,
|
| 203 |
+
-0.005308987876582675,2025-06-17 17:11:09.841348,102,kelrus-muha52,True,ROI,,
|
| 204 |
+
-0.006295790433890888,2025-06-17 17:21:09.841348,102,kelrus-muha52,True,ROI,,
|
| 205 |
+
-0.005,2025-06-17 15:21:09.841348,111,furtek-gilje55,True,ROI,,
|
| 206 |
+
-0.007683232999537285,2025-06-17 15:31:09.841348,111,furtek-gilje55,True,ROI,,
|
| 207 |
+
-0.01,2025-06-17 15:41:09.841348,111,furtek-gilje55,True,ROI,,
|
| 208 |
+
-0.007972267037932171,2025-06-17 15:51:09.841348,111,furtek-gilje55,True,ROI,,
|
| 209 |
+
-0.005013342499750393,2025-06-17 16:01:09.841348,111,furtek-gilje55,True,ROI,,
|
| 210 |
+
-0.002504084346490258,2025-06-17 16:11:09.841348,111,furtek-gilje55,True,ROI,,
|
| 211 |
+
-0.0003486074284360686,2025-06-17 16:21:09.841348,111,furtek-gilje55,True,ROI,,
|
| 212 |
+
-0.003487996924212299,2025-06-17 16:31:09.841348,111,furtek-gilje55,True,ROI,,
|
| 213 |
+
-0.007228487549779046,2025-06-17 16:41:09.841348,111,furtek-gilje55,True,ROI,,
|
| 214 |
+
-0.004610106722510425,2025-06-17 16:51:09.841348,111,furtek-gilje55,True,ROI,,
|
| 215 |
+
-0.002256586735434242,2025-06-17 17:01:09.841348,111,furtek-gilje55,True,ROI,,
|
| 216 |
+
-0.003175364895049635,2025-06-17 17:11:09.841348,111,furtek-gilje55,True,ROI,,
|
| 217 |
+
-0.003963198370081229,2025-06-17 17:21:09.841348,111,furtek-gilje55,True,ROI,,
|
| 218 |
+
-0.005,2025-06-17 15:21:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 219 |
+
-0.007461310294299618,2025-06-17 15:31:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 220 |
+
-0.009662774640320592,2025-06-17 15:41:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 221 |
+
-0.007657995987246678,2025-06-17 15:51:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 222 |
+
-0.005782589332652116,2025-06-17 16:01:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 223 |
+
-0.0067631718159150474,2025-06-17 16:11:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 224 |
+
-0.008037250588584439,2025-06-17 16:21:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 225 |
+
-0.005277322693496921,2025-06-17 16:31:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 226 |
+
-0.0025856987748298977,2025-06-17 16:41:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 227 |
+
-0.0008610490638003999,2025-06-17 16:51:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 228 |
+
0.0,2025-06-17 17:01:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 229 |
+
0.0,2025-06-17 17:11:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 230 |
+
-0.00015023977692300546,2025-06-17 17:21:09.841348,112,vuzus-fazi89,True,ROI,,
|
| 231 |
+
-0.005,2025-06-17 15:21:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 232 |
+
-0.003540905223402455,2025-06-17 15:31:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 233 |
+
-0.0021666245902550556,2025-06-17 15:41:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 234 |
+
-0.004752096153130221,2025-06-17 15:51:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 235 |
+
-0.007534505346012041,2025-06-17 16:01:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 236 |
+
-0.00389874980810434,2025-06-17 16:11:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 237 |
+
-0.0002347408931053309,2025-06-17 16:21:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 238 |
+
-0.0026617903302279147,2025-06-17 16:31:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 239 |
+
-0.005480968419066481,2025-06-17 16:41:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 240 |
+
-0.007346666997513075,2025-06-17 16:51:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 241 |
+
-0.00975328489540009,2025-06-17 17:01:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 242 |
+
-0.009054044998922683,2025-06-17 17:11:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 243 |
+
-0.009952750380857115,2025-06-17 17:21:09.841348,115,yenot-zoncen49,True,ROI,,
|
| 244 |
+
-0.005,2025-06-17 15:21:09.841348,116,honji-hahi60,True,ROI,,
|
| 245 |
+
-0.007573562927122262,2025-06-17 15:31:09.841348,116,honji-hahi60,True,ROI,,
|
| 246 |
+
-0.009703409859517984,2025-06-17 15:41:09.841348,116,honji-hahi60,True,ROI,,
|
| 247 |
+
-0.008737707675922458,2025-06-17 15:51:09.841348,116,honji-hahi60,True,ROI,,
|
| 248 |
+
-0.008035042464373901,2025-06-17 16:01:09.841348,116,honji-hahi60,True,ROI,,
|
| 249 |
+
-0.004881232367543931,2025-06-17 16:11:09.841348,116,honji-hahi60,True,ROI,,
|
| 250 |
+
-0.002542009332917962,2025-06-17 16:21:09.841348,116,honji-hahi60,True,ROI,,
|
| 251 |
+
-0.0037445437538971837,2025-06-17 16:31:09.841348,116,honji-hahi60,True,ROI,,
|
| 252 |
+
-0.005062418326798029,2025-06-17 16:41:09.841348,116,honji-hahi60,True,ROI,,
|
| 253 |
+
-0.002470253485538506,2025-06-17 16:51:09.841348,116,honji-hahi60,True,ROI,,
|
| 254 |
+
-2.843084159871999e-05,2025-06-17 17:01:09.841348,116,honji-hahi60,True,ROI,,
|
| 255 |
+
0.0,2025-06-17 17:11:09.841348,116,honji-hahi60,True,ROI,,
|
| 256 |
+
-0.00039591005819452523,2025-06-17 17:21:09.841348,116,honji-hahi60,True,ROI,,
|
| 257 |
+
-0.005,2025-06-17 15:21:09.841348,117,furye-himkon89,True,ROI,,
|
| 258 |
+
-0.006479394529697907,2025-06-17 15:31:09.841348,117,furye-himkon89,True,ROI,,
|
| 259 |
+
-0.007420289100698856,2025-06-17 15:41:09.841348,117,furye-himkon89,True,ROI,,
|
| 260 |
+
-0.006109286871708262,2025-06-17 15:51:09.841348,117,furye-himkon89,True,ROI,,
|
| 261 |
+
-0.004711801575330709,2025-06-17 16:01:09.841348,117,furye-himkon89,True,ROI,,
|
| 262 |
+
-0.006906510967785595,2025-06-17 16:11:09.841348,117,furye-himkon89,True,ROI,,
|
| 263 |
+
-0.009262616165226516,2025-06-17 16:21:09.841348,117,furye-himkon89,True,ROI,,
|
| 264 |
+
-0.005055486383563539,2025-06-17 16:31:09.841348,117,furye-himkon89,True,ROI,,
|
| 265 |
+
-0.0001898748609959471,2025-06-17 16:41:09.841348,117,furye-himkon89,True,ROI,,
|
| 266 |
+
-0.0009228635769660943,2025-06-17 16:51:09.841348,117,furye-himkon89,True,ROI,,
|
| 267 |
+
-0.001804027874015623,2025-06-17 17:01:09.841348,117,furye-himkon89,True,ROI,,
|
| 268 |
+
-0.002491980848993186,2025-06-17 17:11:09.841348,117,furye-himkon89,True,ROI,,
|
| 269 |
+
-0.0034892407809180596,2025-06-17 17:21:09.841348,117,furye-himkon89,True,ROI,,
|
| 270 |
+
-0.005,2025-06-17 15:21:09.841348,118,lonwus-patu86,True,ROI,,
|
| 271 |
+
-0.00378866814254409,2025-06-17 15:31:09.841348,118,lonwus-patu86,True,ROI,,
|
| 272 |
+
-0.0024951869533040424,2025-06-17 15:41:09.841348,118,lonwus-patu86,True,ROI,,
|
| 273 |
+
-0.004520986875619448,2025-06-17 15:51:09.841348,118,lonwus-patu86,True,ROI,,
|
| 274 |
+
-0.007094873114123582,2025-06-17 16:01:09.841348,118,lonwus-patu86,True,ROI,,
|
| 275 |
+
-0.0033529145600792905,2025-06-17 16:11:09.841348,118,lonwus-patu86,True,ROI,,
|
| 276 |
+
0.0,2025-06-17 16:21:09.841348,118,lonwus-patu86,True,ROI,,
|
| 277 |
+
-0.002987334375067417,2025-06-17 16:31:09.841348,118,lonwus-patu86,True,ROI,,
|
| 278 |
+
-0.005517924228286126,2025-06-17 16:41:09.841348,118,lonwus-patu86,True,ROI,,
|
| 279 |
+
-0.007334362035074687,2025-06-17 16:51:09.841348,118,lonwus-patu86,True,ROI,,
|
| 280 |
+
-0.009333945699291895,2025-06-17 17:01:09.841348,118,lonwus-patu86,True,ROI,,
|
| 281 |
+
-0.008607110493640411,2025-06-17 17:11:09.841348,118,lonwus-patu86,True,ROI,,
|
| 282 |
+
-0.00853972978468427,2025-06-17 17:21:09.841348,118,lonwus-patu86,True,ROI,,
|
| 283 |
+
-0.005,2025-06-17 15:21:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 284 |
+
-0.00782890151409423,2025-06-17 15:31:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 285 |
+
-0.01,2025-06-17 15:41:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 286 |
+
-0.005797730793113791,2025-06-17 15:51:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 287 |
+
-0.0017545278857946892,2025-06-17 16:01:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 288 |
+
-0.0044670720325080465,2025-06-17 16:11:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 289 |
+
-0.007435161909534622,2025-06-17 16:21:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 290 |
+
-0.003390245993011257,2025-06-17 16:31:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 291 |
+
0.0,2025-06-17 16:41:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 292 |
+
-0.0028699053803257933,2025-06-17 16:51:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 293 |
+
-0.005586655311745277,2025-06-17 17:01:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 294 |
+
-0.0061957822419344945,2025-06-17 17:11:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 295 |
+
-0.0066520851507187815,2025-06-17 17:21:09.841348,119,lonlim-zapgi60,True,ROI,,
|
| 296 |
+
-0.005,2025-06-17 15:21:09.841348,120,joyus-goson39,True,ROI,,
|
| 297 |
+
-0.002810443907404386,2025-06-17 15:31:09.841348,120,joyus-goson39,True,ROI,,
|
| 298 |
+
-0.0007087142522898951,2025-06-17 15:41:09.841348,120,joyus-goson39,True,ROI,,
|
| 299 |
+
-0.0050965614612689236,2025-06-17 15:51:09.841348,120,joyus-goson39,True,ROI,,
|
| 300 |
+
-0.01,2025-06-17 16:01:09.841348,120,joyus-goson39,True,ROI,,
|
| 301 |
+
-0.009237733202549281,2025-06-17 16:11:09.841348,120,joyus-goson39,True,ROI,,
|
| 302 |
+
-0.007867578066669259,2025-06-17 16:21:09.841348,120,joyus-goson39,True,ROI,,
|
| 303 |
+
-0.004733244963957859,2025-06-17 16:31:09.841348,120,joyus-goson39,True,ROI,,
|
| 304 |
+
-0.0024220263131337514,2025-06-17 16:41:09.841348,120,joyus-goson39,True,ROI,,
|
| 305 |
+
-0.0035942057241979196,2025-06-17 16:51:09.841348,120,joyus-goson39,True,ROI,,
|
| 306 |
+
-0.005331853701158129,2025-06-17 17:01:09.841348,120,joyus-goson39,True,ROI,,
|
| 307 |
+
-0.005395231044992231,2025-06-17 17:11:09.841348,120,joyus-goson39,True,ROI,,
|
| 308 |
+
-0.006261831515021795,2025-06-17 17:21:09.841348,120,joyus-goson39,True,ROI,,
|
| 309 |
+
-0.005,2025-06-17 15:21:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 310 |
+
-0.006323504915134382,2025-06-17 15:31:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 311 |
+
-0.007789215998809474,2025-06-17 15:41:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 312 |
+
-0.00602860453943912,2025-06-17 15:51:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 313 |
+
-0.004312937427215571,2025-06-17 16:01:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 314 |
+
-0.0034396362107998895,2025-06-17 16:11:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 315 |
+
-0.0023344386685810476,2025-06-17 16:21:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 316 |
+
-0.005896712359484172,2025-06-17 16:31:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 317 |
+
-0.009310904209596634,2025-06-17 16:41:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 318 |
+
-0.004784838001910804,2025-06-17 16:51:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 319 |
+
0.0,2025-06-17 17:01:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 320 |
+
0.0,2025-06-17 17:11:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 321 |
+
0.0,2025-06-17 17:21:09.841348,121,cilwar-rimlu27,True,ROI,,
|
| 322 |
+
-0.005,2025-06-17 15:21:09.841348,122,tevi-kulo15,True,ROI,,
|
| 323 |
+
-0.004081558507710743,2025-06-17 15:31:09.841348,122,tevi-kulo15,True,ROI,,
|
| 324 |
+
-0.002975885936723556,2025-06-17 15:41:09.841348,122,tevi-kulo15,True,ROI,,
|
| 325 |
+
-0.0018238260191318447,2025-06-17 15:51:09.841348,122,tevi-kulo15,True,ROI,,
|
| 326 |
+
0.0,2025-06-17 16:01:09.841348,122,tevi-kulo15,True,ROI,,
|
| 327 |
+
-0.0024691146778619477,2025-06-17 16:11:09.841348,122,tevi-kulo15,True,ROI,,
|
| 328 |
+
-0.004634067269081897,2025-06-17 16:21:09.841348,122,tevi-kulo15,True,ROI,,
|
| 329 |
+
-0.006362227841046618,2025-06-17 16:31:09.841348,122,tevi-kulo15,True,ROI,,
|
| 330 |
+
-0.00825772421731806,2025-06-17 16:41:09.841348,122,tevi-kulo15,True,ROI,,
|
| 331 |
+
-0.009240115810720434,2025-06-17 16:51:09.841348,122,tevi-kulo15,True,ROI,,
|
| 332 |
+
-0.009722204278736173,2025-06-17 17:01:09.841348,122,tevi-kulo15,True,ROI,,
|
| 333 |
+
-0.009007563870038553,2025-06-17 17:11:09.841348,122,tevi-kulo15,True,ROI,,
|
| 334 |
+
-0.008644530343052879,2025-06-17 17:21:09.841348,122,tevi-kulo15,True,ROI,,
|
| 335 |
+
-0.005,2025-06-17 15:21:09.841348,123,cordron-yelku44,True,ROI,,
|
| 336 |
+
-0.0042124546366807975,2025-06-17 15:31:09.841348,123,cordron-yelku44,True,ROI,,
|
| 337 |
+
-0.00326361492335575,2025-06-17 15:41:09.841348,123,cordron-yelku44,True,ROI,,
|
| 338 |
+
-0.005056562072703107,2025-06-17 15:51:09.841348,123,cordron-yelku44,True,ROI,,
|
| 339 |
+
-0.0075701191228813415,2025-06-17 16:01:09.841348,123,cordron-yelku44,True,ROI,,
|
| 340 |
+
-0.008302595052325768,2025-06-17 16:11:09.841348,123,cordron-yelku44,True,ROI,,
|
| 341 |
+
-0.009193524522412745,2025-06-17 16:21:09.841348,123,cordron-yelku44,True,ROI,,
|
| 342 |
+
-0.007046900269350145,2025-06-17 16:31:09.841348,123,cordron-yelku44,True,ROI,,
|
| 343 |
+
-0.005090339758431536,2025-06-17 16:41:09.841348,123,cordron-yelku44,True,ROI,,
|
| 344 |
+
-0.0027540251141660523,2025-06-17 16:51:09.841348,123,cordron-yelku44,True,ROI,,
|
| 345 |
+
0.0,2025-06-17 17:01:09.841348,123,cordron-yelku44,True,ROI,,
|
| 346 |
+
-0.0007109047332180303,2025-06-17 17:11:09.841348,123,cordron-yelku44,True,ROI,,
|
| 347 |
+
-0.0014112618462480556,2025-06-17 17:21:09.841348,123,cordron-yelku44,True,ROI,,
|
| 348 |
+
-0.005,2025-06-17 15:21:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 349 |
+
-0.0028191833065564684,2025-06-17 15:31:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 350 |
+
0.0,2025-06-17 15:41:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 351 |
+
-0.0015428985268574039,2025-06-17 15:51:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 352 |
+
-0.002894016190914864,2025-06-17 16:01:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 353 |
+
-0.006627648255742707,2025-06-17 16:11:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 354 |
+
-0.009909970381617374,2025-06-17 16:21:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 355 |
+
-0.00780122665614791,2025-06-17 16:31:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 356 |
+
-0.0056910087918077504,2025-06-17 16:41:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 357 |
+
-0.006368741157669688,2025-06-17 16:51:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 358 |
+
-0.007699531732318236,2025-06-17 17:01:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 359 |
+
-0.00821421637338765,2025-06-17 17:11:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 360 |
+
-0.007661931538382063,2025-06-17 17:21:09.841348,126,tonvel-beeprel23,True,ROI,,
|
| 361 |
+
-0.005,2025-06-17 15:21:09.841348,127,lunel-luwus85,True,ROI,,
|
| 362 |
+
-0.007898198734043124,2025-06-17 15:31:09.841348,127,lunel-luwus85,True,ROI,,
|
| 363 |
+
-0.01,2025-06-17 15:41:09.841348,127,lunel-luwus85,True,ROI,,
|
| 364 |
+
-0.006649977896498974,2025-06-17 15:51:09.841348,127,lunel-luwus85,True,ROI,,
|
| 365 |
+
-0.003224467994083967,2025-06-17 16:01:09.841348,127,lunel-luwus85,True,ROI,,
|
| 366 |
+
-0.0036606563727474744,2025-06-17 16:11:09.841348,127,lunel-luwus85,True,ROI,,
|
| 367 |
+
-0.004872053012990267,2025-06-17 16:21:09.841348,127,lunel-luwus85,True,ROI,,
|
| 368 |
+
-0.006557578296596418,2025-06-17 16:31:09.841348,127,lunel-luwus85,True,ROI,,
|
| 369 |
+
-0.007951092880882499,2025-06-17 16:41:09.841348,127,lunel-luwus85,True,ROI,,
|
| 370 |
+
-0.0039693691569062444,2025-06-17 16:51:09.841348,127,lunel-luwus85,True,ROI,,
|
| 371 |
+
0.0,2025-06-17 17:01:09.841348,127,lunel-luwus85,True,ROI,,
|
| 372 |
+
0.0,2025-06-17 17:11:09.841348,127,lunel-luwus85,True,ROI,,
|
| 373 |
+
-0.0009904403394050477,2025-06-17 17:21:09.841348,127,lunel-luwus85,True,ROI,,
|
| 374 |
+
-0.005,2025-06-17 15:21:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 375 |
+
-0.007301476705550679,2025-06-17 15:31:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 376 |
+
-0.01,2025-06-17 15:41:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 377 |
+
-0.0079720296192033,2025-06-17 15:51:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 378 |
+
-0.0050165303629031415,2025-06-17 16:01:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 379 |
+
-0.005965180536995452,2025-06-17 16:11:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 380 |
+
-0.00682561319054806,2025-06-17 16:21:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 381 |
+
-0.0032671026290125474,2025-06-17 16:31:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 382 |
+
0.0,2025-06-17 16:41:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 383 |
+
-0.0010319473530368982,2025-06-17 16:51:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 384 |
+
-0.002168656202473466,2025-06-17 17:01:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 385 |
+
-0.002854790928240561,2025-06-17 17:11:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 386 |
+
-0.003548278940990234,2025-06-17 17:21:09.841348,128,kozu-hanfil63,True,ROI,,
|
| 387 |
+
-0.005,2025-06-17 15:21:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 388 |
+
-0.00784491648027602,2025-06-17 15:31:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 389 |
+
-0.01,2025-06-17 15:41:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 390 |
+
-0.006018505783519744,2025-06-17 15:51:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 391 |
+
-0.0025138797857905564,2025-06-17 16:01:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 392 |
+
-0.0008050752461109876,2025-06-17 16:11:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 393 |
+
0.0,2025-06-17 16:21:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 394 |
+
-0.002433629131796515,2025-06-17 16:31:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 395 |
+
-0.004688611573970837,2025-06-17 16:41:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 396 |
+
-0.0061392696703258115,2025-06-17 16:51:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 397 |
+
-0.007519413739007734,2025-06-17 17:01:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 398 |
+
-0.007526244943616562,2025-06-17 17:11:09.841348,133,ronwus-yusrus90,True,ROI,,
|
| 399 |
+
-0.007681887188940566,2025-06-17 17:21:09.841348,133,ronwus-yusrus90,True,ROI,,
|