gauravlochab
commited on
Commit
·
404f5c4
1
Parent(s):
9c58597
chore:update the values in correct format
Browse files- app.py +38 -4
- debug_graph_data.csv +0 -0
- debug_roi_data.csv +150 -134
- optimus_apr_statistics.csv +13 -11
- optimus_apr_values.csv +16 -0
- optimus_roi_values.csv +414 -238
app.py
CHANGED
@@ -1232,6 +1232,23 @@ def create_combined_roi_time_series_graph(df):
|
|
1232 |
# Use the filtered data for all subsequent operations
|
1233 |
df = df_filtered
|
1234 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1235 |
# NEW APPROACH: Daily aggregation and median calculation
|
1236 |
# Step 1: Aggregate data daily per agent (mean of values within each day)
|
1237 |
daily_agent_data = aggregate_daily_data(df, 'roi')
|
@@ -1405,7 +1422,7 @@ def create_combined_roi_time_series_graph(df):
|
|
1405 |
|
1406 |
# Update x-axis with better formatting and hardcoded date range (June 6 to June 17)
|
1407 |
min_date = datetime(2025, 6, 6) # Hardcoded start date: June 6, 2025
|
1408 |
-
max_date = datetime(2025, 6,
|
1409 |
logger.info(f"ROI Graph - Hardcoded date range: min_date = {min_date}, max_date = {max_date}")
|
1410 |
fig.update_xaxes(
|
1411 |
showgrid=True,
|
@@ -1818,6 +1835,23 @@ def create_combined_time_series_graph(df):
|
|
1818 |
# Use the filtered data for all subsequent operations
|
1819 |
apr_data = apr_data_filtered
|
1820 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1821 |
# NEW APPROACH: Daily aggregation and median calculation for APR
|
1822 |
# Step 1: Aggregate data daily per agent (mean of values within each day)
|
1823 |
daily_agent_data = aggregate_daily_data(apr_data, 'apr')
|
@@ -2111,15 +2145,15 @@ def create_combined_time_series_graph(df):
|
|
2111 |
title=None # Remove the built-in axis title since we're using annotations
|
2112 |
)
|
2113 |
|
2114 |
-
# Update x-axis with better formatting and hardcoded date range (June 6 to June
|
2115 |
min_date = datetime(2025, 6, 6) # Hardcoded start date: June 6, 2025
|
2116 |
-
max_date = datetime(2025, 6,
|
2117 |
logger.info(f"APR Graph - Hardcoded 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 hardcoded range from June 6 to June
|
2123 |
range=[min_date, max_date],
|
2124 |
autorange=False, # Explicitly disable autoscale
|
2125 |
tickformat="%b %d", # Simplified date format without time
|
|
|
1232 |
# Use the filtered data for all subsequent operations
|
1233 |
df = df_filtered
|
1234 |
|
1235 |
+
# IMPORTANT: Filter data by hardcoded date range (June 6 to June 18, 2025)
|
1236 |
+
min_date = datetime(2025, 6, 6)
|
1237 |
+
max_date = datetime(2025, 6, 18, 23, 59, 59) # Include all of June 18th
|
1238 |
+
logger.info(f"Filtering ROI data to date range: {min_date} to {max_date}")
|
1239 |
+
|
1240 |
+
# Count data points before filtering
|
1241 |
+
before_filter_count = len(df)
|
1242 |
+
|
1243 |
+
# Apply date filter
|
1244 |
+
df = df[(df['timestamp'] >= min_date) & (df['timestamp'] <= max_date)]
|
1245 |
+
|
1246 |
+
# Count data points after filtering
|
1247 |
+
after_filter_count = len(df)
|
1248 |
+
excluded_by_date = before_filter_count - after_filter_count
|
1249 |
+
|
1250 |
+
logger.info(f"ROI Date filtering: {before_filter_count} -> {after_filter_count} data points ({excluded_by_date} excluded)")
|
1251 |
+
|
1252 |
# NEW APPROACH: Daily aggregation and median calculation
|
1253 |
# Step 1: Aggregate data daily per agent (mean of values within each day)
|
1254 |
daily_agent_data = aggregate_daily_data(df, 'roi')
|
|
|
1422 |
|
1423 |
# Update x-axis with better formatting and hardcoded date range (June 6 to June 17)
|
1424 |
min_date = datetime(2025, 6, 6) # Hardcoded start date: June 6, 2025
|
1425 |
+
max_date = datetime(2025, 6, 18) # Hardcoded end date: June 17, 2025
|
1426 |
logger.info(f"ROI Graph - Hardcoded date range: min_date = {min_date}, max_date = {max_date}")
|
1427 |
fig.update_xaxes(
|
1428 |
showgrid=True,
|
|
|
1835 |
# Use the filtered data for all subsequent operations
|
1836 |
apr_data = apr_data_filtered
|
1837 |
|
1838 |
+
# IMPORTANT: Filter data by hardcoded date range (June 6 to June 18, 2025)
|
1839 |
+
min_date = datetime(2025, 6, 6)
|
1840 |
+
max_date = datetime(2025, 6, 18, 23, 59, 59) # Include all of June 18th
|
1841 |
+
logger.info(f"Filtering APR data to date range: {min_date} to {max_date}")
|
1842 |
+
|
1843 |
+
# Count data points before filtering
|
1844 |
+
before_filter_count = len(apr_data)
|
1845 |
+
|
1846 |
+
# Apply date filter
|
1847 |
+
apr_data = apr_data[(apr_data['timestamp'] >= min_date) & (apr_data['timestamp'] <= max_date)]
|
1848 |
+
|
1849 |
+
# Count data points after filtering
|
1850 |
+
after_filter_count = len(apr_data)
|
1851 |
+
excluded_by_date = before_filter_count - after_filter_count
|
1852 |
+
|
1853 |
+
logger.info(f"Date filtering: {before_filter_count} -> {after_filter_count} data points ({excluded_by_date} excluded)")
|
1854 |
+
|
1855 |
# NEW APPROACH: Daily aggregation and median calculation for APR
|
1856 |
# Step 1: Aggregate data daily per agent (mean of values within each day)
|
1857 |
daily_agent_data = aggregate_daily_data(apr_data, 'apr')
|
|
|
2145 |
title=None # Remove the built-in axis title since we're using annotations
|
2146 |
)
|
2147 |
|
2148 |
+
# Update x-axis with better formatting and hardcoded date range (June 6 to June 18)
|
2149 |
min_date = datetime(2025, 6, 6) # Hardcoded start date: June 6, 2025
|
2150 |
+
max_date = datetime(2025, 6, 18) # Hardcoded end date: June 18, 2025
|
2151 |
logger.info(f"APR Graph - Hardcoded date range: min_date = {min_date}, max_date = {max_date}")
|
2152 |
fig.update_xaxes(
|
2153 |
showgrid=True,
|
2154 |
gridwidth=1,
|
2155 |
gridcolor='rgba(0,0,0,0.1)',
|
2156 |
+
# Set hardcoded range from June 6 to June 18, 2025
|
2157 |
range=[min_date, max_date],
|
2158 |
autorange=False, # Explicitly disable autoscale
|
2159 |
tickformat="%b %d", # Simplified date format without time
|
debug_graph_data.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
debug_roi_data.csv
CHANGED
@@ -4,137 +4,153 @@
|
|
4 |
2,1.85,2025-06-10 22:35:07.125343,111,furtek-gilje55,False,ROI,108.31,104.86
|
5 |
3,2.97,2025-06-12 21:50:15.066243,111,furtek-gilje55,False,ROI,132.09,125.13
|
6 |
4,0.12,2025-06-16 20:22:51.755115,111,furtek-gilje55,False,ROI,3.6,5.44
|
7 |
-
5,-
|
8 |
-
6,-
|
9 |
-
7,-
|
10 |
-
8,-3.48,2025-06-06
|
11 |
-
9,-3.48,2025-06-06
|
12 |
-
10,-3.48,2025-06-06
|
13 |
-
11,-3.48,2025-06-06
|
14 |
-
12,-3.48,2025-06-06
|
15 |
-
13,-3.48,2025-06-06
|
16 |
-
14,-3.48,2025-06-06
|
17 |
-
15,-3.48,2025-06-06
|
18 |
-
16,-3.48,2025-06-06
|
19 |
-
17,-3.48,2025-06-06
|
20 |
-
18,-
|
21 |
-
19,-
|
22 |
-
20,-2.38,2025-06-07
|
23 |
-
21,-2.38,2025-06-07
|
24 |
-
22,-2.38,2025-06-07
|
25 |
-
23,-2.38,2025-06-07
|
26 |
-
24
|
27 |
-
25
|
28 |
-
26,
|
29 |
-
27,
|
30 |
-
28
|
31 |
-
29,
|
32 |
-
30,-
|
33 |
-
31
|
34 |
-
32,-
|
35 |
-
33,-
|
36 |
-
34,-
|
37 |
-
35,-
|
38 |
-
36,-
|
39 |
-
37,-
|
40 |
-
38,-
|
41 |
-
39,-
|
42 |
-
40,-1.55,2025-06-08
|
43 |
-
41,-1.55,2025-06-08
|
44 |
-
42,-1.55,2025-06-08
|
45 |
-
43,-1.55,2025-06-08
|
46 |
-
44,-1.
|
47 |
-
45,-1.
|
48 |
-
46,-1.
|
49 |
-
47
|
50 |
-
48
|
51 |
-
49,-1.88,2025-06-09
|
52 |
-
50,-1.88,2025-06-09
|
53 |
-
51,1.38,2025-06-10
|
54 |
-
52,1.38,2025-06-10
|
55 |
-
53
|
56 |
-
54
|
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
|
62 |
-
60,1.38,2025-06-10 17:
|
63 |
-
61,1.38,2025-06-10
|
64 |
-
62,
|
65 |
-
63,
|
66 |
-
64,
|
67 |
-
65
|
68 |
-
66
|
69 |
-
67
|
70 |
-
68
|
71 |
-
69
|
72 |
-
70
|
73 |
-
71
|
74 |
-
72
|
75 |
-
73,-
|
76 |
-
74
|
77 |
-
75
|
78 |
-
76,
|
79 |
-
77,
|
80 |
-
78
|
81 |
-
79
|
82 |
-
80
|
83 |
-
81
|
84 |
-
82,
|
85 |
-
83,
|
86 |
-
84,
|
87 |
-
85,
|
88 |
-
86
|
89 |
-
87,
|
90 |
-
88,
|
91 |
-
89,2.0,2025-06-08
|
92 |
-
90,
|
93 |
-
91,
|
94 |
-
92
|
95 |
-
93,2.
|
96 |
-
94,0.
|
97 |
-
95,1.
|
98 |
-
96,
|
99 |
-
97
|
100 |
-
98,
|
101 |
-
99,
|
102 |
-
100,
|
103 |
-
101,
|
104 |
-
102,
|
105 |
-
103,1.
|
106 |
-
104,
|
107 |
-
105,
|
108 |
-
106
|
109 |
-
107,2.
|
110 |
-
108,
|
111 |
-
109,
|
112 |
-
110,1.
|
113 |
-
111
|
114 |
-
112,1.
|
115 |
-
113,3.
|
116 |
-
114,
|
117 |
-
115,1
|
118 |
-
116,
|
119 |
-
117,
|
120 |
-
118,
|
121 |
-
119,
|
122 |
-
120
|
123 |
-
121,
|
124 |
-
122,
|
125 |
-
123,
|
126 |
-
124,
|
127 |
-
125,
|
128 |
-
126,
|
129 |
-
127,
|
130 |
-
128,
|
131 |
-
129,
|
132 |
-
130,
|
133 |
-
131,
|
134 |
-
132
|
135 |
-
133
|
136 |
-
134
|
137 |
-
135
|
138 |
-
136
|
139 |
-
137,
|
140 |
-
138,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
2,1.85,2025-06-10 22:35:07.125343,111,furtek-gilje55,False,ROI,108.31,104.86
|
5 |
3,2.97,2025-06-12 21:50:15.066243,111,furtek-gilje55,False,ROI,132.09,125.13
|
6 |
4,0.12,2025-06-16 20:22:51.755115,111,furtek-gilje55,False,ROI,3.6,5.44
|
7 |
+
5,-0.31,2025-06-17 21:36:41.766412,111,furtek-gilje55,False,ROI,-0.31,1.01
|
8 |
+
6,-30.42,2025-06-19 00:21:32.057093,111,furtek-gilje55,False,ROI,-30.42,-27.57
|
9 |
+
7,-34.65,2025-06-08 02:03:32.248014,112,vuzus-fazi89,False,ROI,-34.65,-31.43
|
10 |
+
8,-3.48,2025-06-06 06:06:41.681577,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
11 |
+
9,-3.48,2025-06-06 08:19:44.944148,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
12 |
+
10,-3.48,2025-06-06 09:23:09.755892,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
13 |
+
11,-3.48,2025-06-06 07:13:18.351148,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
14 |
+
12,-3.48,2025-06-06 10:29:34.181627,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
15 |
+
13,-3.48,2025-06-06 11:29:53.721747,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
16 |
+
14,-3.48,2025-06-06 18:03:43.542513,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
17 |
+
15,-3.48,2025-06-06 19:04:52.884426,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
18 |
+
16,-3.48,2025-06-06 20:11:32.564197,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
19 |
+
17,-3.48,2025-06-06 21:17:44.644404,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
20 |
+
18,-3.48,2025-06-06 23:49:32.590705,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
21 |
+
19,-3.48,2025-06-06 22:42:27.626419,115,yenot-zoncen49,False,ROI,-3.48,3.75
|
22 |
+
20,-2.38,2025-06-07 00:58:38.934274,115,yenot-zoncen49,False,ROI,-2.38,2.56
|
23 |
+
21,-2.38,2025-06-07 01:59:14.908032,115,yenot-zoncen49,False,ROI,-2.38,2.56
|
24 |
+
22,-2.38,2025-06-07 03:06:00.184228,115,yenot-zoncen49,False,ROI,-2.38,2.56
|
25 |
+
23,-2.38,2025-06-07 04:12:56.442833,115,yenot-zoncen49,False,ROI,-2.38,2.56
|
26 |
+
24,-2.38,2025-06-07 05:17:05.382648,115,yenot-zoncen49,False,ROI,-2.38,2.56
|
27 |
+
25,-2.38,2025-06-07 10:38:37.999244,115,yenot-zoncen49,False,ROI,-2.38,2.56
|
28 |
+
26,1.38,2025-06-10 04:19:24.254702,115,yenot-zoncen49,False,ROI,113.83,110.97
|
29 |
+
27,3.21,2025-06-11 22:23:52.680327,115,yenot-zoncen49,False,ROI,190.0,182.41
|
30 |
+
28,2.8,2025-06-12 22:29:06.555260,115,yenot-zoncen49,False,ROI,142.55,136.2
|
31 |
+
29,1.24,2025-06-13 22:40:52.426319,115,yenot-zoncen49,False,ROI,55.41,53.77
|
32 |
+
30,-0.28,2025-06-15 04:17:24.547659,115,yenot-zoncen49,False,ROI,-0.28,2.65
|
33 |
+
31,0.07,2025-06-17 02:16:08.931664,115,yenot-zoncen49,False,ROI,2.27,4.15
|
34 |
+
32,-68.09,2025-06-18 02:16:08.125875,115,yenot-zoncen49,False,ROI,-68.09,-64.43
|
35 |
+
33,-0.43,2025-06-19 02:17:58.619626,115,yenot-zoncen49,False,ROI,-0.43,2.98
|
36 |
+
34,-3.48,2025-06-06 11:29:18.913469,116,honji-hahi60,False,ROI,-3.48,3.75
|
37 |
+
35,-3.48,2025-06-06 12:31:08.139923,116,honji-hahi60,False,ROI,-3.48,3.75
|
38 |
+
36,-3.48,2025-06-06 22:15:03.771384,116,honji-hahi60,False,ROI,-3.48,3.75
|
39 |
+
37,-2.38,2025-06-07 00:12:24.552821,116,honji-hahi60,False,ROI,-2.38,2.56
|
40 |
+
38,-2.38,2025-06-07 02:01:48.183436,116,honji-hahi60,False,ROI,-2.38,2.56
|
41 |
+
39,-2.38,2025-06-07 15:35:09.317222,116,honji-hahi60,False,ROI,-2.38,2.56
|
42 |
+
40,-1.55,2025-06-08 00:16:07.222875,116,honji-hahi60,False,ROI,-1.55,1.67
|
43 |
+
41,-1.55,2025-06-08 04:13:13.395768,116,honji-hahi60,False,ROI,-1.55,1.67
|
44 |
+
42,-1.55,2025-06-08 02:11:01.421104,116,honji-hahi60,False,ROI,-1.55,1.67
|
45 |
+
43,-1.55,2025-06-08 03:12:05.231210,116,honji-hahi60,False,ROI,-1.55,1.67
|
46 |
+
44,-1.55,2025-06-08 14:28:01.349077,116,honji-hahi60,False,ROI,-1.55,1.67
|
47 |
+
45,-1.55,2025-06-08 21:32:22.234368,116,honji-hahi60,False,ROI,-1.55,1.67
|
48 |
+
46,-1.55,2025-06-08 22:36:17.834229,116,honji-hahi60,False,ROI,-1.55,1.67
|
49 |
+
47,-1.55,2025-06-08 23:59:43.295623,116,honji-hahi60,False,ROI,-1.55,1.67
|
50 |
+
48,-1.88,2025-06-09 01:00:58.054069,116,honji-hahi60,False,ROI,-1.88,2.02
|
51 |
+
49,-1.88,2025-06-09 19:31:39.204380,116,honji-hahi60,False,ROI,-1.88,2.02
|
52 |
+
50,-1.88,2025-06-09 20:34:23.789481,116,honji-hahi60,False,ROI,-1.88,2.02
|
53 |
+
51,1.38,2025-06-10 00:05:22.986881,116,honji-hahi60,False,ROI,119.67,116.81
|
54 |
+
52,1.38,2025-06-10 01:11:09.610266,116,honji-hahi60,False,ROI,118.39,115.52
|
55 |
+
53,-1.88,2025-06-09 21:40:11.196609,116,honji-hahi60,False,ROI,-1.88,2.02
|
56 |
+
54,-1.88,2025-06-09 22:59:27.051209,116,honji-hahi60,False,ROI,-1.88,2.02
|
57 |
+
55,1.38,2025-06-10 02:15:06.888709,116,honji-hahi60,False,ROI,117.16,114.3
|
58 |
+
56,1.38,2025-06-10 03:16:08.200810,116,honji-hahi60,False,ROI,116.01,113.15
|
59 |
+
57,1.38,2025-06-10 13:06:56.183812,116,honji-hahi60,False,ROI,105.98,103.12
|
60 |
+
58,1.38,2025-06-10 14:12:49.085955,116,honji-hahi60,False,ROI,104.97,102.11
|
61 |
+
59,1.38,2025-06-10 12:05:28.212332,116,honji-hahi60,False,ROI,106.95,104.09
|
62 |
+
60,1.38,2025-06-10 15:17:49.725694,116,honji-hahi60,False,ROI,103.99,101.13
|
63 |
+
61,1.38,2025-06-10 19:30:50.269289,116,honji-hahi60,False,ROI,100.35,97.49
|
64 |
+
62,1.38,2025-06-10 20:30:54.841382,116,honji-hahi60,False,ROI,99.52,96.66
|
65 |
+
63,1.38,2025-06-10 16:17:52.268774,116,honji-hahi60,False,ROI,103.1,100.24
|
66 |
+
64,1.38,2025-06-10 17:23:51.522272,116,honji-hahi60,False,ROI,102.14,99.28
|
67 |
+
65,1.38,2025-06-10 18:29:24.025681,116,honji-hahi60,False,ROI,101.21,98.35
|
68 |
+
66,2.68,2025-06-11 22:14:54.110285,116,honji-hahi60,False,ROI,159.56,151.96
|
69 |
+
67,2.68,2025-06-11 23:15:11.685382,116,honji-hahi60,False,ROI,158.47,150.88
|
70 |
+
68,0.8,2025-06-13 18:28:24.365605,116,honji-hahi60,False,ROI,36.62,34.98
|
71 |
+
69,-0.48,2025-06-16 13:54:43.588418,116,honji-hahi60,False,ROI,-0.48,1.92
|
72 |
+
70,-69.57,2025-06-18 03:40:06.462972,116,honji-hahi60,False,ROI,-69.57,-65.92
|
73 |
+
71,-2.38,2025-06-07 12:07:37.903080,117,furye-himkon89,False,ROI,-2.38,2.56
|
74 |
+
72,-1.55,2025-06-08 14:06:51.667566,117,furye-himkon89,False,ROI,-1.55,1.67
|
75 |
+
73,-1.88,2025-06-09 18:36:45.190353,117,furye-himkon89,False,ROI,-1.88,2.02
|
76 |
+
74,1.38,2025-06-10 19:00:01.668753,117,furye-himkon89,False,ROI,104.84,101.98
|
77 |
+
75,3.66,2025-06-11 20:01:40.606767,117,furye-himkon89,False,ROI,228.68,221.09
|
78 |
+
76,3.06,2025-06-12 20:03:47.365734,117,furye-himkon89,False,ROI,163.34,156.99
|
79 |
+
77,0.79,2025-06-13 20:08:14.584427,117,furye-himkon89,False,ROI,36.83,35.19
|
80 |
+
78,-0.62,2025-06-14 20:11:08.489286,117,furye-himkon89,False,ROI,-0.62,0.66
|
81 |
+
79,-1.41,2025-06-15 20:54:19.955496,117,furye-himkon89,False,ROI,-1.41,1.51
|
82 |
+
80,-0.91,2025-06-17 04:52:36.207967,117,furye-himkon89,False,ROI,-0.91,0.97
|
83 |
+
81,-1.76,2025-06-18 15:02:37.080985,117,furye-himkon89,False,ROI,-1.76,1.89
|
84 |
+
82,1.14,2025-06-07 16:03:45.373863,118,lonwus-patu86,False,ROI,324.01,321.54
|
85 |
+
83,1.14,2025-06-07 17:07:58.993795,118,lonwus-patu86,False,ROI,313.15,310.68
|
86 |
+
84,1.14,2025-06-07 14:59:15.300909,118,lonwus-patu86,False,ROI,335.69,333.22
|
87 |
+
85,1.14,2025-06-07 18:11:58.599501,118,lonwus-patu86,False,ROI,303.03,300.56
|
88 |
+
86,1.14,2025-06-07 19:15:56.087703,118,lonwus-patu86,False,ROI,293.55,291.09
|
89 |
+
87,2.0,2025-06-08 20:18:54.565690,118,lonwus-patu86,False,ROI,296.37,292.05
|
90 |
+
88,2.0,2025-06-08 19:12:17.097068,118,lonwus-patu86,False,ROI,302.04,297.72
|
91 |
+
89,2.0,2025-06-08 17:00:30.730686,118,lonwus-patu86,False,ROI,313.93,309.6
|
92 |
+
90,2.0,2025-06-08 18:06:00.793190,118,lonwus-patu86,False,ROI,307.91,303.58
|
93 |
+
91,2.0,2025-06-08 21:24:29.536035,118,lonwus-patu86,False,ROI,290.99,286.67
|
94 |
+
92,-25.3,2025-06-11 13:51:16.740004,118,lonwus-patu86,False,ROI,-25.3,-41.28
|
95 |
+
93,2.12,2025-06-17 15:11:09.841348,118,lonwus-patu86,False,ROI,68.73,62.96
|
96 |
+
94,0.0,2025-06-06 21:16:18.171681,119,lonlim-zapgi60,False,ROI,0.0,0.0
|
97 |
+
95,1.14,2025-06-07 21:20:52.452249,119,lonlim-zapgi60,False,ROI,307.76,305.29
|
98 |
+
96,2.0,2025-06-08 21:24:43.897906,119,lonlim-zapgi60,False,ROI,309.78,305.45
|
99 |
+
97,1.67,2025-06-09 21:25:09.568709,119,lonlim-zapgi60,False,ROI,181.01,177.41
|
100 |
+
98,5.04,2025-06-10 21:27:14.352202,119,lonlim-zapgi60,False,ROI,421.68,410.8
|
101 |
+
99,4.08,2025-06-12 19:40:26.414300,119,lonlim-zapgi60,False,ROI,237.2,222.56
|
102 |
+
100,2.48,2025-06-13 20:14:38.143005,119,lonlim-zapgi60,False,ROI,123.86,114.3
|
103 |
+
101,0.92,2025-06-15 02:29:15.201154,119,lonlim-zapgi60,False,ROI,39.17,34.53
|
104 |
+
102,1.1,2025-06-16 19:00:11.977194,119,lonlim-zapgi60,False,ROI,39.24,34.03
|
105 |
+
103,1.28,2025-06-17 20:46:59.724500,119,lonlim-zapgi60,False,ROI,41.08,35.31
|
106 |
+
104,0.68,2025-06-18 20:50:26.458030,119,lonlim-zapgi60,False,ROI,20.04,16.18
|
107 |
+
105,1.32,2025-06-06 21:35:10.663781,120,joyus-goson39,False,ROI,2081.35,2081.35
|
108 |
+
106,-28.02,2025-06-08 17:03:45.278780,120,joyus-goson39,False,ROI,-28.02,-32.34
|
109 |
+
107,2.35,2025-06-08 22:12:15.454361,120,joyus-goson39,False,ROI,379.37,375.05
|
110 |
+
108,3.99,2025-06-13 21:09:43.972117,120,joyus-goson39,False,ROI,201.84,192.27
|
111 |
+
109,3.0,2025-06-14 21:11:33.782224,120,joyus-goson39,False,ROI,133.33,126.91
|
112 |
+
110,1.33,2025-06-06 21:50:52.233090,121,cilwar-rimlu27,False,ROI,2108.94,2108.94
|
113 |
+
111,0.66,2025-06-07 20:35:53.079934,122,tevi-kulo15,False,ROI,1038.47,1038.47
|
114 |
+
112,1.24,2025-06-08 22:11:03.101491,122,tevi-kulo15,False,ROI,350.05,348.24
|
115 |
+
113,3.25,2025-06-10 18:57:11.357853,122,tevi-kulo15,False,ROI,375.58,367.38
|
116 |
+
114,4.51,2025-06-11 19:15:27.075172,122,tevi-kulo15,False,ROI,394.52,381.34
|
117 |
+
115,4.1,2025-06-12 19:16:57.908495,122,tevi-kulo15,False,ROI,289.14,277.26
|
118 |
+
116,2.53,2025-06-13 19:20:13.259482,122,tevi-kulo15,False,ROI,149.59,142.67
|
119 |
+
117,1.56,2025-06-14 19:22:15.337790,122,tevi-kulo15,False,ROI,79.1,75.24
|
120 |
+
118,1.19,2025-06-16 00:58:44.095764,122,tevi-kulo15,False,ROI,51.44,48.76
|
121 |
+
119,1.35,2025-06-17 01:17:35.998975,122,tevi-kulo15,False,ROI,52.44,49.22
|
122 |
+
120,-0.14,2025-06-09 00:31:18.357811,123,cordron-yelku44,False,ROI,-0.14,0.55
|
123 |
+
121,1.97,2025-06-10 02:17:21.916446,123,cordron-yelku44,False,ROI,346.8,340.52
|
124 |
+
122,3.47,2025-06-11 08:14:14.656064,123,cordron-yelku44,False,ROI,381.81,370.64
|
125 |
+
123,3.09,2025-06-12 08:16:43.196306,123,cordron-yelku44,False,ROI,261.07,251.18
|
126 |
+
124,1.59,2025-06-13 20:51:54.959756,123,cordron-yelku44,False,ROI,99.58,94.56
|
127 |
+
125,0.7,2025-06-14 20:58:08.060349,123,cordron-yelku44,False,ROI,37.24,35.23
|
128 |
+
126,0.34,2025-06-16 01:13:39.374306,123,cordron-yelku44,False,ROI,15.26,14.41
|
129 |
+
127,0.49,2025-06-17 01:18:21.000045,123,cordron-yelku44,False,ROI,19.96,18.57
|
130 |
+
128,0.06,2025-06-19 02:57:28.768791,123,cordron-yelku44,False,ROI,1.98,2.18
|
131 |
+
129,0.0,2025-06-09 18:32:36.558142,126,tonvel-beeprel23,False,ROI,0.0,0.0
|
132 |
+
130,3.31,2025-06-10 18:35:49.668890,126,tonvel-beeprel23,False,ROI,978.68,971.66
|
133 |
+
131,4.84,2025-06-11 18:38:07.704650,126,tonvel-beeprel23,False,ROI,789.88,777.93
|
134 |
+
132,4.41,2025-06-12 18:42:17.665709,126,tonvel-beeprel23,False,ROI,497.65,486.99
|
135 |
+
133,1.43,2025-06-16 17:52:55.063058,126,tonvel-beeprel23,False,ROI,72.71,71.16
|
136 |
+
134,-1.29,2025-06-18 14:06:40.798020,126,tonvel-beeprel23,False,ROI,-1.29,-1.54
|
137 |
+
135,0.81,2025-06-09 22:20:14.827769,127,lunel-luwus85,False,ROI,1280.5,1280.5
|
138 |
+
136,2.83,2025-06-10 11:46:19.456686,127,lunel-luwus85,False,ROI,1305.08,1298.06
|
139 |
+
137,4.45,2025-06-11 11:52:17.821684,127,lunel-luwus85,False,ROI,904.96,893.01
|
140 |
+
138,4.04,2025-06-12 12:14:06.850694,127,lunel-luwus85,False,ROI,524.63,513.98
|
141 |
+
139,2.42,2025-06-13 12:18:45.544337,127,lunel-luwus85,False,ROI,231.49,225.74
|
142 |
+
140,1.44,2025-06-14 20:55:17.651663,127,lunel-luwus85,False,ROI,101.72,99.0
|
143 |
+
141,0.88,2025-06-15 20:58:03.786280,127,lunel-luwus85,False,ROI,51.95,50.94
|
144 |
+
142,1.06,2025-06-16 21:00:02.716458,127,lunel-luwus85,False,ROI,53.98,52.42
|
145 |
+
143,0.63,2025-06-18 00:37:19.407906,127,lunel-luwus85,False,ROI,27.48,27.23
|
146 |
+
144,-30.96,2025-06-10 09:06:37.010122,128,kozu-hanfil63,False,ROI,-30.96,-30.96
|
147 |
+
145,-0.31,2025-06-10 09:29:20.119072,128,kozu-hanfil63,False,ROI,-0.31,-0.31
|
148 |
+
146,1.2,2025-06-11 12:58:00.236662,128,kozu-hanfil63,False,ROI,314.71,310.11
|
149 |
+
147,-0.69,2025-06-13 07:59:58.559461,128,kozu-hanfil63,False,ROI,-0.69,0.49
|
150 |
+
148,-2.12,2025-06-15 20:59:08.057917,128,kozu-hanfil63,False,ROI,-2.12,3.5
|
151 |
+
149,-1.79,2025-06-17 14:59:52.085823,128,kozu-hanfil63,False,ROI,-1.79,2.82
|
152 |
+
150,-2.36,2025-06-18 15:08:39.958257,128,kozu-hanfil63,False,ROI,-2.36,3.97
|
153 |
+
151,-3.19,2025-06-18 13:33:06.289943,130,jusrot-kihi68,False,ROI,-3.19,7.26
|
154 |
+
152,0.0,2025-06-15 21:22:42.073588,133,ronwus-yusrus90,False,ROI,0.0,0.0
|
155 |
+
153,0.0,2025-06-16 21:26:14.464595,133,ronwus-yusrus90,False,ROI,1.43,0.89
|
156 |
+
154,0.0,2025-06-17 20:54:46.322615,137,yilo-fevo87,False,ROI,0.0,0.0
|
optimus_apr_statistics.csv
CHANGED
@@ -1,17 +1,19 @@
|
|
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,
|
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,
|
6 |
-
117,furye-himkon89,
|
7 |
-
118,lonwus-patu86,
|
8 |
-
119,lonlim-zapgi60,
|
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,
|
13 |
-
126,tonvel-beeprel23,
|
14 |
-
127,lunel-luwus85,
|
15 |
-
128,kozu-hanfil63,
|
|
|
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 |
-
|
|
|
|
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,7,7,0,7,0,30.038571428571426,,132.09,-30.42,31.321428571428573,125.13,-27.57,2025-06-19 00:21:32
|
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,26,26,0,26,0,14.585384615384614,,190.0,-68.09,18.81,182.41,-64.43,2025-06-19 02:17:58
|
5 |
+
116,honji-hahi60,37,37,0,37,0,44.450270270270266,,159.56,-69.57,45.36378378378379,151.96,-65.92,2025-06-18 03:40:06
|
6 |
+
117,furye-himkon89,11,11,0,11,0,47.56181818181819,,228.68,-2.38,47.866363636363644,221.09,0.66,2025-06-18 15:02:37
|
7 |
+
118,lonwus-patu86,12,12,0,12,0,260.34166666666664,,335.69,-25.3,255.69916666666666,333.22,-41.28,2025-06-17 15:11:09
|
8 |
+
119,lonlim-zapgi60,11,11,0,11,0,156.43818181818182,,421.68,0.0,150.53272727272727,410.8,0.0,2025-06-18 20:50:26
|
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,9,9,0,9,0,129.28444444444443,,381.81,-0.14,125.31555555555555,370.64,0.55,2025-06-19 02:57:28
|
13 |
+
126,tonvel-beeprel23,6,6,0,6,0,389.605,,978.68,-1.29,384.3666666666666,971.66,-1.54,2025-06-18 14:06:40
|
14 |
+
127,lunel-luwus85,9,9,0,9,0,497.9766666666667,,1305.08,27.48,493.43111111111114,1298.06,27.23,2025-06-18 00:37:19
|
15 |
+
128,kozu-hanfil63,7,7,0,7,0,39.497142857142855,,314.71,-30.96,41.374285714285726,310.11,-30.96,2025-06-18 15:08:39
|
16 |
+
130,jusrot-kihi68,1,1,0,1,0,-3.19,,-3.19,-3.19,7.26,7.26,7.26,2025-06-18 13:33:06
|
17 |
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
|
18 |
+
137,yilo-fevo87,1,1,0,1,0,0.0,,0.0,0.0,0.0,0.0,0.0,2025-06-17 20:54:46
|
19 |
+
ALL,All Agents,155,155,0,155,0,151.4996129032258,,2108.94,-69.57,150.70690322580646,2108.94,-65.92,2025-06-19 02:57:28
|
optimus_apr_values.csv
CHANGED
@@ -4,6 +4,8 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
4 |
108.31,104.86,2025-06-10 22:35:07.125343,"{'portfolio': {'portfolio_value': 28.471514916795385, 'value_in_pools': 0.0, 'value_in_safe': 28.471514916795385, 'initial_investment': 134.57172319522041, 'volume': None, 'agent_hash': 'bafybeiatbumpchrtaws3j6qwfycudkhcd6idqva5ffibiizy5xgucbsgii', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1749574962}, 'positons': []}","{'initial_value': 42.198358020106554, 'final_value': 42.97938246420886, 'f_i_ratio': -0.7884286963057436, 'first_investment_timestamp': 1749575107, 'time_ratio': 8760.0}",1.85,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeiatbumpchrtaws3j6qwfycudkhcd6idqva5ffibiizy5xgucbsgii,,balanced,
|
5 |
132.09,125.13,2025-06-12 21:50:15.066243,"{'portfolio': {'portfolio_value': 28.48312569571218, 'value_in_pools': 0.0, 'value_in_safe': 28.48312569571218, 'initial_investment': 556.5553033962858, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1749745064}, 'positons': []}","{'initial_value': 42.198358020106554, 'final_value': 43.45151291668405, 'f_i_ratio': -0.9488224700727876, 'first_investment_timestamp': 1749745215, 'time_ratio': 8760.0}",2.97,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
6 |
3.6,5.44,2025-06-16 20:22:51.755115,"{'portfolio': {'portfolio_value': 28.495616474628974, 'value_in_pools': 0.0, 'value_in_safe': 28.495616474628974, 'initial_investment': 978.5388835973511, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1750085441}, 'positons': []}","{'initial_value': 42.198358020106554, 'final_value': 42.24891104041978, 'f_i_ratio': -0.9708794234421507, 'first_investment_timestamp': 1750085571, 'time_ratio': 8760.0}",0.12,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
|
|
|
|
7 |
-34.65,-31.43,2025-06-08 02:03:32.248014,"{'portfolio': {'portfolio_value': 28.39736318924134, 'value_in_pools': 0.0, 'value_in_safe': 28.39736318924134, 'initial_investment': 113.44100511096258, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8', 'last_updated': 1749328388}, 'positons': []}","{'initial_value': 37.05125810212429, 'final_value': 24.212909867307825, 'f_i_ratio': -0.7496728527619763, 'first_investment_timestamp': 1749328412, 'time_ratio': 8760.0}",-34.65,112,False,0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8,vuzus-fazi89,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
8 |
-3.48,3.75,2025-06-06 06:06:41.681577,"{'portfolio': {'portfolio_value': 28.056422, 'value_in_pools': 0.0, 'value_in_safe': 28.056422, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2411.95, 'value_usd': 12.05975, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999792, 'value_usd': 15.996672, 'ratio': 0.0}], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749169283}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5456503958801932, 'first_investment_timestamp': 1749170201, 'time_ratio': 8760.0}",-3.48,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
9 |
-3.48,3.75,2025-06-06 08:19:44.944148,"{'portfolio': {'portfolio_value': 28.056422, 'value_in_pools': 0.0, 'value_in_safe': 28.056422, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2411.95, 'value_usd': 12.05975, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999792, 'value_usd': 15.996672, 'ratio': 0.0}], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749169283}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5456503958801932, 'first_investment_timestamp': 1749178184, 'time_ratio': 8760.0}",-3.48,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
@@ -29,6 +31,8 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
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""]"
|
@@ -65,6 +69,7 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
65 |
158.47,150.88,2025-06-11 23:15:11.685382,"{'portfolio': {'portfolio_value': 30.296208, 'value_in_pools': 0.0, 'value_in_safe': 30.296208, 'initial_investment': 370.50440998207847, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2860.0, 'value_usd': 14.3, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999763, 'value_usd': 15.996208, 'ratio': 0.0}], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749660229}, 'positons': []}","{'initial_value': 43.788775195405776, 'final_value': 44.961365355740206, 'f_i_ratio': -0.9182298315923811, 'first_investment_timestamp': 1749663911, 'time_ratio': 8760.0}",2.68,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
66 |
36.62,34.98,2025-06-13 18:28:24.365605,"{'portfolio': {'portfolio_value': 30.08225040051, 'value_in_pools': 0.0, 'value_in_safe': 30.08225040051, 'initial_investment': 532.7461030668023, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749819439}, 'positons': []}","{'initial_value': 43.788775195405776, 'final_value': 44.13883480403193, 'f_i_ratio': -0.9435336077967746, 'first_investment_timestamp': 1749819504, 'time_ratio': 8760.0}",0.8,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
67 |
-0.48,1.92,2025-06-16 13:54:43.588418,"{'portfolio': {'portfolio_value': 30.082641551907, 'value_in_pools': 0.0, 'value_in_safe': 30.082641551907, 'initial_investment': 620.323653457614, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1750062217}, 'positons': []}","{'initial_value': 43.788775195405776, 'final_value': 43.57950008603307, 'f_i_ratio': -0.9515049258814656, 'first_investment_timestamp': 1750062283, 'time_ratio': 8760.0}",-0.48,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
|
|
68 |
-2.38,2.56,2025-06-07 12:07:37.903080,"{'portfolio': {'portfolio_value': 28.440238, 'value_in_pools': 0.0, 'value_in_safe': 28.440238, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749278196}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.140478299059993, 'f_i_ratio': -0.539434826138091, 'first_investment_timestamp': 1749278257, 'time_ratio': 8760.0}",-2.38,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
69 |
-1.55,1.67,2025-06-08 14:06:51.667566,"{'portfolio': {'portfolio_value': 28.582436, 'value_in_pools': 0.0, 'value_in_safe': 28.582436, 'initial_investment': 185.25220499103926, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749371761}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.39629605377164, 'f_i_ratio': -0.8457106839760286, 'first_investment_timestamp': 1749371811, 'time_ratio': 8760.0}",-1.55,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
70 |
-1.88,2.02,2025-06-09 18:36:45.190353,"{'portfolio': {'portfolio_value': 28.503198, 'value_in_pools': 0.0, 'value_in_safe': 28.503198, 'initial_investment': 370.50440998207847, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749474355}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.2963222595072, 'f_i_ratio': -0.9230692071887114, 'first_investment_timestamp': 1749474405, 'time_ratio': 8760.0}",-1.88,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
@@ -75,6 +80,7 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
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,
|
@@ -86,6 +92,7 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
86 |
307.91,303.58,2025-06-08 18:06:00.793190,"{'portfolio': {'portfolio_value': 28.535952, 'value_in_pools': 0.0, 'value_in_safe': 28.535952, 'initial_investment': 89.40041351986281, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2507.84, 'value_usd': 12.5392, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999797, 'value_usd': 15.996752, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749382056}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.39629605377164, 'f_i_ratio': -0.6808073824663021, 'first_investment_timestamp': 1749386160, 'time_ratio': 8760.0}",2.0,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
87 |
290.99,286.67,2025-06-08 21:24:29.536035,"{'portfolio': {'portfolio_value': 28.535952, 'value_in_pools': 0.0, 'value_in_safe': 28.535952, 'initial_investment': 89.40041351986281, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2507.84, 'value_usd': 12.5392, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999797, 'value_usd': 15.996752, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749382056}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.39629605377164, 'f_i_ratio': -0.6808073824663021, 'first_investment_timestamp': 1749398069, 'time_ratio': 8760.0}",2.0,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
88 |
-25.3,-41.28,2025-06-11 13:51:16.740004,"{'portfolio': {'portfolio_value': 28.806590870932734, 'value_in_pools': 0.0, 'value_in_safe': 28.806590870932734, 'initial_investment': 160.54068642904681, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749629938}, 'positons': []}","{'initial_value': 41.34013506922975, 'final_value': 30.881119037875482, 'f_i_ratio': -0.8205651694178833, 'first_investment_timestamp': 1749630076, 'time_ratio': 8760.0}",-25.3,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
|
|
89 |
0.0,0.0,2025-06-06 21:16:18.171681,"{'portfolio': {'portfolio_value': 28.551676, 'value_in_pools': 0.0, 'value_in_safe': 28.551676, 'initial_investment': 59.600275679908535, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749224758}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5209472494164171, 'first_investment_timestamp': 1749224778, 'time_ratio': 8760.0}",0.0,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
90 |
307.76,305.29,2025-06-07 21:20:52.452249,"{'portfolio': {'portfolio_value': 28.462196, 'value_in_pools': 0.0, 'value_in_safe': 28.462196, 'initial_investment': 238.4011027196341, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749308230}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.140478299059993, 'f_i_ratio': -0.8806121461884667, 'first_investment_timestamp': 1749311452, 'time_ratio': 8760.0}",1.14,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
91 |
309.78,305.45,2025-06-08 21:24:43.897906,"{'portfolio': {'portfolio_value': 28.625762, 'value_in_pools': 0.0, 'value_in_safe': 28.625762, 'initial_investment': 566.2026189591312, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749397116}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.39629605377164, 'f_i_ratio': -0.9494425475236697, 'first_investment_timestamp': 1749398083, 'time_ratio': 8760.0}",2.0,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
@@ -95,6 +102,8 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
95 |
123.86,114.3,2025-06-13 20:14:38.143005,"{'portfolio': {'portfolio_value': 29.64077551632, 'value_in_pools': 0.0, 'value_in_safe': 29.64077551632, 'initial_investment': 1444.2873022757153, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749825822}, 'positons': []}","{'initial_value': 43.680823797865436, 'final_value': 44.76413006509869, 'f_i_ratio': -0.9794772304169566, 'first_investment_timestamp': 1749825878, 'time_ratio': 8760.0}",2.48,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
96 |
39.17,34.53,2025-06-15 02:29:15.201154,"{'portfolio': {'portfolio_value': 29.6408941048, 'value_in_pools': 0.0, 'value_in_safe': 29.6408941048, 'initial_investment': 1750.053068860774, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749934728}, 'positons': []}","{'initial_value': 43.680823797865436, 'final_value': 44.082520136498374, 'f_i_ratio': -0.9830628598456759, 'first_investment_timestamp': 1749934755, 'time_ratio': 8760.0}",0.92,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
97 |
39.24,34.03,2025-06-16 19:00:11.977194,"{'portfolio': {'portfolio_value': 29.64142775296, 'value_in_pools': 0.0, 'value_in_safe': 29.64142775296, 'initial_investment': 1924.776364052236, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1750080585}, 'positons': []}","{'initial_value': 43.680823797865436, 'final_value': 44.16247636038923, 'f_i_ratio': -0.984600066632907, 'first_investment_timestamp': 1750080611, 'time_ratio': 8760.0}",1.1,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
|
|
|
|
98 |
2081.35,2081.35,2025-06-06 21:35:10.663781,"{'portfolio': {'portfolio_value': 28.539954, 'value_in_pools': 0.0, 'value_in_safe': 28.539954, 'initial_investment': 29.800137839954267, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7', 'last_updated': 1749225694}, 'positons': []}","{'initial_value': 40.939502917266374, 'final_value': 41.48051810659099, 'f_i_ratio': -0.04228785271807323, 'first_investment_timestamp': 1749225910, 'time_ratio': 8760.0}",1.32,120,False,0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7,joyus-goson39,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
99 |
-28.02,-32.34,2025-06-08 17:03:45.278780,"{'portfolio': {'portfolio_value': 28.665046441834267, 'value_in_pools': 0.0, 'value_in_safe': 28.665046441834267, 'initial_investment': 111.67914367448702, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7', 'last_updated': 1749382407}, 'positons': []}","{'initial_value': 40.93950391704335, 'final_value': 29.468410810983407, 'f_i_ratio': -0.7433267707945117, 'first_investment_timestamp': 1749382425, 'time_ratio': 8760.0}",-28.02,120,False,0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7,joyus-goson39,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
100 |
379.37,375.05,2025-06-08 22:12:15.454361,"{'portfolio': {'portfolio_value': 16.079244749705, 'value_in_pools': 0.0, 'value_in_safe': 16.079244749705, 'initial_investment': 234.49765542561704, 'volume': 12.431696715496372, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7', 'last_updated': 1749400891}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 6.8210787661006504, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x26c993dbb424b604d3c6c21bcf357a002c904e42501e4368f12306824f9c6fd3', 'enter_timestamp': 1749400565, 'amount0': 106, 'amount1': 12417370, 'positions': [{'token_id': 2707603, 'liquidity': 124219155242, 'amount0': 0, 'amount1': 12416948}, {'token_id': 2707604, 'liquidity': 1469411, 'amount0': 83, 'amount1': 358}, {'token_id': 2707605, 'liquidity': 215979, 'amount0': 23, 'amount1': 64}]}]}","{'initial_value': 40.93950391704335, 'final_value': 41.90010752647978, 'f_i_ratio': -0.93143110654765, 'first_investment_timestamp': 1749400565, 'time_ratio': 8760.0}",2.35,120,False,0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7,joyus-goson39,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.431696715496372,balanced,
|
@@ -118,11 +127,13 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
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""]"
|
124 |
497.65,486.99,2025-06-12 18:42:17.665709,"{'portfolio': {'portfolio_value': 29.82681465684, 'value_in_pools': 0.0, 'value_in_safe': 29.82681465684, 'initial_investment': 398.23654933257916, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1749730713}, 'positons': []}","{'initial_value': 43.72132318471379, 'final_value': 45.651057823432666, 'f_i_ratio': -0.9251027694298075, 'first_investment_timestamp': 1749733937, 'time_ratio': 8760.0}",4.41,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""uniswap_pools_search""]"
|
125 |
72.71,71.16,2025-06-16 17:52:55.063058,"{'portfolio': {'portfolio_value': 29.827172657376, 'value_in_pools': 0.0, 'value_in_safe': 29.827172657376, 'initial_investment': 485.6791957020068, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1750076551}, 'positons': []}","{'initial_value': 43.72132318471379, 'final_value': 44.348688098687234, 'f_i_ratio': -0.9385866783643811, 'first_investment_timestamp': 1750076575, 'time_ratio': 8760.0}",1.43,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""uniswap_pools_search""]"
|
|
|
126 |
1280.5,1280.5,2025-06-09 22:20:14.827769,"{'portfolio': {'portfolio_value': 28.8359, 'value_in_pools': 0.0, 'value_in_safe': 28.8359, 'initial_investment': 30.2963222595072, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1749487695}, 'positons': []}","{'initial_value': 42.403940230497525, 'final_value': 42.74700682025574, 'f_i_ratio': -0.04820460539724125, 'first_investment_timestamp': 1749487814, 'time_ratio': 8760.0}",0.81,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
127 |
1305.08,1298.06,2025-06-10 11:46:19.456686,"{'portfolio': {'portfolio_value': 16.019739815806002, 'value_in_pools': 0.0, 'value_in_safe': 16.019739815806002, 'initial_investment': 157.50814295099977, 'volume': 12.764690603049267, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1749536153}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609}]}]}","{'initial_value': 42.403940230497525, 'final_value': 43.60231942303743, 'f_i_ratio': -0.8982926246499542, 'first_investment_timestamp': 1749535827, 'time_ratio': 8760.0}",2.83,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.764690603049267,balanced,
|
128 |
904.96,893.01,2025-06-11 11:52:17.821684,"{'portfolio': {'portfolio_value': 16.012107809264002, 'value_in_pools': 0.0, 'value_in_safe': 16.012107809264002, 'initial_investment': 1641.6460510184122, 'volume': 12.764690603049267, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1749622842}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 44.29060838260328, 'f_i_ratio': -0.9902463093068504, 'first_investment_timestamp': 1749535827, 'time_ratio': 362.02161098239833}",4.45,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.764690603049267,balanced,
|
@@ -131,10 +142,15 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
131 |
101.72,99.0,2025-06-14 20:55:17.651663,"{'portfolio': {'portfolio_value': 16.005584510286, 'value_in_pools': 0.0, 'value_in_safe': 16.005584510286, 'initial_investment': 11691.379885646322, 'volume': 12.764690603049267, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1749914606}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 43.01508716152051, 'f_i_ratio': -0.9986309926914669, 'first_investment_timestamp': 1749535827, 'time_ratio': 83.23245733717371}",1.44,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.764690603049267,balanced,
|
132 |
51.95,50.94,2025-06-15 20:58:03.786280,"{'portfolio': {'portfolio_value': 16.007665648354, 'value_in_pools': 0.0, 'value_in_safe': 16.007665648354, 'initial_investment': 15846.96602823503, 'volume': 12.764690603049267, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1750001267}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 42.77651026311068, 'f_i_ratio': -0.9989898592815917, 'first_investment_timestamp': 1749535827, 'time_ratio': 67.75279881951244}",0.88,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.764690603049267,balanced,
|
133 |
53.98,52.42,2025-06-16 21:00:02.716458,"{'portfolio': {'portfolio_value': 16.01132893346, 'value_in_pools': 0.0, 'value_in_safe': 16.01132893346, 'initial_investment': 18051.97092022095, 'volume': 12.764690603049267, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1750087690}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 42.85386676055998, 'f_i_ratio': -0.9991130426143372, 'first_investment_timestamp': 1749535827, 'time_ratio': 57.13294817090905}",1.06,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.764690603049267,balanced,
|
|
|
134 |
-30.96,-30.96,2025-06-10 09:06:37.010122,"{'portfolio': {'portfolio_value': 29.404114, 'value_in_pools': 0.0, 'value_in_safe': 29.404114, 'initial_investment': 31.300792273386968, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1749526233}, 'positons': []}","{'initial_value': 43.651793124577026, 'final_value': 30.137846356840903, 'f_i_ratio': -0.06059521614727914, 'first_investment_timestamp': 1749526597, 'time_ratio': 8760.0}",-30.96,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
135 |
-0.31,-0.31,2025-06-10 09:29:20.119072,"{'portfolio': {'portfolio_value': 15.918398891726, 'value_in_pools': 0.0, 'value_in_safe': 15.918398891726, 'initial_investment': 74.95258539796399, 'volume': 13.377491477361414, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1749527917}, '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}, {'token_id': 2725144, 'liquidity': 867486957, 'amount0': 27200, 'amount1': 59543}, {'token_id': 2725145, 'liquidity': 266293532, 'amount0': 21663, 'amount1': 31591}]}]}","{'initial_value': 43.651793124577026, 'final_value': 43.51533783420231, 'f_i_ratio': -0.7876204161976992, 'first_investment_timestamp': 1749527585, 'time_ratio': 8760.0}",-0.31,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,13.377491477361414,balanced,
|
136 |
314.71,310.11,2025-06-11 12:58:00.236662,"{'portfolio': {'portfolio_value': 15.919039059631, 'value_in_pools': 0.0, 'value_in_safe': 15.919039059631, 'initial_investment': 380.5151372700031, 'volume': 13.377491477361414, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1749626687}, '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': 44.17652979434854, 'f_i_ratio': -0.9581645051657031, 'first_investment_timestamp': 1749527585, 'time_ratio': 317.5983164970591}",1.2,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,13.377491477361414,balanced,
|
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,
|
|
|
|
4 |
108.31,104.86,2025-06-10 22:35:07.125343,"{'portfolio': {'portfolio_value': 28.471514916795385, 'value_in_pools': 0.0, 'value_in_safe': 28.471514916795385, 'initial_investment': 134.57172319522041, 'volume': None, 'agent_hash': 'bafybeiatbumpchrtaws3j6qwfycudkhcd6idqva5ffibiizy5xgucbsgii', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1749574962}, 'positons': []}","{'initial_value': 42.198358020106554, 'final_value': 42.97938246420886, 'f_i_ratio': -0.7884286963057436, 'first_investment_timestamp': 1749575107, 'time_ratio': 8760.0}",1.85,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeiatbumpchrtaws3j6qwfycudkhcd6idqva5ffibiizy5xgucbsgii,,balanced,
|
5 |
132.09,125.13,2025-06-12 21:50:15.066243,"{'portfolio': {'portfolio_value': 28.48312569571218, 'value_in_pools': 0.0, 'value_in_safe': 28.48312569571218, 'initial_investment': 556.5553033962858, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1749745064}, 'positons': []}","{'initial_value': 42.198358020106554, 'final_value': 43.45151291668405, 'f_i_ratio': -0.9488224700727876, 'first_investment_timestamp': 1749745215, 'time_ratio': 8760.0}",2.97,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
6 |
3.6,5.44,2025-06-16 20:22:51.755115,"{'portfolio': {'portfolio_value': 28.495616474628974, 'value_in_pools': 0.0, 'value_in_safe': 28.495616474628974, 'initial_investment': 978.5388835973511, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1750085441}, 'positons': []}","{'initial_value': 42.198358020106554, 'final_value': 42.24891104041978, 'f_i_ratio': -0.9708794234421507, 'first_investment_timestamp': 1750085571, 'time_ratio': 8760.0}",0.12,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
7 |
+
-0.31,1.01,2025-06-17 21:36:41.766412,"{'portfolio': {'portfolio_value': 28.48410169571218, 'value_in_pools': 0.0, 'value_in_safe': 28.48410169571218, 'initial_investment': 41.93048680235006, 'volume': None, 'agent_hash': 'bafybeiey543fjnimh2ccimp4wmnexkkrrqohc2zpg2qntmom7elzcpweqy', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1750176361}, 'positons': []}","{'initial_value': 42.198358020106554, 'final_value': 42.06757563780165, 'f_i_ratio': -0.32068278076571854, 'first_investment_timestamp': 1750176401, 'time_ratio': 8760.0}",-0.31,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeiey543fjnimh2ccimp4wmnexkkrrqohc2zpg2qntmom7elzcpweqy,,balanced,
|
8 |
+
-30.42,-27.57,2025-06-19 00:21:32.057093,"{'portfolio': {'portfolio_value': 28.48394169571218, 'value_in_pools': 0.0, 'value_in_safe': 28.48394169571218, 'initial_investment': 41.93048680235006, 'volume': None, 'agent_hash': 'bafybeiey543fjnimh2ccimp4wmnexkkrrqohc2zpg2qntmom7elzcpweqy', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1750272539}, 'positons': []}","{'initial_value': 42.198358020106554, 'final_value': 29.359574650614505, 'f_i_ratio': -0.32068659660503274, 'first_investment_timestamp': 1750272692, 'time_ratio': 8760.0}",-30.42,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeiey543fjnimh2ccimp4wmnexkkrrqohc2zpg2qntmom7elzcpweqy,,balanced,
|
9 |
-34.65,-31.43,2025-06-08 02:03:32.248014,"{'portfolio': {'portfolio_value': 28.39736318924134, 'value_in_pools': 0.0, 'value_in_safe': 28.39736318924134, 'initial_investment': 113.44100511096258, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8', 'last_updated': 1749328388}, 'positons': []}","{'initial_value': 37.05125810212429, 'final_value': 24.212909867307825, 'f_i_ratio': -0.7496728527619763, 'first_investment_timestamp': 1749328412, 'time_ratio': 8760.0}",-34.65,112,False,0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8,vuzus-fazi89,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
10 |
-3.48,3.75,2025-06-06 06:06:41.681577,"{'portfolio': {'portfolio_value': 28.056422, 'value_in_pools': 0.0, 'value_in_safe': 28.056422, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2411.95, 'value_usd': 12.05975, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999792, 'value_usd': 15.996672, 'ratio': 0.0}], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749169283}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5456503958801932, 'first_investment_timestamp': 1749170201, 'time_ratio': 8760.0}",-3.48,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
11 |
-3.48,3.75,2025-06-06 08:19:44.944148,"{'portfolio': {'portfolio_value': 28.056422, 'value_in_pools': 0.0, 'value_in_safe': 28.056422, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2411.95, 'value_usd': 12.05975, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999792, 'value_usd': 15.996672, 'ratio': 0.0}], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1749169283}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5456503958801932, 'first_investment_timestamp': 1749178184, 'time_ratio': 8760.0}",-3.48,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
|
|
31 |
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""]"
|
32 |
-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']"
|
33 |
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""]"
|
34 |
+
-68.09,-64.43,2025-06-18 02:16:08.125875,"{'portfolio': {'portfolio_value': 30.350027363932, 'value_in_pools': 0.0, 'value_in_safe': 30.350027363932, 'initial_investment': 1372.7403639054385, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1750188187}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 14.33542419328404, 'f_i_ratio': -0.9778909193887282, 'first_investment_timestamp': 1750193168, 'time_ratio': 8760.0}",-68.09,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""velodrome_pools_search""]"
|
35 |
+
-0.43,2.98,2025-06-19 02:17:58.619626,"{'portfolio': {'portfolio_value': 30.35251680554, 'value_in_pools': 0.0, 'value_in_safe': 30.35251680554, 'initial_investment': 1687.165548686007, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1750274084}, 'positons': []}","{'initial_value': 44.91788354008114, 'final_value': 44.72401771583485, 'f_i_ratio': -0.982009757827749, 'first_investment_timestamp': 1750279678, 'time_ratio': 8760.0}",-0.43,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""velodrome_pools_search""]"
|
36 |
-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""]"
|
37 |
-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""]"
|
38 |
-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""]"
|
|
|
69 |
158.47,150.88,2025-06-11 23:15:11.685382,"{'portfolio': {'portfolio_value': 30.296208, 'value_in_pools': 0.0, 'value_in_safe': 30.296208, 'initial_investment': 370.50440998207847, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2860.0, 'value_usd': 14.3, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999763, 'value_usd': 15.996208, 'ratio': 0.0}], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749660229}, 'positons': []}","{'initial_value': 43.788775195405776, 'final_value': 44.961365355740206, 'f_i_ratio': -0.9182298315923811, 'first_investment_timestamp': 1749663911, 'time_ratio': 8760.0}",2.68,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
70 |
36.62,34.98,2025-06-13 18:28:24.365605,"{'portfolio': {'portfolio_value': 30.08225040051, 'value_in_pools': 0.0, 'value_in_safe': 30.08225040051, 'initial_investment': 532.7461030668023, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1749819439}, 'positons': []}","{'initial_value': 43.788775195405776, 'final_value': 44.13883480403193, 'f_i_ratio': -0.9435336077967746, 'first_investment_timestamp': 1749819504, 'time_ratio': 8760.0}",0.8,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
71 |
-0.48,1.92,2025-06-16 13:54:43.588418,"{'portfolio': {'portfolio_value': 30.082641551907, 'value_in_pools': 0.0, 'value_in_safe': 30.082641551907, 'initial_investment': 620.323653457614, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1750062217}, 'positons': []}","{'initial_value': 43.788775195405776, 'final_value': 43.57950008603307, 'f_i_ratio': -0.9515049258814656, 'first_investment_timestamp': 1750062283, 'time_ratio': 8760.0}",-0.48,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
72 |
+
-69.57,-65.92,2025-06-18 03:40:06.462972,"{'portfolio': {'portfolio_value': 30.081377832009, 'value_in_pools': 0.0, 'value_in_safe': 30.081377832009, 'initial_investment': 751.6899790438315, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xa11417aeBF3932ee895008eDE8eA95616f488bCf', 'last_updated': 1750198140}, 'positons': []}","{'initial_value': 43.788775195405776, 'final_value': 13.324318896355468, 'f_i_ratio': -0.9599816697433252, 'first_investment_timestamp': 1750198206, 'time_ratio': 8760.0}",-69.57,116,False,0xa11417aeBF3932ee895008eDE8eA95616f488bCf,honji-hahi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
73 |
-2.38,2.56,2025-06-07 12:07:37.903080,"{'portfolio': {'portfolio_value': 28.440238, 'value_in_pools': 0.0, 'value_in_safe': 28.440238, 'initial_investment': 61.7507349970131, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749278196}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.140478299059993, 'f_i_ratio': -0.539434826138091, 'first_investment_timestamp': 1749278257, 'time_ratio': 8760.0}",-2.38,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
74 |
-1.55,1.67,2025-06-08 14:06:51.667566,"{'portfolio': {'portfolio_value': 28.582436, 'value_in_pools': 0.0, 'value_in_safe': 28.582436, 'initial_investment': 185.25220499103926, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749371761}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.39629605377164, 'f_i_ratio': -0.8457106839760286, 'first_investment_timestamp': 1749371811, 'time_ratio': 8760.0}",-1.55,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
75 |
-1.88,2.02,2025-06-09 18:36:45.190353,"{'portfolio': {'portfolio_value': 28.503198, 'value_in_pools': 0.0, 'value_in_safe': 28.503198, 'initial_investment': 370.50440998207847, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1749474355}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.2963222595072, 'f_i_ratio': -0.9230692071887114, 'first_investment_timestamp': 1749474405, 'time_ratio': 8760.0}",-1.88,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
|
|
80 |
-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""]"
|
81 |
-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""]"
|
82 |
-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""]"
|
83 |
+
-1.76,1.89,2025-06-18 15:02:37.080985,"{'portfolio': {'portfolio_value': 28.676366, 'value_in_pools': 0.0, 'value_in_safe': 28.676366, 'initial_investment': 1111.5132299462357, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1750239131}, 'positons': []}","{'initial_value': 30.87536749850655, 'final_value': 30.332198428425492, 'f_i_ratio': -0.9742006075794644, 'first_investment_timestamp': 1750239157, 'time_ratio': 8760.0}",-1.76,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
84 |
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,
|
85 |
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,
|
86 |
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,
|
|
|
92 |
307.91,303.58,2025-06-08 18:06:00.793190,"{'portfolio': {'portfolio_value': 28.535952, 'value_in_pools': 0.0, 'value_in_safe': 28.535952, 'initial_investment': 89.40041351986281, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2507.84, 'value_usd': 12.5392, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999797, 'value_usd': 15.996752, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749382056}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.39629605377164, 'f_i_ratio': -0.6808073824663021, 'first_investment_timestamp': 1749386160, 'time_ratio': 8760.0}",2.0,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
93 |
290.99,286.67,2025-06-08 21:24:29.536035,"{'portfolio': {'portfolio_value': 28.535952, 'value_in_pools': 0.0, 'value_in_safe': 28.535952, 'initial_investment': 89.40041351986281, 'volume': None, 'agent_hash': 'bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005, 'price': 2507.84, 'value_usd': 12.5392, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999797, 'value_usd': 15.996752, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749382056}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.39629605377164, 'f_i_ratio': -0.6808073824663021, 'first_investment_timestamp': 1749398069, 'time_ratio': 8760.0}",2.0,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeieck7zrejp6ttx2ulhejx3kqfzkg5d5kvirevdrlrrr7jnowghn7e,,balanced,
|
94 |
-25.3,-41.28,2025-06-11 13:51:16.740004,"{'portfolio': {'portfolio_value': 28.806590870932734, 'value_in_pools': 0.0, 'value_in_safe': 28.806590870932734, 'initial_investment': 160.54068642904681, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1749629938}, 'positons': []}","{'initial_value': 41.34013506922975, 'final_value': 30.881119037875482, 'f_i_ratio': -0.8205651694178833, 'first_investment_timestamp': 1749630076, 'time_ratio': 8760.0}",-25.3,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
95 |
+
68.73,62.96,2025-06-17 15:11:09.841348,"{'portfolio': {'portfolio_value': 15.996785001000003, 'value_in_pools': 0.0, 'value_in_safe': 15.996785001000003, 'initial_investment': 9338.050671798082, 'volume': 12.64597826421316, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1750153228}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.950279745814442, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x4e4306e400b10419f5897b74e83fe08c38c47a68d19debaa2fb51f465aba7698', 'enter_timestamp': 1749634247, 'amount0': 0, 'amount1': 12657728, 'positions': [{'token_id': 2743508, 'liquidity': 126330717239, 'amount0': 0, 'amount1': 12631177, 'current_liquidity': 126330717239}, {'token_id': 2743509, 'liquidity': 106222586, 'amount0': 0, 'amount1': 26551, 'current_liquidity': 106222586}]}]}","{'initial_value': 41.34013506922975, 'final_value': 42.215853231864145, 'f_i_ratio': -0.9982869245880929, 'first_investment_timestamp': 1749634247, 'time_ratio': 60.76033169965921}",2.12,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.64597826421316,balanced,
|
96 |
0.0,0.0,2025-06-06 21:16:18.171681,"{'portfolio': {'portfolio_value': 28.551676, 'value_in_pools': 0.0, 'value_in_safe': 28.551676, 'initial_investment': 59.600275679908535, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749224758}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 29.800137839954267, 'f_i_ratio': -0.5209472494164171, 'first_investment_timestamp': 1749224778, 'time_ratio': 8760.0}",0.0,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
97 |
307.76,305.29,2025-06-07 21:20:52.452249,"{'portfolio': {'portfolio_value': 28.462196, 'value_in_pools': 0.0, 'value_in_safe': 28.462196, 'initial_investment': 238.4011027196341, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749308230}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.140478299059993, 'f_i_ratio': -0.8806121461884667, 'first_investment_timestamp': 1749311452, 'time_ratio': 8760.0}",1.14,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
98 |
309.78,305.45,2025-06-08 21:24:43.897906,"{'portfolio': {'portfolio_value': 28.625762, 'value_in_pools': 0.0, 'value_in_safe': 28.625762, 'initial_investment': 566.2026189591312, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749397116}, 'positons': []}","{'initial_value': 29.800137839954267, 'final_value': 30.39629605377164, 'f_i_ratio': -0.9494425475236697, 'first_investment_timestamp': 1749398083, 'time_ratio': 8760.0}",2.0,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
|
|
102 |
123.86,114.3,2025-06-13 20:14:38.143005,"{'portfolio': {'portfolio_value': 29.64077551632, 'value_in_pools': 0.0, 'value_in_safe': 29.64077551632, 'initial_investment': 1444.2873022757153, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749825822}, 'positons': []}","{'initial_value': 43.680823797865436, 'final_value': 44.76413006509869, 'f_i_ratio': -0.9794772304169566, 'first_investment_timestamp': 1749825878, 'time_ratio': 8760.0}",2.48,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
103 |
39.17,34.53,2025-06-15 02:29:15.201154,"{'portfolio': {'portfolio_value': 29.6408941048, 'value_in_pools': 0.0, 'value_in_safe': 29.6408941048, 'initial_investment': 1750.053068860774, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1749934728}, 'positons': []}","{'initial_value': 43.680823797865436, 'final_value': 44.082520136498374, 'f_i_ratio': -0.9830628598456759, 'first_investment_timestamp': 1749934755, 'time_ratio': 8760.0}",0.92,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
104 |
39.24,34.03,2025-06-16 19:00:11.977194,"{'portfolio': {'portfolio_value': 29.64142775296, 'value_in_pools': 0.0, 'value_in_safe': 29.64142775296, 'initial_investment': 1924.776364052236, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1750080585}, 'positons': []}","{'initial_value': 43.680823797865436, 'final_value': 44.16247636038923, 'f_i_ratio': -0.984600066632907, 'first_investment_timestamp': 1750080611, 'time_ratio': 8760.0}",1.1,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
105 |
+
41.08,35.31,2025-06-17 20:46:59.724500,"{'portfolio': {'portfolio_value': 29.64062728072, 'value_in_pools': 0.0, 'value_in_safe': 29.64062728072, 'initial_investment': 1968.4571878501015, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1750173391}, 'positons': []}","{'initial_value': 43.680823797865436, 'final_value': 44.23788772092317, 'f_i_ratio': -0.9849422037402333, 'first_investment_timestamp': 1750173419, 'time_ratio': 8760.0}",1.28,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
106 |
+
20.04,16.18,2025-06-18 20:50:26.458030,"{'portfolio': {'portfolio_value': 29.64130916448, 'value_in_pools': 0.0, 'value_in_safe': 29.64130916448, 'initial_investment': 2055.8188354458325, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1750259069}, 'positons': []}","{'initial_value': 43.680823797865436, 'final_value': 43.976567028418216, 'f_i_ratio': -0.9855817503695301, 'first_investment_timestamp': 1750260026, 'time_ratio': 8760.0}",0.68,119,False,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
107 |
2081.35,2081.35,2025-06-06 21:35:10.663781,"{'portfolio': {'portfolio_value': 28.539954, 'value_in_pools': 0.0, 'value_in_safe': 28.539954, 'initial_investment': 29.800137839954267, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7', 'last_updated': 1749225694}, 'positons': []}","{'initial_value': 40.939502917266374, 'final_value': 41.48051810659099, 'f_i_ratio': -0.04228785271807323, 'first_investment_timestamp': 1749225910, 'time_ratio': 8760.0}",1.32,120,False,0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7,joyus-goson39,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
108 |
-28.02,-32.34,2025-06-08 17:03:45.278780,"{'portfolio': {'portfolio_value': 28.665046441834267, 'value_in_pools': 0.0, 'value_in_safe': 28.665046441834267, 'initial_investment': 111.67914367448702, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7', 'last_updated': 1749382407}, 'positons': []}","{'initial_value': 40.93950391704335, 'final_value': 29.468410810983407, 'f_i_ratio': -0.7433267707945117, 'first_investment_timestamp': 1749382425, 'time_ratio': 8760.0}",-28.02,120,False,0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7,joyus-goson39,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
109 |
379.37,375.05,2025-06-08 22:12:15.454361,"{'portfolio': {'portfolio_value': 16.079244749705, 'value_in_pools': 0.0, 'value_in_safe': 16.079244749705, 'initial_investment': 234.49765542561704, 'volume': 12.431696715496372, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7', 'last_updated': 1749400891}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 6.8210787661006504, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x26c993dbb424b604d3c6c21bcf357a002c904e42501e4368f12306824f9c6fd3', 'enter_timestamp': 1749400565, 'amount0': 106, 'amount1': 12417370, 'positions': [{'token_id': 2707603, 'liquidity': 124219155242, 'amount0': 0, 'amount1': 12416948}, {'token_id': 2707604, 'liquidity': 1469411, 'amount0': 83, 'amount1': 358}, {'token_id': 2707605, 'liquidity': 215979, 'amount0': 23, 'amount1': 64}]}]}","{'initial_value': 40.93950391704335, 'final_value': 41.90010752647978, 'f_i_ratio': -0.93143110654765, 'first_investment_timestamp': 1749400565, 'time_ratio': 8760.0}",2.35,120,False,0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7,joyus-goson39,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.431696715496372,balanced,
|
|
|
127 |
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,
|
128 |
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,
|
129 |
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,
|
130 |
+
1.98,2.18,2025-06-19 02:57:28.768791,"{'portfolio': {'portfolio_value': 20.48854940448, 'value_in_pools': 0.0, 'value_in_safe': 20.48854940448, 'initial_investment': 19718.14883164105, 'volume': 12.850468713455362, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1750281775}, '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.72242503692423, 'f_i_ratio': -0.9989609293661683, 'first_investment_timestamp': 1749344469, 'time_ratio': 33.635538062715135}",0.06,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.850468713455362,balanced,
|
131 |
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,
|
132 |
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""]"
|
133 |
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""]"
|
134 |
497.65,486.99,2025-06-12 18:42:17.665709,"{'portfolio': {'portfolio_value': 29.82681465684, 'value_in_pools': 0.0, 'value_in_safe': 29.82681465684, 'initial_investment': 398.23654933257916, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1749730713}, 'positons': []}","{'initial_value': 43.72132318471379, 'final_value': 45.651057823432666, 'f_i_ratio': -0.9251027694298075, 'first_investment_timestamp': 1749733937, 'time_ratio': 8760.0}",4.41,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""uniswap_pools_search""]"
|
135 |
72.71,71.16,2025-06-16 17:52:55.063058,"{'portfolio': {'portfolio_value': 29.827172657376, 'value_in_pools': 0.0, 'value_in_safe': 29.827172657376, 'initial_investment': 485.6791957020068, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1750076551}, 'positons': []}","{'initial_value': 43.72132318471379, 'final_value': 44.348688098687234, 'f_i_ratio': -0.9385866783643811, 'first_investment_timestamp': 1750076575, 'time_ratio': 8760.0}",1.43,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,risky,"[""uniswap_pools_search""]"
|
136 |
+
-1.29,-1.54,2025-06-18 14:06:40.798020,"{'portfolio': {'portfolio_value': 29.825263321184, 'value_in_pools': 0.0, 'value_in_safe': 29.825263321184, 'initial_investment': 42.64732311069726, 'volume': None, 'agent_hash': 'bafybeiey543fjnimh2ccimp4wmnexkkrrqohc2zpg2qntmom7elzcpweqy', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9', 'last_updated': 1750235754}, 'positons': []}","{'initial_value': 43.72132318471379, 'final_value': 43.156792796655814, 'f_i_ratio': -0.30065333189217425, 'first_investment_timestamp': 1750235800, 'time_ratio': 8760.0}",-1.29,126,False,0x9f3AbFC3301093f39c2A137f87c525b4a0832ba9,tonvel-beeprel23,APR,,bafybeiey543fjnimh2ccimp4wmnexkkrrqohc2zpg2qntmom7elzcpweqy,,risky,"[""uniswap_pools_search""]"
|
137 |
1280.5,1280.5,2025-06-09 22:20:14.827769,"{'portfolio': {'portfolio_value': 28.8359, 'value_in_pools': 0.0, 'value_in_safe': 28.8359, 'initial_investment': 30.2963222595072, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1749487695}, 'positons': []}","{'initial_value': 42.403940230497525, 'final_value': 42.74700682025574, 'f_i_ratio': -0.04820460539724125, 'first_investment_timestamp': 1749487814, 'time_ratio': 8760.0}",0.81,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
138 |
1305.08,1298.06,2025-06-10 11:46:19.456686,"{'portfolio': {'portfolio_value': 16.019739815806002, 'value_in_pools': 0.0, 'value_in_safe': 16.019739815806002, 'initial_investment': 157.50814295099977, 'volume': 12.764690603049267, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1749536153}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609}]}]}","{'initial_value': 42.403940230497525, 'final_value': 43.60231942303743, 'f_i_ratio': -0.8982926246499542, 'first_investment_timestamp': 1749535827, 'time_ratio': 8760.0}",2.83,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.764690603049267,balanced,
|
139 |
904.96,893.01,2025-06-11 11:52:17.821684,"{'portfolio': {'portfolio_value': 16.012107809264002, 'value_in_pools': 0.0, 'value_in_safe': 16.012107809264002, 'initial_investment': 1641.6460510184122, 'volume': 12.764690603049267, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1749622842}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 44.29060838260328, 'f_i_ratio': -0.9902463093068504, 'first_investment_timestamp': 1749535827, 'time_ratio': 362.02161098239833}",4.45,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,12.764690603049267,balanced,
|
|
|
142 |
101.72,99.0,2025-06-14 20:55:17.651663,"{'portfolio': {'portfolio_value': 16.005584510286, 'value_in_pools': 0.0, 'value_in_safe': 16.005584510286, 'initial_investment': 11691.379885646322, 'volume': 12.764690603049267, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1749914606}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 43.01508716152051, 'f_i_ratio': -0.9986309926914669, 'first_investment_timestamp': 1749535827, 'time_ratio': 83.23245733717371}",1.44,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.764690603049267,balanced,
|
143 |
51.95,50.94,2025-06-15 20:58:03.786280,"{'portfolio': {'portfolio_value': 16.007665648354, 'value_in_pools': 0.0, 'value_in_safe': 16.007665648354, 'initial_investment': 15846.96602823503, 'volume': 12.764690603049267, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1750001267}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 42.77651026311068, 'f_i_ratio': -0.9989898592815917, 'first_investment_timestamp': 1749535827, 'time_ratio': 67.75279881951244}",0.88,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.764690603049267,balanced,
|
144 |
53.98,52.42,2025-06-16 21:00:02.716458,"{'portfolio': {'portfolio_value': 16.01132893346, 'value_in_pools': 0.0, 'value_in_safe': 16.01132893346, 'initial_investment': 18051.97092022095, 'volume': 12.764690603049267, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1750087690}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 42.85386676055998, 'f_i_ratio': -0.9991130426143372, 'first_investment_timestamp': 1749535827, 'time_ratio': 57.13294817090905}",1.06,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.764690603049267,balanced,
|
145 |
+
27.48,27.23,2025-06-18 00:37:19.407906,"{'portfolio': {'portfolio_value': 16.009942884556, 'value_in_pools': 0.0, 'value_in_safe': 16.009942884556, 'initial_investment': 21953.133421426843, 'volume': 12.764690603049267, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1750187108}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 5.949749137116604, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}]}]}","{'initial_value': 42.403940230497525, 'final_value': 42.669705846897344, 'f_i_ratio': -0.999270721742668, 'first_investment_timestamp': 1749535827, 'time_ratio': 48.411727528143764}",0.63,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,12.764690603049267,balanced,
|
146 |
-30.96,-30.96,2025-06-10 09:06:37.010122,"{'portfolio': {'portfolio_value': 29.404114, 'value_in_pools': 0.0, 'value_in_safe': 29.404114, 'initial_investment': 31.300792273386968, 'volume': None, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1749526233}, 'positons': []}","{'initial_value': 43.651793124577026, 'final_value': 30.137846356840903, 'f_i_ratio': -0.06059521614727914, 'first_investment_timestamp': 1749526597, 'time_ratio': 8760.0}",-30.96,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,,balanced,
|
147 |
-0.31,-0.31,2025-06-10 09:29:20.119072,"{'portfolio': {'portfolio_value': 15.918398891726, 'value_in_pools': 0.0, 'value_in_safe': 15.918398891726, 'initial_investment': 74.95258539796399, 'volume': 13.377491477361414, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1749527917}, '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}, {'token_id': 2725144, 'liquidity': 867486957, 'amount0': 27200, 'amount1': 59543}, {'token_id': 2725145, 'liquidity': 266293532, 'amount0': 21663, 'amount1': 31591}]}]}","{'initial_value': 43.651793124577026, 'final_value': 43.51533783420231, 'f_i_ratio': -0.7876204161976992, 'first_investment_timestamp': 1749527585, 'time_ratio': 8760.0}",-0.31,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,13.377491477361414,balanced,
|
148 |
314.71,310.11,2025-06-11 12:58:00.236662,"{'portfolio': {'portfolio_value': 15.919039059631, 'value_in_pools': 0.0, 'value_in_safe': 15.919039059631, 'initial_investment': 380.5151372700031, 'volume': 13.377491477361414, 'agent_hash': 'bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1749626687}, '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': 44.17652979434854, 'f_i_ratio': -0.9581645051657031, 'first_investment_timestamp': 1749527585, 'time_ratio': 317.5983164970591}",1.2,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeif5aifwpxf2bjfrtgivuruhrlsqtpr5ynzk5ygkjsujh4gt3fjrmm,13.377491477361414,balanced,
|
149 |
-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,
|
150 |
-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,
|
151 |
+
-1.79,2.82,2025-06-17 14:59:52.085823,"{'portfolio': {'portfolio_value': 15.918808498049, 'value_in_pools': 0.0, 'value_in_safe': 15.918808498049, 'initial_investment': 2388.4976210005493, 'volume': 13.377491477361414, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1750152503}, '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.8704538709362, 'f_i_ratio': -0.9933352211205551, 'first_investment_timestamp': 1749527585, 'time_ratio': 50.45702795268454}",-1.79,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,13.377491477361414,balanced,
|
152 |
+
-2.36,3.97,2025-06-18 15:08:39.958257,"{'portfolio': {'portfolio_value': 15.919755672056, 'value_in_pools': 0.0, 'value_in_safe': 15.919755672056, 'initial_investment': 2825.0155522463206, 'volume': 13.377491477361414, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1750239419}, '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.622110086640035, 'f_i_ratio': -0.994364719281139, 'first_investment_timestamp': 1749527585, 'time_ratio': 44.29618132140894}",-2.36,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,13.377491477361414,balanced,
|
153 |
+
-3.19,7.26,2025-06-18 13:33:06.289943,"{'portfolio': {'portfolio_value': 30.243108653841, 'value_in_pools': 0.0, 'value_in_safe': 30.243108653841, 'initial_investment': 46.047494053587265, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x6Efb6CA62bc244EB69c91C6FD1b9051Dc96489D0', 'last_updated': 1750233761}, 'positons': []}","{'initial_value': 46.047494053587265, 'final_value': 44.579724401155836, 'f_i_ratio': -0.34321922885432343, 'first_investment_timestamp': 1750233786, 'time_ratio': 8760.0}",-3.19,130,False,0x6Efb6CA62bc244EB69c91C6FD1b9051Dc96489D0,jusrot-kihi68,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,"[""Ethereum"", ""Optimism"", ""Base""]"
|
154 |
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,
|
155 |
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,
|
156 |
+
0.0,0.0,2025-06-17 20:54:46.322615,"{'portfolio': {'portfolio_value': 15.99672, 'value_in_pools': 0.0, 'value_in_safe': 15.99672, 'initial_investment': 15.995244118188845, 'volume': None, 'agent_hash': 'bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x604EAb0f83daa031bEaF652a3d69A2bf6adafCA3', 'last_updated': 1750173875}, 'positons': []}","{'initial_value': 15.995244118188845, 'final_value': 15.995244118188845, 'f_i_ratio': 9.227003978495851e-05, 'first_investment_timestamp': 1750173886, 'time_ratio': 8760.0}",0.0,137,False,0x604EAb0f83daa031bEaF652a3d69A2bf6adafCA3,yilo-fevo87,APR,,bafybeidbt5azkdtdvj343jhtksv2jk4cuwaixchxbzmqplfiu5g36fogby,,balanced,
|
optimus_roi_values.csv
CHANGED
@@ -39,6 +39,8 @@ roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
|
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,,
|
@@ -65,6 +67,8 @@ roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
|
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,,
|
@@ -101,6 +105,7 @@ roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
|
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,,
|
@@ -111,6 +116,7 @@ roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
|
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,,
|
@@ -132,6 +138,8 @@ roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
|
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,,
|
@@ -155,11 +163,13 @@ roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
|
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,,
|
@@ -168,249 +178,415 @@ roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
|
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.
|
180 |
-
-
|
181 |
-
-0.
|
182 |
-
-0.
|
183 |
-
-0.
|
184 |
-
-0.
|
185 |
-
0.
|
186 |
-
-0.
|
187 |
-
-0.
|
188 |
-
-0.
|
189 |
-
-0.
|
190 |
-
-0.
|
191 |
-
-0.
|
192 |
-
-0.
|
193 |
-
-0.
|
194 |
-
-0.
|
195 |
-
0.
|
196 |
-
-0.
|
197 |
-
-0.
|
198 |
-
-0.
|
199 |
-
-0.
|
200 |
-
-0.
|
201 |
-
-0.
|
202 |
-
-0.
|
203 |
-
-0.
|
204 |
-
-0.
|
205 |
-
-0.
|
206 |
-
-0.
|
207 |
-
-0.
|
208 |
-
-0.
|
209 |
-
-0.
|
210 |
-
-0.
|
211 |
-
-0.
|
212 |
-
-0.
|
213 |
-
-0.
|
214 |
-
|
215 |
-
0.
|
216 |
-
-0.
|
217 |
-
-0.
|
218 |
-
-0.
|
219 |
-
-0.
|
220 |
-
-0.
|
221 |
-
-0.
|
222 |
-
-0.
|
223 |
-
0.
|
224 |
-
-0.
|
225 |
-
-0.
|
226 |
-
-0.
|
227 |
-
-0.
|
228 |
-
-0.
|
229 |
-
-0.
|
230 |
-
-0.
|
231 |
-
-0.
|
232 |
-
-0.
|
233 |
-
-0.
|
234 |
-
-0.
|
235 |
-
-0.
|
236 |
-
-0.
|
237 |
-
-0.
|
238 |
-
-0.
|
239 |
-
|
240 |
-
-0.
|
241 |
-
-0.
|
242 |
-
-0.
|
243 |
-
-0.
|
244 |
-
-0.
|
245 |
-
-0.
|
246 |
-
-0.
|
247 |
-
-0.
|
248 |
-
-0.
|
249 |
-
-0.
|
250 |
-
-0.
|
251 |
-
0.
|
252 |
-
-0.
|
253 |
-
-0.
|
254 |
-
-0.
|
255 |
-
-0.
|
256 |
-
-0.
|
257 |
-
-0.
|
258 |
-
-0.
|
259 |
-
-0.
|
260 |
-
-0.
|
261 |
-
-0.
|
262 |
-
-0.
|
263 |
-
-0.
|
264 |
-
-0.
|
265 |
-
-0.
|
266 |
-
-0.
|
267 |
-
-0.
|
268 |
-
-0.
|
269 |
-
-0.
|
270 |
-
-0.
|
271 |
-
-0.
|
272 |
-
-0.
|
273 |
-
-0.
|
274 |
-
-0.
|
275 |
-
-0.
|
276 |
-
-0.
|
277 |
-
|
278 |
-
-0.
|
279 |
-
-0.
|
280 |
-
-0.
|
281 |
-
0.
|
282 |
-
-0.
|
283 |
-
-0.
|
284 |
-
-0.
|
285 |
-
-0.
|
286 |
-
-0.
|
287 |
-
-0.
|
288 |
-
-0.
|
289 |
-
-0.
|
290 |
-
-0.
|
291 |
-
-0.
|
292 |
-
-0.
|
293 |
-
-0.
|
294 |
-
-0.
|
295 |
-
-0.
|
296 |
-
-0.
|
297 |
-
-0.
|
298 |
-
-0.
|
299 |
-
-0.
|
300 |
-
-0.
|
301 |
-
-0.
|
302 |
-
-0.
|
303 |
-
-0.
|
304 |
-
-0.
|
305 |
-
-0.
|
306 |
-
-0.
|
307 |
-
-0.
|
308 |
-
-0.
|
309 |
-
-0.
|
310 |
-
-0.
|
311 |
-
0.
|
312 |
-
-0.
|
313 |
-
-0.
|
314 |
-
-0.
|
315 |
-
-0.
|
316 |
-
-0.
|
317 |
-
-0.
|
318 |
-
-0.
|
319 |
-
-0.
|
320 |
-
-0.
|
321 |
-
-0.
|
322 |
-
-0.
|
323 |
-
-0.
|
324 |
-
-0.
|
325 |
-
-0.
|
326 |
-
-0.
|
327 |
-
-0.
|
328 |
-
-0.
|
329 |
-
-0.
|
330 |
-
-0.
|
331 |
-
-0.
|
332 |
-
-0.
|
333 |
-
-0.
|
334 |
-
-0.
|
335 |
-
-0.
|
336 |
-
-0.
|
337 |
-
-0.
|
338 |
-
-0.
|
339 |
-
0.
|
340 |
-
-0.
|
341 |
-
-0.
|
342 |
-
-0.
|
343 |
-
-0.
|
344 |
-
-0.
|
345 |
-
-0.
|
346 |
-
-0.
|
347 |
-
-0.
|
348 |
-
-0.
|
349 |
-
-0.
|
350 |
-
-0.
|
351 |
-
-0.
|
352 |
-
-0.
|
353 |
-
-0.
|
354 |
-
-0.
|
355 |
-
-0.
|
356 |
-
-0.
|
357 |
-
-0.
|
358 |
-
-0.
|
359 |
-
-0.
|
360 |
-
-0.
|
361 |
-
-0.
|
362 |
-
-0.
|
363 |
-
-0.
|
364 |
-
-0.
|
365 |
-
0.
|
366 |
-
-0.
|
367 |
-
-0.
|
368 |
-
-0.
|
369 |
-
-0.
|
370 |
-
-0.
|
371 |
-
-0.
|
372 |
-
-0.
|
373 |
-
-0.
|
374 |
-
-0.
|
375 |
-
-0.
|
376 |
-
-0.
|
377 |
-
-0.
|
378 |
-
-0.
|
379 |
-
-0.
|
380 |
-
-0.
|
381 |
-
-0.
|
382 |
-
-0.
|
383 |
-
-0.
|
384 |
-
-0.
|
385 |
-
-0.
|
386 |
-
-0.
|
387 |
-
-0.
|
388 |
-
-0.
|
389 |
-
-0.
|
390 |
-
-0.
|
391 |
-
-
|
392 |
-
-0.
|
393 |
-
-0.
|
394 |
-
-0.
|
395 |
-
-0.
|
396 |
-
-0.
|
397 |
-
-0.
|
398 |
-
-0.
|
399 |
-
-0.
|
400 |
-
-0.
|
401 |
-
-0.
|
402 |
-
-0.
|
403 |
-
-0.
|
404 |
-
-0.
|
405 |
-
-0.
|
406 |
-
-0.
|
407 |
-
-0.
|
408 |
-
-0.
|
409 |
-
-0.
|
410 |
-
-0.
|
411 |
-
-0.
|
412 |
-
-0.
|
413 |
-
-0.
|
414 |
-
-0.
|
415 |
-
-0.
|
416 |
-
-0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.32068278076571854,2025-06-17 21:36:41.766412,111,furtek-gilje55,False,ROI,,
|
43 |
+
-0.32068659660503274,2025-06-19 00:21:32.057093,111,furtek-gilje55,False,ROI,,
|
44 |
-0.36854758417016864,2025-06-05 20:46:51.369656,112,vuzus-fazi89,False,ROI,,
|
45 |
-0.7496728527619763,2025-06-08 02:03:32.248014,112,vuzus-fazi89,False,ROI,,
|
46 |
-0.5456503958801932,2025-06-06 06:06:41.681577,115,yenot-zoncen49,False,ROI,,
|
|
|
67 |
-0.9635936504813616,2025-06-13 22:40:52.426319,115,yenot-zoncen49,False,ROI,,
|
68 |
-0.970050696207783,2025-06-15 04:17:24.547659,115,yenot-zoncen49,False,ROI,,
|
69 |
-0.9713222308063645,2025-06-17 02:16:08.931664,115,yenot-zoncen49,False,ROI,,
|
70 |
+
-0.9778909193887282,2025-06-18 02:16:08.125875,115,yenot-zoncen49,False,ROI,,
|
71 |
+
-0.982009757827749,2025-06-19 02:17:58.619626,115,yenot-zoncen49,False,ROI,,
|
72 |
-0.5419683668321018,2025-06-06 11:29:18.913469,116,honji-hahi60,False,ROI,,
|
73 |
-0.5419683668321018,2025-06-06 12:31:08.139923,116,honji-hahi60,False,ROI,,
|
74 |
-0.6918271067123792,2025-06-06 22:15:03.771384,116,honji-hahi60,False,ROI,,
|
|
|
105 |
-0.9182298315923811,2025-06-11 23:15:11.685382,116,honji-hahi60,False,ROI,,
|
106 |
-0.9435336077967746,2025-06-13 18:28:24.365605,116,honji-hahi60,False,ROI,,
|
107 |
-0.9515049258814656,2025-06-16 13:54:43.588418,116,honji-hahi60,False,ROI,,
|
108 |
+
-0.9599816697433252,2025-06-18 03:40:06.462972,116,honji-hahi60,False,ROI,,
|
109 |
-0.539434826138091,2025-06-07 12:07:37.903080,117,furye-himkon89,False,ROI,,
|
110 |
-0.8457106839760286,2025-06-08 14:06:51.667566,117,furye-himkon89,False,ROI,,
|
111 |
-0.9230692071887114,2025-06-09 18:36:45.190353,117,furye-himkon89,False,ROI,,
|
|
|
116 |
-0.9700982511733464,2025-06-14 20:11:08.489286,117,furye-himkon89,False,ROI,,
|
117 |
-0.9709192226604775,2025-06-15 20:54:19.955496,117,furye-himkon89,False,ROI,,
|
118 |
-0.9716427293842737,2025-06-17 04:52:36.207967,117,furye-himkon89,False,ROI,,
|
119 |
+
-0.9742006075794644,2025-06-18 15:02:37.080985,117,furye-himkon89,False,ROI,,
|
120 |
-0.522856603000806,2025-06-07 16:03:45.373863,118,lonwus-patu86,False,ROI,,
|
121 |
-0.522856603000806,2025-06-07 17:07:58.993795,118,lonwus-patu86,False,ROI,,
|
122 |
-0.522856603000806,2025-06-07 14:59:15.300909,118,lonwus-patu86,False,ROI,,
|
|
|
138 |
-0.9794772304169566,2025-06-13 20:14:38.143005,119,lonlim-zapgi60,False,ROI,,
|
139 |
-0.9830628598456759,2025-06-15 02:29:15.201154,119,lonlim-zapgi60,False,ROI,,
|
140 |
-0.984600066632907,2025-06-16 19:00:11.977194,119,lonlim-zapgi60,False,ROI,,
|
141 |
+
-0.9849422037402333,2025-06-17 20:46:59.724500,119,lonlim-zapgi60,False,ROI,,
|
142 |
+
-0.9855817503695301,2025-06-18 20:50:26.458030,119,lonlim-zapgi60,False,ROI,,
|
143 |
-0.04228785271807323,2025-06-06 21:35:10.663781,120,joyus-goson39,False,ROI,,
|
144 |
-0.7433267707945117,2025-06-08 17:03:45.278780,120,joyus-goson39,False,ROI,,
|
145 |
-0.93143110654765,2025-06-08 22:12:15.454361,120,joyus-goson39,False,ROI,,
|
|
|
163 |
-0.9985459813812843,2025-06-14 20:58:08.060349,123,cordron-yelku44,False,ROI,,
|
164 |
-0.9987154850133823,2025-06-16 01:13:39.374306,123,cordron-yelku44,False,ROI,,
|
165 |
-0.9988179875590102,2025-06-17 01:18:21.000045,123,cordron-yelku44,False,ROI,,
|
166 |
+
-0.9989609293661683,2025-06-19 02:57:28.768791,123,cordron-yelku44,False,ROI,,
|
167 |
-0.05187871471805383,2025-06-09 18:32:36.558142,126,tonvel-beeprel23,False,ROI,,
|
168 |
-0.8359260807052761,2025-06-10 18:35:49.668890,126,tonvel-beeprel23,False,ROI,,
|
169 |
-0.9158714676998039,2025-06-11 18:38:07.704650,126,tonvel-beeprel23,False,ROI,,
|
170 |
-0.9251027694298075,2025-06-12 18:42:17.665709,126,tonvel-beeprel23,False,ROI,,
|
171 |
-0.9385866783643811,2025-06-16 17:52:55.063058,126,tonvel-beeprel23,False,ROI,,
|
172 |
+
-0.30065333189217425,2025-06-18 14:06:40.798020,126,tonvel-beeprel23,False,ROI,,
|
173 |
-0.04820460539724125,2025-06-09 22:20:14.827769,127,lunel-luwus85,False,ROI,,
|
174 |
-0.8982926246499542,2025-06-10 11:46:19.456686,127,lunel-luwus85,False,ROI,,
|
175 |
-0.9902463093068504,2025-06-11 11:52:17.821684,127,lunel-luwus85,False,ROI,,
|
|
|
178 |
-0.9986309926914669,2025-06-14 20:55:17.651663,127,lunel-luwus85,False,ROI,,
|
179 |
-0.9989898592815917,2025-06-15 20:58:03.786280,127,lunel-luwus85,False,ROI,,
|
180 |
-0.9991130426143372,2025-06-16 21:00:02.716458,127,lunel-luwus85,False,ROI,,
|
181 |
+
-0.999270721742668,2025-06-18 00:37:19.407906,127,lunel-luwus85,False,ROI,,
|
182 |
-0.06059521614727914,2025-06-10 09:06:37.010122,128,kozu-hanfil63,False,ROI,,
|
183 |
-0.7876204161976992,2025-06-10 09:29:20.119072,128,kozu-hanfil63,False,ROI,,
|
184 |
-0.9581645051657031,2025-06-11 12:58:00.236662,128,kozu-hanfil63,False,ROI,,
|
185 |
-0.9781812869068476,2025-06-13 07:59:58.559461,128,kozu-hanfil63,False,ROI,,
|
186 |
-0.9839483854396002,2025-06-15 20:59:08.057917,128,kozu-hanfil63,False,ROI,,
|
187 |
-0.9933352211205551,2025-06-17 14:59:52.085823,128,kozu-hanfil63,False,ROI,,
|
188 |
+
-0.994364719281139,2025-06-18 15:08:39.958257,128,kozu-hanfil63,False,ROI,,
|
189 |
+
-0.34321922885432343,2025-06-18 13:33:06.289943,130,jusrot-kihi68,False,ROI,,
|
190 |
8.485384550471764e-05,2025-06-15 21:22:42.073588,133,ronwus-yusrus90,False,ROI,,
|
191 |
-0.9166669310235978,2025-06-16 21:26:14.464595,133,ronwus-yusrus90,False,ROI,,
|
192 |
+
-0.9583292559289407,2025-06-19 05:04:33.644120,133,ronwus-yusrus90,False,ROI,,
|
193 |
+
9.227003978495851e-05,2025-06-17 20:54:46.322615,137,yilo-fevo87,False,ROI,,
|
194 |
+
-0.005,2025-06-19 05:14:33.644120,86,nusus-tayar25,True,ROI,,
|
195 |
+
-0.004306022527423509,2025-06-19 05:24:33.644120,86,nusus-tayar25,True,ROI,,
|
196 |
+
-0.0038709055997458563,2025-06-19 05:34:33.644120,86,nusus-tayar25,True,ROI,,
|
197 |
+
-0.00367314532855918,2025-06-19 05:44:33.644120,86,nusus-tayar25,True,ROI,,
|
198 |
+
-0.0032858046851116755,2025-06-19 05:54:33.644120,86,nusus-tayar25,True,ROI,,
|
199 |
+
-0.0036219831437022338,2025-06-19 06:04:33.644120,86,nusus-tayar25,True,ROI,,
|
200 |
+
-0.004534354015520339,2025-06-19 06:14:33.644120,86,nusus-tayar25,True,ROI,,
|
201 |
+
-0.005383872999742331,2025-06-19 06:24:33.644120,86,nusus-tayar25,True,ROI,,
|
202 |
+
-0.006268011441593019,2025-06-19 06:34:33.644120,86,nusus-tayar25,True,ROI,,
|
203 |
+
-0.007104095512088321,2025-06-19 06:44:33.644120,86,nusus-tayar25,True,ROI,,
|
204 |
+
-0.008027893192165415,2025-06-19 06:54:33.644120,86,nusus-tayar25,True,ROI,,
|
205 |
+
-0.008751158306963495,2025-06-19 07:04:33.644120,86,nusus-tayar25,True,ROI,,
|
206 |
+
-0.009593647135606953,2025-06-19 07:14:33.644120,86,nusus-tayar25,True,ROI,,
|
207 |
+
-0.00887124333380515,2025-06-19 07:24:33.644120,86,nusus-tayar25,True,ROI,,
|
208 |
+
-0.00857254957560593,2025-06-19 07:34:33.644120,86,nusus-tayar25,True,ROI,,
|
209 |
+
-0.008532755807135844,2025-06-19 07:44:33.644120,86,nusus-tayar25,True,ROI,,
|
210 |
+
-0.008126739323182355,2025-06-19 07:54:33.644120,86,nusus-tayar25,True,ROI,,
|
211 |
+
-0.006032364087338875,2025-06-19 08:04:33.644120,86,nusus-tayar25,True,ROI,,
|
212 |
+
-0.0037521446845845906,2025-06-19 08:14:33.644120,86,nusus-tayar25,True,ROI,,
|
213 |
+
-0.0018268434885021275,2025-06-19 08:24:33.644120,86,nusus-tayar25,True,ROI,,
|
214 |
+
-0.0002459141677995133,2025-06-19 08:34:33.644120,86,nusus-tayar25,True,ROI,,
|
215 |
+
-0.005,2025-06-19 05:14:33.644120,102,kelrus-muha52,True,ROI,,
|
216 |
+
-0.0064387120932093665,2025-06-19 05:24:33.644120,102,kelrus-muha52,True,ROI,,
|
217 |
+
-0.007627409860463405,2025-06-19 05:34:33.644120,102,kelrus-muha52,True,ROI,,
|
218 |
+
-0.008670528139954536,2025-06-19 05:44:33.644120,102,kelrus-muha52,True,ROI,,
|
219 |
+
-0.009963516008597769,2025-06-19 05:54:33.644120,102,kelrus-muha52,True,ROI,,
|
220 |
+
-0.007987320974188299,2025-06-19 06:04:33.644120,102,kelrus-muha52,True,ROI,,
|
221 |
+
-0.006293249099130976,2025-06-19 06:14:33.644120,102,kelrus-muha52,True,ROI,,
|
222 |
+
-0.004489543403439539,2025-06-19 06:24:33.644120,102,kelrus-muha52,True,ROI,,
|
223 |
+
-0.002130479533844456,2025-06-19 06:34:33.644120,102,kelrus-muha52,True,ROI,,
|
224 |
+
-0.0011796141243112534,2025-06-19 06:44:33.644120,102,kelrus-muha52,True,ROI,,
|
225 |
+
-0.0009133365246250509,2025-06-19 06:54:33.644120,102,kelrus-muha52,True,ROI,,
|
226 |
+
-0.0004376861664561393,2025-06-19 07:04:33.644120,102,kelrus-muha52,True,ROI,,
|
227 |
+
0.0,2025-06-19 07:14:33.644120,102,kelrus-muha52,True,ROI,,
|
228 |
+
-0.0019631177384412265,2025-06-19 07:24:33.644120,102,kelrus-muha52,True,ROI,,
|
229 |
+
-0.004248718372855485,2025-06-19 07:34:33.644120,102,kelrus-muha52,True,ROI,,
|
230 |
+
-0.006177347901543171,2025-06-19 07:44:33.644120,102,kelrus-muha52,True,ROI,,
|
231 |
+
-0.00802032265762077,2025-06-19 07:54:33.644120,102,kelrus-muha52,True,ROI,,
|
232 |
+
-0.007163140201773655,2025-06-19 08:04:33.644120,102,kelrus-muha52,True,ROI,,
|
233 |
+
-0.0068439923194146,2025-06-19 08:14:33.644120,102,kelrus-muha52,True,ROI,,
|
234 |
+
-0.005732378027131502,2025-06-19 08:24:33.644120,102,kelrus-muha52,True,ROI,,
|
235 |
+
-0.005181611064807651,2025-06-19 08:34:33.644120,102,kelrus-muha52,True,ROI,,
|
236 |
+
-0.005,2025-06-19 05:14:33.644120,111,furtek-gilje55,True,ROI,,
|
237 |
+
-0.004151882429470883,2025-06-19 05:24:33.644120,111,furtek-gilje55,True,ROI,,
|
238 |
+
-0.003995137596905044,2025-06-19 05:34:33.644120,111,furtek-gilje55,True,ROI,,
|
239 |
+
-0.0038119738457616727,2025-06-19 05:44:33.644120,111,furtek-gilje55,True,ROI,,
|
240 |
+
-0.0034724717790390173,2025-06-19 05:54:33.644120,111,furtek-gilje55,True,ROI,,
|
241 |
+
-0.004116889310013313,2025-06-19 06:04:33.644120,111,furtek-gilje55,True,ROI,,
|
242 |
+
-0.004438202242109654,2025-06-19 06:14:33.644120,111,furtek-gilje55,True,ROI,,
|
243 |
+
-0.005062451727157006,2025-06-19 06:24:33.644120,111,furtek-gilje55,True,ROI,,
|
244 |
+
-0.005499434010372552,2025-06-19 06:34:33.644120,111,furtek-gilje55,True,ROI,,
|
245 |
+
-0.006147224631987404,2025-06-19 06:44:33.644120,111,furtek-gilje55,True,ROI,,
|
246 |
+
-0.00684283395728871,2025-06-19 06:54:33.644120,111,furtek-gilje55,True,ROI,,
|
247 |
+
-0.007010637248516695,2025-06-19 07:04:33.644120,111,furtek-gilje55,True,ROI,,
|
248 |
+
-0.00795743254681935,2025-06-19 07:14:33.644120,111,furtek-gilje55,True,ROI,,
|
249 |
+
-0.006214845252371363,2025-06-19 07:24:33.644120,111,furtek-gilje55,True,ROI,,
|
250 |
+
-0.004476020178546352,2025-06-19 07:34:33.644120,111,furtek-gilje55,True,ROI,,
|
251 |
+
-0.002302122753330574,2025-06-19 07:44:33.644120,111,furtek-gilje55,True,ROI,,
|
252 |
+
0.0,2025-06-19 07:54:33.644120,111,furtek-gilje55,True,ROI,,
|
253 |
+
-0.0020538195971911027,2025-06-19 08:04:33.644120,111,furtek-gilje55,True,ROI,,
|
254 |
+
-0.004626356443931695,2025-06-19 08:14:33.644120,111,furtek-gilje55,True,ROI,,
|
255 |
+
-0.0070440116629755,2025-06-19 08:24:33.644120,111,furtek-gilje55,True,ROI,,
|
256 |
+
-0.009865981967656062,2025-06-19 08:34:33.644120,111,furtek-gilje55,True,ROI,,
|
257 |
+
-0.005,2025-06-19 05:14:33.644120,112,vuzus-fazi89,True,ROI,,
|
258 |
+
-0.0046144799119579956,2025-06-19 05:24:33.644120,112,vuzus-fazi89,True,ROI,,
|
259 |
+
-0.004415663909467635,2025-06-19 05:34:33.644120,112,vuzus-fazi89,True,ROI,,
|
260 |
+
-0.0038624851757443597,2025-06-19 05:44:33.644120,112,vuzus-fazi89,True,ROI,,
|
261 |
+
-0.0034259542277743967,2025-06-19 05:54:33.644120,112,vuzus-fazi89,True,ROI,,
|
262 |
+
-0.003955181809626494,2025-06-19 06:04:33.644120,112,vuzus-fazi89,True,ROI,,
|
263 |
+
-0.005032268510168488,2025-06-19 06:14:33.644120,112,vuzus-fazi89,True,ROI,,
|
264 |
+
-0.00608852052731666,2025-06-19 06:24:33.644120,112,vuzus-fazi89,True,ROI,,
|
265 |
+
-0.007151572003620304,2025-06-19 06:34:33.644120,112,vuzus-fazi89,True,ROI,,
|
266 |
+
-0.00831823703625853,2025-06-19 06:44:33.644120,112,vuzus-fazi89,True,ROI,,
|
267 |
+
-0.008748673909252262,2025-06-19 06:54:33.644120,112,vuzus-fazi89,True,ROI,,
|
268 |
+
-0.009095530850655878,2025-06-19 07:04:33.644120,112,vuzus-fazi89,True,ROI,,
|
269 |
+
-0.009455683870497883,2025-06-19 07:14:33.644120,112,vuzus-fazi89,True,ROI,,
|
270 |
+
-0.00869568193423779,2025-06-19 07:24:33.644120,112,vuzus-fazi89,True,ROI,,
|
271 |
+
-0.007092239159378647,2025-06-19 07:34:33.644120,112,vuzus-fazi89,True,ROI,,
|
272 |
+
-0.006226978572917177,2025-06-19 07:44:33.644120,112,vuzus-fazi89,True,ROI,,
|
273 |
+
-0.005372255079913176,2025-06-19 07:54:33.644120,112,vuzus-fazi89,True,ROI,,
|
274 |
+
-0.004080435831804076,2025-06-19 08:04:33.644120,112,vuzus-fazi89,True,ROI,,
|
275 |
+
-0.0028908239827943024,2025-06-19 08:14:33.644120,112,vuzus-fazi89,True,ROI,,
|
276 |
+
-0.0014614339107127763,2025-06-19 08:24:33.644120,112,vuzus-fazi89,True,ROI,,
|
277 |
+
-0.00020555860971187788,2025-06-19 08:34:33.644120,112,vuzus-fazi89,True,ROI,,
|
278 |
+
-0.005,2025-06-19 05:14:33.644120,115,yenot-zoncen49,True,ROI,,
|
279 |
+
-0.0049608412428397185,2025-06-19 05:24:33.644120,115,yenot-zoncen49,True,ROI,,
|
280 |
+
-0.004986326029005753,2025-06-19 05:34:33.644120,115,yenot-zoncen49,True,ROI,,
|
281 |
+
-0.0052281536959395015,2025-06-19 05:44:33.644120,115,yenot-zoncen49,True,ROI,,
|
282 |
+
-0.005137195753222943,2025-06-19 05:54:33.644120,115,yenot-zoncen49,True,ROI,,
|
283 |
+
-0.004521810884315199,2025-06-19 06:04:33.644120,115,yenot-zoncen49,True,ROI,,
|
284 |
+
-0.004330151312046032,2025-06-19 06:14:33.644120,115,yenot-zoncen49,True,ROI,,
|
285 |
+
-0.003404099300900742,2025-06-19 06:24:33.644120,115,yenot-zoncen49,True,ROI,,
|
286 |
+
-0.002344232378856351,2025-06-19 06:34:33.644120,115,yenot-zoncen49,True,ROI,,
|
287 |
+
-0.0016370783273809914,2025-06-19 06:44:33.644120,115,yenot-zoncen49,True,ROI,,
|
288 |
+
-0.0008832894751952807,2025-06-19 06:54:33.644120,115,yenot-zoncen49,True,ROI,,
|
289 |
+
-0.0002384211643926688,2025-06-19 07:04:33.644120,115,yenot-zoncen49,True,ROI,,
|
290 |
+
0.0,2025-06-19 07:14:33.644120,115,yenot-zoncen49,True,ROI,,
|
291 |
+
-0.0021021786499218725,2025-06-19 07:24:33.644120,115,yenot-zoncen49,True,ROI,,
|
292 |
+
-0.003922399702859158,2025-06-19 07:34:33.644120,115,yenot-zoncen49,True,ROI,,
|
293 |
+
-0.006084665519436278,2025-06-19 07:44:33.644120,115,yenot-zoncen49,True,ROI,,
|
294 |
+
-0.008357952129703616,2025-06-19 07:54:33.644120,115,yenot-zoncen49,True,ROI,,
|
295 |
+
-0.008841450272454948,2025-06-19 08:04:33.644120,115,yenot-zoncen49,True,ROI,,
|
296 |
+
-0.009057601370014308,2025-06-19 08:14:33.644120,115,yenot-zoncen49,True,ROI,,
|
297 |
+
-0.009019812630310806,2025-06-19 08:24:33.644120,115,yenot-zoncen49,True,ROI,,
|
298 |
+
-0.009471095439920434,2025-06-19 08:34:33.644120,115,yenot-zoncen49,True,ROI,,
|
299 |
+
-0.005,2025-06-19 05:14:33.644120,116,honji-hahi60,True,ROI,,
|
300 |
+
-0.004165960284062235,2025-06-19 05:24:33.644120,116,honji-hahi60,True,ROI,,
|
301 |
+
-0.0031347320073071686,2025-06-19 05:34:33.644120,116,honji-hahi60,True,ROI,,
|
302 |
+
-0.0017300860496598156,2025-06-19 05:44:33.644120,116,honji-hahi60,True,ROI,,
|
303 |
+
-0.000529874912105187,2025-06-19 05:54:33.644120,116,honji-hahi60,True,ROI,,
|
304 |
+
-0.00334408934746605,2025-06-19 06:04:33.644120,116,honji-hahi60,True,ROI,,
|
305 |
+
-0.005359531577372217,2025-06-19 06:14:33.644120,116,honji-hahi60,True,ROI,,
|
306 |
+
-0.007839162883335962,2025-06-19 06:24:33.644120,116,honji-hahi60,True,ROI,,
|
307 |
+
-0.01,2025-06-19 06:34:33.644120,116,honji-hahi60,True,ROI,,
|
308 |
+
-0.009187900815722438,2025-06-19 06:44:33.644120,116,honji-hahi60,True,ROI,,
|
309 |
+
-0.008891613972455224,2025-06-19 06:54:33.644120,116,honji-hahi60,True,ROI,,
|
310 |
+
-0.008006009481798875,2025-06-19 07:04:33.644120,116,honji-hahi60,True,ROI,,
|
311 |
+
-0.007167036967482374,2025-06-19 07:14:33.644120,116,honji-hahi60,True,ROI,,
|
312 |
+
-0.00579278898236833,2025-06-19 07:24:33.644120,116,honji-hahi60,True,ROI,,
|
313 |
+
-0.00440212691419378,2025-06-19 07:34:33.644120,116,honji-hahi60,True,ROI,,
|
314 |
+
-0.003497970454020964,2025-06-19 07:44:33.644120,116,honji-hahi60,True,ROI,,
|
315 |
+
-0.0019213953988852363,2025-06-19 07:54:33.644120,116,honji-hahi60,True,ROI,,
|
316 |
+
-0.0025304870444929476,2025-06-19 08:04:33.644120,116,honji-hahi60,True,ROI,,
|
317 |
+
-0.002903008176970688,2025-06-19 08:14:33.644120,116,honji-hahi60,True,ROI,,
|
318 |
+
-0.003809158670999421,2025-06-19 08:24:33.644120,116,honji-hahi60,True,ROI,,
|
319 |
+
-0.00416108114851564,2025-06-19 08:34:33.644120,116,honji-hahi60,True,ROI,,
|
320 |
+
-0.005,2025-06-19 05:14:33.644120,117,furye-himkon89,True,ROI,,
|
321 |
+
-0.005351470597853042,2025-06-19 05:24:33.644120,117,furye-himkon89,True,ROI,,
|
322 |
+
-0.006102331762798755,2025-06-19 05:34:33.644120,117,furye-himkon89,True,ROI,,
|
323 |
+
-0.006979118615393936,2025-06-19 05:44:33.644120,117,furye-himkon89,True,ROI,,
|
324 |
+
-0.007645939141961707,2025-06-19 05:54:33.644120,117,furye-himkon89,True,ROI,,
|
325 |
+
-0.006064678123505062,2025-06-19 06:04:33.644120,117,furye-himkon89,True,ROI,,
|
326 |
+
-0.0051295053483798,2025-06-19 06:14:33.644120,117,furye-himkon89,True,ROI,,
|
327 |
+
-0.003659336899326485,2025-06-19 06:24:33.644120,117,furye-himkon89,True,ROI,,
|
328 |
+
-0.001960874884355,2025-06-19 06:34:33.644120,117,furye-himkon89,True,ROI,,
|
329 |
+
-0.0038059893013759898,2025-06-19 06:44:33.644120,117,furye-himkon89,True,ROI,,
|
330 |
+
-0.006262768248519953,2025-06-19 06:54:33.644120,117,furye-himkon89,True,ROI,,
|
331 |
+
-0.008729858002468172,2025-06-19 07:04:33.644120,117,furye-himkon89,True,ROI,,
|
332 |
+
-0.01,2025-06-19 07:14:33.644120,117,furye-himkon89,True,ROI,,
|
333 |
+
-0.00903347575920722,2025-06-19 07:24:33.644120,117,furye-himkon89,True,ROI,,
|
334 |
+
-0.007515920698377679,2025-06-19 07:34:33.644120,117,furye-himkon89,True,ROI,,
|
335 |
+
-0.0059337247524513205,2025-06-19 07:44:33.644120,117,furye-himkon89,True,ROI,,
|
336 |
+
-0.004451939144213608,2025-06-19 07:54:33.644120,117,furye-himkon89,True,ROI,,
|
337 |
+
-0.0034950633163678907,2025-06-19 08:04:33.644120,117,furye-himkon89,True,ROI,,
|
338 |
+
-0.0028712140748446743,2025-06-19 08:14:33.644120,117,furye-himkon89,True,ROI,,
|
339 |
+
-0.001423086319372443,2025-06-19 08:24:33.644120,117,furye-himkon89,True,ROI,,
|
340 |
+
-0.0002961457815275233,2025-06-19 08:34:33.644120,117,furye-himkon89,True,ROI,,
|
341 |
+
-0.005,2025-06-19 05:14:33.644120,118,lonwus-patu86,True,ROI,,
|
342 |
+
-0.004240049873243754,2025-06-19 05:24:33.644120,118,lonwus-patu86,True,ROI,,
|
343 |
+
-0.0037681826762546483,2025-06-19 05:34:33.644120,118,lonwus-patu86,True,ROI,,
|
344 |
+
-0.0035025892191723465,2025-06-19 05:44:33.644120,118,lonwus-patu86,True,ROI,,
|
345 |
+
-0.003338867515756579,2025-06-19 05:54:33.644120,118,lonwus-patu86,True,ROI,,
|
346 |
+
-0.005034130500038965,2025-06-19 06:04:33.644120,118,lonwus-patu86,True,ROI,,
|
347 |
+
-0.006674478101977208,2025-06-19 06:14:33.644120,118,lonwus-patu86,True,ROI,,
|
348 |
+
-0.008500411718261222,2025-06-19 06:24:33.644120,118,lonwus-patu86,True,ROI,,
|
349 |
+
-0.01,2025-06-19 06:34:33.644120,118,lonwus-patu86,True,ROI,,
|
350 |
+
-0.0073256297562931064,2025-06-19 06:44:33.644120,118,lonwus-patu86,True,ROI,,
|
351 |
+
-0.005238618514091714,2025-06-19 06:54:33.644120,118,lonwus-patu86,True,ROI,,
|
352 |
+
-0.0028759161902022897,2025-06-19 07:04:33.644120,118,lonwus-patu86,True,ROI,,
|
353 |
+
-0.000474498512730754,2025-06-19 07:14:33.644120,118,lonwus-patu86,True,ROI,,
|
354 |
+
-0.001754975013187647,2025-06-19 07:24:33.644120,118,lonwus-patu86,True,ROI,,
|
355 |
+
-0.003981590048548383,2025-06-19 07:34:33.644120,118,lonwus-patu86,True,ROI,,
|
356 |
+
-0.006091478728904847,2025-06-19 07:44:33.644120,118,lonwus-patu86,True,ROI,,
|
357 |
+
-0.007834539343732662,2025-06-19 07:54:33.644120,118,lonwus-patu86,True,ROI,,
|
358 |
+
-0.007112822467312262,2025-06-19 08:04:33.644120,118,lonwus-patu86,True,ROI,,
|
359 |
+
-0.006819043744781282,2025-06-19 08:14:33.644120,118,lonwus-patu86,True,ROI,,
|
360 |
+
-0.006453181166725016,2025-06-19 08:24:33.644120,118,lonwus-patu86,True,ROI,,
|
361 |
+
-0.0060442646430445965,2025-06-19 08:34:33.644120,118,lonwus-patu86,True,ROI,,
|
362 |
+
-0.005,2025-06-19 05:14:33.644120,119,lonlim-zapgi60,True,ROI,,
|
363 |
+
-0.0062231252558415245,2025-06-19 05:24:33.644120,119,lonlim-zapgi60,True,ROI,,
|
364 |
+
-0.007841200892837654,2025-06-19 05:34:33.644120,119,lonlim-zapgi60,True,ROI,,
|
365 |
+
-0.008591929223703339,2025-06-19 05:44:33.644120,119,lonlim-zapgi60,True,ROI,,
|
366 |
+
-0.01,2025-06-19 05:54:33.644120,119,lonlim-zapgi60,True,ROI,,
|
367 |
+
-0.009082577622284068,2025-06-19 06:04:33.644120,119,lonlim-zapgi60,True,ROI,,
|
368 |
+
-0.008289272703811383,2025-06-19 06:14:33.644120,119,lonlim-zapgi60,True,ROI,,
|
369 |
+
-0.0076270090596880545,2025-06-19 06:24:33.644120,119,lonlim-zapgi60,True,ROI,,
|
370 |
+
-0.007107448576925022,2025-06-19 06:34:33.644120,119,lonlim-zapgi60,True,ROI,,
|
371 |
+
-0.006267906104962813,2025-06-19 06:44:33.644120,119,lonlim-zapgi60,True,ROI,,
|
372 |
+
-0.004651437104126373,2025-06-19 06:54:33.644120,119,lonlim-zapgi60,True,ROI,,
|
373 |
+
-0.0034485412793710934,2025-06-19 07:04:33.644120,119,lonlim-zapgi60,True,ROI,,
|
374 |
+
-0.0024983477725698264,2025-06-19 07:14:33.644120,119,lonlim-zapgi60,True,ROI,,
|
375 |
+
-0.0026611855091962055,2025-06-19 07:24:33.644120,119,lonlim-zapgi60,True,ROI,,
|
376 |
+
-0.0033883344079898943,2025-06-19 07:34:33.644120,119,lonlim-zapgi60,True,ROI,,
|
377 |
+
-0.0035357174070224547,2025-06-19 07:44:33.644120,119,lonlim-zapgi60,True,ROI,,
|
378 |
+
-0.004341832946636605,2025-06-19 07:54:33.644120,119,lonlim-zapgi60,True,ROI,,
|
379 |
+
-0.00354193915716237,2025-06-19 08:04:33.644120,119,lonlim-zapgi60,True,ROI,,
|
380 |
+
-0.0025846589223516023,2025-06-19 08:14:33.644120,119,lonlim-zapgi60,True,ROI,,
|
381 |
+
-0.0018494173767270676,2025-06-19 08:24:33.644120,119,lonlim-zapgi60,True,ROI,,
|
382 |
+
-0.0009745412264850176,2025-06-19 08:34:33.644120,119,lonlim-zapgi60,True,ROI,,
|
383 |
+
-0.005,2025-06-19 05:14:33.644120,120,joyus-goson39,True,ROI,,
|
384 |
+
-0.005138974336720259,2025-06-19 05:24:33.644120,120,joyus-goson39,True,ROI,,
|
385 |
+
-0.005367767678851202,2025-06-19 05:34:33.644120,120,joyus-goson39,True,ROI,,
|
386 |
+
-0.005588303938021908,2025-06-19 05:44:33.644120,120,joyus-goson39,True,ROI,,
|
387 |
+
-0.00585306076606004,2025-06-19 05:54:33.644120,120,joyus-goson39,True,ROI,,
|
388 |
+
-0.005291618225908399,2025-06-19 06:04:33.644120,120,joyus-goson39,True,ROI,,
|
389 |
+
-0.0052585655457877715,2025-06-19 06:14:33.644120,120,joyus-goson39,True,ROI,,
|
390 |
+
-0.004852276192828366,2025-06-19 06:24:33.644120,120,joyus-goson39,True,ROI,,
|
391 |
+
-0.0048829195989520836,2025-06-19 06:34:33.644120,120,joyus-goson39,True,ROI,,
|
392 |
+
-0.0033909186967383724,2025-06-19 06:44:33.644120,120,joyus-goson39,True,ROI,,
|
393 |
+
-0.0024379380203506753,2025-06-19 06:54:33.644120,120,joyus-goson39,True,ROI,,
|
394 |
+
-0.0016556681398507348,2025-06-19 07:04:33.644120,120,joyus-goson39,True,ROI,,
|
395 |
+
-0.00014863721696538844,2025-06-19 07:14:33.644120,120,joyus-goson39,True,ROI,,
|
396 |
+
-0.0024511367714489854,2025-06-19 07:24:33.644120,120,joyus-goson39,True,ROI,,
|
397 |
+
-0.0045941616927386705,2025-06-19 07:34:33.644120,120,joyus-goson39,True,ROI,,
|
398 |
+
-0.006625311425474133,2025-06-19 07:44:33.644120,120,joyus-goson39,True,ROI,,
|
399 |
+
-0.008738891992592732,2025-06-19 07:54:33.644120,120,joyus-goson39,True,ROI,,
|
400 |
+
-0.007604722900568419,2025-06-19 08:04:33.644120,120,joyus-goson39,True,ROI,,
|
401 |
+
-0.0060863335824103415,2025-06-19 08:14:33.644120,120,joyus-goson39,True,ROI,,
|
402 |
+
-0.004184697262434121,2025-06-19 08:24:33.644120,120,joyus-goson39,True,ROI,,
|
403 |
+
-0.0029920400019357502,2025-06-19 08:34:33.644120,120,joyus-goson39,True,ROI,,
|
404 |
+
-0.005,2025-06-19 05:14:33.644120,121,cilwar-rimlu27,True,ROI,,
|
405 |
+
-0.0036767292628148603,2025-06-19 05:24:33.644120,121,cilwar-rimlu27,True,ROI,,
|
406 |
+
-0.002302820927709398,2025-06-19 05:34:33.644120,121,cilwar-rimlu27,True,ROI,,
|
407 |
+
-0.0010599644478543366,2025-06-19 05:44:33.644120,121,cilwar-rimlu27,True,ROI,,
|
408 |
+
-0.0001595233633081884,2025-06-19 05:54:33.644120,121,cilwar-rimlu27,True,ROI,,
|
409 |
+
-0.0014737378607626857,2025-06-19 06:04:33.644120,121,cilwar-rimlu27,True,ROI,,
|
410 |
+
-0.0029903340118401867,2025-06-19 06:14:33.644120,121,cilwar-rimlu27,True,ROI,,
|
411 |
+
-0.004397204264197974,2025-06-19 06:24:33.644120,121,cilwar-rimlu27,True,ROI,,
|
412 |
+
-0.005309872497270676,2025-06-19 06:34:33.644120,121,cilwar-rimlu27,True,ROI,,
|
413 |
+
-0.005706780104893823,2025-06-19 06:44:33.644120,121,cilwar-rimlu27,True,ROI,,
|
414 |
+
-0.006218598487468691,2025-06-19 06:54:33.644120,121,cilwar-rimlu27,True,ROI,,
|
415 |
+
-0.007096511456972166,2025-06-19 07:04:33.644120,121,cilwar-rimlu27,True,ROI,,
|
416 |
+
-0.008106062421661873,2025-06-19 07:14:33.644120,121,cilwar-rimlu27,True,ROI,,
|
417 |
+
-0.008777805822729964,2025-06-19 07:24:33.644120,121,cilwar-rimlu27,True,ROI,,
|
418 |
+
-0.009734417956192006,2025-06-19 07:34:33.644120,121,cilwar-rimlu27,True,ROI,,
|
419 |
+
-0.01,2025-06-19 07:44:33.644120,121,cilwar-rimlu27,True,ROI,,
|
420 |
+
-0.01,2025-06-19 07:54:33.644120,121,cilwar-rimlu27,True,ROI,,
|
421 |
+
-0.008327289995156322,2025-06-19 08:04:33.644120,121,cilwar-rimlu27,True,ROI,,
|
422 |
+
-0.006796696239897957,2025-06-19 08:14:33.644120,121,cilwar-rimlu27,True,ROI,,
|
423 |
+
-0.0051538535432274326,2025-06-19 08:24:33.644120,121,cilwar-rimlu27,True,ROI,,
|
424 |
+
-0.0034313541588998674,2025-06-19 08:34:33.644120,121,cilwar-rimlu27,True,ROI,,
|
425 |
+
-0.005,2025-06-19 05:14:33.644120,122,tevi-kulo15,True,ROI,,
|
426 |
+
-0.0054697685661032934,2025-06-19 05:24:33.644120,122,tevi-kulo15,True,ROI,,
|
427 |
+
-0.005982572184406904,2025-06-19 05:34:33.644120,122,tevi-kulo15,True,ROI,,
|
428 |
+
-0.006266023964958674,2025-06-19 05:44:33.644120,122,tevi-kulo15,True,ROI,,
|
429 |
+
-0.006442949562191431,2025-06-19 05:54:33.644120,122,tevi-kulo15,True,ROI,,
|
430 |
+
-0.0057316451121817704,2025-06-19 06:04:33.644120,122,tevi-kulo15,True,ROI,,
|
431 |
+
-0.004798066685209904,2025-06-19 06:14:33.644120,122,tevi-kulo15,True,ROI,,
|
432 |
+
-0.003415000205002149,2025-06-19 06:24:33.644120,122,tevi-kulo15,True,ROI,,
|
433 |
+
-0.0020678600316220083,2025-06-19 06:34:33.644120,122,tevi-kulo15,True,ROI,,
|
434 |
+
-0.003806068516290147,2025-06-19 06:44:33.644120,122,tevi-kulo15,True,ROI,,
|
435 |
+
-0.006225605210783833,2025-06-19 06:54:33.644120,122,tevi-kulo15,True,ROI,,
|
436 |
+
-0.007922678968281376,2025-06-19 07:04:33.644120,122,tevi-kulo15,True,ROI,,
|
437 |
+
-0.01,2025-06-19 07:14:33.644120,122,tevi-kulo15,True,ROI,,
|
438 |
+
-0.007098649213885517,2025-06-19 07:24:33.644120,122,tevi-kulo15,True,ROI,,
|
439 |
+
-0.004893144335901179,2025-06-19 07:34:33.644120,122,tevi-kulo15,True,ROI,,
|
440 |
+
-0.002186123512814118,2025-06-19 07:44:33.644120,122,tevi-kulo15,True,ROI,,
|
441 |
+
0.0,2025-06-19 07:54:33.644120,122,tevi-kulo15,True,ROI,,
|
442 |
+
-0.0009494506729489558,2025-06-19 08:04:33.644120,122,tevi-kulo15,True,ROI,,
|
443 |
+
-0.0021363404137569627,2025-06-19 08:14:33.644120,122,tevi-kulo15,True,ROI,,
|
444 |
+
-0.003468419763757891,2025-06-19 08:24:33.644120,122,tevi-kulo15,True,ROI,,
|
445 |
+
-0.004363679282504923,2025-06-19 08:34:33.644120,122,tevi-kulo15,True,ROI,,
|
446 |
+
-0.005,2025-06-19 05:14:33.644120,123,cordron-yelku44,True,ROI,,
|
447 |
+
-0.004768036446349755,2025-06-19 05:24:33.644120,123,cordron-yelku44,True,ROI,,
|
448 |
+
-0.00408228733529529,2025-06-19 05:34:33.644120,123,cordron-yelku44,True,ROI,,
|
449 |
+
-0.0036334996845471257,2025-06-19 05:44:33.644120,123,cordron-yelku44,True,ROI,,
|
450 |
+
-0.0027905162389512844,2025-06-19 05:54:33.644120,123,cordron-yelku44,True,ROI,,
|
451 |
+
-0.0029932663999667525,2025-06-19 06:04:33.644120,123,cordron-yelku44,True,ROI,,
|
452 |
+
-0.003132137624790265,2025-06-19 06:14:33.644120,123,cordron-yelku44,True,ROI,,
|
453 |
+
-0.003397082395858629,2025-06-19 06:24:33.644120,123,cordron-yelku44,True,ROI,,
|
454 |
+
-0.0037409384401717025,2025-06-19 06:34:33.644120,123,cordron-yelku44,True,ROI,,
|
455 |
+
-0.005124424263748481,2025-06-19 06:44:33.644120,123,cordron-yelku44,True,ROI,,
|
456 |
+
-0.006172046183578975,2025-06-19 06:54:33.644120,123,cordron-yelku44,True,ROI,,
|
457 |
+
-0.007045205963182447,2025-06-19 07:04:33.644120,123,cordron-yelku44,True,ROI,,
|
458 |
+
-0.008479602029422691,2025-06-19 07:14:33.644120,123,cordron-yelku44,True,ROI,,
|
459 |
+
-0.006790049927074208,2025-06-19 07:24:33.644120,123,cordron-yelku44,True,ROI,,
|
460 |
+
-0.005066012878738705,2025-06-19 07:34:33.644120,123,cordron-yelku44,True,ROI,,
|
461 |
+
-0.002672542886392666,2025-06-19 07:44:33.644120,123,cordron-yelku44,True,ROI,,
|
462 |
+
-0.000720098560695158,2025-06-19 07:54:33.644120,123,cordron-yelku44,True,ROI,,
|
463 |
+
-0.003010819266572844,2025-06-19 08:04:33.644120,123,cordron-yelku44,True,ROI,,
|
464 |
+
-0.00486914114573832,2025-06-19 08:14:33.644120,123,cordron-yelku44,True,ROI,,
|
465 |
+
-0.006867126394071306,2025-06-19 08:24:33.644120,123,cordron-yelku44,True,ROI,,
|
466 |
+
-0.00921215828485608,2025-06-19 08:34:33.644120,123,cordron-yelku44,True,ROI,,
|
467 |
+
-0.005,2025-06-19 05:14:33.644120,126,tonvel-beeprel23,True,ROI,,
|
468 |
+
-0.005938085472260223,2025-06-19 05:24:33.644120,126,tonvel-beeprel23,True,ROI,,
|
469 |
+
-0.007440724038857306,2025-06-19 05:34:33.644120,126,tonvel-beeprel23,True,ROI,,
|
470 |
+
-0.008742926285959504,2025-06-19 05:44:33.644120,126,tonvel-beeprel23,True,ROI,,
|
471 |
+
-0.01,2025-06-19 05:54:33.644120,126,tonvel-beeprel23,True,ROI,,
|
472 |
+
-0.009175482584554136,2025-06-19 06:04:33.644120,126,tonvel-beeprel23,True,ROI,,
|
473 |
+
-0.009020991874067907,2025-06-19 06:14:33.644120,126,tonvel-beeprel23,True,ROI,,
|
474 |
+
-0.008258480990872568,2025-06-19 06:24:33.644120,126,tonvel-beeprel23,True,ROI,,
|
475 |
+
-0.00745229726672535,2025-06-19 06:34:33.644120,126,tonvel-beeprel23,True,ROI,,
|
476 |
+
-0.005429268539572224,2025-06-19 06:44:33.644120,126,tonvel-beeprel23,True,ROI,,
|
477 |
+
-0.003685663309938452,2025-06-19 06:54:33.644120,126,tonvel-beeprel23,True,ROI,,
|
478 |
+
-0.0021232599549228944,2025-06-19 07:04:33.644120,126,tonvel-beeprel23,True,ROI,,
|
479 |
+
-0.00019698037931099117,2025-06-19 07:14:33.644120,126,tonvel-beeprel23,True,ROI,,
|
480 |
+
-0.0015746108935453598,2025-06-19 07:24:33.644120,126,tonvel-beeprel23,True,ROI,,
|
481 |
+
-0.0027701316730300157,2025-06-19 07:34:33.644120,126,tonvel-beeprel23,True,ROI,,
|
482 |
+
-0.003698439921952539,2025-06-19 07:44:33.644120,126,tonvel-beeprel23,True,ROI,,
|
483 |
+
-0.00481604987860715,2025-06-19 07:54:33.644120,126,tonvel-beeprel23,True,ROI,,
|
484 |
+
-0.003791637936558564,2025-06-19 08:04:33.644120,126,tonvel-beeprel23,True,ROI,,
|
485 |
+
-0.0036020190948282526,2025-06-19 08:14:33.644120,126,tonvel-beeprel23,True,ROI,,
|
486 |
+
-0.0034306236549185515,2025-06-19 08:24:33.644120,126,tonvel-beeprel23,True,ROI,,
|
487 |
+
-0.0027726912314450926,2025-06-19 08:34:33.644120,126,tonvel-beeprel23,True,ROI,,
|
488 |
+
-0.005,2025-06-19 05:14:33.644120,127,lunel-luwus85,True,ROI,,
|
489 |
+
-0.0056512256589912385,2025-06-19 05:24:33.644120,127,lunel-luwus85,True,ROI,,
|
490 |
+
-0.006319033212430234,2025-06-19 05:34:33.644120,127,lunel-luwus85,True,ROI,,
|
491 |
+
-0.007431125700065047,2025-06-19 05:44:33.644120,127,lunel-luwus85,True,ROI,,
|
492 |
+
-0.0075630777590654135,2025-06-19 05:54:33.644120,127,lunel-luwus85,True,ROI,,
|
493 |
+
-0.008393700300114252,2025-06-19 06:04:33.644120,127,lunel-luwus85,True,ROI,,
|
494 |
+
-0.009454429817515079,2025-06-19 06:14:33.644120,127,lunel-luwus85,True,ROI,,
|
495 |
+
-0.009649895318845567,2025-06-19 06:24:33.644120,127,lunel-luwus85,True,ROI,,
|
496 |
+
-0.01,2025-06-19 06:34:33.644120,127,lunel-luwus85,True,ROI,,
|
497 |
+
-0.007697553322250104,2025-06-19 06:44:33.644120,127,lunel-luwus85,True,ROI,,
|
498 |
+
-0.0050745932866829825,2025-06-19 06:54:33.644120,127,lunel-luwus85,True,ROI,,
|
499 |
+
-0.0023811717292887558,2025-06-19 07:04:33.644120,127,lunel-luwus85,True,ROI,,
|
500 |
+
-0.00019108926007310137,2025-06-19 07:14:33.644120,127,lunel-luwus85,True,ROI,,
|
501 |
+
-0.0012595667559338612,2025-06-19 07:24:33.644120,127,lunel-luwus85,True,ROI,,
|
502 |
+
-0.0022814921278655515,2025-06-19 07:34:33.644120,127,lunel-luwus85,True,ROI,,
|
503 |
+
-0.0032837621064217095,2025-06-19 07:44:33.644120,127,lunel-luwus85,True,ROI,,
|
504 |
+
-0.00337496855834149,2025-06-19 07:54:33.644120,127,lunel-luwus85,True,ROI,,
|
505 |
+
-0.0035377370830911095,2025-06-19 08:04:33.644120,127,lunel-luwus85,True,ROI,,
|
506 |
+
-0.0035627814946257693,2025-06-19 08:14:33.644120,127,lunel-luwus85,True,ROI,,
|
507 |
+
-0.0038411599133095155,2025-06-19 08:24:33.644120,127,lunel-luwus85,True,ROI,,
|
508 |
+
-0.004573259759277484,2025-06-19 08:34:33.644120,127,lunel-luwus85,True,ROI,,
|
509 |
+
-0.005,2025-06-19 05:14:33.644120,128,kozu-hanfil63,True,ROI,,
|
510 |
+
-0.0034061641766642086,2025-06-19 05:24:33.644120,128,kozu-hanfil63,True,ROI,,
|
511 |
+
-0.0019673825505966344,2025-06-19 05:34:33.644120,128,kozu-hanfil63,True,ROI,,
|
512 |
+
-0.0009060894562026848,2025-06-19 05:44:33.644120,128,kozu-hanfil63,True,ROI,,
|
513 |
+
0.0,2025-06-19 05:54:33.644120,128,kozu-hanfil63,True,ROI,,
|
514 |
+
-0.0009537424288245019,2025-06-19 06:04:33.644120,128,kozu-hanfil63,True,ROI,,
|
515 |
+
-0.0021538630470869045,2025-06-19 06:14:33.644120,128,kozu-hanfil63,True,ROI,,
|
516 |
+
-0.0032825164830891356,2025-06-19 06:24:33.644120,128,kozu-hanfil63,True,ROI,,
|
517 |
+
-0.004337383851791094,2025-06-19 06:34:33.644120,128,kozu-hanfil63,True,ROI,,
|
518 |
+
-0.0051356785843300525,2025-06-19 06:44:33.644120,128,kozu-hanfil63,True,ROI,,
|
519 |
+
-0.005545605707954677,2025-06-19 06:54:33.644120,128,kozu-hanfil63,True,ROI,,
|
520 |
+
-0.0060567972375979665,2025-06-19 07:04:33.644120,128,kozu-hanfil63,True,ROI,,
|
521 |
+
-0.007038494544529242,2025-06-19 07:14:33.644120,128,kozu-hanfil63,True,ROI,,
|
522 |
+
-0.006100944510255351,2025-06-19 07:24:33.644120,128,kozu-hanfil63,True,ROI,,
|
523 |
+
-0.004503546821186614,2025-06-19 07:34:33.644120,128,kozu-hanfil63,True,ROI,,
|
524 |
+
-0.0031671107955795136,2025-06-19 07:44:33.644120,128,kozu-hanfil63,True,ROI,,
|
525 |
+
-0.0019084302539151528,2025-06-19 07:54:33.644120,128,kozu-hanfil63,True,ROI,,
|
526 |
+
-0.003434442936249057,2025-06-19 08:04:33.644120,128,kozu-hanfil63,True,ROI,,
|
527 |
+
-0.005101988893674178,2025-06-19 08:14:33.644120,128,kozu-hanfil63,True,ROI,,
|
528 |
+
-0.006745210254115063,2025-06-19 08:24:33.644120,128,kozu-hanfil63,True,ROI,,
|
529 |
+
-0.008462073252353028,2025-06-19 08:34:33.644120,128,kozu-hanfil63,True,ROI,,
|
530 |
+
-0.005,2025-06-19 05:14:33.644120,130,jusrot-kihi68,True,ROI,,
|
531 |
+
-0.003980294473549733,2025-06-19 05:24:33.644120,130,jusrot-kihi68,True,ROI,,
|
532 |
+
-0.002594515491017162,2025-06-19 05:34:33.644120,130,jusrot-kihi68,True,ROI,,
|
533 |
+
-0.000947913537839462,2025-06-19 05:44:33.644120,130,jusrot-kihi68,True,ROI,,
|
534 |
+
0.0,2025-06-19 05:54:33.644120,130,jusrot-kihi68,True,ROI,,
|
535 |
+
-0.001696472168924585,2025-06-19 06:04:33.644120,130,jusrot-kihi68,True,ROI,,
|
536 |
+
-0.002800054892911917,2025-06-19 06:14:33.644120,130,jusrot-kihi68,True,ROI,,
|
537 |
+
-0.004052033221552972,2025-06-19 06:24:33.644120,130,jusrot-kihi68,True,ROI,,
|
538 |
+
-0.005291467586724538,2025-06-19 06:34:33.644120,130,jusrot-kihi68,True,ROI,,
|
539 |
+
-0.004584068210925628,2025-06-19 06:44:33.644120,130,jusrot-kihi68,True,ROI,,
|
540 |
+
-0.003868887688632605,2025-06-19 06:54:33.644120,130,jusrot-kihi68,True,ROI,,
|
541 |
+
-0.002998079289843068,2025-06-19 07:04:33.644120,130,jusrot-kihi68,True,ROI,,
|
542 |
+
-0.0022913569609979883,2025-06-19 07:14:33.644120,130,jusrot-kihi68,True,ROI,,
|
543 |
+
-0.003391597715197945,2025-06-19 07:24:33.644120,130,jusrot-kihi68,True,ROI,,
|
544 |
+
-0.004270941903343566,2025-06-19 07:34:33.644120,130,jusrot-kihi68,True,ROI,,
|
545 |
+
-0.005553122300380945,2025-06-19 07:44:33.644120,130,jusrot-kihi68,True,ROI,,
|
546 |
+
-0.006641950632890416,2025-06-19 07:54:33.644120,130,jusrot-kihi68,True,ROI,,
|
547 |
+
-0.00711046043035269,2025-06-19 08:04:33.644120,130,jusrot-kihi68,True,ROI,,
|
548 |
+
-0.008178559671158929,2025-06-19 08:14:33.644120,130,jusrot-kihi68,True,ROI,,
|
549 |
+
-0.008675775751847154,2025-06-19 08:24:33.644120,130,jusrot-kihi68,True,ROI,,
|
550 |
+
-0.009601985486485928,2025-06-19 08:34:33.644120,130,jusrot-kihi68,True,ROI,,
|
551 |
+
-0.005,2025-06-19 05:14:33.644120,133,ronwus-yusrus90,True,ROI,,
|
552 |
+
-0.005305495569673062,2025-06-19 05:24:33.644120,133,ronwus-yusrus90,True,ROI,,
|
553 |
+
-0.004990535144467662,2025-06-19 05:34:33.644120,133,ronwus-yusrus90,True,ROI,,
|
554 |
+
-0.005408090932612141,2025-06-19 05:44:33.644120,133,ronwus-yusrus90,True,ROI,,
|
555 |
+
-0.005323774435547388,2025-06-19 05:54:33.644120,133,ronwus-yusrus90,True,ROI,,
|
556 |
+
-0.003696280329011289,2025-06-19 06:04:33.644120,133,ronwus-yusrus90,True,ROI,,
|
557 |
+
-0.0022112153966516754,2025-06-19 06:14:33.644120,133,ronwus-yusrus90,True,ROI,,
|
558 |
+
-0.0006687318489831643,2025-06-19 06:24:33.644120,133,ronwus-yusrus90,True,ROI,,
|
559 |
+
0.0,2025-06-19 06:34:33.644120,133,ronwus-yusrus90,True,ROI,,
|
560 |
+
-0.0017247156493928773,2025-06-19 06:44:33.644120,133,ronwus-yusrus90,True,ROI,,
|
561 |
+
-0.003359092145408672,2025-06-19 06:54:33.644120,133,ronwus-yusrus90,True,ROI,,
|
562 |
+
-0.004795642473520785,2025-06-19 07:04:33.644120,133,ronwus-yusrus90,True,ROI,,
|
563 |
+
-0.006979269873190255,2025-06-19 07:14:33.644120,133,ronwus-yusrus90,True,ROI,,
|
564 |
+
-0.006090232909625298,2025-06-19 07:24:33.644120,133,ronwus-yusrus90,True,ROI,,
|
565 |
+
-0.005389987037566528,2025-06-19 07:34:33.644120,133,ronwus-yusrus90,True,ROI,,
|
566 |
+
-0.0042929022396559074,2025-06-19 07:44:33.644120,133,ronwus-yusrus90,True,ROI,,
|
567 |
+
-0.002801873737833143,2025-06-19 07:54:33.644120,133,ronwus-yusrus90,True,ROI,,
|
568 |
+
-0.004718083674833418,2025-06-19 08:04:33.644120,133,ronwus-yusrus90,True,ROI,,
|
569 |
+
-0.006289543675417411,2025-06-19 08:14:33.644120,133,ronwus-yusrus90,True,ROI,,
|
570 |
+
-0.008132460580354722,2025-06-19 08:24:33.644120,133,ronwus-yusrus90,True,ROI,,
|
571 |
+
-0.009583404679995224,2025-06-19 08:34:33.644120,133,ronwus-yusrus90,True,ROI,,
|
572 |
+
-0.005,2025-06-19 05:14:33.644120,137,yilo-fevo87,True,ROI,,
|
573 |
+
-0.00476296769109259,2025-06-19 05:24:33.644120,137,yilo-fevo87,True,ROI,,
|
574 |
+
-0.004427821403855747,2025-06-19 05:34:33.644120,137,yilo-fevo87,True,ROI,,
|
575 |
+
-0.003778103916154672,2025-06-19 05:44:33.644120,137,yilo-fevo87,True,ROI,,
|
576 |
+
-0.003608450232014593,2025-06-19 05:54:33.644120,137,yilo-fevo87,True,ROI,,
|
577 |
+
-0.004965502260103371,2025-06-19 06:04:33.644120,137,yilo-fevo87,True,ROI,,
|
578 |
+
-0.006599815375695581,2025-06-19 06:14:33.644120,137,yilo-fevo87,True,ROI,,
|
579 |
+
-0.008610861116456717,2025-06-19 06:24:33.644120,137,yilo-fevo87,True,ROI,,
|
580 |
+
-0.01,2025-06-19 06:34:33.644120,137,yilo-fevo87,True,ROI,,
|
581 |
+
-0.009030743733193895,2025-06-19 06:44:33.644120,137,yilo-fevo87,True,ROI,,
|
582 |
+
-0.007560577105020682,2025-06-19 06:54:33.644120,137,yilo-fevo87,True,ROI,,
|
583 |
+
-0.0065697615117003595,2025-06-19 07:04:33.644120,137,yilo-fevo87,True,ROI,,
|
584 |
+
-0.004849362565216205,2025-06-19 07:14:33.644120,137,yilo-fevo87,True,ROI,,
|
585 |
+
-0.0037106177500085824,2025-06-19 07:24:33.644120,137,yilo-fevo87,True,ROI,,
|
586 |
+
-0.0027330658935332654,2025-06-19 07:34:33.644120,137,yilo-fevo87,True,ROI,,
|
587 |
+
-0.0011102917057851424,2025-06-19 07:44:33.644120,137,yilo-fevo87,True,ROI,,
|
588 |
+
0.0,2025-06-19 07:54:33.644120,137,yilo-fevo87,True,ROI,,
|
589 |
+
-0.001415057419077768,2025-06-19 08:04:33.644120,137,yilo-fevo87,True,ROI,,
|
590 |
+
-0.003444488466284675,2025-06-19 08:14:33.644120,137,yilo-fevo87,True,ROI,,
|
591 |
+
-0.005189907480876878,2025-06-19 08:24:33.644120,137,yilo-fevo87,True,ROI,,
|
592 |
+
-0.006860918761631741,2025-06-19 08:34:33.644120,137,yilo-fevo87,True,ROI,,
|