gauravlochab
commited on
Commit
·
ae827bb
1
Parent(s):
75be6c1
chore:update values
Browse files- app.py +6 -6
- debug_graph_data.csv +18 -0
- debug_roi_data.csv +0 -0
- optimus_apr_values.csv +19 -1
- optimus_roi_values.csv +755 -529
app.py
CHANGED
@@ -1173,7 +1173,7 @@ def create_combined_roi_time_series_graph(df):
|
|
1173 |
|
1174 |
# IMPORTANT: Filter data by hardcoded date range (June 6 to July 8, 2025)
|
1175 |
min_date = datetime(2025, 6, 6)
|
1176 |
-
max_date = datetime(2025, 7,
|
1177 |
logger.info(f"Filtering ROI data to date range: {min_date} to {max_date}")
|
1178 |
|
1179 |
# Count data points before filtering
|
@@ -1367,7 +1367,7 @@ def create_combined_roi_time_series_graph(df):
|
|
1367 |
|
1368 |
# Update x-axis with better formatting and hardcoded date range (June 6 to July 8)
|
1369 |
min_date = datetime(2025, 6, 6) # Hardcoded start date: June 6, 2025
|
1370 |
-
max_date = datetime(2025, 7,
|
1371 |
logger.info(f"ROI Graph - Hardcoded date range: min_date = {min_date}, max_date = {max_date}")
|
1372 |
fig.update_xaxes(
|
1373 |
showgrid=True,
|
@@ -1776,9 +1776,9 @@ def create_combined_time_series_graph(df):
|
|
1776 |
logger.info(f"Unique agents after APR filter: {apr_data['agent_id'].nunique()}")
|
1777 |
logger.info(f"Agent IDs after APR filter: {sorted(apr_data['agent_id'].unique().tolist())}")
|
1778 |
|
1779 |
-
# Filter APR outliers (±
|
1780 |
before_outlier_filter = len(apr_data)
|
1781 |
-
apr_data = apr_data[(apr_data['apr'] <=
|
1782 |
after_outlier_filter = len(apr_data)
|
1783 |
excluded_by_outlier = before_outlier_filter - after_outlier_filter
|
1784 |
|
@@ -1786,7 +1786,7 @@ def create_combined_time_series_graph(df):
|
|
1786 |
|
1787 |
# IMPORTANT: Filter data by hardcoded date range (June 6 to July 8, 2025)
|
1788 |
min_date = datetime(2025, 6, 6)
|
1789 |
-
max_date = datetime(2025, 7,
|
1790 |
logger.info(f"Filtering APR data to date range: {min_date} to {max_date}")
|
1791 |
|
1792 |
# Count data points before filtering
|
@@ -2133,7 +2133,7 @@ def create_combined_time_series_graph(df):
|
|
2133 |
|
2134 |
# Update x-axis with better formatting and hardcoded date range (June 6 to July 8)
|
2135 |
min_date = datetime(2025, 6, 6) # Hardcoded start date: June 6, 2025
|
2136 |
-
max_date = datetime(2025, 7,
|
2137 |
logger.info(f"APR Graph - Hardcoded date range: min_date = {min_date}, max_date = {max_date}")
|
2138 |
fig.update_xaxes(
|
2139 |
showgrid=True,
|
|
|
1173 |
|
1174 |
# IMPORTANT: Filter data by hardcoded date range (June 6 to July 8, 2025)
|
1175 |
min_date = datetime(2025, 6, 6)
|
1176 |
+
max_date = datetime(2025, 7, 9, 23, 59, 59) # Include all of July 8th
|
1177 |
logger.info(f"Filtering ROI data to date range: {min_date} to {max_date}")
|
1178 |
|
1179 |
# Count data points before filtering
|
|
|
1367 |
|
1368 |
# Update x-axis with better formatting and hardcoded date range (June 6 to July 8)
|
1369 |
min_date = datetime(2025, 6, 6) # Hardcoded start date: June 6, 2025
|
1370 |
+
max_date = datetime(2025, 7, 9) # Hardcoded end date: July 8, 2025
|
1371 |
logger.info(f"ROI Graph - Hardcoded date range: min_date = {min_date}, max_date = {max_date}")
|
1372 |
fig.update_xaxes(
|
1373 |
showgrid=True,
|
|
|
1776 |
logger.info(f"Unique agents after APR filter: {apr_data['agent_id'].nunique()}")
|
1777 |
logger.info(f"Agent IDs after APR filter: {sorted(apr_data['agent_id'].unique().tolist())}")
|
1778 |
|
1779 |
+
# Filter APR outliers (±500% range)
|
1780 |
before_outlier_filter = len(apr_data)
|
1781 |
+
apr_data = apr_data[(apr_data['apr'] <= 500) & (apr_data['apr'] >= -500)]
|
1782 |
after_outlier_filter = len(apr_data)
|
1783 |
excluded_by_outlier = before_outlier_filter - after_outlier_filter
|
1784 |
|
|
|
1786 |
|
1787 |
# IMPORTANT: Filter data by hardcoded date range (June 6 to July 8, 2025)
|
1788 |
min_date = datetime(2025, 6, 6)
|
1789 |
+
max_date = datetime(2025, 7, 9, 23, 59, 59) # Include all of July 8th
|
1790 |
logger.info(f"Filtering APR data to date range: {min_date} to {max_date}")
|
1791 |
|
1792 |
# Count data points before filtering
|
|
|
2133 |
|
2134 |
# Update x-axis with better formatting and hardcoded date range (June 6 to July 8)
|
2135 |
min_date = datetime(2025, 6, 6) # Hardcoded start date: June 6, 2025
|
2136 |
+
max_date = datetime(2025, 7, 9) # Hardcoded end date: July 8, 2025
|
2137 |
logger.info(f"APR Graph - Hardcoded date range: min_date = {min_date}, max_date = {max_date}")
|
2138 |
fig.update_xaxes(
|
2139 |
showgrid=True,
|
debug_graph_data.csv
CHANGED
@@ -379,3 +379,21 @@
|
|
379 |
377,-3.62,-1.07,2025-07-08 21:47:31,"{'portfolio': {'portfolio_value': 29.75548043486413, 'value_in_pools': 3.0403111059061274, 'value_in_safe': 26.715169328958, 'initial_investment': 30.87536749850655, 'volume': 3.0417491735476907, 'roi': -3.63, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 28.032838645372003, 'price': 0.999813, 'value_usd': 28.02759650454532, 'ratio': 0.941931}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 1.7315131819481715, 'price': 0.997904, 'value_usd': 1.727883930318808, 'ratio': 0.058069}], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1751990088}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907884736104978, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 1352538, 'amount1': 1691492194309012144, 'enter_timestamp': 1751406473, 'status': 'open', 'enter_tx_hash': '0xfc37df1a45d0276566ec626b7abde12d674b10bf07b0eb1ebd8fbc64b7e14c2e', 'current_liquidity': 1521956066056}]}","{'initial_value': 30.87536749850655, 'final_value': 29.756661555593578, 'f_i_ratio': -0.036271214057503554, 'first_investment_timestamp': 1751406473, 'time_ratio': 53.909753780727755}",-3.62,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,3.041749174,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
380 |
378,539.01,537.62,2025-07-08 21:59:35,"{'portfolio': {'portfolio_value': 30.588488152927663, 'value_in_pools': 28.036751870994866, 'value_in_safe': 2.5517362819327993, 'initial_investment': 30.2963222595072, 'volume': 40.814503767337364, 'roi': 0.96, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 12.10508229581217, 'price': 0.999904, 'value_usd': 12.103920207911774, 'ratio': 0.395702}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 18.524432523807125, 'price': 0.997848, 'value_usd': 18.484567945015893, 'ratio': 0.604298}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 7.15e-16, 'price': 1.002, 'value_usd': 7.1643e-16, 'ratio': 0.0}], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1751992020}, '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': 'closed', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}], 'il_risk_score': -4.072206051841395e-13, 'sharpe_ratio': 2.099770154866077, 'depth_score': 1036.9652330166891, 'max_position_size': 10000000.0, 'last_metrics_update': 1751350277.886024, 'exit_tx_hash': '0x9ae93371c59d1b4fb2eb1c9f005236635140a4b1a5a9979b78b3fbb9b7443b88', 'exit_timestamp': 1751351170}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2908064024200456, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 12467455, 'amount1': 15603398850121910555, 'enter_timestamp': 1751351305, 'status': 'open', 'enter_tx_hash': '0xd81627b62b3cf4bef9c4e5d243fdb4f7a0393e596c940a3d79d847bfe94d4b2c', 'current_liquidity': 14034876077371}]}","{'initial_value': 30.2963222595072, 'final_value': 43.36761896693886, 'f_i_ratio': 0.009643609244642803, 'first_investment_timestamp': 1749535827, 'time_ratio': 12.83857231539205}",43.14,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,40.81450377,balanced,
|
381 |
379,466.29,465.6,2025-07-08 22:52:37,"{'portfolio': {'portfolio_value': 35.409517803737295, 'value_in_pools': 32.201910924357904, 'value_in_safe': 3.2076068793793917, 'initial_investment': 35.31977903399317, 'volume': 45.04515215024694, 'roi': 0.25, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 13.902874202908865, 'price': 0.999805, 'value_usd': 13.900163142439297, 'ratio': 0.392554}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 21.551466226302054, 'price': 0.998046, 'value_usd': 21.50935466129586, 'ratio': 0.607446}, {'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 8.4e-16, 'price': 2542.79, 'value_usd': 2.1359436e-12, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.146e-15, 'price': 1.002, 'value_usd': 1.148292e-15, 'ratio': 0.0}], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1751994860}, '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': 'closed', '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}], 'il_risk_score': -8.510250350090276e-12, 'sharpe_ratio': 1.0343385680307111, 'depth_score': 1162.849768076878, 'max_position_size': 10000000.0, 'last_metrics_update': 1751159186.298078, 'exit_tx_hash': '0xbfb170fda9e5614f008a6cd6cd589fb7b47c8d831a5d4a0b3e8e870c0451bc40', 'exit_timestamp': 1751159352}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907413138010941, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 13649004, 'amount1': 18593021233907056326, 'enter_timestamp': 1751159541, 'status': 'open', 'enter_tx_hash': '0x48c5280931b620ff55cb117c35ca44b6780ff8dcb0fdfca2ff04a0aea368af09', 'current_liquidity': 16118778992940}]}","{'initial_value': 35.31977903399317, 'final_value': 49.275624809858726, 'f_i_ratio': 0.0025407511654520487, 'first_investment_timestamp': 1749344469, 'time_ratio': 11.896390284530234}",39.51,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,45.04515215,balanced,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
377,-3.62,-1.07,2025-07-08 21:47:31,"{'portfolio': {'portfolio_value': 29.75548043486413, 'value_in_pools': 3.0403111059061274, 'value_in_safe': 26.715169328958, 'initial_investment': 30.87536749850655, 'volume': 3.0417491735476907, 'roi': -3.63, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 28.032838645372003, 'price': 0.999813, 'value_usd': 28.02759650454532, 'ratio': 0.941931}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 1.7315131819481715, 'price': 0.997904, 'value_usd': 1.727883930318808, 'ratio': 0.058069}], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1751990088}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907884736104978, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 1352538, 'amount1': 1691492194309012144, 'enter_timestamp': 1751406473, 'status': 'open', 'enter_tx_hash': '0xfc37df1a45d0276566ec626b7abde12d674b10bf07b0eb1ebd8fbc64b7e14c2e', 'current_liquidity': 1521956066056}]}","{'initial_value': 30.87536749850655, 'final_value': 29.756661555593578, 'f_i_ratio': -0.036271214057503554, 'first_investment_timestamp': 1751406473, 'time_ratio': 53.909753780727755}",-3.62,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,3.041749174,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
380 |
378,539.01,537.62,2025-07-08 21:59:35,"{'portfolio': {'portfolio_value': 30.588488152927663, 'value_in_pools': 28.036751870994866, 'value_in_safe': 2.5517362819327993, 'initial_investment': 30.2963222595072, 'volume': 40.814503767337364, 'roi': 0.96, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 12.10508229581217, 'price': 0.999904, 'value_usd': 12.103920207911774, 'ratio': 0.395702}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 18.524432523807125, 'price': 0.997848, 'value_usd': 18.484567945015893, 'ratio': 0.604298}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 7.15e-16, 'price': 1.002, 'value_usd': 7.1643e-16, 'ratio': 0.0}], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1751992020}, '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': 'closed', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}], 'il_risk_score': -4.072206051841395e-13, 'sharpe_ratio': 2.099770154866077, 'depth_score': 1036.9652330166891, 'max_position_size': 10000000.0, 'last_metrics_update': 1751350277.886024, 'exit_tx_hash': '0x9ae93371c59d1b4fb2eb1c9f005236635140a4b1a5a9979b78b3fbb9b7443b88', 'exit_timestamp': 1751351170}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2908064024200456, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 12467455, 'amount1': 15603398850121910555, 'enter_timestamp': 1751351305, 'status': 'open', 'enter_tx_hash': '0xd81627b62b3cf4bef9c4e5d243fdb4f7a0393e596c940a3d79d847bfe94d4b2c', 'current_liquidity': 14034876077371}]}","{'initial_value': 30.2963222595072, 'final_value': 43.36761896693886, 'f_i_ratio': 0.009643609244642803, 'first_investment_timestamp': 1749535827, 'time_ratio': 12.83857231539205}",43.14,127,False,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,40.81450377,balanced,
|
381 |
379,466.29,465.6,2025-07-08 22:52:37,"{'portfolio': {'portfolio_value': 35.409517803737295, 'value_in_pools': 32.201910924357904, 'value_in_safe': 3.2076068793793917, 'initial_investment': 35.31977903399317, 'volume': 45.04515215024694, 'roi': 0.25, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 13.902874202908865, 'price': 0.999805, 'value_usd': 13.900163142439297, 'ratio': 0.392554}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 21.551466226302054, 'price': 0.998046, 'value_usd': 21.50935466129586, 'ratio': 0.607446}, {'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 8.4e-16, 'price': 2542.79, 'value_usd': 2.1359436e-12, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.146e-15, 'price': 1.002, 'value_usd': 1.148292e-15, 'ratio': 0.0}], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1751994860}, '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': 'closed', '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}], 'il_risk_score': -8.510250350090276e-12, 'sharpe_ratio': 1.0343385680307111, 'depth_score': 1162.849768076878, 'max_position_size': 10000000.0, 'last_metrics_update': 1751159186.298078, 'exit_tx_hash': '0xbfb170fda9e5614f008a6cd6cd589fb7b47c8d831a5d4a0b3e8e870c0451bc40', 'exit_timestamp': 1751159352}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907413138010941, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 13649004, 'amount1': 18593021233907056326, 'enter_timestamp': 1751159541, 'status': 'open', 'enter_tx_hash': '0x48c5280931b620ff55cb117c35ca44b6780ff8dcb0fdfca2ff04a0aea368af09', 'current_liquidity': 16118778992940}]}","{'initial_value': 35.31977903399317, 'final_value': 49.275624809858726, 'f_i_ratio': 0.0025407511654520487, 'first_investment_timestamp': 1749344469, 'time_ratio': 11.896390284530234}",39.51,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,45.04515215,balanced,
|
382 |
+
380,0.17,-3.74,2025-07-09 00:03:57,"{'portfolio': {'portfolio_value': 15.99808, 'value_in_pools': 0.0, 'value_in_safe': 15.99808, 'initial_investment': 15.99794701348985, 'volume': None, 'roi': 0.0, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.99988, 'value_usd': 15.99808, 'ratio': 0.0}], 'address': '0x9E29a5601e56b90079E2BcC029A26fB3fCE60dB9', 'last_updated': 1751999502}, 'positons': []}","{'initial_value': 15.99794701348985, 'final_value': 15.998162153080475, 'f_i_ratio': 8.312723503767216e-06, 'first_investment_timestamp': 1751999636, 'time_ratio': 8760.0}",0.0,182,False,0x9E29a5601e56b90079E2BcC029A26fB3fCE60dB9,zapzi-milan20,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,,balanced,
|
383 |
+
381,606.61,598.69,2025-07-09 00:47:28,"{'portfolio': {'portfolio_value': 19.933460269567334, 'value_in_pools': 7.933336569447331, 'value_in_safe': 12.000123700120001, 'initial_investment': 19.998439303187823, 'volume': 7.9224283973100755, 'roi': -0.32, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'assets': ['USDC', 'DAI'], 'apr': 15.95, 'details': 'Velodrome CL Pool', 'ratio': 100.0, 'address': '0x426117ee442328F6CF12e8805037bA14bB1F80CF', 'tick_ranges': [{'current_tick': 276324, 'tick_lower': 4, 'tick_upper': 5, 'token_id': 2935722, 'in_range': False}]}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 12.00196, 'price': 0.999847, 'value_usd': 12.00012370012, 'ratio': 0.602009}, {'asset': 'DAI', 'address': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'balance': 7.933336569447332, 'price': 1.0, 'value_usd': 7.933336569447332, 'ratio': 0.397991}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.011e-15, 'price': 1.002, 'value_usd': 1.013022e-15, 'ratio': 0.0}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 7.38e-16, 'price': 0.998106, 'value_usd': 7.36602228e-16, 'ratio': 0.0}], 'address': '0x426117ee442328F6CF12e8805037bA14bB1F80CF', 'last_updated': 1752002188}, 'positons': [{'chain': 'optimism', 'pool_address': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'token0_symbol': 'USDC', 'token1_symbol': 'DAI', 'apr': 15.949108383139437, 'pool_id': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0xa42b8db45406dcd988e8c8bbfb6b26e2e3161b4111f3361af437572c2cb53ef5', 'enter_timestamp': 1750996703, 'amount0': 0, 'amount1': 7933336569447330816, 'positions': [{'token_id': 2935722, 'liquidity': 158638968577964312250704, 'amount0': 0, 'amount1': 7933336569447330816, 'current_liquidity': 158638968577964312250704}]}]}","{'initial_value': 15.996993189049627, 'final_value': 19.923009786984185, 'f_i_ratio': -0.003249205232236818, 'first_investment_timestamp': 1750996703, 'time_ratio': 31.362089652789187}",24.54,163,False,0x426117ee442328F6CF12e8805037bA14bB1F80CF,limwire-waryel10,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,7.922428397,balanced,
|
384 |
+
382,487.52,479.51,2025-07-09 01:45:17,"{'portfolio': {'portfolio_value': 30.267741611074033, 'value_in_pools': 26.003880553874033, 'value_in_safe': 4.2638610572000015, 'initial_investment': 29.800138839731247, 'volume': 38.43442790626105, 'roi': 1.57, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'assets': ['USDC', 'LUSD'], 'apr': 1.14, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 15.561231527295266, 'price': 0.9998, 'value_usd': 15.558119280989809, 'ratio': 0.514017}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 14.694927402681543, 'price': 1.001, 'value_usd': 14.709622330084224, 'ratio': 0.485983}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 2.33e-16, 'price': 0.998365, 'value_usd': 2.32619045e-16, 'ratio': 0.0}, {'asset': 'DAI', 'address': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'balance': 1.271e-15, 'price': 0.999872, 'value_usd': 1.270837312e-15, 'ratio': 0.0}], 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7', 'last_updated': 1752005449}, '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': 'closed', 'enter_tx_hash': '0x26c993dbb424b604d3c6c21bcf357a002c904e42501e4368f12306824f9c6fd3', 'enter_timestamp': 1749400565, 'amount0': 106, 'amount1': 12417370, 'positions': [{'token_id': 2707603, 'liquidity': 124219155242, 'amount0': 0, 'amount1': 12416948, 'current_liquidity': 124219155242}, {'token_id': 2707604, 'liquidity': 1469411, 'amount0': 83, 'amount1': 358, 'current_liquidity': 1469411}, {'token_id': 2707605, 'liquidity': 215979, 'amount0': 23, 'amount1': 64, 'current_liquidity': 215979}], 'il_risk_score': -1.0552407618906685e-12, 'sharpe_ratio': 1.0385174148872256, 'depth_score': 1162.8369357745007, 'max_position_size': 10000000.0, 'last_metrics_update': 1751215700.845947, 'exit_tx_hash': '0x7e9719a3a8a6f46cf0b16d5999c58f1557c7e83597e658e0b43647aa8d86ecdd', 'exit_timestamp': 1751215852}, {'chain': 'optimism', 'pool_address': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'token0_symbol': 'USDC', 'token1_symbol': 'LUSD', 'apr': 1.1446416140740159, 'pool_id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'is_stable': True, 'is_cl_pool': False, 'amount0': 11744875, 'amount1': 14245225773667532800, 'enter_timestamp': 1751215979, 'status': 'open', 'enter_tx_hash': '0xf6d302da247c211f2a537364f6cad0306f8e2593754f60839e2ecc31f556bfcc', 'current_liquidity': 12993460261438}]}","{'initial_value': 29.800138839731247, 'final_value': 42.69865203804308, 'f_i_ratio': 0.015691295059315324, 'first_investment_timestamp': 1749400565, 'time_ratio': 12.105243388509816}",43.28,120,False,0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7,joyus-goson39,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,38.43442791,balanced,
|
385 |
+
383,121.28,118.06,2025-07-09 02:01:56,"{'portfolio': {'portfolio_value': 15.906455665585275, 'value_in_pools': 7.881481137470186, 'value_in_safe': 8.02497452811509, 'initial_investment': 15.995250741464774, 'volume': 7.878480281688953, 'roi': -0.56, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'uniswapV3', 'id': '0xbf16ef186e715668aa29cef57e2fd7f9d48adfe6', 'assets': ['USDC', 'DAI'], 'apr': 19247.9, 'details': 'Uniswap V3 Pool - USDC/DAI', 'ratio': 100.0, 'address': '0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC', 'tick_ranges': [{'current_tick': 276323, 'tick_lower': -887272, 'tick_upper': 887272, 'token_id': 1001067, 'in_range': True}]}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'balance': 4.000454, 'price': 0.999832, 'value_usd': 3.999781923728, 'ratio': 0.251457}, {'asset': 'DAI', 'address': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'balance': 3.9413280427183985, 'price': 0.999825, 'value_usd': 3.9406383103109226, 'ratio': 0.247738}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 4.0, 'price': 0.999805, 'value_usd': 3.99922, 'ratio': 0.251421}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 3.974581764313822, 'price': 0.998046, 'value_usd': 3.966815431546353, 'ratio': 0.249384}], 'address': '0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC', 'last_updated': 1752006610}, 'positons': [{'chain': 'optimism', 'pool_address': '0xbf16ef186e715668aa29cef57e2fd7f9d48adfe6', 'dex_type': 'UniswapV3', 'token0': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token1': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'token0_symbol': 'USDC', 'token1_symbol': 'DAI', 'apr': 19247.901618557305, 'token_id': 1001067, 'liquidity': 3941416687950, 'amount0': 3941263, 'amount1': 3941570591844665730, 'enter_timestamp': 1750389069, 'status': 'open', 'enter_tx_hash': '0xc8c56ddbeb310f891a8d4a2ee752dd924d6eb64fcc8fbc704dab2f25b8556659', 'current_liquidity': 3941416687950}]}","{'initial_value': 15.995250741464774, 'final_value': 17.24028852410958, 'f_i_ratio': -0.005551340039285146, 'first_investment_timestamp': 1750389069, 'time_ratio': 19.494983644968972}",7.78,133,False,0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC,ronwus-yusrus90,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,7.878480282,balanced,
|
386 |
+
384,46.6,39.68,2025-07-09 03:12:03,"{'portfolio': {'portfolio_value': 7.999573963766, 'value_in_pools': 0.0, 'value_in_safe': 7.999573963766, 'initial_investment': 15.99878633590859, 'volume': 7.999030861656209, 'roi': -50.0, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 7.996529, 'price': 0.999901, 'value_usd': 7.995737343629, 'ratio': 0.0}, {'asset': 'USDC.e', 'address': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'balance': 0.003837, 'price': 0.999901, 'value_usd': 0.003836620137, 'ratio': 0.0}], 'address': '0x36bbD5a49ce07a54A646bB2225Ab1866068D6E44', 'last_updated': 1752010896}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 3.7295019660254782, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x042ccab1d683dfbe61473b6719ac49ce77ff026381996453b78c313504141894', 'enter_timestamp': 1750849213, 'amount0': 3471, 'amount1': 7996286, 'positions': [{'token_id': 2917623, 'liquidity': 159999129718, 'amount0': 3471, 'amount1': 7996286, 'current_liquidity': 159999129718}]}]}","{'initial_value': 15.99878633590859, 'final_value': 16.278236796987883, 'f_i_ratio': -0.499988699404573, 'first_investment_timestamp': 1750849213, 'time_ratio': 27.146188339493598}",1.75,168,False,0x36bbD5a49ce07a54A646bB2225Ab1866068D6E44,vijim-pitar56,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,7.999030862,balanced,
|
387 |
+
385,109.56,109.35,2025-07-09 04:08:50,"{'portfolio': {'portfolio_value': 32.118959298628, 'value_in_pools': 1.764499514272, 'value_in_safe': 30.354459784356003, 'initial_investment': 30.87536749850655, 'volume': 1.7640958781348952, 'roi': 4.03, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'assets': ['USDC', 'USDC.e'], 'apr': 3.75, 'details': 'Velodrome CL Pool', 'ratio': 100.0, 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'tick_ranges': [{'current_tick': 0, 'tick_lower': -2, 'tick_upper': -1, 'token_id': 2870529, 'in_range': False}]}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 30.359044, 'price': 0.999849, 'value_usd': 30.354459784356, 'ratio': 0.945064}, {'asset': 'USDC.e', 'address': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'balance': 1.764796, 'price': 0.999832, 'value_usd': 1.764499514272, 'ratio': 0.054936}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 9.57e-16, 'price': 0.998031, 'value_usd': 9.55115667e-16, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 3.25e-16, 'price': 1.002, 'value_usd': 3.2565e-16, 'ratio': 0.0}], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1752009110}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 3.7506969868253504, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x8cddac900b19baa1a2611eacb0c1e0584347185df658088f1ceec8b54f044070', 'enter_timestamp': 1750529241, 'amount0': 0, 'amount1': 1764796, 'positions': [{'token_id': 2870529, 'liquidity': 35300332056, 'amount0': 0, 'amount1': 1764796, 'current_liquidity': 35300332056}]}]}","{'initial_value': 30.87536749850655, 'final_value': 33.971676495601756, 'f_i_ratio': 0.04027779750902094, 'first_investment_timestamp': 1750529241, 'time_ratio': 21.235093114860227}",10.03,115,False,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,1.764095878,risky,"[""velodrome_pools_search""]"
|
388 |
+
386,-0.13,-5.26,2025-07-09 07:58:21,"{'portfolio': {'portfolio_value': 8.006602611296, 'value_in_pools': 0.0, 'value_in_safe': 8.006602611296, 'initial_investment': 15.998438834626413, 'volume': 7.974219759612968, 'roi': -49.95, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed448a0A400647f395B65C93fA6b35aD7514D4A', 'last_updated': 1752028070}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 12.031244025291919, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0xfcf112d6202c93bf9aa61feb570e2d10cd2a7c7edd98cf58c2cb883f754fa9cd', 'enter_timestamp': 1751393061, 'amount0': 3585454, 'amount1': 4408640, 'positions': [{'token_id': 2979427, 'liquidity': 12268362832, 'amount0': 3575249, 'amount1': 4397363, 'current_liquidity': 12268362832}, {'token_id': 2979428, 'liquidity': 12609475, 'amount0': 6826, 'amount1': 7670, 'current_liquidity': 12609475}, {'token_id': 2979429, 'liquidity': 3409565, 'amount0': 3379, 'amount1': 3607, 'current_liquidity': 3409565}]}]}","{'initial_value': 15.998438834626413, 'final_value': 15.977903626623487, 'f_i_ratio': -0.4995385053467334, 'first_investment_timestamp': 1751393061, 'time_ratio': 49.65986640816468}",-0.13,175,False,0x8Ed448a0A400647f395B65C93fA6b35aD7514D4A,bomtar-dronsus81,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,7.97421976,balanced,
|
389 |
+
387,0.05,-8.16,2025-07-09 07:59:36,"{'portfolio': {'portfolio_value': 15.998288, 'value_in_pools': 0.0, 'value_in_safe': 15.998288, 'initial_investment': 15.997852354196928, 'volume': None, 'roi': 0.0, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999893, 'value_usd': 15.998288, 'ratio': 0.0}], 'address': '0xca82D0c809EA1De7E911d1c99a55f054d96Dfda4', 'last_updated': 1752027924}, 'positons': []}","{'initial_value': 15.997852354196928, 'final_value': 15.998162153080475, 'f_i_ratio': 2.7231517920389692e-05, 'first_investment_timestamp': 1752028175, 'time_ratio': 8760.0}",0.21,169,False,0xca82D0c809EA1De7E911d1c99a55f054d96Dfda4,tartim-wacor68,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,,balanced,
|
390 |
+
388,5.73,0.6,2025-07-09 08:28:02,"{'portfolio': {'portfolio_value': 16.013005801063237, 'value_in_pools': 14.429778975173235, 'value_in_safe': 1.58322682589, 'initial_investment': 15.998438834626413, 'volume': 14.435246798122249, 'roi': 0.09, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x703a3510e62827D11D8085f9C179bD441F6A8201'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 7.814990477759385, 'price': 0.99989, 'value_usd': 7.814130828806832, 'ratio': 0.487987}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 8.215206803381527, 'price': 0.998012, 'value_usd': 8.198874972256403, 'ratio': 0.512013}], 'address': '0x703a3510e62827D11D8085f9C179bD441F6A8201', 'last_updated': 1752029718}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.290803353524491, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 6416599, 'amount1': 8029475374880830280, 'enter_timestamp': 1751361313, 'status': 'open', 'enter_tx_hash': '0xe170f4362d7a381ad9e4b5380458597c0435cdda02bd62b69dd4daa66ac0215c', 'current_liquidity': 7222753993923}]}","{'initial_value': 15.998438834626413, 'final_value': 16.01846592008161, 'f_i_ratio': 0.0009105242447342565, 'first_investment_timestamp': 1751361313, 'time_ratio': 47.16937504929912}",0.13,173,False,0x703a3510e62827D11D8085f9C179bD441F6A8201,gemek-janyar44,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,14.4352468,balanced,
|
391 |
+
389,602.92,605.5,2025-07-09 10:57:19,"{'portfolio': {'portfolio_value': 31.122884776171553, 'value_in_pools': 23.009360795837427, 'value_in_safe': 8.113523980334127, 'initial_investment': 31.300792273386968, 'volume': 36.386196845930286, 'roi': -0.57, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 9.93341465540657, 'price': 0.9999, 'value_usd': 9.932421313941031, 'ratio': 0.319136}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 21.217622018414094, 'price': 0.99872, 'value_usd': 21.190463462230525, 'ratio': 0.680864}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 5.5e-17, 'price': 1.002, 'value_usd': 5.511e-17, 'ratio': 0.0}], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1752038538}, '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': 'closed', '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}], 'il_risk_score': -1.320331011027709e-13, 'sharpe_ratio': 2.0984011819085073, 'depth_score': 1036.9660197802891, 'max_position_size': 10000000.0, 'last_metrics_update': 1751379293.366578, 'exit_tx_hash': '0x2dabf7332f203d752ba079314a54663399d1dc284508657dbb991ca7d981bed8', 'exit_timestamp': 1751379479}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907977374361679, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 10228958, 'amount1': 12797004098504352968, 'enter_timestamp': 1751379693, 'status': 'open', 'enter_tx_hash': '0x234165a1b02b4169989364a973fc0d2b8972d671d2baf82ae03d8a40f7ca36a3', 'current_liquidity': 11512532194272}]}","{'initial_value': 31.300792273386968, 'final_value': 46.455408507251484, 'f_i_ratio': -0.005683801728133209, 'first_investment_timestamp': 1749527585, 'time_ratio': 12.557868247394552}",48.42,128,False,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,36.38619685,balanced,
|
392 |
+
390,1.45,-2.55,2025-07-09 14:47:15,"{'portfolio': {'portfolio_value': 26.04198770404306, 'value_in_pools': 14.29148449729306, 'value_in_safe': 11.75050320675, 'initial_investment': 25.995490149688813, 'volume': 14.266134688755134, 'roi': 0.18, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'assets': ['USDC', 'LUSD'], 'apr': 1.14, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xf0495218037002b0419ECeDC3c6C40fd1d470c78'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 17.81722478722769, 'price': 0.999862, 'value_usd': 17.814766010207055, 'ratio': 0.684079}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 8.210800093648709, 'price': 1.002, 'value_usd': 8.227221693836006, 'ratio': 0.315921}], 'address': '0xf0495218037002b0419ECeDC3c6C40fd1d470c78', 'last_updated': 1752052584}, 'positons': [{'chain': 'optimism', 'pool_address': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'token0_symbol': 'USDC', 'token1_symbol': 'LUSD', 'apr': 1.1446225294759833, 'pool_id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'is_stable': True, 'is_cl_pool': False, 'amount0': 6247875, 'amount1': 8027063857463409155, 'enter_timestamp': 1751024609, 'status': 'open', 'enter_tx_hash': '0x5c4e83588a181783275df5e84a80ed94569d5cefecfeb39ec7e5f1a1755bbcc1', 'current_liquidity': 7136318018645}]}","{'initial_value': 25.995490149688813, 'final_value': 26.016909775834563, 'f_i_ratio': 0.001788677731656696, 'first_investment_timestamp': 1751024609, 'time_ratio': 30.67626676774303}",0.08,170,False,0xf0495218037002b0419ECeDC3c6C40fd1d470c78,delsus-simgi16,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,14.26613469,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
393 |
+
391,515.15,507.13,2025-07-09 17:30:59,"{'portfolio': {'portfolio_value': 30.385455902769582, 'value_in_pools': 25.885949981375582, 'value_in_safe': 4.499505921394001, 'initial_investment': 29.80013783995427, 'volume': 38.522323961988846, 'roi': 1.96, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 15.676067347353118, 'price': 0.999802, 'value_usd': 15.672963486018343, 'ratio': 0.515805}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 14.726305691489857, 'price': 0.999062, 'value_usd': 14.712492416751237, 'ratio': 0.484195}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.12e-16, 'price': 1.001, 'value_usd': 1.12112e-16, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1752062113}, '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': 'closed', '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}], 'il_risk_score': -1.3374288663162364e-12, 'sharpe_ratio': 2.099060530658376, 'depth_score': 1036.9656401955142, 'max_position_size': 10000000.0, 'last_metrics_update': 1751460817.525093, 'exit_tx_hash': '0x06b3d7b27426d43a2a58304adafadb24d323f9a80e9c79b3825677761f1ecf30', 'exit_timestamp': 1751460989}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907734943932818, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 11501285, 'amount1': 14399419880058378240, 'enter_timestamp': 1751462535, 'status': 'open', 'enter_tx_hash': '0x45402ae487dfd33aebd516efa9fad6bffae2477426e7680310fe9cdff84bb24e', 'current_liquidity': 12949840650454}]}","{'initial_value': 29.80013783995427, 'final_value': 43.825523791548015, 'f_i_ratio': 0.019641454880472198, 'first_investment_timestamp': 1749634247, 'time_ratio': 12.987335283009873}",47.06,118,False,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,38.52232396,balanced,
|
394 |
+
392,5.89,-2.87,2025-07-09 17:32:31,"{'portfolio': {'portfolio_value': 16.022967643717365, 'value_in_pools': 14.438650801149366, 'value_in_safe': 1.5843168425680003, 'initial_investment': 15.997400456371341, 'volume': 14.432298728949466, 'roi': 0.16, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xf17be80d0525A748B4c15A02c86ea765E8DC88F8'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 7.817655827198193, 'price': 0.999868, 'value_usd': 7.816623896629002, 'ratio': 0.487839}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 8.213464821088248, 'price': 0.999133, 'value_usd': 8.206343747088365, 'ratio': 0.512161}], 'address': '0xf17be80d0525A748B4c15A02c86ea765E8DC88F8', 'last_updated': 1752062395}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907830544540684, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 6415474, 'amount1': 8030409812007760896, 'enter_timestamp': 1751439909, 'status': 'open', 'enter_tx_hash': '0x8c245a5ed81e5222bab07abaa19fe8ecc001408cbdcd94913370d81c9eac6664', 'current_liquidity': 7222657389400}]}","{'initial_value': 15.997400456371341, 'final_value': 16.016642721685216, 'f_i_ratio': 0.0015982088724821875, 'first_investment_timestamp': 1751439909, 'time_ratio': 50.64868476898709}",0.12,176,False,0xf17be80d0525A748B4c15A02c86ea765E8DC88F8,bleepro-nusgen10,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,14.43229873,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
395 |
+
393,32.08,31.3,2025-07-09 20:00:26,"{'portfolio': {'portfolio_value': 42.5270068898313, 'value_in_pools': 0.0, 'value_in_safe': 42.5270068898313, 'initial_investment': 42.198358020106554, 'volume': None, 'roi': 0.78, 'agent_hash': 'bafybeigg6vq45m4cekqf7bnvmutwg3mp64n3eql7zkrmu7tht67gfggddi', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005299999999999998, 'price': 2664.21, 'value_usd': 14.120312999999994, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999883, 'value_usd': 15.998128, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.219e-15, 'price': 1.001, 'value_usd': 1.220219e-15, 'ratio': 0.0}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 12.421422061665126, 'price': 0.998965, 'value_usd': 12.408565889831303, 'ratio': 0.0}], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1752071240}, 'positons': []}","{'initial_value': 41.93048680235006, 'final_value': 43.225273285522626, 'f_i_ratio': 0.0078, 'first_investment_timestamp': 1752071426, 'time_ratio': 524550.8982, 'volatility_warning': 'VERY_HIGH', 'actual_hours': 7.374836338890924e-05, 'calculation_hours': 0.0167}",3.09,111,False,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeigg6vq45m4cekqf7bnvmutwg3mp64n3eql7zkrmu7tht67gfggddi,,balanced,
|
396 |
+
394,443.31,443.1,2025-07-09 20:13:30,"{'portfolio': {'portfolio_value': 38.85954081772087, 'value_in_pools': 22.45227616696852, 'value_in_safe': 16.40726465075235, 'initial_investment': 58.98421769456271, 'volume': 34.90118930413967, 'roi': -34.12, 'agent_hash': 'bafybeigg6vq45m4cekqf7bnvmutwg3mp64n3eql7zkrmu7tht67gfggddi', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 23.98605827023495, 'price': 0.999848, 'value_usd': 23.982412389377878, 'ratio': 0.617156}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 12.75475478196299, 'price': 0.998112, 'value_usd': 12.730673804934645, 'ratio': 0.327607}, {'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.000813078712307748, 'price': 2639.91, 'value_usd': 2.146454623408347, 'ratio': 0.055236}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 3.78e-16, 'price': 1.001, 'value_usd': 3.78378e-16, 'ratio': 0.0}, {'asset': 'DAI', 'address': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'balance': 1.144e-15, 'price': 0.999973, 'value_usd': 1.143969112e-15, 'ratio': 0.0}], 'address': '0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8', 'last_updated': 1752072017}, 'positons': [{'chain': 'optimism', 'pool_address': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'token0_symbol': 'USDC', 'token1_symbol': 'DAI', 'apr': 11.121338729226888, 'pool_id': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'is_stable': True, 'is_cl_pool': True, 'status': 'closed', 'enter_tx_hash': '0x9db82fa44b992728def677916d2e79349093bfccdc807aed02ebad90800228fe', 'enter_timestamp': 1749330545, 'amount0': 0, 'amount1': 12455895225259535800, 'positions': [{'token_id': 2699987, 'liquidity': 81848206191141876940265, 'amount0': 0, 'amount1': 12278765608114610176, 'current_liquidity': 81848206191141876940265}, {'token_id': 2699988, 'liquidity': 351500569673764363465, 'amount0': 0, 'amount1': 140621319309723600, 'current_liquidity': 351500569673764363465}, {'token_id': 2699989, 'liquidity': 52146887921420055688, 'amount0': 0, 'amount1': 36508297835202024, 'current_liquidity': 52146887921420055688}], 'il_risk_score': -3.1720249291186144e-14, 'sharpe_ratio': 0.7661173944917309, 'depth_score': 2559.4915038606355, 'max_position_size': 10000000.0, 'last_metrics_update': 1751443185.247813, 'exit_tx_hash': '0x3eea6bfd23aa398f9e5dcc1f6ae7a67d2b92ca3fafe1fc4da7e8b51f35e69b4e', 'exit_timestamp': 1751443391}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907830856589768, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 9982326, 'amount1': 12494527044754624424, 'enter_timestamp': 1751443505, 'status': 'open', 'enter_tx_hash': '0xb9602167f62ca755168126461c07e4145bd0943cc09f010f524bd2e655c80a61', 'current_liquidity': 11237984181842}]}","{'initial_value': 37.051258102124294, 'final_value': 52.57943971146538, 'f_i_ratio': -0.3412, 'first_investment_timestamp': 1749330545, 'time_ratio': 11.5025, 'volatility_warning': 'LOW', 'actual_hours': 761.5736413908005, 'calculation_hours': 761.5736413908005}",41.91,112,False,0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8,vuzus-fazi89,APR,,bafybeigg6vq45m4cekqf7bnvmutwg3mp64n3eql7zkrmu7tht67gfggddi,34.9011893,risky,"[""balancerPool"", ""uniswapV3"", ""velodrome""]"
|
397 |
+
395,46.39,38.44,2025-07-09 20:24:00,"{'portfolio': {'portfolio_value': 16.004250055862435, 'value_in_pools': 14.862615144340435, 'value_in_safe': 1.141634911522, 'initial_investment': 15.996881554740378, 'volume': 14.87478829532423, 'roi': 0.05, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'assets': ['USDC', 'LUSD'], 'apr': 1.14, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x07Aa2653a1119c7b4e328Be1102E6C3Dd0Bb0C81'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 7.466820127757848, 'price': 0.999802, 'value_usd': 7.465341697372551, 'ratio': 0.46646}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 8.538908358489882, 'price': 1.0, 'value_usd': 8.538908358489882, 'ratio': 0.53354}], 'address': '0x07Aa2653a1119c7b4e328Be1102E6C3Dd0Bb0C81', 'last_updated': 1752072664}, 'positons': [{'chain': 'optimism', 'pool_address': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'token0_symbol': 'USDC', 'token1_symbol': 'LUSD', 'apr': 1.1446326242114686, 'pool_id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'is_stable': True, 'is_cl_pool': False, 'amount0': 6858139, 'amount1': 8004030135896497008, 'enter_timestamp': 1751378625, 'status': 'open', 'enter_tx_hash': '0x1f7df731525a478a6126b0ad0007d4c4c8e7320651d8acb4f181900c698689fc', 'current_liquidity': 7430268322107}]}","{'initial_value': 15.996881554740378, 'final_value': 16.23502611832391, 'f_i_ratio': 0.0004606210964832602, 'first_investment_timestamp': 1751378625, 'time_ratio': 45.42682901560153}",1.49,171,False,0x07Aa2653a1119c7b4e328Be1102E6C3Dd0Bb0C81,helve-welfur78,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,14.8747883,balanced,
|
398 |
+
396,-3.62,-3.82,2025-07-09 21:48:59,"{'portfolio': {'portfolio_value': 29.756808041389355, 'value_in_pools': 3.0407035066213552, 'value_in_safe': 26.716104534768, 'initial_investment': 30.87536749850655, 'volume': 3.0417491735476907, 'roi': -3.62, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 28.03695918626768, 'price': 0.999848, 'value_usd': 28.032697568471367, 'ratio': 0.94206}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 1.727371750783469, 'price': 0.998112, 'value_usd': 1.72411047291799, 'ratio': 0.05794}], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1752072062}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907884736104978, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 1352538, 'amount1': 1691492194309012144, 'enter_timestamp': 1751406473, 'status': 'open', 'enter_tx_hash': '0xfc37df1a45d0276566ec626b7abde12d674b10bf07b0eb1ebd8fbc64b7e14c2e', 'current_liquidity': 1521956066056}]}","{'initial_value': 30.87536749850655, 'final_value': 29.75884595012442, 'f_i_ratio': -0.036228215167683375, 'first_investment_timestamp': 1751406473, 'time_ratio': 46.96589322226674}",-3.62,117,False,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,3.041749174,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
399 |
+
397,451.98,448.44,2025-07-09 22:59:17,"{'portfolio': {'portfolio_value': 35.41316183233304, 'value_in_pools': 32.20519499763039, 'value_in_safe': 3.2079668347026447, 'initial_investment': 35.31977903399317, 'volume': 45.04515215024694, 'roi': 0.26, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 13.947037748685878, 'price': 0.999904, 'value_usd': 13.945698833062004, 'ratio': 0.3938}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 21.507079038858414, 'price': 0.998158, 'value_usd': 21.46746299926884, 'ratio': 0.6062}, {'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 8.4e-16, 'price': 2615.5, 'value_usd': 2.19702e-12, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.146e-15, 'price': 1.001, 'value_usd': 1.147146e-15, 'ratio': 0.0}], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1752081986}, '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': 'closed', '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}], 'il_risk_score': -8.510250350090276e-12, 'sharpe_ratio': 1.0343385680307111, 'depth_score': 1162.849768076878, 'max_position_size': 10000000.0, 'last_metrics_update': 1751159186.298078, 'exit_tx_hash': '0xbfb170fda9e5614f008a6cd6cd589fb7b47c8d831a5d4a0b3e8e870c0451bc40', 'exit_timestamp': 1751159352}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907413138010941, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 13649004, 'amount1': 18593021233907056326, 'enter_timestamp': 1751159541, 'status': 'open', 'enter_tx_hash': '0x48c5280931b620ff55cb117c35ca44b6780ff8dcb0fdfca2ff04a0aea368af09', 'current_liquidity': 16118778992940}]}","{'initial_value': 35.31977903399317, 'final_value': 49.287010902741294, 'f_i_ratio': 0.0026439236284574452, 'first_investment_timestamp': 1749344469, 'time_ratio': 11.519207296019385}",39.55,123,False,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,45.04515215,balanced,
|
debug_roi_data.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
optimus_apr_values.csv
CHANGED
@@ -378,4 +378,22 @@ apr,adjusted_apr,timestamp,portfolio_snapshot,calculation_metrics,roi,agent_id,i
|
|
378 |
541.93,536.89,2025-07-08 21:00:52,"{'portfolio': {'portfolio_value': 31.39162409804939, 'value_in_pools': 3.263840491369392, 'value_in_safe': 28.12778360668, 'initial_investment': 29.800137839954267, 'volume': 3.264870839882845, 'roi': 5.34, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'assets': ['USDC', 'LUSD'], 'apr': 1.14, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 29.597543024402114, 'price': 0.999905, 'value_usd': 29.594731257814797, 'ratio': 0.942759}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.7950977424921033, 'price': 1.001, 'value_usd': 1.7968928402345954, 'ratio': 0.057241}], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1751982585}, 'positons': [{'chain': 'optimism', 'pool_address': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'token0_symbol': 'USDC', 'token1_symbol': 'LUSD', 'apr': 1.1446389466076325, 'pool_id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'is_stable': True, 'is_cl_pool': False, 'amount0': 1516664, 'amount1': 1745457009367349211, 'enter_timestamp': 1751328819, 'status': 'open', 'enter_tx_hash': '0x8b9608f47a0ef16d4b33a5ed94e76d807437737e9527df2920dab175ea801296', 'current_liquidity': 1630885960066}]}","{'initial_value': 29.800137839954267, 'final_value': 44.10938310259678, 'f_i_ratio': 0.05340533210424803, 'first_investment_timestamp': 1751328819, 'time_ratio': 47.79390248771273}",48.02,119,FALSE,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,3.26487084,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
379 |
-3.62,-1.07,2025-07-08 21:47:31,"{'portfolio': {'portfolio_value': 29.75548043486413, 'value_in_pools': 3.0403111059061274, 'value_in_safe': 26.715169328958, 'initial_investment': 30.87536749850655, 'volume': 3.0417491735476907, 'roi': -3.63, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 28.032838645372003, 'price': 0.999813, 'value_usd': 28.02759650454532, 'ratio': 0.941931}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 1.7315131819481715, 'price': 0.997904, 'value_usd': 1.727883930318808, 'ratio': 0.058069}], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1751990088}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907884736104978, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 1352538, 'amount1': 1691492194309012144, 'enter_timestamp': 1751406473, 'status': 'open', 'enter_tx_hash': '0xfc37df1a45d0276566ec626b7abde12d674b10bf07b0eb1ebd8fbc64b7e14c2e', 'current_liquidity': 1521956066056}]}","{'initial_value': 30.87536749850655, 'final_value': 29.756661555593578, 'f_i_ratio': -0.036271214057503554, 'first_investment_timestamp': 1751406473, 'time_ratio': 53.909753780727755}",-3.62,117,FALSE,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,3.041749174,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
380 |
539.01,537.62,2025-07-08 21:59:35,"{'portfolio': {'portfolio_value': 30.588488152927663, 'value_in_pools': 28.036751870994866, 'value_in_safe': 2.5517362819327993, 'initial_investment': 30.2963222595072, 'volume': 40.814503767337364, 'roi': 0.96, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 12.10508229581217, 'price': 0.999904, 'value_usd': 12.103920207911774, 'ratio': 0.395702}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 18.524432523807125, 'price': 0.997848, 'value_usd': 18.484567945015893, 'ratio': 0.604298}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 7.15e-16, 'price': 1.002, 'value_usd': 7.1643e-16, 'ratio': 0.0}], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1751992020}, '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': 'closed', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}], 'il_risk_score': -4.072206051841395e-13, 'sharpe_ratio': 2.099770154866077, 'depth_score': 1036.9652330166891, 'max_position_size': 10000000.0, 'last_metrics_update': 1751350277.886024, 'exit_tx_hash': '0x9ae93371c59d1b4fb2eb1c9f005236635140a4b1a5a9979b78b3fbb9b7443b88', 'exit_timestamp': 1751351170}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2908064024200456, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 12467455, 'amount1': 15603398850121910555, 'enter_timestamp': 1751351305, 'status': 'open', 'enter_tx_hash': '0xd81627b62b3cf4bef9c4e5d243fdb4f7a0393e596c940a3d79d847bfe94d4b2c', 'current_liquidity': 14034876077371}]}","{'initial_value': 30.2963222595072, 'final_value': 43.36761896693886, 'f_i_ratio': 0.009643609244642803, 'first_investment_timestamp': 1749535827, 'time_ratio': 12.83857231539205}",43.14,127,FALSE,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,40.81450377,balanced,
|
381 |
-
466.29,465.6,2025-07-08 22:52:37,"{'portfolio': {'portfolio_value': 35.409517803737295, 'value_in_pools': 32.201910924357904, 'value_in_safe': 3.2076068793793917, 'initial_investment': 35.31977903399317, 'volume': 45.04515215024694, 'roi': 0.25, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 13.902874202908865, 'price': 0.999805, 'value_usd': 13.900163142439297, 'ratio': 0.392554}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 21.551466226302054, 'price': 0.998046, 'value_usd': 21.50935466129586, 'ratio': 0.607446}, {'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 8.4e-16, 'price': 2542.79, 'value_usd': 2.1359436e-12, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.146e-15, 'price': 1.002, 'value_usd': 1.148292e-15, 'ratio': 0.0}], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1751994860}, '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': 'closed', '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}], 'il_risk_score': -8.510250350090276e-12, 'sharpe_ratio': 1.0343385680307111, 'depth_score': 1162.849768076878, 'max_position_size': 10000000.0, 'last_metrics_update': 1751159186.298078, 'exit_tx_hash': '0xbfb170fda9e5614f008a6cd6cd589fb7b47c8d831a5d4a0b3e8e870c0451bc40', 'exit_timestamp': 1751159352}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907413138010941, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 13649004, 'amount1': 18593021233907056326, 'enter_timestamp': 1751159541, 'status': 'open', 'enter_tx_hash': '0x48c5280931b620ff55cb117c35ca44b6780ff8dcb0fdfca2ff04a0aea368af09', 'current_liquidity': 16118778992940}]}","{'initial_value': 35.31977903399317, 'final_value': 49.275624809858726, 'f_i_ratio': 0.0025407511654520487, 'first_investment_timestamp': 1749344469, 'time_ratio': 11.896390284530234}",39.51,123,FALSE,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,45.04515215,balanced,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
378 |
541.93,536.89,2025-07-08 21:00:52,"{'portfolio': {'portfolio_value': 31.39162409804939, 'value_in_pools': 3.263840491369392, 'value_in_safe': 28.12778360668, 'initial_investment': 29.800137839954267, 'volume': 3.264870839882845, 'roi': 5.34, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'assets': ['USDC', 'LUSD'], 'apr': 1.14, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 29.597543024402114, 'price': 0.999905, 'value_usd': 29.594731257814797, 'ratio': 0.942759}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.7950977424921033, 'price': 1.001, 'value_usd': 1.7968928402345954, 'ratio': 0.057241}], 'address': '0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac', 'last_updated': 1751982585}, 'positons': [{'chain': 'optimism', 'pool_address': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'token0_symbol': 'USDC', 'token1_symbol': 'LUSD', 'apr': 1.1446389466076325, 'pool_id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'is_stable': True, 'is_cl_pool': False, 'amount0': 1516664, 'amount1': 1745457009367349211, 'enter_timestamp': 1751328819, 'status': 'open', 'enter_tx_hash': '0x8b9608f47a0ef16d4b33a5ed94e76d807437737e9527df2920dab175ea801296', 'current_liquidity': 1630885960066}]}","{'initial_value': 29.800137839954267, 'final_value': 44.10938310259678, 'f_i_ratio': 0.05340533210424803, 'first_investment_timestamp': 1751328819, 'time_ratio': 47.79390248771273}",48.02,119,FALSE,0xD32613ED605be41D9c7FBc85f2cCb4fBa59778Ac,lonlim-zapgi60,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,3.26487084,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
379 |
-3.62,-1.07,2025-07-08 21:47:31,"{'portfolio': {'portfolio_value': 29.75548043486413, 'value_in_pools': 3.0403111059061274, 'value_in_safe': 26.715169328958, 'initial_investment': 30.87536749850655, 'volume': 3.0417491735476907, 'roi': -3.63, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 28.032838645372003, 'price': 0.999813, 'value_usd': 28.02759650454532, 'ratio': 0.941931}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 1.7315131819481715, 'price': 0.997904, 'value_usd': 1.727883930318808, 'ratio': 0.058069}], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1751990088}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907884736104978, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 1352538, 'amount1': 1691492194309012144, 'enter_timestamp': 1751406473, 'status': 'open', 'enter_tx_hash': '0xfc37df1a45d0276566ec626b7abde12d674b10bf07b0eb1ebd8fbc64b7e14c2e', 'current_liquidity': 1521956066056}]}","{'initial_value': 30.87536749850655, 'final_value': 29.756661555593578, 'f_i_ratio': -0.036271214057503554, 'first_investment_timestamp': 1751406473, 'time_ratio': 53.909753780727755}",-3.62,117,FALSE,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,3.041749174,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
380 |
539.01,537.62,2025-07-08 21:59:35,"{'portfolio': {'portfolio_value': 30.588488152927663, 'value_in_pools': 28.036751870994866, 'value_in_safe': 2.5517362819327993, 'initial_investment': 30.2963222595072, 'volume': 40.814503767337364, 'roi': 0.96, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 12.10508229581217, 'price': 0.999904, 'value_usd': 12.103920207911774, 'ratio': 0.395702}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 18.524432523807125, 'price': 0.997848, 'value_usd': 18.484567945015893, 'ratio': 0.604298}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 7.15e-16, 'price': 1.002, 'value_usd': 7.1643e-16, 'ratio': 0.0}], 'address': '0x8Ed5ae443fBb1a36E364ac154887f3150669702a', 'last_updated': 1751992020}, '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': 'closed', 'enter_tx_hash': '0x965989b30376a87b48a0b7a8eb6aa3a27d3536f5a44819195e9cfbdbb9d50cce', 'enter_timestamp': 1749535827, 'amount0': 7197322, 'amount1': 5578609, 'positions': [{'token_id': 2726290, 'liquidity': 255535328664, 'amount0': 7197322, 'amount1': 5578609, 'current_liquidity': 255535328664}], 'il_risk_score': -4.072206051841395e-13, 'sharpe_ratio': 2.099770154866077, 'depth_score': 1036.9652330166891, 'max_position_size': 10000000.0, 'last_metrics_update': 1751350277.886024, 'exit_tx_hash': '0x9ae93371c59d1b4fb2eb1c9f005236635140a4b1a5a9979b78b3fbb9b7443b88', 'exit_timestamp': 1751351170}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2908064024200456, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 12467455, 'amount1': 15603398850121910555, 'enter_timestamp': 1751351305, 'status': 'open', 'enter_tx_hash': '0xd81627b62b3cf4bef9c4e5d243fdb4f7a0393e596c940a3d79d847bfe94d4b2c', 'current_liquidity': 14034876077371}]}","{'initial_value': 30.2963222595072, 'final_value': 43.36761896693886, 'f_i_ratio': 0.009643609244642803, 'first_investment_timestamp': 1749535827, 'time_ratio': 12.83857231539205}",43.14,127,FALSE,0x8Ed5ae443fBb1a36E364ac154887f3150669702a,lunel-luwus85,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,40.81450377,balanced,
|
381 |
+
466.29,465.6,2025-07-08 22:52:37,"{'portfolio': {'portfolio_value': 35.409517803737295, 'value_in_pools': 32.201910924357904, 'value_in_safe': 3.2076068793793917, 'initial_investment': 35.31977903399317, 'volume': 45.04515215024694, 'roi': 0.25, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 13.902874202908865, 'price': 0.999805, 'value_usd': 13.900163142439297, 'ratio': 0.392554}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 21.551466226302054, 'price': 0.998046, 'value_usd': 21.50935466129586, 'ratio': 0.607446}, {'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 8.4e-16, 'price': 2542.79, 'value_usd': 2.1359436e-12, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.146e-15, 'price': 1.002, 'value_usd': 1.148292e-15, 'ratio': 0.0}], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1751994860}, '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': 'closed', '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}], 'il_risk_score': -8.510250350090276e-12, 'sharpe_ratio': 1.0343385680307111, 'depth_score': 1162.849768076878, 'max_position_size': 10000000.0, 'last_metrics_update': 1751159186.298078, 'exit_tx_hash': '0xbfb170fda9e5614f008a6cd6cd589fb7b47c8d831a5d4a0b3e8e870c0451bc40', 'exit_timestamp': 1751159352}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907413138010941, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 13649004, 'amount1': 18593021233907056326, 'enter_timestamp': 1751159541, 'status': 'open', 'enter_tx_hash': '0x48c5280931b620ff55cb117c35ca44b6780ff8dcb0fdfca2ff04a0aea368af09', 'current_liquidity': 16118778992940}]}","{'initial_value': 35.31977903399317, 'final_value': 49.275624809858726, 'f_i_ratio': 0.0025407511654520487, 'first_investment_timestamp': 1749344469, 'time_ratio': 11.896390284530234}",39.51,123,FALSE,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,45.04515215,balanced,
|
382 |
+
0.17,-3.74,2025-07-09 0:03:57,"{'portfolio': {'portfolio_value': 15.99808, 'value_in_pools': 0.0, 'value_in_safe': 15.99808, 'initial_investment': 15.99794701348985, 'volume': None, 'roi': 0.0, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.99988, 'value_usd': 15.99808, 'ratio': 0.0}], 'address': '0x9E29a5601e56b90079E2BcC029A26fB3fCE60dB9', 'last_updated': 1751999502}, 'positons': []}","{'initial_value': 15.99794701348985, 'final_value': 15.998162153080475, 'f_i_ratio': 8.312723503767216e-06, 'first_investment_timestamp': 1751999636, 'time_ratio': 8760.0}",0,182,FALSE,0x9E29a5601e56b90079E2BcC029A26fB3fCE60dB9,zapzi-milan20,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,,balanced,
|
383 |
+
606.61,598.69,2025-07-09 0:47:28,"{'portfolio': {'portfolio_value': 19.933460269567334, 'value_in_pools': 7.933336569447331, 'value_in_safe': 12.000123700120001, 'initial_investment': 19.998439303187823, 'volume': 7.9224283973100755, 'roi': -0.32, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'assets': ['USDC', 'DAI'], 'apr': 15.95, 'details': 'Velodrome CL Pool', 'ratio': 100.0, 'address': '0x426117ee442328F6CF12e8805037bA14bB1F80CF', 'tick_ranges': [{'current_tick': 276324, 'tick_lower': 4, 'tick_upper': 5, 'token_id': 2935722, 'in_range': False}]}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 12.00196, 'price': 0.999847, 'value_usd': 12.00012370012, 'ratio': 0.602009}, {'asset': 'DAI', 'address': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'balance': 7.933336569447332, 'price': 1.0, 'value_usd': 7.933336569447332, 'ratio': 0.397991}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.011e-15, 'price': 1.002, 'value_usd': 1.013022e-15, 'ratio': 0.0}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 7.38e-16, 'price': 0.998106, 'value_usd': 7.36602228e-16, 'ratio': 0.0}], 'address': '0x426117ee442328F6CF12e8805037bA14bB1F80CF', 'last_updated': 1752002188}, 'positons': [{'chain': 'optimism', 'pool_address': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'token0_symbol': 'USDC', 'token1_symbol': 'DAI', 'apr': 15.949108383139437, 'pool_id': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0xa42b8db45406dcd988e8c8bbfb6b26e2e3161b4111f3361af437572c2cb53ef5', 'enter_timestamp': 1750996703, 'amount0': 0, 'amount1': 7933336569447330816, 'positions': [{'token_id': 2935722, 'liquidity': 158638968577964312250704, 'amount0': 0, 'amount1': 7933336569447330816, 'current_liquidity': 158638968577964312250704}]}]}","{'initial_value': 15.996993189049627, 'final_value': 19.923009786984185, 'f_i_ratio': -0.003249205232236818, 'first_investment_timestamp': 1750996703, 'time_ratio': 31.362089652789187}",24.54,163,FALSE,0x426117ee442328F6CF12e8805037bA14bB1F80CF,limwire-waryel10,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,7.922428397,balanced,
|
384 |
+
487.52,479.51,2025-07-09 1:45:17,"{'portfolio': {'portfolio_value': 30.267741611074033, 'value_in_pools': 26.003880553874033, 'value_in_safe': 4.2638610572000015, 'initial_investment': 29.800138839731247, 'volume': 38.43442790626105, 'roi': 1.57, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'assets': ['USDC', 'LUSD'], 'apr': 1.14, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 15.561231527295266, 'price': 0.9998, 'value_usd': 15.558119280989809, 'ratio': 0.514017}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 14.694927402681543, 'price': 1.001, 'value_usd': 14.709622330084224, 'ratio': 0.485983}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 2.33e-16, 'price': 0.998365, 'value_usd': 2.32619045e-16, 'ratio': 0.0}, {'asset': 'DAI', 'address': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'balance': 1.271e-15, 'price': 0.999872, 'value_usd': 1.270837312e-15, 'ratio': 0.0}], 'address': '0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7', 'last_updated': 1752005449}, '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': 'closed', 'enter_tx_hash': '0x26c993dbb424b604d3c6c21bcf357a002c904e42501e4368f12306824f9c6fd3', 'enter_timestamp': 1749400565, 'amount0': 106, 'amount1': 12417370, 'positions': [{'token_id': 2707603, 'liquidity': 124219155242, 'amount0': 0, 'amount1': 12416948, 'current_liquidity': 124219155242}, {'token_id': 2707604, 'liquidity': 1469411, 'amount0': 83, 'amount1': 358, 'current_liquidity': 1469411}, {'token_id': 2707605, 'liquidity': 215979, 'amount0': 23, 'amount1': 64, 'current_liquidity': 215979}], 'il_risk_score': -1.0552407618906685e-12, 'sharpe_ratio': 1.0385174148872256, 'depth_score': 1162.8369357745007, 'max_position_size': 10000000.0, 'last_metrics_update': 1751215700.845947, 'exit_tx_hash': '0x7e9719a3a8a6f46cf0b16d5999c58f1557c7e83597e658e0b43647aa8d86ecdd', 'exit_timestamp': 1751215852}, {'chain': 'optimism', 'pool_address': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'token0_symbol': 'USDC', 'token1_symbol': 'LUSD', 'apr': 1.1446416140740159, 'pool_id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'is_stable': True, 'is_cl_pool': False, 'amount0': 11744875, 'amount1': 14245225773667532800, 'enter_timestamp': 1751215979, 'status': 'open', 'enter_tx_hash': '0xf6d302da247c211f2a537364f6cad0306f8e2593754f60839e2ecc31f556bfcc', 'current_liquidity': 12993460261438}]}","{'initial_value': 29.800138839731247, 'final_value': 42.69865203804308, 'f_i_ratio': 0.015691295059315324, 'first_investment_timestamp': 1749400565, 'time_ratio': 12.105243388509816}",43.28,120,FALSE,0xc8E264f402Ae94f69bDEf8B1f035F7200cD2B0c7,joyus-goson39,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,38.43442791,balanced,
|
385 |
+
121.28,118.06,2025-07-09 2:01:56,"{'portfolio': {'portfolio_value': 15.906455665585275, 'value_in_pools': 7.881481137470186, 'value_in_safe': 8.02497452811509, 'initial_investment': 15.995250741464774, 'volume': 7.878480281688953, 'roi': -0.56, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'uniswapV3', 'id': '0xbf16ef186e715668aa29cef57e2fd7f9d48adfe6', 'assets': ['USDC', 'DAI'], 'apr': 19247.9, 'details': 'Uniswap V3 Pool - USDC/DAI', 'ratio': 100.0, 'address': '0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC', 'tick_ranges': [{'current_tick': 276323, 'tick_lower': -887272, 'tick_upper': 887272, 'token_id': 1001067, 'in_range': True}]}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'balance': 4.000454, 'price': 0.999832, 'value_usd': 3.999781923728, 'ratio': 0.251457}, {'asset': 'DAI', 'address': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'balance': 3.9413280427183985, 'price': 0.999825, 'value_usd': 3.9406383103109226, 'ratio': 0.247738}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 4.0, 'price': 0.999805, 'value_usd': 3.99922, 'ratio': 0.251421}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 3.974581764313822, 'price': 0.998046, 'value_usd': 3.966815431546353, 'ratio': 0.249384}], 'address': '0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC', 'last_updated': 1752006610}, 'positons': [{'chain': 'optimism', 'pool_address': '0xbf16ef186e715668aa29cef57e2fd7f9d48adfe6', 'dex_type': 'UniswapV3', 'token0': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token1': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'token0_symbol': 'USDC', 'token1_symbol': 'DAI', 'apr': 19247.901618557305, 'token_id': 1001067, 'liquidity': 3941416687950, 'amount0': 3941263, 'amount1': 3941570591844665730, 'enter_timestamp': 1750389069, 'status': 'open', 'enter_tx_hash': '0xc8c56ddbeb310f891a8d4a2ee752dd924d6eb64fcc8fbc704dab2f25b8556659', 'current_liquidity': 3941416687950}]}","{'initial_value': 15.995250741464774, 'final_value': 17.24028852410958, 'f_i_ratio': -0.005551340039285146, 'first_investment_timestamp': 1750389069, 'time_ratio': 19.494983644968972}",7.78,133,FALSE,0xe8c7Bbf632BFf7239e53dAB45086Ac14d6974baC,ronwus-yusrus90,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,7.878480282,balanced,
|
386 |
+
46.6,39.68,2025-07-09 3:12:03,"{'portfolio': {'portfolio_value': 7.999573963766, 'value_in_pools': 0.0, 'value_in_safe': 7.999573963766, 'initial_investment': 15.99878633590859, 'volume': 7.999030861656209, 'roi': -50.0, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 7.996529, 'price': 0.999901, 'value_usd': 7.995737343629, 'ratio': 0.0}, {'asset': 'USDC.e', 'address': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'balance': 0.003837, 'price': 0.999901, 'value_usd': 0.003836620137, 'ratio': 0.0}], 'address': '0x36bbD5a49ce07a54A646bB2225Ab1866068D6E44', 'last_updated': 1752010896}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 3.7295019660254782, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x042ccab1d683dfbe61473b6719ac49ce77ff026381996453b78c313504141894', 'enter_timestamp': 1750849213, 'amount0': 3471, 'amount1': 7996286, 'positions': [{'token_id': 2917623, 'liquidity': 159999129718, 'amount0': 3471, 'amount1': 7996286, 'current_liquidity': 159999129718}]}]}","{'initial_value': 15.99878633590859, 'final_value': 16.278236796987883, 'f_i_ratio': -0.499988699404573, 'first_investment_timestamp': 1750849213, 'time_ratio': 27.146188339493598}",1.75,168,FALSE,0x36bbD5a49ce07a54A646bB2225Ab1866068D6E44,vijim-pitar56,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,7.999030862,balanced,
|
387 |
+
109.56,109.35,2025-07-09 4:08:50,"{'portfolio': {'portfolio_value': 32.118959298628, 'value_in_pools': 1.764499514272, 'value_in_safe': 30.354459784356003, 'initial_investment': 30.87536749850655, 'volume': 1.7640958781348952, 'roi': 4.03, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'assets': ['USDC', 'USDC.e'], 'apr': 3.75, 'details': 'Velodrome CL Pool', 'ratio': 100.0, 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'tick_ranges': [{'current_tick': 0, 'tick_lower': -2, 'tick_upper': -1, 'token_id': 2870529, 'in_range': False}]}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 30.359044, 'price': 0.999849, 'value_usd': 30.354459784356, 'ratio': 0.945064}, {'asset': 'USDC.e', 'address': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'balance': 1.764796, 'price': 0.999832, 'value_usd': 1.764499514272, 'ratio': 0.054936}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 9.57e-16, 'price': 0.998031, 'value_usd': 9.55115667e-16, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 3.25e-16, 'price': 1.002, 'value_usd': 3.2565e-16, 'ratio': 0.0}], 'address': '0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0', 'last_updated': 1752009110}, 'positons': [{'chain': 'optimism', 'pool_address': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x7F5c764cBc14f9669B88837ca1490cCa17c31607', 'token0_symbol': 'USDC', 'token1_symbol': 'USDC.e', 'apr': 3.7506969868253504, 'pool_id': '0x2FA71491F8070FA644d97b4782dB5734854c0f6F', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0x8cddac900b19baa1a2611eacb0c1e0584347185df658088f1ceec8b54f044070', 'enter_timestamp': 1750529241, 'amount0': 0, 'amount1': 1764796, 'positions': [{'token_id': 2870529, 'liquidity': 35300332056, 'amount0': 0, 'amount1': 1764796, 'current_liquidity': 35300332056}]}]}","{'initial_value': 30.87536749850655, 'final_value': 33.971676495601756, 'f_i_ratio': 0.04027779750902094, 'first_investment_timestamp': 1750529241, 'time_ratio': 21.235093114860227}",10.03,115,FALSE,0xE4EAF37b1726634935f679a8f3e00EC2E4e650A0,yenot-zoncen49,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,1.764095878,risky,"[""velodrome_pools_search""]"
|
388 |
+
-0.13,-5.26,2025-07-09 7:58:21,"{'portfolio': {'portfolio_value': 8.006602611296, 'value_in_pools': 0.0, 'value_in_safe': 8.006602611296, 'initial_investment': 15.998438834626413, 'volume': 7.974219759612968, 'roi': -49.95, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [], 'portfolio_breakdown': [], 'address': '0x8Ed448a0A400647f395B65C93fA6b35aD7514D4A', 'last_updated': 1752028070}, 'positons': [{'chain': 'optimism', 'pool_address': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58', 'token0_symbol': 'USDC', 'token1_symbol': 'USDT', 'apr': 12.031244025291919, 'pool_id': '0x84Ce89B4f6F67E523A81A82f9f2F14D84B726F6B', 'is_stable': True, 'is_cl_pool': True, 'status': 'open', 'enter_tx_hash': '0xfcf112d6202c93bf9aa61feb570e2d10cd2a7c7edd98cf58c2cb883f754fa9cd', 'enter_timestamp': 1751393061, 'amount0': 3585454, 'amount1': 4408640, 'positions': [{'token_id': 2979427, 'liquidity': 12268362832, 'amount0': 3575249, 'amount1': 4397363, 'current_liquidity': 12268362832}, {'token_id': 2979428, 'liquidity': 12609475, 'amount0': 6826, 'amount1': 7670, 'current_liquidity': 12609475}, {'token_id': 2979429, 'liquidity': 3409565, 'amount0': 3379, 'amount1': 3607, 'current_liquidity': 3409565}]}]}","{'initial_value': 15.998438834626413, 'final_value': 15.977903626623487, 'f_i_ratio': -0.4995385053467334, 'first_investment_timestamp': 1751393061, 'time_ratio': 49.65986640816468}",-0.13,175,FALSE,0x8Ed448a0A400647f395B65C93fA6b35aD7514D4A,bomtar-dronsus81,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,7.97421976,balanced,
|
389 |
+
0.05,-8.16,2025-07-09 7:59:36,"{'portfolio': {'portfolio_value': 15.998288, 'value_in_pools': 0.0, 'value_in_safe': 15.998288, 'initial_investment': 15.997852354196928, 'volume': None, 'roi': 0.0, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999893, 'value_usd': 15.998288, 'ratio': 0.0}], 'address': '0xca82D0c809EA1De7E911d1c99a55f054d96Dfda4', 'last_updated': 1752027924}, 'positons': []}","{'initial_value': 15.997852354196928, 'final_value': 15.998162153080475, 'f_i_ratio': 2.7231517920389692e-05, 'first_investment_timestamp': 1752028175, 'time_ratio': 8760.0}",0.21,169,FALSE,0xca82D0c809EA1De7E911d1c99a55f054d96Dfda4,tartim-wacor68,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,,balanced,
|
390 |
+
5.73,0.6,2025-07-09 8:28:02,"{'portfolio': {'portfolio_value': 16.013005801063237, 'value_in_pools': 14.429778975173235, 'value_in_safe': 1.58322682589, 'initial_investment': 15.998438834626413, 'volume': 14.435246798122249, 'roi': 0.09, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x703a3510e62827D11D8085f9C179bD441F6A8201'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 7.814990477759385, 'price': 0.99989, 'value_usd': 7.814130828806832, 'ratio': 0.487987}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 8.215206803381527, 'price': 0.998012, 'value_usd': 8.198874972256403, 'ratio': 0.512013}], 'address': '0x703a3510e62827D11D8085f9C179bD441F6A8201', 'last_updated': 1752029718}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.290803353524491, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 6416599, 'amount1': 8029475374880830280, 'enter_timestamp': 1751361313, 'status': 'open', 'enter_tx_hash': '0xe170f4362d7a381ad9e4b5380458597c0435cdda02bd62b69dd4daa66ac0215c', 'current_liquidity': 7222753993923}]}","{'initial_value': 15.998438834626413, 'final_value': 16.01846592008161, 'f_i_ratio': 0.0009105242447342565, 'first_investment_timestamp': 1751361313, 'time_ratio': 47.16937504929912}",0.13,173,FALSE,0x703a3510e62827D11D8085f9C179bD441F6A8201,gemek-janyar44,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,14.4352468,balanced,
|
391 |
+
602.92,605.5,2025-07-09 10:57:19,"{'portfolio': {'portfolio_value': 31.122884776171553, 'value_in_pools': 23.009360795837427, 'value_in_safe': 8.113523980334127, 'initial_investment': 31.300792273386968, 'volume': 36.386196845930286, 'roi': -0.57, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 9.93341465540657, 'price': 0.9999, 'value_usd': 9.932421313941031, 'ratio': 0.319136}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 21.217622018414094, 'price': 0.99872, 'value_usd': 21.190463462230525, 'ratio': 0.680864}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 5.5e-17, 'price': 1.002, 'value_usd': 5.511e-17, 'ratio': 0.0}], 'address': '0x4b00f1a232C28254223C8c177E997Ab298e1E40a', 'last_updated': 1752038538}, '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': 'closed', '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}], 'il_risk_score': -1.320331011027709e-13, 'sharpe_ratio': 2.0984011819085073, 'depth_score': 1036.9660197802891, 'max_position_size': 10000000.0, 'last_metrics_update': 1751379293.366578, 'exit_tx_hash': '0x2dabf7332f203d752ba079314a54663399d1dc284508657dbb991ca7d981bed8', 'exit_timestamp': 1751379479}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907977374361679, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 10228958, 'amount1': 12797004098504352968, 'enter_timestamp': 1751379693, 'status': 'open', 'enter_tx_hash': '0x234165a1b02b4169989364a973fc0d2b8972d671d2baf82ae03d8a40f7ca36a3', 'current_liquidity': 11512532194272}]}","{'initial_value': 31.300792273386968, 'final_value': 46.455408507251484, 'f_i_ratio': -0.005683801728133209, 'first_investment_timestamp': 1749527585, 'time_ratio': 12.557868247394552}",48.42,128,FALSE,0x4b00f1a232C28254223C8c177E997Ab298e1E40a,kozu-hanfil63,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,36.38619685,balanced,
|
392 |
+
1.45,-2.55,2025-07-09 14:47:15,"{'portfolio': {'portfolio_value': 26.04198770404306, 'value_in_pools': 14.29148449729306, 'value_in_safe': 11.75050320675, 'initial_investment': 25.995490149688813, 'volume': 14.266134688755134, 'roi': 0.18, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'assets': ['USDC', 'LUSD'], 'apr': 1.14, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xf0495218037002b0419ECeDC3c6C40fd1d470c78'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 17.81722478722769, 'price': 0.999862, 'value_usd': 17.814766010207055, 'ratio': 0.684079}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 8.210800093648709, 'price': 1.002, 'value_usd': 8.227221693836006, 'ratio': 0.315921}], 'address': '0xf0495218037002b0419ECeDC3c6C40fd1d470c78', 'last_updated': 1752052584}, 'positons': [{'chain': 'optimism', 'pool_address': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'token0_symbol': 'USDC', 'token1_symbol': 'LUSD', 'apr': 1.1446225294759833, 'pool_id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'is_stable': True, 'is_cl_pool': False, 'amount0': 6247875, 'amount1': 8027063857463409155, 'enter_timestamp': 1751024609, 'status': 'open', 'enter_tx_hash': '0x5c4e83588a181783275df5e84a80ed94569d5cefecfeb39ec7e5f1a1755bbcc1', 'current_liquidity': 7136318018645}]}","{'initial_value': 25.995490149688813, 'final_value': 26.016909775834563, 'f_i_ratio': 0.001788677731656696, 'first_investment_timestamp': 1751024609, 'time_ratio': 30.67626676774303}",0.08,170,FALSE,0xf0495218037002b0419ECeDC3c6C40fd1d470c78,delsus-simgi16,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,14.26613469,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
393 |
+
515.15,507.13,2025-07-09 17:30:59,"{'portfolio': {'portfolio_value': 30.385455902769582, 'value_in_pools': 25.885949981375582, 'value_in_safe': 4.499505921394001, 'initial_investment': 29.80013783995427, 'volume': 38.522323961988846, 'roi': 1.96, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 15.676067347353118, 'price': 0.999802, 'value_usd': 15.672963486018343, 'ratio': 0.515805}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 14.726305691489857, 'price': 0.999062, 'value_usd': 14.712492416751237, 'ratio': 0.484195}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.12e-16, 'price': 1.001, 'value_usd': 1.12112e-16, 'ratio': 0.0}], 'address': '0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A', 'last_updated': 1752062113}, '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': 'closed', '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}], 'il_risk_score': -1.3374288663162364e-12, 'sharpe_ratio': 2.099060530658376, 'depth_score': 1036.9656401955142, 'max_position_size': 10000000.0, 'last_metrics_update': 1751460817.525093, 'exit_tx_hash': '0x06b3d7b27426d43a2a58304adafadb24d323f9a80e9c79b3825677761f1ecf30', 'exit_timestamp': 1751460989}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907734943932818, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 11501285, 'amount1': 14399419880058378240, 'enter_timestamp': 1751462535, 'status': 'open', 'enter_tx_hash': '0x45402ae487dfd33aebd516efa9fad6bffae2477426e7680310fe9cdff84bb24e', 'current_liquidity': 12949840650454}]}","{'initial_value': 29.80013783995427, 'final_value': 43.825523791548015, 'f_i_ratio': 0.019641454880472198, 'first_investment_timestamp': 1749634247, 'time_ratio': 12.987335283009873}",47.06,118,FALSE,0xc7d89Ed318CAC02Cf9719c50157541df2504EA3A,lonwus-patu86,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,38.52232396,balanced,
|
394 |
+
5.89,-2.87,2025-07-09 17:32:31,"{'portfolio': {'portfolio_value': 16.022967643717365, 'value_in_pools': 14.438650801149366, 'value_in_safe': 1.5843168425680003, 'initial_investment': 15.997400456371341, 'volume': 14.432298728949466, 'roi': 0.16, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xf17be80d0525A748B4c15A02c86ea765E8DC88F8'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 7.817655827198193, 'price': 0.999868, 'value_usd': 7.816623896629002, 'ratio': 0.487839}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 8.213464821088248, 'price': 0.999133, 'value_usd': 8.206343747088365, 'ratio': 0.512161}], 'address': '0xf17be80d0525A748B4c15A02c86ea765E8DC88F8', 'last_updated': 1752062395}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907830544540684, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 6415474, 'amount1': 8030409812007760896, 'enter_timestamp': 1751439909, 'status': 'open', 'enter_tx_hash': '0x8c245a5ed81e5222bab07abaa19fe8ecc001408cbdcd94913370d81c9eac6664', 'current_liquidity': 7222657389400}]}","{'initial_value': 15.997400456371341, 'final_value': 16.016642721685216, 'f_i_ratio': 0.0015982088724821875, 'first_investment_timestamp': 1751439909, 'time_ratio': 50.64868476898709}",0.12,176,FALSE,0xf17be80d0525A748B4c15A02c86ea765E8DC88F8,bleepro-nusgen10,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,14.43229873,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
395 |
+
32.08,31.3,2025-07-09 20:00:26,"{'portfolio': {'portfolio_value': 42.5270068898313, 'value_in_pools': 0.0, 'value_in_safe': 42.5270068898313, 'initial_investment': 42.198358020106554, 'volume': None, 'roi': 0.78, 'agent_hash': 'bafybeigg6vq45m4cekqf7bnvmutwg3mp64n3eql7zkrmu7tht67gfggddi', 'allocations': [], 'portfolio_breakdown': [{'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.005299999999999998, 'price': 2664.21, 'value_usd': 14.120312999999994, 'ratio': 0.0}, {'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 16.0, 'price': 0.999883, 'value_usd': 15.998128, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.219e-15, 'price': 1.001, 'value_usd': 1.220219e-15, 'ratio': 0.0}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 12.421422061665126, 'price': 0.998965, 'value_usd': 12.408565889831303, 'ratio': 0.0}], 'address': '0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB', 'last_updated': 1752071240}, 'positons': []}","{'initial_value': 41.93048680235006, 'final_value': 43.225273285522626, 'f_i_ratio': 0.0078, 'first_investment_timestamp': 1752071426, 'time_ratio': 524550.8982, 'volatility_warning': 'VERY_HIGH', 'actual_hours': 7.374836338890924e-05, 'calculation_hours': 0.0167}",3.09,111,FALSE,0x06D1f8cDB1F126f541E3dc28e7dB200B5Ebe00eB,furtek-gilje55,APR,,bafybeigg6vq45m4cekqf7bnvmutwg3mp64n3eql7zkrmu7tht67gfggddi,,balanced,
|
396 |
+
443.31,443.1,2025-07-09 20:13:30,"{'portfolio': {'portfolio_value': 38.85954081772087, 'value_in_pools': 22.45227616696852, 'value_in_safe': 16.40726465075235, 'initial_investment': 58.98421769456271, 'volume': 34.90118930413967, 'roi': -34.12, 'agent_hash': 'bafybeigg6vq45m4cekqf7bnvmutwg3mp64n3eql7zkrmu7tht67gfggddi', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 23.98605827023495, 'price': 0.999848, 'value_usd': 23.982412389377878, 'ratio': 0.617156}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 12.75475478196299, 'price': 0.998112, 'value_usd': 12.730673804934645, 'ratio': 0.327607}, {'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 0.000813078712307748, 'price': 2639.91, 'value_usd': 2.146454623408347, 'ratio': 0.055236}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 3.78e-16, 'price': 1.001, 'value_usd': 3.78378e-16, 'ratio': 0.0}, {'asset': 'DAI', 'address': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'balance': 1.144e-15, 'price': 0.999973, 'value_usd': 1.143969112e-15, 'ratio': 0.0}], 'address': '0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8', 'last_updated': 1752072017}, 'positons': [{'chain': 'optimism', 'pool_address': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', 'token0_symbol': 'USDC', 'token1_symbol': 'DAI', 'apr': 11.121338729226888, 'pool_id': '0x1737275d53A5Ca5dAc582a493AA32C85ba2cFaD3', 'is_stable': True, 'is_cl_pool': True, 'status': 'closed', 'enter_tx_hash': '0x9db82fa44b992728def677916d2e79349093bfccdc807aed02ebad90800228fe', 'enter_timestamp': 1749330545, 'amount0': 0, 'amount1': 12455895225259535800, 'positions': [{'token_id': 2699987, 'liquidity': 81848206191141876940265, 'amount0': 0, 'amount1': 12278765608114610176, 'current_liquidity': 81848206191141876940265}, {'token_id': 2699988, 'liquidity': 351500569673764363465, 'amount0': 0, 'amount1': 140621319309723600, 'current_liquidity': 351500569673764363465}, {'token_id': 2699989, 'liquidity': 52146887921420055688, 'amount0': 0, 'amount1': 36508297835202024, 'current_liquidity': 52146887921420055688}], 'il_risk_score': -3.1720249291186144e-14, 'sharpe_ratio': 0.7661173944917309, 'depth_score': 2559.4915038606355, 'max_position_size': 10000000.0, 'last_metrics_update': 1751443185.247813, 'exit_tx_hash': '0x3eea6bfd23aa398f9e5dcc1f6ae7a67d2b92ca3fafe1fc4da7e8b51f35e69b4e', 'exit_timestamp': 1751443391}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907830856589768, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 9982326, 'amount1': 12494527044754624424, 'enter_timestamp': 1751443505, 'status': 'open', 'enter_tx_hash': '0xb9602167f62ca755168126461c07e4145bd0943cc09f010f524bd2e655c80a61', 'current_liquidity': 11237984181842}]}","{'initial_value': 37.051258102124294, 'final_value': 52.57943971146538, 'f_i_ratio': -0.3412, 'first_investment_timestamp': 1749330545, 'time_ratio': 11.5025, 'volatility_warning': 'LOW', 'actual_hours': 761.5736413908005, 'calculation_hours': 761.5736413908005}",41.91,112,FALSE,0x25f2dc3834d6355911C13ECeb74A5fAd8181A0A8,vuzus-fazi89,APR,,bafybeigg6vq45m4cekqf7bnvmutwg3mp64n3eql7zkrmu7tht67gfggddi,34.9011893,risky,"[""balancerPool"", ""uniswapV3"", ""velodrome""]"
|
397 |
+
46.39,38.44,2025-07-09 20:24:00,"{'portfolio': {'portfolio_value': 16.004250055862435, 'value_in_pools': 14.862615144340435, 'value_in_safe': 1.141634911522, 'initial_investment': 15.996881554740378, 'volume': 14.87478829532423, 'roi': 0.05, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'assets': ['USDC', 'LUSD'], 'apr': 1.14, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x07Aa2653a1119c7b4e328Be1102E6C3Dd0Bb0C81'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 7.466820127757848, 'price': 0.999802, 'value_usd': 7.465341697372551, 'ratio': 0.46646}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 8.538908358489882, 'price': 1.0, 'value_usd': 8.538908358489882, 'ratio': 0.53354}], 'address': '0x07Aa2653a1119c7b4e328Be1102E6C3Dd0Bb0C81', 'last_updated': 1752072664}, 'positons': [{'chain': 'optimism', 'pool_address': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'token0_symbol': 'USDC', 'token1_symbol': 'LUSD', 'apr': 1.1446326242114686, 'pool_id': '0x4F3da11c5caDf644ae023Dbad01008a934C993E2', 'is_stable': True, 'is_cl_pool': False, 'amount0': 6858139, 'amount1': 8004030135896497008, 'enter_timestamp': 1751378625, 'status': 'open', 'enter_tx_hash': '0x1f7df731525a478a6126b0ad0007d4c4c8e7320651d8acb4f181900c698689fc', 'current_liquidity': 7430268322107}]}","{'initial_value': 15.996881554740378, 'final_value': 16.23502611832391, 'f_i_ratio': 0.0004606210964832602, 'first_investment_timestamp': 1751378625, 'time_ratio': 45.42682901560153}",1.49,171,FALSE,0x07Aa2653a1119c7b4e328Be1102E6C3Dd0Bb0C81,helve-welfur78,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,14.8747883,balanced,
|
398 |
+
-3.62,-3.82,2025-07-09 21:48:59,"{'portfolio': {'portfolio_value': 29.756808041389355, 'value_in_pools': 3.0407035066213552, 'value_in_safe': 26.716104534768, 'initial_investment': 30.87536749850655, 'volume': 3.0417491735476907, 'roi': -3.62, 'agent_hash': 'bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 28.03695918626768, 'price': 0.999848, 'value_usd': 28.032697568471367, 'ratio': 0.94206}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 1.727371750783469, 'price': 0.998112, 'value_usd': 1.72411047291799, 'ratio': 0.05794}], 'address': '0x70FAE90eb66b779FC368350a051D83dc6C7fF068', 'last_updated': 1752072062}, 'positons': [{'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907884736104978, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 1352538, 'amount1': 1691492194309012144, 'enter_timestamp': 1751406473, 'status': 'open', 'enter_tx_hash': '0xfc37df1a45d0276566ec626b7abde12d674b10bf07b0eb1ebd8fbc64b7e14c2e', 'current_liquidity': 1521956066056}]}","{'initial_value': 30.87536749850655, 'final_value': 29.75884595012442, 'f_i_ratio': -0.036228215167683375, 'first_investment_timestamp': 1751406473, 'time_ratio': 46.96589322226674}",-3.62,117,FALSE,0x70FAE90eb66b779FC368350a051D83dc6C7fF068,furye-himkon89,APR,,bafybeia2kyreljqwdzhg27g6wv6uwjnoa4qdn5j4kz6jjkmfst4mkyzo3e,3.041749174,risky,"[""balancer_pools_search"", ""uniswap_pools_search"", ""velodrome_pools_search""]"
|
399 |
+
451.98,448.44,2025-07-09 22:59:17,"{'portfolio': {'portfolio_value': 35.41316183233304, 'value_in_pools': 32.20519499763039, 'value_in_safe': 3.2079668347026447, 'initial_investment': 35.31977903399317, 'volume': 45.04515215024694, 'roi': 0.26, 'agent_hash': 'bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy', 'allocations': [{'chain': 'optimism', 'type': 'velodrome', 'id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'assets': ['USDC', 'DOLA'], 'apr': 1.29, 'details': 'Velodrome Pool', 'ratio': 100.0, 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C'}], 'portfolio_breakdown': [{'asset': 'USDC', 'address': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'balance': 13.947037748685878, 'price': 0.999904, 'value_usd': 13.945698833062004, 'ratio': 0.3938}, {'asset': 'DOLA', 'address': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'balance': 21.507079038858414, 'price': 0.998158, 'value_usd': 21.46746299926884, 'ratio': 0.6062}, {'asset': 'ETH', 'address': '0x0000000000000000000000000000000000000000', 'balance': 8.4e-16, 'price': 2615.5, 'value_usd': 2.19702e-12, 'ratio': 0.0}, {'asset': 'LUSD', 'address': '0xc40F949F8a4e094D1b49a23ea9241D289B7b2819', 'balance': 1.146e-15, 'price': 1.001, 'value_usd': 1.147146e-15, 'ratio': 0.0}], 'address': '0xF38820f03313535A4024DCCBE2689aa7cc158f5C', 'last_updated': 1752081986}, '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': 'closed', '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}], 'il_risk_score': -8.510250350090276e-12, 'sharpe_ratio': 1.0343385680307111, 'depth_score': 1162.849768076878, 'max_position_size': 10000000.0, 'last_metrics_update': 1751159186.298078, 'exit_tx_hash': '0xbfb170fda9e5614f008a6cd6cd589fb7b47c8d831a5d4a0b3e8e870c0451bc40', 'exit_timestamp': 1751159352}, {'chain': 'optimism', 'pool_address': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'dex_type': 'velodrome', 'token0': '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85', 'token1': '0x8aE125E8653821E851F12A49F7765db9a9ce7384', 'token0_symbol': 'USDC', 'token1_symbol': 'DOLA', 'apr': 1.2907413138010941, 'pool_id': '0xA56a25Dee5B3199A9198Bbd48715EE3D0ed98378', 'is_stable': True, 'is_cl_pool': False, 'amount0': 13649004, 'amount1': 18593021233907056326, 'enter_timestamp': 1751159541, 'status': 'open', 'enter_tx_hash': '0x48c5280931b620ff55cb117c35ca44b6780ff8dcb0fdfca2ff04a0aea368af09', 'current_liquidity': 16118778992940}]}","{'initial_value': 35.31977903399317, 'final_value': 49.287010902741294, 'f_i_ratio': 0.0026439236284574452, 'first_investment_timestamp': 1749344469, 'time_ratio': 11.519207296019385}",39.55,123,FALSE,0xF38820f03313535A4024DCCBE2689aa7cc158f5C,cordron-yelku44,APR,,bafybeigh6rnrtyhhku2qgd3aerv3lqxodjlxs4vg7v25qdjonh5tcresuy,45.04515215,balanced,
|
optimus_roi_values.csv
CHANGED
@@ -1,529 +1,755 @@
|
|
1 |
-
roi,timestamp,agent_id,agent_name,is_dummy,metric_type
|
2 |
-
-0.0002765562977782299,2025-05-15 21:37:27.000000,86,nusus-tayar25,False,ROI
|
3 |
-
-0.0002765562977782299,2025-05-15 21:39:37.000000,86,nusus-tayar25,False,ROI
|
4 |
-
-0.0002765562977782299,2025-05-15 21:40:02.000000,86,nusus-tayar25,False,ROI
|
5 |
-
-0.0002765562977782299,2025-05-15 21:40:28.000000,86,nusus-tayar25,False,ROI
|
6 |
-
-0.0002765562977782299,2025-05-15 21:36:35.000000,86,nusus-tayar25,False,ROI
|
7 |
-
-0.0002765562977782299,2025-05-15 21:37:02.000000,86,nusus-tayar25,False,ROI
|
8 |
-
-0.0002765562977782299,2025-05-15 21:39:10.000000,86,nusus-tayar25,False,ROI
|
9 |
-
-0.0002765562977782299,2025-05-15 21:41:11.000000,86,nusus-tayar25,False,ROI
|
10 |
-
-0.0002765562977782299,2025-05-15 21:41:55.000000,86,nusus-tayar25,False,ROI
|
11 |
-
-0.0002765562977782299,2025-05-15 21:42:41.000000,86,nusus-tayar25,False,ROI
|
12 |
-
-0.0002765562977782299,2025-05-15 21:43:24.000000,86,nusus-tayar25,False,ROI
|
13 |
-
-0.0002765562977782299,2025-05-15 21:44:09.000000,86,nusus-tayar25,False,ROI
|
14 |
-
-0.0002765562977782299,2025-05-15 21:44:51.000000,86,nusus-tayar25,False,ROI
|
15 |
-
-0.0002765562977782299,2025-05-15 21:45:37.000000,86,nusus-tayar25,False,ROI
|
16 |
-
-0.0002765562977782299,2025-05-15 21:46:20.000000,86,nusus-tayar25,False,ROI
|
17 |
-
-0.00012649422506416652,2025-05-19 22:39:16.682649,86,nusus-tayar25,False,ROI
|
18 |
-
-0.00010449205744944567,2025-05-19 22:47:57.660329,86,nusus-tayar25,False,ROI
|
19 |
-
-0.00010449205744944567,2025-05-19 22:53:48.567618,86,nusus-tayar25,False,ROI
|
20 |
-
-0.00012649422506416652,2025-05-19 22:39:37.060636,86,nusus-tayar25,False,ROI
|
21 |
-
-0.00010449205744944567,2025-05-19 22:46:29.056289,86,nusus-tayar25,False,ROI
|
22 |
-
-0.00010449205744944567,2025-05-19 22:51:30.269824,86,nusus-tayar25,False,ROI
|
23 |
-
-0.00010449205744944567,2025-05-19 22:57:07.717697,86,nusus-tayar25,False,ROI
|
24 |
-
-0.0011357601313007892,2025-05-23 19:05:51.628406,86,nusus-tayar25,False,ROI
|
25 |
-
-0.0016374352988718366,2025-05-27 05:42:54.798079,86,nusus-tayar25,False,ROI
|
26 |
-
-0.8666050938279419,2025-06-04 21:48:07.115718,86,nusus-tayar25,False,ROI
|
27 |
-
-0.8666050938279419,2025-06-04 21:52:00.578098,86,nusus-tayar25,False,ROI
|
28 |
-
-0.999999999999975,2025-06-05 01:55:15.033359,86,nusus-tayar25,False,ROI
|
29 |
-
-0.1696775721419591,2025-06-05 18:27:57.578268,86,nusus-tayar25,False,ROI
|
30 |
-
1.8675787957432175,2025-06-06 05:14:51.027065,86,nusus-tayar25,False,ROI
|
31 |
-
1.8675787957432175,2025-06-06 03:39:44.505985,86,nusus-tayar25,False,ROI
|
32 |
-
1.0420726955249058,2025-05-30 01:10:42.776945,102,kelrus-muha52,False,ROI
|
33 |
-
1.0371385033661085,2025-05-30 16:11:26.814088,102,kelrus-muha52,False,ROI
|
34 |
-
-0.20964670158400078,2025-06-03 19:28:54.348419,102,kelrus-muha52,False,ROI
|
35 |
-
-0.6044365419107054,2025-06-04 12:35:13.593971,102,kelrus-muha52,False,ROI
|
36 |
-
-0.6040367838477997,2025-06-04 14:25:41.343980,102,kelrus-muha52,False,ROI
|
37 |
-
0.017789201624683004,2025-06-20 15:46:36.761049,102,kelrus-muha52,False,ROI
|
38 |
-
-0.5266054987599221,2025-06-20 16:06:44.231042,102,kelrus-muha52,False,ROI
|
39 |
-
-0.526566199195706,2025-06-23 22:29:14.214104,102,kelrus-muha52,False,ROI
|
40 |
-
-0.5265358959172741,2025-06-25 20:20:15.920768,102,kelrus-muha52,False,ROI
|
41 |
-
-0.
|
42 |
-
-0.5407000717190478,2025-06-06
|
43 |
-
-0.
|
44 |
-
-0.
|
45 |
-
-0.
|
46 |
-
-0.
|
47 |
-
-0.
|
48 |
-
-0.
|
49 |
-
-0.
|
50 |
-
-0.
|
51 |
-
-0.
|
52 |
-
-0.
|
53 |
-
-0.
|
54 |
-
0.
|
55 |
-
|
56 |
-
-0.
|
57 |
-
-0.
|
58 |
-
-0.
|
59 |
-
-0.
|
60 |
-
-0.
|
61 |
-
-0.
|
62 |
-
-0.
|
63 |
-
-0.
|
64 |
-
-0.
|
65 |
-
-0.
|
66 |
-
-0.
|
67 |
-
0.
|
68 |
-
|
69 |
-
-0.5456503958801932,2025-06-06
|
70 |
-
-0.5456503958801932,2025-06-06
|
71 |
-
-0.5456503958801932,2025-06-06
|
72 |
-
-0.5456503958801932,2025-06-06
|
73 |
-
-0.5456503958801932,2025-06-06
|
74 |
-
-0.
|
75 |
-
-0.6935346167526257,2025-06-06
|
76 |
-
-0.6935346167526257,2025-06-06
|
77 |
-
-0.6935346167526257,2025-06-06
|
78 |
-
-0.6935346167526257,2025-06-06
|
79 |
-
-0.6935346167526257,2025-06-06
|
80 |
-
-0.
|
81 |
-
-0.7694497887241564,2025-06-07
|
82 |
-
-0.7694497887241564,2025-06-07
|
83 |
-
-0.7694497887241564,2025-06-07
|
84 |
-
-0.7694497887241564,2025-06-07
|
85 |
-
-0.
|
86 |
-
-0.
|
87 |
-
-0.
|
88 |
-
-0.
|
89 |
-
-0.
|
90 |
-
-0.
|
91 |
-
-0.
|
92 |
-
-0.
|
93 |
-
-0.
|
94 |
-
0.
|
95 |
-
0.
|
96 |
-
0.
|
97 |
-
0.
|
98 |
-
0.
|
99 |
-
0.
|
100 |
-
0.
|
101 |
-
|
102 |
-
|
103 |
-
0.
|
104 |
-
|
105 |
-
0.
|
106 |
-
0.
|
107 |
-
0.
|
108 |
-
|
109 |
-
-0.
|
110 |
-
-0.
|
111 |
-
-0.
|
112 |
-
-0.
|
113 |
-
-0.6918271067123792,2025-06-
|
114 |
-
-0.
|
115 |
-
-0.
|
116 |
-
-0.
|
117 |
-
-0.8148303173953624,2025-06-08
|
118 |
-
-0.8148303173953624,2025-06-08
|
119 |
-
-0.
|
120 |
-
-0.
|
121 |
-
-0.
|
122 |
-
-0.8677918616728917,2025-06-08
|
123 |
-
-0.8677918616728917,2025-06-
|
124 |
-
-0.
|
125 |
-
-0.
|
126 |
-
-0.8842017831796516,2025-06-
|
127 |
-
-0.8842017831796516,2025-06-
|
128 |
-
-0.8842017831796516,2025-06-
|
129 |
-
-0.8842017831796516,2025-06-
|
130 |
-
-0.
|
131 |
-
-0.
|
132 |
-
-0.
|
133 |
-
-0.
|
134 |
-
-0.9049633984067742,2025-06-10
|
135 |
-
-0.9049633984067742,2025-06-10
|
136 |
-
-0.
|
137 |
-
-0.
|
138 |
-
-0.
|
139 |
-
-0.
|
140 |
-
-0.
|
141 |
-
-0.
|
142 |
-
-0.
|
143 |
-
-0.
|
144 |
-
-0.
|
145 |
-
-0.
|
146 |
-
-0.
|
147 |
-
-0.
|
148 |
-
-0.
|
149 |
-
-0.
|
150 |
-
-0.
|
151 |
-
-0.
|
152 |
-
-0.
|
153 |
-
0.
|
154 |
-
0.
|
155 |
-
0.
|
156 |
-
0.
|
157 |
-
0.
|
158 |
-
0.
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
-0.
|
163 |
-
-0.
|
164 |
-
-0.
|
165 |
-
-0.
|
166 |
-
-0.
|
167 |
-
-0.
|
168 |
-
-0.
|
169 |
-
-0.
|
170 |
-
-0.
|
171 |
-
-0.
|
172 |
-
-0.
|
173 |
-
-0.
|
174 |
-
-0.
|
175 |
-
-0.
|
176 |
-
-0.
|
177 |
-
-0.
|
178 |
-
-0.
|
179 |
-
-0.
|
180 |
-
-0.
|
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 |
-
|
194 |
-
-0.522856603000806,2025-06-07
|
195 |
-
-0.
|
196 |
-
-0.
|
197 |
-
-0.
|
198 |
-
-0.
|
199 |
-
-0.6808073824663021,2025-06-08
|
200 |
-
-0.
|
201 |
-
-0.
|
202 |
-
0.
|
203 |
-
0.
|
204 |
-
0.
|
205 |
-
0.
|
206 |
-
0.
|
207 |
-
|
208 |
-
0.
|
209 |
-
0.
|
210 |
-
0.
|
211 |
-
0.
|
212 |
-
0.
|
213 |
-
0.
|
214 |
-
0.
|
215 |
-
0.
|
216 |
-
0.
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
0.
|
223 |
-
-0.
|
224 |
-
-0.
|
225 |
-
-0.
|
226 |
-
-0.
|
227 |
-
|
228 |
-
-0.
|
229 |
-
-0.
|
230 |
-
-0.
|
231 |
-
0.
|
232 |
-
0.
|
233 |
-
0.
|
234 |
-
0.
|
235 |
-
0.
|
236 |
-
0.
|
237 |
-
0.
|
238 |
-
0.
|
239 |
-
0.
|
240 |
-
0.
|
241 |
-
0.
|
242 |
-
0.
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
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 |
-
|
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 |
-
0.
|
278 |
-
0.
|
279 |
-
0.
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
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 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
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 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
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 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
-0.
|
381 |
-
-0.
|
382 |
-
-0.
|
383 |
-
-0.
|
384 |
-
-0.
|
385 |
-
-0.
|
386 |
-
-0.
|
387 |
-
-0.
|
388 |
-
-0.
|
389 |
-
-0.
|
390 |
-
-0.
|
391 |
-
-0.
|
392 |
-
-0.
|
393 |
-
-0.
|
394 |
-
-0.
|
395 |
-
-0.
|
396 |
-
-0.
|
397 |
-
-0.
|
398 |
-
-0.
|
399 |
-
-0.
|
400 |
-
|
401 |
-
-0.
|
402 |
-
-0.
|
403 |
-
-0.
|
404 |
-
|
405 |
-
-0.
|
406 |
-
-0.
|
407 |
-
-0.
|
408 |
-
-0.
|
409 |
-
-
|
410 |
-
-0.
|
411 |
-
-0.
|
412 |
-
-0.
|
413 |
-
-
|
414 |
-
-0.
|
415 |
-
-0.
|
416 |
-
-0.
|
417 |
-
-0.
|
418 |
-
|
419 |
-
0.
|
420 |
-
0.
|
421 |
-
-0.
|
422 |
-
|
423 |
-
-0.
|
424 |
-
-0.
|
425 |
-
0.
|
426 |
-
|
427 |
-
0.
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
-0.
|
432 |
-
-
|
433 |
-
-0.
|
434 |
-
-0.
|
435 |
-
|
436 |
-
-
|
437 |
-
|
438 |
-
|
439 |
-
0.
|
440 |
-
-
|
441 |
-
-0.
|
442 |
-
|
443 |
-
-0.
|
444 |
-
-0.
|
445 |
-
-
|
446 |
-
0.
|
447 |
-
|
448 |
-
-
|
449 |
-
|
450 |
-
-
|
451 |
-
-0.
|
452 |
-
-
|
453 |
-
-0.
|
454 |
-
-0.
|
455 |
-
|
456 |
-
0.
|
457 |
-
|
458 |
-
0.
|
459 |
-
-0.
|
460 |
-
-0.
|
461 |
-
-0.
|
462 |
-
-0.
|
463 |
-
-0.
|
464 |
-
-0.
|
465 |
-
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
0.
|
479 |
-
0.
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
0.
|
492 |
-
0.
|
493 |
-
|
494 |
-
0.
|
495 |
-
0.
|
496 |
-
0.
|
497 |
-
|
498 |
-
0.
|
499 |
-
0.
|
500 |
-
0.
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
0.
|
505 |
-
0.
|
506 |
-
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
0.
|
515 |
-
0.
|
516 |
-
0.
|
517 |
-
0.
|
518 |
-
0.
|
519 |
-
0.
|
520 |
-
0.
|
521 |
-
-0.
|
522 |
-
-0.
|
523 |
-
-0.
|
524 |
-
|
525 |
-
-0.
|
526 |
-
-0.
|
527 |
-
-
|
528 |
-
0.
|
529 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
|
2 |
+
-0.0002765562977782299,2025-05-15 21:37:27.000000,86,nusus-tayar25,False,ROI,,
|
3 |
+
-0.0002765562977782299,2025-05-15 21:39:37.000000,86,nusus-tayar25,False,ROI,,
|
4 |
+
-0.0002765562977782299,2025-05-15 21:40:02.000000,86,nusus-tayar25,False,ROI,,
|
5 |
+
-0.0002765562977782299,2025-05-15 21:40:28.000000,86,nusus-tayar25,False,ROI,,
|
6 |
+
-0.0002765562977782299,2025-05-15 21:36:35.000000,86,nusus-tayar25,False,ROI,,
|
7 |
+
-0.0002765562977782299,2025-05-15 21:37:02.000000,86,nusus-tayar25,False,ROI,,
|
8 |
+
-0.0002765562977782299,2025-05-15 21:39:10.000000,86,nusus-tayar25,False,ROI,,
|
9 |
+
-0.0002765562977782299,2025-05-15 21:41:11.000000,86,nusus-tayar25,False,ROI,,
|
10 |
+
-0.0002765562977782299,2025-05-15 21:41:55.000000,86,nusus-tayar25,False,ROI,,
|
11 |
+
-0.0002765562977782299,2025-05-15 21:42:41.000000,86,nusus-tayar25,False,ROI,,
|
12 |
+
-0.0002765562977782299,2025-05-15 21:43:24.000000,86,nusus-tayar25,False,ROI,,
|
13 |
+
-0.0002765562977782299,2025-05-15 21:44:09.000000,86,nusus-tayar25,False,ROI,,
|
14 |
+
-0.0002765562977782299,2025-05-15 21:44:51.000000,86,nusus-tayar25,False,ROI,,
|
15 |
+
-0.0002765562977782299,2025-05-15 21:45:37.000000,86,nusus-tayar25,False,ROI,,
|
16 |
+
-0.0002765562977782299,2025-05-15 21:46:20.000000,86,nusus-tayar25,False,ROI,,
|
17 |
+
-0.00012649422506416652,2025-05-19 22:39:16.682649,86,nusus-tayar25,False,ROI,,
|
18 |
+
-0.00010449205744944567,2025-05-19 22:47:57.660329,86,nusus-tayar25,False,ROI,,
|
19 |
+
-0.00010449205744944567,2025-05-19 22:53:48.567618,86,nusus-tayar25,False,ROI,,
|
20 |
+
-0.00012649422506416652,2025-05-19 22:39:37.060636,86,nusus-tayar25,False,ROI,,
|
21 |
+
-0.00010449205744944567,2025-05-19 22:46:29.056289,86,nusus-tayar25,False,ROI,,
|
22 |
+
-0.00010449205744944567,2025-05-19 22:51:30.269824,86,nusus-tayar25,False,ROI,,
|
23 |
+
-0.00010449205744944567,2025-05-19 22:57:07.717697,86,nusus-tayar25,False,ROI,,
|
24 |
+
-0.0011357601313007892,2025-05-23 19:05:51.628406,86,nusus-tayar25,False,ROI,,
|
25 |
+
-0.0016374352988718366,2025-05-27 05:42:54.798079,86,nusus-tayar25,False,ROI,,
|
26 |
+
-0.8666050938279419,2025-06-04 21:48:07.115718,86,nusus-tayar25,False,ROI,,
|
27 |
+
-0.8666050938279419,2025-06-04 21:52:00.578098,86,nusus-tayar25,False,ROI,,
|
28 |
+
-0.999999999999975,2025-06-05 01:55:15.033359,86,nusus-tayar25,False,ROI,,
|
29 |
+
-0.1696775721419591,2025-06-05 18:27:57.578268,86,nusus-tayar25,False,ROI,,
|
30 |
+
1.8675787957432175,2025-06-06 05:14:51.027065,86,nusus-tayar25,False,ROI,,
|
31 |
+
1.8675787957432175,2025-06-06 03:39:44.505985,86,nusus-tayar25,False,ROI,,
|
32 |
+
1.0420726955249058,2025-05-30 01:10:42.776945,102,kelrus-muha52,False,ROI,,
|
33 |
+
1.0371385033661085,2025-05-30 16:11:26.814088,102,kelrus-muha52,False,ROI,,
|
34 |
+
-0.20964670158400078,2025-06-03 19:28:54.348419,102,kelrus-muha52,False,ROI,,
|
35 |
+
-0.6044365419107054,2025-06-04 12:35:13.593971,102,kelrus-muha52,False,ROI,,
|
36 |
+
-0.6040367838477997,2025-06-04 14:25:41.343980,102,kelrus-muha52,False,ROI,,
|
37 |
+
0.017789201624683004,2025-06-20 15:46:36.761049,102,kelrus-muha52,False,ROI,,
|
38 |
+
-0.5266054987599221,2025-06-20 16:06:44.231042,102,kelrus-muha52,False,ROI,,
|
39 |
+
-0.526566199195706,2025-06-23 22:29:14.214104,102,kelrus-muha52,False,ROI,,
|
40 |
+
-0.5265358959172741,2025-06-25 20:20:15.920768,102,kelrus-muha52,False,ROI,,
|
41 |
+
-0.1676,2025-07-10 16:36:58.945754,102,kelrus-muha52,False,ROI,,
|
42 |
+
-0.5407000717190478,2025-06-06 13:40:55.755362,111,furtek-gilje55,False,ROI,,
|
43 |
+
-0.5407000717190478,2025-06-06 14:42:37.722147,111,furtek-gilje55,False,ROI,,
|
44 |
+
-0.7884286963057436,2025-06-10 22:35:07.125343,111,furtek-gilje55,False,ROI,,
|
45 |
+
-0.9488224700727876,2025-06-12 21:50:15.066243,111,furtek-gilje55,False,ROI,,
|
46 |
+
-0.9708794234421507,2025-06-16 20:22:51.755115,111,furtek-gilje55,False,ROI,,
|
47 |
+
-0.32068278076571854,2025-06-17 21:36:41.766412,111,furtek-gilje55,False,ROI,,
|
48 |
+
-0.32068659660503274,2025-06-19 00:21:32.057093,111,furtek-gilje55,False,ROI,,
|
49 |
+
-0.3228255048329154,2025-06-25 20:26:07.699190,111,furtek-gilje55,False,ROI,,
|
50 |
+
-0.32243783876621357,2025-06-26 20:31:11.593911,111,furtek-gilje55,False,ROI,,
|
51 |
+
-0.32305391321520305,2025-06-27 20:35:38.397462,111,furtek-gilje55,False,ROI,,
|
52 |
+
-0.32294977899509736,2025-06-28 20:41:44.352164,111,furtek-gilje55,False,ROI,,
|
53 |
+
-0.32295958384334433,2025-06-29 20:42:03.893606,111,furtek-gilje55,False,ROI,,
|
54 |
+
-0.0061,2025-07-08 15:47:43.809158,111,furtek-gilje55,False,ROI,,
|
55 |
+
0.0078,2025-07-09 20:00:26.265494,111,furtek-gilje55,False,ROI,,
|
56 |
+
-0.36854758417016864,2025-06-05 20:46:51.369656,112,vuzus-fazi89,False,ROI,,
|
57 |
+
-0.7496728527619763,2025-06-08 02:03:32.248014,112,vuzus-fazi89,False,ROI,,
|
58 |
+
-0.014731497524683168,2025-06-19 15:34:45.616706,112,vuzus-fazi89,False,ROI,,
|
59 |
+
-0.015216415185693832,2025-06-20 16:50:28.203475,112,vuzus-fazi89,False,ROI,,
|
60 |
+
-0.04864515252801627,2025-06-23 01:49:49.173099,112,vuzus-fazi89,False,ROI,,
|
61 |
+
-0.025612949797535367,2025-06-25 22:22:45.577367,112,vuzus-fazi89,False,ROI,,
|
62 |
+
-0.029623352725324348,2025-06-26 22:27:15.010944,112,vuzus-fazi89,False,ROI,,
|
63 |
+
-0.03083925699883372,2025-07-02 13:29:44.222091,112,vuzus-fazi89,False,ROI,,
|
64 |
+
-0.03038219585470603,2025-07-02 13:44:55.765206,112,vuzus-fazi89,False,ROI,,
|
65 |
+
-0.012183894653485239,2025-07-04 14:18:47.815301,112,vuzus-fazi89,False,ROI,,
|
66 |
+
-0.3421,2025-07-08 17:42:56.444590,112,vuzus-fazi89,False,ROI,,
|
67 |
+
-0.3412,2025-07-09 20:13:30.109007,112,vuzus-fazi89,False,ROI,,
|
68 |
+
0.040317896291976574,2025-06-24 23:28:15.251315,115,yenot-zoncen49,False,ROI,,
|
69 |
+
-0.5456503958801932,2025-06-06 06:06:41.681577,115,yenot-zoncen49,False,ROI,,
|
70 |
+
-0.5456503958801932,2025-06-06 08:19:44.944148,115,yenot-zoncen49,False,ROI,,
|
71 |
+
-0.5456503958801932,2025-06-06 09:23:09.755892,115,yenot-zoncen49,False,ROI,,
|
72 |
+
-0.5456503958801932,2025-06-06 07:13:18.351148,115,yenot-zoncen49,False,ROI,,
|
73 |
+
-0.5456503958801932,2025-06-06 10:29:34.181627,115,yenot-zoncen49,False,ROI,,
|
74 |
+
-0.5456503958801932,2025-06-06 11:29:53.721747,115,yenot-zoncen49,False,ROI,,
|
75 |
+
-0.6935346167526257,2025-06-06 18:03:43.542513,115,yenot-zoncen49,False,ROI,,
|
76 |
+
-0.6935346167526257,2025-06-06 19:04:52.884426,115,yenot-zoncen49,False,ROI,,
|
77 |
+
-0.6935346167526257,2025-06-06 20:11:32.564197,115,yenot-zoncen49,False,ROI,,
|
78 |
+
-0.6935346167526257,2025-06-06 21:17:44.644404,115,yenot-zoncen49,False,ROI,,
|
79 |
+
-0.6935346167526257,2025-06-06 23:49:32.590705,115,yenot-zoncen49,False,ROI,,
|
80 |
+
-0.6935346167526257,2025-06-06 22:42:27.626419,115,yenot-zoncen49,False,ROI,,
|
81 |
+
-0.7694497887241564,2025-06-07 00:58:38.934274,115,yenot-zoncen49,False,ROI,,
|
82 |
+
-0.7694497887241564,2025-06-07 01:59:14.908032,115,yenot-zoncen49,False,ROI,,
|
83 |
+
-0.7694497887241564,2025-06-07 03:06:00.184228,115,yenot-zoncen49,False,ROI,,
|
84 |
+
-0.7694497887241564,2025-06-07 04:12:56.442833,115,yenot-zoncen49,False,ROI,,
|
85 |
+
-0.7694497887241564,2025-06-07 05:17:05.382648,115,yenot-zoncen49,False,ROI,,
|
86 |
+
-0.8157364377840948,2025-06-07 10:38:37.999244,115,yenot-zoncen49,False,ROI,,
|
87 |
+
-0.8419242567103777,2025-06-10 04:19:24.254702,115,yenot-zoncen49,False,ROI,,
|
88 |
+
-0.9107340650896589,2025-06-11 22:23:52.680327,115,yenot-zoncen49,False,ROI,,
|
89 |
+
-0.9415532636683955,2025-06-12 22:29:06.555260,115,yenot-zoncen49,False,ROI,,
|
90 |
+
-0.9635936504813616,2025-06-13 22:40:52.426319,115,yenot-zoncen49,False,ROI,,
|
91 |
+
-0.970050696207783,2025-06-15 04:17:24.547659,115,yenot-zoncen49,False,ROI,,
|
92 |
+
-0.9713222308063645,2025-06-17 02:16:08.931664,115,yenot-zoncen49,False,ROI,,
|
93 |
+
-0.9778909193887282,2025-06-18 02:16:08.125875,115,yenot-zoncen49,False,ROI,,
|
94 |
+
-0.982009757827749,2025-06-19 02:17:58.619626,115,yenot-zoncen49,False,ROI,,
|
95 |
+
0.040910216685406064,2025-06-20 18:03:13.534717,115,yenot-zoncen49,False,ROI,,
|
96 |
+
0.040476231551130226,2025-06-21 23:13:34.794828,115,yenot-zoncen49,False,ROI,,
|
97 |
+
0.04023309276670273,2025-06-21 23:45:13.724045,115,yenot-zoncen49,False,ROI,,
|
98 |
+
0.04029271814269508,2025-06-23 20:41:04.068987,115,yenot-zoncen49,False,ROI,,
|
99 |
+
0.04033252892026917,2025-06-26 04:35:04.608810,115,yenot-zoncen49,False,ROI,,
|
100 |
+
0.04029593577033963,2025-06-27 04:35:35.398093,115,yenot-zoncen49,False,ROI,,
|
101 |
+
0.04028066776071926,2025-06-28 04:36:45.436957,115,yenot-zoncen49,False,ROI,,
|
102 |
+
1.0079917219641206,2025-06-30 02:00:40.346959,115,yenot-zoncen49,False,ROI,,
|
103 |
+
0.040272014375265064,2025-07-01 03:00:12.912847,115,yenot-zoncen49,False,ROI,,
|
104 |
+
0.040331888595324106,2025-07-02 03:47:08.542249,115,yenot-zoncen49,False,ROI,,
|
105 |
+
-0.01690276896570675,2025-07-03 03:49:18.256157,115,yenot-zoncen49,False,ROI,,
|
106 |
+
0.04026680282855222,2025-07-07 03:38:30.485379,115,yenot-zoncen49,False,ROI,,
|
107 |
+
0.04039568928848469,2025-07-08 03:40:56.824502,115,yenot-zoncen49,False,ROI,,
|
108 |
+
0.04027779750902094,2025-07-09 04:08:49.849360,115,yenot-zoncen49,False,ROI,,
|
109 |
+
-0.016911618460243583,2025-07-10 04:10:17.892042,115,yenot-zoncen49,False,ROI,,
|
110 |
+
-0.9764430201680611,2025-06-25 12:58:31.434448,116,honji-hahi60,False,ROI,,
|
111 |
+
-0.5419683668321018,2025-06-06 11:29:18.913469,116,honji-hahi60,False,ROI,,
|
112 |
+
-0.5419683668321018,2025-06-06 12:31:08.139923,116,honji-hahi60,False,ROI,,
|
113 |
+
-0.6918271067123792,2025-06-06 22:15:03.771384,116,honji-hahi60,False,ROI,,
|
114 |
+
-0.6918271067123792,2025-06-07 00:12:24.552821,116,honji-hahi60,False,ROI,,
|
115 |
+
-0.6918271067123792,2025-06-07 02:01:48.183436,116,honji-hahi60,False,ROI,,
|
116 |
+
-0.7697658335453386,2025-06-07 15:35:09.317222,116,honji-hahi60,False,ROI,,
|
117 |
+
-0.8148303173953624,2025-06-08 00:16:07.222875,116,honji-hahi60,False,ROI,,
|
118 |
+
-0.8148303173953624,2025-06-08 04:13:13.395768,116,honji-hahi60,False,ROI,,
|
119 |
+
-0.8148303173953624,2025-06-08 02:11:01.421104,116,honji-hahi60,False,ROI,,
|
120 |
+
-0.8148303173953624,2025-06-08 03:12:05.231210,116,honji-hahi60,False,ROI,,
|
121 |
+
-0.845686327990629,2025-06-08 14:28:01.349077,116,honji-hahi60,False,ROI,,
|
122 |
+
-0.8677918616728917,2025-06-08 21:32:22.234368,116,honji-hahi60,False,ROI,,
|
123 |
+
-0.8677918616728917,2025-06-08 22:36:17.834229,116,honji-hahi60,False,ROI,,
|
124 |
+
-0.8677918616728917,2025-06-08 23:59:43.295623,116,honji-hahi60,False,ROI,,
|
125 |
+
-0.8677918616728917,2025-06-09 01:00:58.054069,116,honji-hahi60,False,ROI,,
|
126 |
+
-0.8842017831796516,2025-06-09 19:31:39.204380,116,honji-hahi60,False,ROI,,
|
127 |
+
-0.8842017831796516,2025-06-09 20:34:23.789481,116,honji-hahi60,False,ROI,,
|
128 |
+
-0.8842017831796516,2025-06-10 00:05:22.986881,116,honji-hahi60,False,ROI,,
|
129 |
+
-0.8842017831796516,2025-06-10 01:11:09.610266,116,honji-hahi60,False,ROI,,
|
130 |
+
-0.8842017831796516,2025-06-09 21:40:11.196609,116,honji-hahi60,False,ROI,,
|
131 |
+
-0.8842017831796516,2025-06-09 22:59:27.051209,116,honji-hahi60,False,ROI,,
|
132 |
+
-0.8959727145977444,2025-06-10 02:15:06.888709,116,honji-hahi60,False,ROI,,
|
133 |
+
-0.8959727145977444,2025-06-10 03:16:08.200810,116,honji-hahi60,False,ROI,,
|
134 |
+
-0.9049633984067742,2025-06-10 13:06:56.183812,116,honji-hahi60,False,ROI,,
|
135 |
+
-0.9049633984067742,2025-06-10 14:12:49.085955,116,honji-hahi60,False,ROI,,
|
136 |
+
-0.9049633984067742,2025-06-10 12:05:28.212332,116,honji-hahi60,False,ROI,,
|
137 |
+
-0.9049633984067742,2025-06-10 15:17:49.725694,116,honji-hahi60,False,ROI,,
|
138 |
+
-0.9122831964482513,2025-06-10 19:30:50.269289,116,honji-hahi60,False,ROI,,
|
139 |
+
-0.9122831964482513,2025-06-10 20:30:54.841382,116,honji-hahi60,False,ROI,,
|
140 |
+
-0.9049633984067742,2025-06-10 16:17:52.268774,116,honji-hahi60,False,ROI,,
|
141 |
+
-0.9049633984067742,2025-06-10 17:23:51.522272,116,honji-hahi60,False,ROI,,
|
142 |
+
-0.9122831964482513,2025-06-10 18:29:24.025681,116,honji-hahi60,False,ROI,,
|
143 |
+
-0.9182298315923811,2025-06-11 22:14:54.110285,116,honji-hahi60,False,ROI,,
|
144 |
+
-0.9182298315923811,2025-06-11 23:15:11.685382,116,honji-hahi60,False,ROI,,
|
145 |
+
-0.9435336077967746,2025-06-13 18:28:24.365605,116,honji-hahi60,False,ROI,,
|
146 |
+
-0.9515049258814656,2025-06-16 13:54:43.588418,116,honji-hahi60,False,ROI,,
|
147 |
+
-0.9599816697433252,2025-06-18 03:40:06.462972,116,honji-hahi60,False,ROI,,
|
148 |
+
-0.97034511999367,2025-06-19 16:05:48.686587,116,honji-hahi60,False,ROI,,
|
149 |
+
-0.9715721248370575,2025-06-21 15:51:08.277427,116,honji-hahi60,False,ROI,,
|
150 |
+
-0.973743176971683,2025-06-23 18:39:27.894815,116,honji-hahi60,False,ROI,,
|
151 |
+
-0.9779549817792025,2025-06-26 17:30:57.346608,116,honji-hahi60,False,ROI,,
|
152 |
+
-0.9792864793987509,2025-06-28 17:26:32.957347,116,honji-hahi60,False,ROI,,
|
153 |
+
-0.9798907246693687,2025-06-29 19:09:29.931685,116,honji-hahi60,False,ROI,,
|
154 |
+
-0.981998862945028,2025-07-01 01:13:51.237332,116,honji-hahi60,False,ROI,,
|
155 |
+
0.030196618366448824,2025-07-01 15:57:00.489588,116,honji-hahi60,False,ROI,,
|
156 |
+
0.030193699294877696,2025-07-02 22:07:41.242323,116,honji-hahi60,False,ROI,,
|
157 |
+
0.030167571205695687,2025-07-03 22:09:41.859798,116,honji-hahi60,False,ROI,,
|
158 |
+
0.03019230719666055,2025-07-04 22:13:19.572262,116,honji-hahi60,False,ROI,,
|
159 |
+
0.030178678685341742,2025-07-06 01:02:47.688866,116,honji-hahi60,False,ROI,,
|
160 |
+
0.03012059130290745,2025-07-07 17:57:24.613550,116,honji-hahi60,False,ROI,,
|
161 |
+
0.0301116992191075,2025-07-10 11:58:01.320924,116,honji-hahi60,False,ROI,,
|
162 |
+
-0.08786394198021352,2025-06-25 19:10:56.865968,117,furye-himkon89,False,ROI,,
|
163 |
+
-0.539434826138091,2025-06-07 12:07:37.903080,117,furye-himkon89,False,ROI,,
|
164 |
+
-0.8457106839760286,2025-06-08 14:06:51.667566,117,furye-himkon89,False,ROI,,
|
165 |
+
-0.9230692071887114,2025-06-09 18:36:45.190353,117,furye-himkon89,False,ROI,,
|
166 |
+
-0.9405482339574164,2025-06-10 19:00:01.668753,117,furye-himkon89,False,ROI,,
|
167 |
+
-0.9557433990624431,2025-06-11 20:01:40.606767,117,furye-himkon89,False,ROI,,
|
168 |
+
-0.9644214185359603,2025-06-12 20:03:47.365734,117,furye-himkon89,False,ROI,,
|
169 |
+
-0.9678726884215347,2025-06-13 20:08:14.584427,117,furye-himkon89,False,ROI,,
|
170 |
+
-0.9700982511733464,2025-06-14 20:11:08.489286,117,furye-himkon89,False,ROI,,
|
171 |
+
-0.9709192226604775,2025-06-15 20:54:19.955496,117,furye-himkon89,False,ROI,,
|
172 |
+
-0.9716427293842737,2025-06-17 04:52:36.207967,117,furye-himkon89,False,ROI,,
|
173 |
+
-0.9742006075794644,2025-06-18 15:02:37.080985,117,furye-himkon89,False,ROI,,
|
174 |
+
-0.977337133185629,2025-06-19 16:24:38.211294,117,furye-himkon89,False,ROI,,
|
175 |
+
-0.09001361679795317,2025-06-21 03:13:51.781412,117,furye-himkon89,False,ROI,,
|
176 |
+
-0.08645582918602235,2025-06-22 04:34:01.456462,117,furye-himkon89,False,ROI,,
|
177 |
+
-0.11763524753777366,2025-06-23 11:54:32.890714,117,furye-himkon89,False,ROI,,
|
178 |
+
-0.08917592636394456,2025-06-24 12:59:40.209857,117,furye-himkon89,False,ROI,,
|
179 |
+
-0.0815445354173786,2025-06-26 19:12:14.206458,117,furye-himkon89,False,ROI,,
|
180 |
+
-0.0878053839727635,2025-06-27 19:14:37.469387,117,furye-himkon89,False,ROI,,
|
181 |
+
-0.08954618916326362,2025-06-28 19:21:34.537810,117,furye-himkon89,False,ROI,,
|
182 |
+
-0.08722790096787736,2025-06-29 19:23:46.050624,117,furye-himkon89,False,ROI,,
|
183 |
+
-0.08350642299662536,2025-07-01 00:20:40.857392,117,furye-himkon89,False,ROI,,
|
184 |
+
-0.0838866613857091,2025-07-02 02:24:01.594191,117,furye-himkon89,False,ROI,,
|
185 |
+
-0.03602870603222019,2025-07-02 03:24:27.157765,117,furye-himkon89,False,ROI,,
|
186 |
+
-0.03614867663069399,2025-07-03 04:35:29.601177,117,furye-himkon89,False,ROI,,
|
187 |
+
-0.0362254256430643,2025-07-04 04:35:34.019409,117,furye-himkon89,False,ROI,,
|
188 |
+
-0.03618322307123023,2025-07-05 04:38:17.034149,117,furye-himkon89,False,ROI,,
|
189 |
+
-0.03616721463099615,2025-07-06 21:40:37.039116,117,furye-himkon89,False,ROI,,
|
190 |
+
-0.03620418286483007,2025-07-07 21:42:41.143080,117,furye-himkon89,False,ROI,,
|
191 |
+
-0.036271214057503554,2025-07-08 21:47:30.629990,117,furye-himkon89,False,ROI,,
|
192 |
+
-0.036228215167683375,2025-07-09 21:48:58.990240,117,furye-himkon89,False,ROI,,
|
193 |
+
0.017516635756827492,2025-06-25 01:01:15.995792,118,lonwus-patu86,False,ROI,,
|
194 |
+
-0.522856603000806,2025-06-07 16:03:45.373863,118,lonwus-patu86,False,ROI,,
|
195 |
+
-0.522856603000806,2025-06-07 17:07:58.993795,118,lonwus-patu86,False,ROI,,
|
196 |
+
-0.522856603000806,2025-06-07 14:59:15.300909,118,lonwus-patu86,False,ROI,,
|
197 |
+
-0.522856603000806,2025-06-07 18:11:58.599501,118,lonwus-patu86,False,ROI,,
|
198 |
+
-0.522856603000806,2025-06-07 19:15:56.087703,118,lonwus-patu86,False,ROI,,
|
199 |
+
-0.6808073824663021,2025-06-08 20:18:54.565690,118,lonwus-patu86,False,ROI,,
|
200 |
+
-0.6808073824663021,2025-06-08 19:12:17.097068,118,lonwus-patu86,False,ROI,,
|
201 |
+
-0.6808073824663021,2025-06-08 17:00:30.730686,118,lonwus-patu86,False,ROI,,
|
202 |
+
-0.6808073824663021,2025-06-08 18:06:00.793190,118,lonwus-patu86,False,ROI,,
|
203 |
+
-0.6808073824663021,2025-06-08 21:24:29.536035,118,lonwus-patu86,False,ROI,,
|
204 |
+
-0.8205651694178833,2025-06-11 13:51:16.740004,118,lonwus-patu86,False,ROI,,
|
205 |
+
-0.9982869245880929,2025-06-17 15:11:09.841348,118,lonwus-patu86,False,ROI,,
|
206 |
+
0.0206807438190586,2025-06-20 15:43:23.557653,118,lonwus-patu86,False,ROI,,
|
207 |
+
0.012646455700834114,2025-06-22 05:18:59.744200,118,lonwus-patu86,False,ROI,,
|
208 |
+
0.013828964808283661,2025-06-23 21:58:03.255498,118,lonwus-patu86,False,ROI,,
|
209 |
+
0.019047809144180805,2025-06-26 15:44:12.009060,118,lonwus-patu86,False,ROI,,
|
210 |
+
0.017228247829021326,2025-06-27 23:49:06.142008,118,lonwus-patu86,False,ROI,,
|
211 |
+
-0.4050701344086062,2025-06-30 12:57:29.272012,118,lonwus-patu86,False,ROI,,
|
212 |
+
0.018350601457304272,2025-07-01 14:28:38.347115,118,lonwus-patu86,False,ROI,,
|
213 |
+
0.01789468731908883,2025-07-02 18:23:35.473710,118,lonwus-patu86,False,ROI,,
|
214 |
+
0.01916537463050383,2025-07-02 19:00:49.006051,118,lonwus-patu86,False,ROI,,
|
215 |
+
0.019362043070216828,2025-07-04 09:04:48.455015,118,lonwus-patu86,False,ROI,,
|
216 |
+
0.019384240323132795,2025-07-05 19:26:37.478787,118,lonwus-patu86,False,ROI,,
|
217 |
+
0.019078179206694967,2025-07-07 14:45:45.247710,118,lonwus-patu86,False,ROI,,
|
218 |
+
0.01929965007415757,2025-07-08 14:53:43.187385,118,lonwus-patu86,False,ROI,,
|
219 |
+
0.019641454880472198,2025-07-09 17:30:58.739575,118,lonwus-patu86,False,ROI,,
|
220 |
+
0.01934171753288938,2025-07-10 17:50:42.683244,118,lonwus-patu86,False,ROI,,
|
221 |
+
0.05180334219984606,2025-06-24 19:53:07.732646,119,lonlim-zapgi60,False,ROI,,
|
222 |
+
-0.5209472494164171,2025-06-06 21:16:18.171681,119,lonlim-zapgi60,False,ROI,,
|
223 |
+
-0.8806121461884667,2025-06-07 21:20:52.452249,119,lonlim-zapgi60,False,ROI,,
|
224 |
+
-0.9494425475236697,2025-06-08 21:24:43.897906,119,lonlim-zapgi60,False,ROI,,
|
225 |
+
-0.9581661316409477,2025-06-09 21:25:09.568709,119,lonlim-zapgi60,False,ROI,,
|
226 |
+
-0.9718003547903387,2025-06-10 21:27:14.352202,119,lonlim-zapgi60,False,ROI,,
|
227 |
+
0.05149396747515467,2025-06-26 04:53:01.574630,119,lonlim-zapgi60,False,ROI,,
|
228 |
+
-0.9787591800715275,2025-06-12 19:40:26.414300,119,lonlim-zapgi60,False,ROI,,
|
229 |
+
-0.9794772304169566,2025-06-13 20:14:38.143005,119,lonlim-zapgi60,False,ROI,,
|
230 |
+
-0.9830628598456759,2025-06-15 02:29:15.201154,119,lonlim-zapgi60,False,ROI,,
|
231 |
+
-0.984600066632907,2025-06-16 19:00:11.977194,119,lonlim-zapgi60,False,ROI,,
|
232 |
+
-0.9849422037402333,2025-06-17 20:46:59.724500,119,lonlim-zapgi60,False,ROI,,
|
233 |
+
-0.9855817503695301,2025-06-18 20:50:26.458030,119,lonlim-zapgi60,False,ROI,,
|
234 |
+
-0.9883132405747813,2025-06-19 20:51:17.141292,119,lonlim-zapgi60,False,ROI,,
|
235 |
+
-0.9894080985562059,2025-06-20 21:06:08.776489,119,lonlim-zapgi60,False,ROI,,
|
236 |
+
0.04847969781766448,2025-06-22 11:50:49.990087,119,lonlim-zapgi60,False,ROI,,
|
237 |
+
0.047452653620608354,2025-06-23 17:07:42.889958,119,lonlim-zapgi60,False,ROI,,
|
238 |
+
0.05147054659288397,2025-06-27 05:09:36.222260,119,lonlim-zapgi60,False,ROI,,
|
239 |
+
0.05150373646620987,2025-06-28 05:12:44.536250,119,lonlim-zapgi60,False,ROI,,
|
240 |
+
0.05241034698140612,2025-06-30 21:04:54.521626,119,lonlim-zapgi60,False,ROI,,
|
241 |
+
0.05345695396678707,2025-07-01 06:26:18.505255,119,lonlim-zapgi60,False,ROI,,
|
242 |
+
0.05347017828890155,2025-07-02 21:00:42.731913,119,lonlim-zapgi60,False,ROI,,
|
243 |
+
0.05353680981149278,2025-07-04 05:31:01.589335,119,lonlim-zapgi60,False,ROI,,
|
244 |
+
0.05335075045757964,2025-07-05 05:42:43.739324,119,lonlim-zapgi60,False,ROI,,
|
245 |
+
0.05334461103492738,2025-07-06 06:28:14.143994,119,lonlim-zapgi60,False,ROI,,
|
246 |
+
0.05339836440050494,2025-07-07 20:57:02.912427,119,lonlim-zapgi60,False,ROI,,
|
247 |
+
0.05340533210424803,2025-07-08 21:00:52.124280,119,lonlim-zapgi60,False,ROI,,
|
248 |
+
0.05332347960649764,2025-07-10 05:19:41.621022,119,lonlim-zapgi60,False,ROI,,
|
249 |
+
-0.04228785271807323,2025-06-06 21:35:10.663781,120,joyus-goson39,False,ROI,,
|
250 |
+
-0.7433267707945117,2025-06-08 17:03:45.278780,120,joyus-goson39,False,ROI,,
|
251 |
+
-0.93143110654765,2025-06-08 22:12:15.454361,120,joyus-goson39,False,ROI,,
|
252 |
+
-0.9954715886959313,2025-06-13 21:09:43.972117,120,joyus-goson39,False,ROI,,
|
253 |
+
-0.9958974311434143,2025-06-14 21:11:33.782224,120,joyus-goson39,False,ROI,,
|
254 |
+
0.01281989230813263,2025-06-21 04:38:13.983197,120,joyus-goson39,False,ROI,,
|
255 |
+
0.00918426562764374,2025-06-22 17:59:18.839988,120,joyus-goson39,False,ROI,,
|
256 |
+
-0.4037062423847332,2025-06-24 17:56:09.473654,120,joyus-goson39,False,ROI,,
|
257 |
+
-0.4030163752733562,2025-06-26 18:05:18.703003,120,joyus-goson39,False,ROI,,
|
258 |
+
0.014126047255441199,2025-06-27 18:10:08.096941,120,joyus-goson39,False,ROI,,
|
259 |
+
0.013677833806778006,2025-06-28 18:43:02.034373,120,joyus-goson39,False,ROI,,
|
260 |
+
0.01290353554430701,2025-06-29 22:18:19.797250,120,joyus-goson39,False,ROI,,
|
261 |
+
0.01562808622531131,2025-06-29 22:31:06.299533,120,joyus-goson39,False,ROI,,
|
262 |
+
0.015624208345420998,2025-07-01 21:43:59.972814,120,joyus-goson39,False,ROI,,
|
263 |
+
0.016604336472886283,2025-07-02 21:44:36.065732,120,joyus-goson39,False,ROI,,
|
264 |
+
0.014823850907343283,2025-07-03 23:21:05.552982,120,joyus-goson39,False,ROI,,
|
265 |
+
0.015707317097138906,2025-07-04 23:26:09.066023,120,joyus-goson39,False,ROI,,
|
266 |
+
0.015189324303110707,2025-07-05 23:32:27.573847,120,joyus-goson39,False,ROI,,
|
267 |
+
0.01667016293706136,2025-07-07 09:06:38.975765,120,joyus-goson39,False,ROI,,
|
268 |
+
0.015691295059315324,2025-07-09 01:45:17.080621,120,joyus-goson39,False,ROI,,
|
269 |
+
-0.0420238942074701,2025-06-06 21:50:52.233090,121,cilwar-rimlu27,False,ROI,,
|
270 |
+
0.015797171153730583,2025-06-25 18:14:53.510782,121,cilwar-rimlu27,False,ROI,,
|
271 |
+
0.01879867083628395,2025-06-20 03:05:47.518474,121,cilwar-rimlu27,False,ROI,,
|
272 |
+
0.01504495291352348,2025-06-21 04:35:04.483969,121,cilwar-rimlu27,False,ROI,,
|
273 |
+
0.012364763968460313,2025-06-22 17:57:02.527889,121,cilwar-rimlu27,False,ROI,,
|
274 |
+
0.015334553753228564,2025-06-24 17:53:42.761349,121,cilwar-rimlu27,False,ROI,,
|
275 |
+
0.014314041774427855,2025-06-26 18:16:33.521275,121,cilwar-rimlu27,False,ROI,,
|
276 |
+
0.015565838529927989,2025-06-27 21:00:48.774833,121,cilwar-rimlu27,False,ROI,,
|
277 |
+
0.013724025611021595,2025-06-28 20:15:08.793290,121,cilwar-rimlu27,False,ROI,,
|
278 |
+
0.013776590419844137,2025-06-29 20:30:56.291068,121,cilwar-rimlu27,False,ROI,,
|
279 |
+
0.01404079864113883,2025-06-30 21:13:27.016773,121,cilwar-rimlu27,False,ROI,,
|
280 |
+
0.015270023546624545,2025-07-02 03:20:47.776861,121,cilwar-rimlu27,False,ROI,,
|
281 |
+
0.01371263999749317,2025-07-04 02:54:54.812643,121,cilwar-rimlu27,False,ROI,,
|
282 |
+
0.013805335654784923,2025-07-05 22:12:11.720147,121,cilwar-rimlu27,False,ROI,,
|
283 |
+
0.0136344452566739,2025-07-07 02:08:48.306083,121,cilwar-rimlu27,False,ROI,,
|
284 |
+
0.013740182099714282,2025-07-08 02:53:20.106883,121,cilwar-rimlu27,False,ROI,,
|
285 |
+
0.013997983101593281,2025-07-10 02:44:17.041115,121,cilwar-rimlu27,False,ROI,,
|
286 |
+
0.005663899415618401,2025-06-25 09:06:26.774484,122,tevi-kulo15,False,ROI,,
|
287 |
+
-0.051812127318122125,2025-06-07 20:35:53.079934,122,tevi-kulo15,False,ROI,,
|
288 |
+
-0.6001593353781343,2025-06-08 22:11:03.101491,122,tevi-kulo15,False,ROI,,
|
289 |
+
-0.8147388067528492,2025-06-10 18:57:11.357853,122,tevi-kulo15,False,ROI,,
|
290 |
+
-0.8540570698375662,2025-06-11 19:15:27.075172,122,tevi-kulo15,False,ROI,,
|
291 |
+
-0.880022345073269,2025-06-12 19:16:57.908495,122,tevi-kulo15,False,ROI,,
|
292 |
+
-0.8978665442605297,2025-06-13 19:20:13.259482,122,tevi-kulo15,False,ROI,,
|
293 |
+
-0.9212706823459165,2025-06-14 19:22:15.337790,122,tevi-kulo15,False,ROI,,
|
294 |
+
-0.9293658373034275,2025-06-16 00:58:44.095764,122,tevi-kulo15,False,ROI,,
|
295 |
+
-0.9533549366113704,2025-06-17 01:17:35.998975,122,tevi-kulo15,False,ROI,,
|
296 |
+
-0.9633153682213211,2025-06-19 09:26:06.735546,122,tevi-kulo15,False,ROI,,
|
297 |
+
0.005390441184374817,2025-06-20 10:10:14.301890,122,tevi-kulo15,False,ROI,,
|
298 |
+
0.00560037465856289,2025-06-21 12:17:45.947767,122,tevi-kulo15,False,ROI,,
|
299 |
+
0.005594561856847591,2025-06-22 19:31:40.241629,122,tevi-kulo15,False,ROI,,
|
300 |
+
0.005813573961653384,2025-06-24 09:04:35.000770,122,tevi-kulo15,False,ROI,,
|
301 |
+
0.005662384723325697,2025-06-26 10:47:06.308020,122,tevi-kulo15,False,ROI,,
|
302 |
+
0.005603116910563477,2025-06-28 15:37:51.444460,122,tevi-kulo15,False,ROI,,
|
303 |
+
0.005603085787281081,2025-06-28 15:51:19.688099,122,tevi-kulo15,False,ROI,,
|
304 |
+
0.0055985662131090574,2025-06-29 22:48:00.332228,122,tevi-kulo15,False,ROI,,
|
305 |
+
0.005701311381415719,2025-06-30 23:06:39.908330,122,tevi-kulo15,False,ROI,,
|
306 |
+
0.005699000719452618,2025-07-02 10:42:17.026684,122,tevi-kulo15,False,ROI,,
|
307 |
+
0.005725624287040931,2025-07-04 09:54:56.817060,122,tevi-kulo15,False,ROI,,
|
308 |
+
0.005707686752193464,2025-07-06 17:12:16.410018,122,tevi-kulo15,False,ROI,,
|
309 |
+
-0.3675575214326029,2025-06-24 22:43:05.639405,123,cordron-yelku44,False,ROI,,
|
310 |
+
-0.4199199156585539,2025-06-09 00:31:18.357811,123,cordron-yelku44,False,ROI,,
|
311 |
+
-0.9919527478045069,2025-06-10 02:17:21.916446,123,cordron-yelku44,False,ROI,,
|
312 |
+
-0.9944496956447029,2025-06-11 08:14:14.656064,123,cordron-yelku44,False,ROI,,
|
313 |
+
-0.9970053478645255,2025-06-12 08:16:43.196306,123,cordron-yelku44,False,ROI,,
|
314 |
+
-0.9979487653300927,2025-06-13 20:51:54.959756,123,cordron-yelku44,False,ROI,,
|
315 |
+
-0.9985459813812843,2025-06-14 20:58:08.060349,123,cordron-yelku44,False,ROI,,
|
316 |
+
-0.9987154850133823,2025-06-16 01:13:39.374306,123,cordron-yelku44,False,ROI,,
|
317 |
+
-0.9988179875590102,2025-06-17 01:18:21.000045,123,cordron-yelku44,False,ROI,,
|
318 |
+
-0.9989609293661683,2025-06-19 02:57:28.768791,123,cordron-yelku44,False,ROI,,
|
319 |
+
-0.36969028937231896,2025-06-23 19:35:48.602900,123,cordron-yelku44,False,ROI,,
|
320 |
+
-0.3660885277284933,2025-06-25 22:48:47.217278,123,cordron-yelku44,False,ROI,,
|
321 |
+
-0.36655671585706073,2025-06-26 22:50:35.448142,123,cordron-yelku44,False,ROI,,
|
322 |
+
-0.3673374839002219,2025-06-27 22:55:20.597062,123,cordron-yelku44,False,ROI,,
|
323 |
+
-0.36788685102505647,2025-06-28 22:55:39.481514,123,cordron-yelku44,False,ROI,,
|
324 |
+
0.0023199692205522204,2025-06-29 06:50:17.067339,123,cordron-yelku44,False,ROI,,
|
325 |
+
0.003014819185406692,2025-06-30 06:54:15.483621,123,cordron-yelku44,False,ROI,,
|
326 |
+
0.002883824771304333,2025-07-01 19:21:19.005532,123,cordron-yelku44,False,ROI,,
|
327 |
+
0.0027669696843004576,2025-07-03 03:23:17.606631,123,cordron-yelku44,False,ROI,,
|
328 |
+
0.0027441772891085847,2025-07-04 16:01:41.778647,123,cordron-yelku44,False,ROI,,
|
329 |
+
0.0025801924798201092,2025-07-05 22:02:07.774606,123,cordron-yelku44,False,ROI,,
|
330 |
+
0.0025356210636486853,2025-07-06 22:45:23.530262,123,cordron-yelku44,False,ROI,,
|
331 |
+
0.002443656048009446,2025-07-07 22:52:28.027431,123,cordron-yelku44,False,ROI,,
|
332 |
+
0.0025407511654520487,2025-07-08 22:52:37.147223,123,cordron-yelku44,False,ROI,,
|
333 |
+
0.0026439236284574452,2025-07-09 22:59:17.383375,123,cordron-yelku44,False,ROI,,
|
334 |
+
-0.05187871471805383,2025-06-09 18:32:36.558142,126,tonvel-beeprel23,False,ROI,,
|
335 |
+
-0.8359260807052761,2025-06-10 18:35:49.668890,126,tonvel-beeprel23,False,ROI,,
|
336 |
+
-0.9158714676998039,2025-06-11 18:38:07.704650,126,tonvel-beeprel23,False,ROI,,
|
337 |
+
-0.9251027694298075,2025-06-12 18:42:17.665709,126,tonvel-beeprel23,False,ROI,,
|
338 |
+
-0.9385866783643811,2025-06-16 17:52:55.063058,126,tonvel-beeprel23,False,ROI,,
|
339 |
+
-0.30065333189217425,2025-06-18 14:06:40.798020,126,tonvel-beeprel23,False,ROI,,
|
340 |
+
-0.30060366476928124,2025-06-19 14:38:05.661995,126,tonvel-beeprel23,False,ROI,,
|
341 |
+
-0.999997538441209,2025-06-19 15:03:50.078517,126,tonvel-beeprel23,False,ROI,,
|
342 |
+
-0.999997538441209,2025-06-20 16:17:58.727607,126,tonvel-beeprel23,False,ROI,,
|
343 |
+
-0.9999975384338228,2025-06-23 15:39:36.975276,126,tonvel-beeprel23,False,ROI,,
|
344 |
+
-0.9999975381925416,2025-06-24 16:54:32.866240,126,tonvel-beeprel23,False,ROI,,
|
345 |
+
-0.9999975381900795,2025-06-25 22:24:43.173970,126,tonvel-beeprel23,False,ROI,,
|
346 |
+
-0.9999975381900795,2025-06-27 05:42:43.179903,126,tonvel-beeprel23,False,ROI,,
|
347 |
+
-0.9256831687376182,2025-06-30 01:30:46.333568,126,tonvel-beeprel23,False,ROI,,
|
348 |
+
-0.9253457267012147,2025-07-01 17:37:00.674960,126,tonvel-beeprel23,False,ROI,,
|
349 |
+
-0.22584933824978737,2025-07-02 18:50:05.642611,126,tonvel-beeprel23,False,ROI,,
|
350 |
+
-0.19334547792219126,2025-07-03 20:27:11.093737,126,tonvel-beeprel23,False,ROI,,
|
351 |
+
-0.8219540738709786,2025-07-05 01:44:02.930556,126,tonvel-beeprel23,False,ROI,,
|
352 |
+
-0.18169696394216617,2025-07-07 16:13:35.375558,126,tonvel-beeprel23,False,ROI,,
|
353 |
+
-0.04820460539724125,2025-06-09 22:20:14.827769,127,lunel-luwus85,False,ROI,,
|
354 |
+
-0.8982926246499542,2025-06-10 11:46:19.456686,127,lunel-luwus85,False,ROI,,
|
355 |
+
-0.9902463093068504,2025-06-11 11:52:17.821684,127,lunel-luwus85,False,ROI,,
|
356 |
+
-0.9934574000002231,2025-06-12 12:14:06.850694,127,lunel-luwus85,False,ROI,,
|
357 |
+
-0.9973549609872299,2025-06-13 12:18:45.544337,127,lunel-luwus85,False,ROI,,
|
358 |
+
-0.9986309926914669,2025-06-14 20:55:17.651663,127,lunel-luwus85,False,ROI,,
|
359 |
+
-0.9989898592815917,2025-06-15 20:58:03.786280,127,lunel-luwus85,False,ROI,,
|
360 |
+
-0.9991130426143372,2025-06-16 21:00:02.716458,127,lunel-luwus85,False,ROI,,
|
361 |
+
-0.999270721742668,2025-06-18 00:37:19.407906,127,lunel-luwus85,False,ROI,,
|
362 |
+
-0.9993403476016253,2025-06-19 15:19:20.323617,127,lunel-luwus85,False,ROI,,
|
363 |
+
-0.41331615419682566,2025-06-20 21:46:31.541226,127,lunel-luwus85,False,ROI,,
|
364 |
+
-0.41552293504168614,2025-06-22 00:38:13.399438,127,lunel-luwus85,False,ROI,,
|
365 |
+
0.0023185141616572924,2025-06-23 00:42:22.801921,127,lunel-luwus85,False,ROI,,
|
366 |
+
-0.41593656172847215,2025-06-24 09:21:57.661378,127,lunel-luwus85,False,ROI,,
|
367 |
+
-0.415506758766665,2025-06-26 22:05:20.121521,127,lunel-luwus85,False,ROI,,
|
368 |
+
-0.4155363998520848,2025-06-28 10:33:13.087214,127,lunel-luwus85,False,ROI,,
|
369 |
+
0.006395291088574284,2025-06-29 12:13:37.807688,127,lunel-luwus85,False,ROI,,
|
370 |
+
0.007439161592165622,2025-06-30 13:37:56.318276,127,lunel-luwus85,False,ROI,,
|
371 |
+
0.009661751592357826,2025-07-01 12:05:57.285120,127,lunel-luwus85,False,ROI,,
|
372 |
+
0.009701520199611346,2025-07-02 12:10:29.331498,127,lunel-luwus85,False,ROI,,
|
373 |
+
0.009961255763109245,2025-07-03 12:44:24.555915,127,lunel-luwus85,False,ROI,,
|
374 |
+
0.009849786454320997,2025-07-04 14:40:15.742972,127,lunel-luwus85,False,ROI,,
|
375 |
+
0.009525833759258973,2025-07-05 17:58:09.530990,127,lunel-luwus85,False,ROI,,
|
376 |
+
0.00982780660863214,2025-07-06 17:59:48.279206,127,lunel-luwus85,False,ROI,,
|
377 |
+
0.00971973503640955,2025-07-07 19:17:38.092710,127,lunel-luwus85,False,ROI,,
|
378 |
+
0.009643609244642803,2025-07-08 21:59:34.888635,127,lunel-luwus85,False,ROI,,
|
379 |
+
0.009546878379064205,2025-07-10 00:40:15.118629,127,lunel-luwus85,False,ROI,,
|
380 |
+
-0.43689039378060557,2025-06-25 01:00:09.646610,128,kozu-hanfil63,False,ROI,,
|
381 |
+
-0.06059521614727914,2025-06-10 09:06:37.010122,128,kozu-hanfil63,False,ROI,,
|
382 |
+
-0.7876204161976992,2025-06-10 09:29:20.119072,128,kozu-hanfil63,False,ROI,,
|
383 |
+
-0.9581645051657031,2025-06-11 12:58:00.236662,128,kozu-hanfil63,False,ROI,,
|
384 |
+
-0.9781812869068476,2025-06-13 07:59:58.559461,128,kozu-hanfil63,False,ROI,,
|
385 |
+
-0.9839483854396002,2025-06-15 20:59:08.057917,128,kozu-hanfil63,False,ROI,,
|
386 |
+
-0.9933352211205551,2025-06-17 14:59:52.085823,128,kozu-hanfil63,False,ROI,,
|
387 |
+
-0.994364719281139,2025-06-18 15:08:39.958257,128,kozu-hanfil63,False,ROI,,
|
388 |
+
-0.9949153984775544,2025-06-19 15:22:32.279496,128,kozu-hanfil63,False,ROI,,
|
389 |
+
-0.4345179856188116,2025-06-20 15:25:17.656080,128,kozu-hanfil63,False,ROI,,
|
390 |
+
-0.43730373748075846,2025-06-21 19:52:58.290090,128,kozu-hanfil63,False,ROI,,
|
391 |
+
-0.4414877590674373,2025-06-23 05:01:27.033494,128,kozu-hanfil63,False,ROI,,
|
392 |
+
-0.4354703154884406,2025-06-26 13:49:49.990340,128,kozu-hanfil63,False,ROI,,
|
393 |
+
-0.4375482158918851,2025-06-27 23:45:35.102880,128,kozu-hanfil63,False,ROI,,
|
394 |
+
-0.43503257041082966,2025-06-30 05:54:00.089687,128,kozu-hanfil63,False,ROI,,
|
395 |
+
-0.43663886411106123,2025-07-01 19:44:51.313587,128,kozu-hanfil63,False,ROI,,
|
396 |
+
-0.005639741785414265,2025-07-01 20:00:12.920184,128,kozu-hanfil63,False,ROI,,
|
397 |
+
-0.005929458089658057,2025-07-02 20:04:41.966998,128,kozu-hanfil63,False,ROI,,
|
398 |
+
-0.005979588735136265,2025-07-04 08:21:15.946235,128,kozu-hanfil63,False,ROI,,
|
399 |
+
-0.006010570994085529,2025-07-05 22:04:46.730517,128,kozu-hanfil63,False,ROI,,
|
400 |
+
-0.006367635008949213,2025-07-07 17:22:38.299025,128,kozu-hanfil63,False,ROI,,
|
401 |
+
-0.005683801728133209,2025-07-09 10:57:19.249426,128,kozu-hanfil63,False,ROI,,
|
402 |
+
-0.34321922885432343,2025-06-18 13:33:06.289943,130,jusrot-kihi68,False,ROI,,
|
403 |
+
-0.3309457195411798,2025-06-21 08:46:09.975404,130,jusrot-kihi68,False,ROI,,
|
404 |
+
-0.32071317309439473,2025-06-23 01:47:35.846279,130,jusrot-kihi68,False,ROI,,
|
405 |
+
-0.3200058138771754,2025-06-28 03:29:37.314957,130,jusrot-kihi68,False,ROI,,
|
406 |
+
-0.3200112965842131,2025-06-29 03:29:50.711151,130,jusrot-kihi68,False,ROI,,
|
407 |
+
-0.31995069004983256,2025-06-30 03:33:09.377506,130,jusrot-kihi68,False,ROI,,
|
408 |
+
-0.49801314972581445,2025-06-25 04:57:38.909390,133,ronwus-yusrus90,False,ROI,,
|
409 |
+
8.485384550471764e-05,2025-06-15 21:22:42.073588,133,ronwus-yusrus90,False,ROI,,
|
410 |
+
-0.9166669310235978,2025-06-16 21:26:14.464595,133,ronwus-yusrus90,False,ROI,,
|
411 |
+
-0.9583292559289407,2025-06-19 05:04:33.644120,133,ronwus-yusrus90,False,ROI,,
|
412 |
+
-0.4980457577049915,2025-06-20 08:47:58.517715,133,ronwus-yusrus90,False,ROI,,
|
413 |
+
6.784879791932319e-05,2025-06-20 07:11:33.705703,133,ronwus-yusrus90,False,ROI,,
|
414 |
+
-0.498406842358169,2025-06-21 08:50:13.652053,133,ronwus-yusrus90,False,ROI,,
|
415 |
+
-0.49814368863555103,2025-06-23 04:52:21.403493,133,ronwus-yusrus90,False,ROI,,
|
416 |
+
-0.4982284338379105,2025-06-24 04:55:21.609457,133,ronwus-yusrus90,False,ROI,,
|
417 |
+
-0.49841132250647435,2025-06-27 07:29:36.216958,133,ronwus-yusrus90,False,ROI,,
|
418 |
+
-0.49850188253478045,2025-06-28 07:34:18.996386,133,ronwus-yusrus90,False,ROI,,
|
419 |
+
-0.49839854874997513,2025-06-29 07:35:47.804809,133,ronwus-yusrus90,False,ROI,,
|
420 |
+
-0.49807877940820255,2025-06-30 07:39:25.036441,133,ronwus-yusrus90,False,ROI,,
|
421 |
+
-0.4981342317417634,2025-07-01 07:40:31.487957,133,ronwus-yusrus90,False,ROI,,
|
422 |
+
-0.49819381982719957,2025-07-02 07:43:29.621616,133,ronwus-yusrus90,False,ROI,,
|
423 |
+
-0.005424100852870151,2025-07-06 01:49:12.650299,133,ronwus-yusrus90,False,ROI,,
|
424 |
+
-0.005603929503825489,2025-07-07 01:53:30.934469,133,ronwus-yusrus90,False,ROI,,
|
425 |
+
-0.005787327772260098,2025-07-08 01:55:36.903742,133,ronwus-yusrus90,False,ROI,,
|
426 |
+
-0.005551340039285146,2025-07-09 02:01:55.907241,133,ronwus-yusrus90,False,ROI,,
|
427 |
+
-0.005451517597763411,2025-07-10 02:05:42.103905,133,ronwus-yusrus90,False,ROI,,
|
428 |
+
9.227003978495851e-05,2025-06-17 20:54:46.322615,137,yilo-fevo87,False,ROI,,
|
429 |
+
0.00020030215153221675,2025-07-02 20:25:43.890092,137,yilo-fevo87,False,ROI,,
|
430 |
+
0.00011127568907376428,2025-07-03 20:55:13.924822,137,yilo-fevo87,False,ROI,,
|
431 |
+
-0.4999393806301716,2025-06-25 17:21:50.267917,162,meron-fifa01,False,ROI,,
|
432 |
+
9.523374109465799e-05,2025-06-24 00:03:09.758305,162,meron-fifa01,False,ROI,,
|
433 |
+
-0.49995238312945267,2025-06-24 00:27:38.735582,162,meron-fifa01,False,ROI,,
|
434 |
+
-0.4999518830333265,2025-07-01 20:00:54.318301,162,meron-fifa01,False,ROI,,
|
435 |
+
0.0006291957518351765,2025-07-03 20:34:03.622577,162,meron-fifa01,False,ROI,,
|
436 |
+
8.99425869205217e-05,2025-06-25 22:05:53.932042,163,limwire-waryel10,False,ROI,,
|
437 |
+
0.25037419471179834,2025-06-27 08:31:32.431401,163,limwire-waryel10,False,ROI,,
|
438 |
+
0.2457849259349678,2025-06-27 09:34:34.251302,163,limwire-waryel10,False,ROI,,
|
439 |
+
-0.0032197981354588068,2025-06-28 22:31:47.306295,163,limwire-waryel10,False,ROI,,
|
440 |
+
-0.0036392907483356884,2025-06-29 22:39:56.903302,163,limwire-waryel10,False,ROI,,
|
441 |
+
-0.0035049932537422057,2025-07-01 00:03:51.693064,163,limwire-waryel10,False,ROI,,
|
442 |
+
-0.0016324068517434842,2025-07-02 21:39:47.373426,163,limwire-waryel10,False,ROI,,
|
443 |
+
-0.0032348017562640052,2025-07-03 22:44:11.531706,163,limwire-waryel10,False,ROI,,
|
444 |
+
-0.0033812541338401614,2025-07-05 00:00:30.082042,163,limwire-waryel10,False,ROI,,
|
445 |
+
-0.0036618117135875927,2025-07-07 00:01:23.585726,163,limwire-waryel10,False,ROI,,
|
446 |
+
-0.0033462330485295455,2025-07-08 00:05:08.163324,163,limwire-waryel10,False,ROI,,
|
447 |
+
-0.003249205232236818,2025-07-09 00:47:28.241058,163,limwire-waryel10,False,ROI,,
|
448 |
+
7.635055711929795e-05,2025-06-24 15:37:15.860830,164,todan-bztnu21,False,ROI,,
|
449 |
+
0.00023634379691728213,2025-06-25 19:36:33.530029,164,todan-bztnu21,False,ROI,,
|
450 |
+
-9.026351623520057e-05,2025-06-26 19:52:32.310775,164,todan-bztnu21,False,ROI,,
|
451 |
+
-0.0001217773590423965,2025-06-30 02:18:49.682997,164,todan-bztnu21,False,ROI,,
|
452 |
+
3.427692135882232e-05,2025-07-01 18:56:35.484644,164,todan-bztnu21,False,ROI,,
|
453 |
+
-0.0002178036866060662,2025-07-01 23:08:06.038680,164,todan-bztnu21,False,ROI,,
|
454 |
+
-0.00034785474803278316,2025-07-03 15:42:52.940574,164,todan-bztnu21,False,ROI,,
|
455 |
+
-5.1989185395839854e-05,2025-07-05 04:18:34.549814,164,todan-bztnu21,False,ROI,,
|
456 |
+
0.00018060095783067887,2025-07-07 14:12:34.389707,164,todan-bztnu21,False,ROI,,
|
457 |
+
7.435020838397755e-05,2025-06-25 01:09:03.739851,165,wuni-dannus19,False,ROI,,
|
458 |
+
-0.4957502106668682,2025-06-26 00:41:52.595014,165,wuni-dannus19,False,ROI,,
|
459 |
+
-0.4957163318704071,2025-06-28 01:27:39.430856,165,wuni-dannus19,False,ROI,,
|
460 |
+
-0.49559649391993876,2025-06-30 12:55:08.291004,165,wuni-dannus19,False,ROI,,
|
461 |
+
-0.004944465633212269,2025-07-02 18:26:28.323329,165,wuni-dannus19,False,ROI,,
|
462 |
+
-0.4958445369839585,2025-07-04 09:05:06.753347,165,wuni-dannus19,False,ROI,,
|
463 |
+
-0.005553961814660724,2025-07-05 22:05:13.387609,165,wuni-dannus19,False,ROI,,
|
464 |
+
-0.0023130848536579984,2025-07-07 17:22:11.834191,165,wuni-dannus19,False,ROI,,
|
465 |
+
-0.00479074691325132,2025-07-10 17:48:47.403496,165,wuni-dannus19,False,ROI,,
|
466 |
+
0.00014024239245213899,2025-06-25 15:22:43.239238,166,delnu-robit07,False,ROI,,
|
467 |
+
0.0010129817299819877,2025-06-25 16:29:24.598172,166,delnu-robit07,False,ROI,,
|
468 |
+
0.0008181569477774264,2025-06-27 15:53:29.534994,166,delnu-robit07,False,ROI,,
|
469 |
+
0.001473025107213033,2025-07-03 18:59:26.699797,166,delnu-robit07,False,ROI,,
|
470 |
+
-0.49998819862427435,2025-06-25 16:35:50.791598,168,vijim-pitar56,False,ROI,,
|
471 |
+
-0.5000198190128075,2025-06-26 19:43:02.385904,168,vijim-pitar56,False,ROI,,
|
472 |
+
-0.5000352103358635,2025-06-27 21:58:11.732908,168,vijim-pitar56,False,ROI,,
|
473 |
+
-0.4999891977865648,2025-06-29 18:02:36.666719,168,vijim-pitar56,False,ROI,,
|
474 |
+
-0.4999897151151813,2025-07-01 14:14:56.455536,168,vijim-pitar56,False,ROI,,
|
475 |
+
-0.4999862209251329,2025-07-02 14:19:28.991049,168,vijim-pitar56,False,ROI,,
|
476 |
+
-9.196706166947344e-05,2025-07-04 13:42:22.720110,168,vijim-pitar56,False,ROI,,
|
477 |
+
-6.796507958539699e-05,2025-07-05 23:03:42.243620,168,vijim-pitar56,False,ROI,,
|
478 |
+
-0.4999887631995371,2025-07-07 03:15:14.619311,168,vijim-pitar56,False,ROI,,
|
479 |
+
-0.499988699404573,2025-07-09 03:12:03.056882,168,vijim-pitar56,False,ROI,,
|
480 |
+
3.423245764166971e-05,2025-06-26 10:21:16.492384,169,tartim-wacor68,False,ROI,,
|
481 |
+
3.623272613340056e-05,2025-06-27 10:29:14.131792,169,tartim-wacor68,False,ROI,,
|
482 |
+
6.2286987569937224e-06,2025-06-28 10:35:53.774812,169,tartim-wacor68,False,ROI,,
|
483 |
+
2.8231652166255117e-05,2025-07-01 09:31:17.507584,169,tartim-wacor68,False,ROI,,
|
484 |
+
3.423245764166971e-05,2025-07-06 12:25:29.374037,169,tartim-wacor68,False,ROI,,
|
485 |
+
3.423245764166971e-05,2025-07-07 22:08:05.858941,169,tartim-wacor68,False,ROI,,
|
486 |
+
2.7231517920389692e-05,2025-07-09 07:59:35.936853,169,tartim-wacor68,False,ROI,,
|
487 |
+
5.6235411050931106e-05,2025-07-10 09:16:13.681571,169,tartim-wacor68,False,ROI,,
|
488 |
+
8.862817201182871e-05,2025-06-27 17:09:56.961323,170,delsus-simgi16,False,ROI,,
|
489 |
+
0.0028404778914241646,2025-06-27 17:19:18.471613,170,delsus-simgi16,False,ROI,,
|
490 |
+
0.0013636634240079548,2025-06-28 17:24:02.408682,170,delsus-simgi16,False,ROI,,
|
491 |
+
0.0016870996035607266,2025-06-29 17:27:28.696463,170,delsus-simgi16,False,ROI,,
|
492 |
+
0.001726322693486937,2025-06-30 21:52:10.843201,170,delsus-simgi16,False,ROI,,
|
493 |
+
0.0017062371143445887,2025-07-01 23:09:58.881905,170,delsus-simgi16,False,ROI,,
|
494 |
+
0.0017120895795874613,2025-07-02 23:32:32.665002,170,delsus-simgi16,False,ROI,,
|
495 |
+
0.0009457039403018008,2025-07-04 14:49:57.970840,170,delsus-simgi16,False,ROI,,
|
496 |
+
0.0014486953602295127,2025-07-05 17:28:12.269148,170,delsus-simgi16,False,ROI,,
|
497 |
+
0.0014378186948267313,2025-07-06 17:48:08.567352,170,delsus-simgi16,False,ROI,,
|
498 |
+
0.0017358742884308054,2025-07-07 18:59:46.257768,170,delsus-simgi16,False,ROI,,
|
499 |
+
0.001788677731656696,2025-07-09 14:47:15.005862,170,delsus-simgi16,False,ROI,,
|
500 |
+
0.0017942436791058558,2025-07-10 15:04:52.188055,170,delsus-simgi16,False,ROI,,
|
501 |
+
6.691587081886219e-05,2025-06-28 08:50:38.253574,171,helve-welfur78,False,ROI,,
|
502 |
+
9.592152410276e-05,2025-06-30 16:09:03.388455,171,helve-welfur78,False,ROI,,
|
503 |
+
2.9033946062906324e-06,2025-07-01 16:15:44.946171,171,helve-welfur78,False,ROI,,
|
504 |
+
0.0013512649354994188,2025-07-01 19:40:09.332144,171,helve-welfur78,False,ROI,,
|
505 |
+
0.0008712469383791444,2025-07-03 04:35:34.488266,171,helve-welfur78,False,ROI,,
|
506 |
+
5.7278980873487484e-05,2025-07-04 12:25:15.494634,171,helve-welfur78,False,ROI,,
|
507 |
+
0.0009596763326362723,2025-07-05 12:26:42.832811,171,helve-welfur78,False,ROI,,
|
508 |
+
0.0014557867539368718,2025-07-07 09:17:43.264982,171,helve-welfur78,False,ROI,,
|
509 |
+
0.0004606210964832602,2025-07-09 20:24:00.305875,171,helve-welfur78,False,ROI,,
|
510 |
+
2.5730869126494582e-06,2025-07-01 14:42:08.490216,173,gemek-janyar44,False,ROI,,
|
511 |
+
0.0013067101295263228,2025-07-01 14:51:22.748469,173,gemek-janyar44,False,ROI,,
|
512 |
+
0.001134725888249477,2025-07-02 14:55:54.579315,173,gemek-janyar44,False,ROI,,
|
513 |
+
0.0008097122017478586,2025-07-03 16:08:21.614960,173,gemek-janyar44,False,ROI,,
|
514 |
+
0.0011098055003611051,2025-07-04 16:09:42.493685,173,gemek-janyar44,False,ROI,,
|
515 |
+
0.0009574785239159223,2025-07-05 19:33:09.440290,173,gemek-janyar44,False,ROI,,
|
516 |
+
0.0002910963866589178,2025-07-07 05:52:39.210065,173,gemek-janyar44,False,ROI,,
|
517 |
+
0.0010394277444496502,2025-07-08 06:15:14.679380,173,gemek-janyar44,False,ROI,,
|
518 |
+
0.0009105242447342565,2025-07-09 08:28:02.383568,173,gemek-janyar44,False,ROI,,
|
519 |
+
0.001061802221292485,2025-07-10 09:00:50.910247,173,gemek-janyar44,False,ROI,,
|
520 |
+
-0.49987969924936504,2025-07-01 23:40:22.267243,175,bomtar-dronsus81,False,ROI,,
|
521 |
+
-0.49955257808522535,2025-07-02 23:43:12.136777,175,bomtar-dronsus81,False,ROI,,
|
522 |
+
-0.49955920055039804,2025-07-03 23:46:25.139826,175,bomtar-dronsus81,False,ROI,,
|
523 |
+
-0.49953381443390266,2025-07-04 23:51:50.405151,175,bomtar-dronsus81,False,ROI,,
|
524 |
+
-0.5001816253237733,2025-07-05 23:53:29.637507,175,bomtar-dronsus81,False,ROI,,
|
525 |
+
-0.49985496856613465,2025-07-06 23:58:08.180715,175,bomtar-dronsus81,False,ROI,,
|
526 |
+
-0.4995385053467334,2025-07-09 07:58:20.968509,175,bomtar-dronsus81,False,ROI,,
|
527 |
+
7.448357824824114e-05,2025-07-02 12:32:14.208646,176,bleepro-nusgen10,False,ROI,,
|
528 |
+
0.0010048753854869918,2025-07-02 12:41:16.322484,176,bleepro-nusgen10,False,ROI,,
|
529 |
+
0.0010364422584314692,2025-07-04 06:58:44.769171,176,bleepro-nusgen10,False,ROI,,
|
530 |
+
0.0010713328097751162,2025-07-05 07:03:32.482836,176,bleepro-nusgen10,False,ROI,,
|
531 |
+
0.0010621550780371969,2025-07-06 07:07:04.914224,176,bleepro-nusgen10,False,ROI,,
|
532 |
+
0.0010467709150645543,2025-07-08 13:09:53.232826,176,bleepro-nusgen10,False,ROI,,
|
533 |
+
0.0015982088724821875,2025-07-09 17:32:31.031947,176,bleepro-nusgen10,False,ROI,,
|
534 |
+
0.00010130691425835892,2025-07-03 18:52:55.516389,178,geso-cusva41,False,ROI,,
|
535 |
+
-0.49953385440442843,2025-07-03 19:01:14.869649,178,geso-cusva41,False,ROI,,
|
536 |
+
-0.4998602488243217,2025-07-04 19:04:59.389080,178,geso-cusva41,False,ROI,,
|
537 |
+
-0.30602755566327333,2025-07-03 21:41:34.341255,179,kajim-zimvu56,False,ROI,,
|
538 |
+
9.530574830862726e-05,2025-07-03 21:33:12.540182,179,kajim-zimvu56,False,ROI,,
|
539 |
+
-0.3058797359365971,2025-07-05 17:42:26.248067,179,kajim-zimvu56,False,ROI,,
|
540 |
+
-0.3058943310081499,2025-07-07 18:29:47.083793,179,kajim-zimvu56,False,ROI,,
|
541 |
+
-0.3058608775542059,2025-07-08 19:04:57.289798,179,kajim-zimvu56,False,ROI,,
|
542 |
+
-0.30584727775401943,2025-07-10 15:08:50.362339,179,kajim-zimvu56,False,ROI,,
|
543 |
+
0.0011580312962911066,2025-07-04 16:50:06.130463,180,zezton-sonfam02,False,ROI,,
|
544 |
+
8.312723503767216e-06,2025-07-09 00:03:56.773175,182,zapzi-milan20,False,ROI,,
|
545 |
+
7.312595175612557e-06,2025-07-10 00:05:44.796586,182,zapzi-milan20,False,ROI,,
|
546 |
+
-0.005,2025-07-10 18:00:42.683244,86,nusus-tayar25,True,ROI,,
|
547 |
+
-0.002437993574936251,2025-07-10 18:10:42.683244,86,nusus-tayar25,True,ROI,,
|
548 |
+
0.0,2025-07-10 18:20:42.683244,86,nusus-tayar25,True,ROI,,
|
549 |
+
-0.005024492361043185,2025-07-10 18:30:42.683244,86,nusus-tayar25,True,ROI,,
|
550 |
+
-0.009690368451110157,2025-07-10 18:40:42.683244,86,nusus-tayar25,True,ROI,,
|
551 |
+
-0.007597774180719391,2025-07-10 18:50:42.683244,86,nusus-tayar25,True,ROI,,
|
552 |
+
-0.005,2025-07-10 18:00:42.683244,102,kelrus-muha52,True,ROI,,
|
553 |
+
-0.009995484499070003,2025-07-10 18:10:42.683244,102,kelrus-muha52,True,ROI,,
|
554 |
+
0.0,2025-07-10 18:20:42.683244,102,kelrus-muha52,True,ROI,,
|
555 |
+
-0.0022989823472332784,2025-07-10 18:30:42.683244,102,kelrus-muha52,True,ROI,,
|
556 |
+
-0.0077032826474490185,2025-07-10 18:40:42.683244,102,kelrus-muha52,True,ROI,,
|
557 |
+
-0.004705707281170872,2025-07-10 18:50:42.683244,102,kelrus-muha52,True,ROI,,
|
558 |
+
-0.005,2025-07-10 18:00:42.683244,111,furtek-gilje55,True,ROI,,
|
559 |
+
-0.007576098298757682,2025-07-10 18:10:42.683244,111,furtek-gilje55,True,ROI,,
|
560 |
+
-0.01,2025-07-10 18:20:42.683244,111,furtek-gilje55,True,ROI,,
|
561 |
+
0.0,2025-07-10 18:30:42.683244,111,furtek-gilje55,True,ROI,,
|
562 |
+
-0.004544156073515604,2025-07-10 18:40:42.683244,111,furtek-gilje55,True,ROI,,
|
563 |
+
-0.0026904853207601657,2025-07-10 18:50:42.683244,111,furtek-gilje55,True,ROI,,
|
564 |
+
-0.005,2025-07-10 18:00:42.683244,112,vuzus-fazi89,True,ROI,,
|
565 |
+
-0.009653098198418203,2025-07-10 18:10:42.683244,112,vuzus-fazi89,True,ROI,,
|
566 |
+
-0.007103997067137028,2025-07-10 18:20:42.683244,112,vuzus-fazi89,True,ROI,,
|
567 |
+
-0.005292291382836365,2025-07-10 18:30:42.683244,112,vuzus-fazi89,True,ROI,,
|
568 |
+
0.0,2025-07-10 18:40:42.683244,112,vuzus-fazi89,True,ROI,,
|
569 |
+
-0.002248638005778849,2025-07-10 18:50:42.683244,112,vuzus-fazi89,True,ROI,,
|
570 |
+
-0.005,2025-07-10 18:00:42.683244,115,yenot-zoncen49,True,ROI,,
|
571 |
+
-0.004778091693627983,2025-07-10 18:10:42.683244,115,yenot-zoncen49,True,ROI,,
|
572 |
+
-0.007585051224590457,2025-07-10 18:20:42.683244,115,yenot-zoncen49,True,ROI,,
|
573 |
+
-0.009690380602288936,2025-07-10 18:30:42.683244,115,yenot-zoncen49,True,ROI,,
|
574 |
+
-0.0003529710548111745,2025-07-10 18:40:42.683244,115,yenot-zoncen49,True,ROI,,
|
575 |
+
-0.0029720171504724717,2025-07-10 18:50:42.683244,115,yenot-zoncen49,True,ROI,,
|
576 |
+
-0.005,2025-07-10 18:00:42.683244,116,honji-hahi60,True,ROI,,
|
577 |
+
-0.00033364336908534253,2025-07-10 18:10:42.683244,116,honji-hahi60,True,ROI,,
|
578 |
+
-0.0027060521337630345,2025-07-10 18:20:42.683244,116,honji-hahi60,True,ROI,,
|
579 |
+
-0.007234913206712702,2025-07-10 18:30:42.683244,116,honji-hahi60,True,ROI,,
|
580 |
+
-0.005166063180261553,2025-07-10 18:40:42.683244,116,honji-hahi60,True,ROI,,
|
581 |
+
-0.01,2025-07-10 18:50:42.683244,116,honji-hahi60,True,ROI,,
|
582 |
+
-0.005,2025-07-10 18:00:42.683244,117,furye-himkon89,True,ROI,,
|
583 |
+
-0.009712052633167274,2025-07-10 18:10:42.683244,117,furye-himkon89,True,ROI,,
|
584 |
+
-0.007931040963404553,2025-07-10 18:20:42.683244,117,furye-himkon89,True,ROI,,
|
585 |
+
-0.00013679316596462807,2025-07-10 18:30:42.683244,117,furye-himkon89,True,ROI,,
|
586 |
+
-0.002949131792124186,2025-07-10 18:40:42.683244,117,furye-himkon89,True,ROI,,
|
587 |
+
-0.00514854197776036,2025-07-10 18:50:42.683244,117,furye-himkon89,True,ROI,,
|
588 |
+
-0.005,2025-07-10 18:00:42.683244,118,lonwus-patu86,True,ROI,,
|
589 |
+
-0.007429438439744697,2025-07-10 18:10:42.683244,118,lonwus-patu86,True,ROI,,
|
590 |
+
-0.0020200596160815706,2025-07-10 18:20:42.683244,118,lonwus-patu86,True,ROI,,
|
591 |
+
-0.005336776600904694,2025-07-10 18:30:42.683244,118,lonwus-patu86,True,ROI,,
|
592 |
+
-0.009844678224335242,2025-07-10 18:40:42.683244,118,lonwus-patu86,True,ROI,,
|
593 |
+
0.0,2025-07-10 18:50:42.683244,118,lonwus-patu86,True,ROI,,
|
594 |
+
-0.005,2025-07-10 18:00:42.683244,119,lonlim-zapgi60,True,ROI,,
|
595 |
+
-0.007899884719409422,2025-07-10 18:10:42.683244,119,lonlim-zapgi60,True,ROI,,
|
596 |
+
-0.004805057224605666,2025-07-10 18:20:42.683244,119,lonlim-zapgi60,True,ROI,,
|
597 |
+
-0.009572364601963333,2025-07-10 18:30:42.683244,119,lonlim-zapgi60,True,ROI,,
|
598 |
+
0.0,2025-07-10 18:40:42.683244,119,lonlim-zapgi60,True,ROI,,
|
599 |
+
-0.002178873565694815,2025-07-10 18:50:42.683244,119,lonlim-zapgi60,True,ROI,,
|
600 |
+
-0.005,2025-07-10 18:00:42.683244,120,joyus-goson39,True,ROI,,
|
601 |
+
-0.01,2025-07-10 18:10:42.683244,120,joyus-goson39,True,ROI,,
|
602 |
+
-0.007695614861957617,2025-07-10 18:20:42.683244,120,joyus-goson39,True,ROI,,
|
603 |
+
-0.00016426802365331349,2025-07-10 18:30:42.683244,120,joyus-goson39,True,ROI,,
|
604 |
+
-0.0022687142426142033,2025-07-10 18:40:42.683244,120,joyus-goson39,True,ROI,,
|
605 |
+
-0.005279770689561847,2025-07-10 18:50:42.683244,120,joyus-goson39,True,ROI,,
|
606 |
+
-0.005,2025-07-10 18:00:42.683244,121,cilwar-rimlu27,True,ROI,,
|
607 |
+
-0.004958969785421386,2025-07-10 18:10:42.683244,121,cilwar-rimlu27,True,ROI,,
|
608 |
+
0.0,2025-07-10 18:20:42.683244,121,cilwar-rimlu27,True,ROI,,
|
609 |
+
-0.009777319930715357,2025-07-10 18:30:42.683244,121,cilwar-rimlu27,True,ROI,,
|
610 |
+
-0.0027812014654168796,2025-07-10 18:40:42.683244,121,cilwar-rimlu27,True,ROI,,
|
611 |
+
-0.0075249439179208046,2025-07-10 18:50:42.683244,121,cilwar-rimlu27,True,ROI,,
|
612 |
+
-0.005,2025-07-10 18:00:42.683244,122,tevi-kulo15,True,ROI,,
|
613 |
+
-0.00017238780414806045,2025-07-10 18:10:42.683244,122,tevi-kulo15,True,ROI,,
|
614 |
+
-0.0025627639759404934,2025-07-10 18:20:42.683244,122,tevi-kulo15,True,ROI,,
|
615 |
+
-0.007480247177768334,2025-07-10 18:30:42.683244,122,tevi-kulo15,True,ROI,,
|
616 |
+
-0.004569240205238476,2025-07-10 18:40:42.683244,122,tevi-kulo15,True,ROI,,
|
617 |
+
-0.01,2025-07-10 18:50:42.683244,122,tevi-kulo15,True,ROI,,
|
618 |
+
-0.005,2025-07-10 18:00:42.683244,123,cordron-yelku44,True,ROI,,
|
619 |
+
-0.005265718540971869,2025-07-10 18:10:42.683244,123,cordron-yelku44,True,ROI,,
|
620 |
+
-0.01,2025-07-10 18:20:42.683244,123,cordron-yelku44,True,ROI,,
|
621 |
+
0.0,2025-07-10 18:30:42.683244,123,cordron-yelku44,True,ROI,,
|
622 |
+
-0.002230483977958866,2025-07-10 18:40:42.683244,123,cordron-yelku44,True,ROI,,
|
623 |
+
-0.007119734033229463,2025-07-10 18:50:42.683244,123,cordron-yelku44,True,ROI,,
|
624 |
+
-0.005,2025-07-10 18:00:42.683244,126,tonvel-beeprel23,True,ROI,,
|
625 |
+
-0.00765843897842559,2025-07-10 18:10:42.683244,126,tonvel-beeprel23,True,ROI,,
|
626 |
+
-0.0029067763629303557,2025-07-10 18:20:42.683244,126,tonvel-beeprel23,True,ROI,,
|
627 |
+
-0.004911705117633118,2025-07-10 18:30:42.683244,126,tonvel-beeprel23,True,ROI,,
|
628 |
+
-0.009594550374885338,2025-07-10 18:40:42.683244,126,tonvel-beeprel23,True,ROI,,
|
629 |
+
0.0,2025-07-10 18:50:42.683244,126,tonvel-beeprel23,True,ROI,,
|
630 |
+
-0.005,2025-07-10 18:00:42.683244,127,lunel-luwus85,True,ROI,,
|
631 |
+
-0.0051087820806737,2025-07-10 18:10:42.683244,127,lunel-luwus85,True,ROI,,
|
632 |
+
-0.00712049416055413,2025-07-10 18:20:42.683244,127,lunel-luwus85,True,ROI,,
|
633 |
+
-0.0022639805811955358,2025-07-10 18:30:42.683244,127,lunel-luwus85,True,ROI,,
|
634 |
+
-0.01,2025-07-10 18:40:42.683244,127,lunel-luwus85,True,ROI,,
|
635 |
+
0.0,2025-07-10 18:50:42.683244,127,lunel-luwus85,True,ROI,,
|
636 |
+
-0.005683801728133209,2025-07-10 18:00:42.683244,128,kozu-hanfil63,True,ROI,,
|
637 |
+
-0.007489675261030993,2025-07-10 18:10:42.683244,128,kozu-hanfil63,True,ROI,,
|
638 |
+
-0.002431751598723554,2025-07-10 18:20:42.683244,128,kozu-hanfil63,True,ROI,,
|
639 |
+
-0.004766737396835958,2025-07-10 18:30:42.683244,128,kozu-hanfil63,True,ROI,,
|
640 |
+
-0.009804134640668235,2025-07-10 18:40:42.683244,128,kozu-hanfil63,True,ROI,,
|
641 |
+
0.0,2025-07-10 18:50:42.683244,128,kozu-hanfil63,True,ROI,,
|
642 |
+
-0.005,2025-07-10 18:00:42.683244,130,jusrot-kihi68,True,ROI,,
|
643 |
+
0.0,2025-07-10 18:10:42.683244,130,jusrot-kihi68,True,ROI,,
|
644 |
+
-0.00780859507842995,2025-07-10 18:20:42.683244,130,jusrot-kihi68,True,ROI,,
|
645 |
+
-0.005276190919851958,2025-07-10 18:30:42.683244,130,jusrot-kihi68,True,ROI,,
|
646 |
+
-0.01,2025-07-10 18:40:42.683244,130,jusrot-kihi68,True,ROI,,
|
647 |
+
-0.002152322516788141,2025-07-10 18:50:42.683244,130,jusrot-kihi68,True,ROI,,
|
648 |
+
-0.005451517597763411,2025-07-10 18:00:42.683244,133,ronwus-yusrus90,True,ROI,,
|
649 |
+
-0.01,2025-07-10 18:10:42.683244,133,ronwus-yusrus90,True,ROI,,
|
650 |
+
-0.007889224407731201,2025-07-10 18:20:42.683244,133,ronwus-yusrus90,True,ROI,,
|
651 |
+
-0.004550630566378647,2025-07-10 18:30:42.683244,133,ronwus-yusrus90,True,ROI,,
|
652 |
+
-0.002951543331724425,2025-07-10 18:40:42.683244,133,ronwus-yusrus90,True,ROI,,
|
653 |
+
0.0,2025-07-10 18:50:42.683244,133,ronwus-yusrus90,True,ROI,,
|
654 |
+
-0.005,2025-07-10 18:00:42.683244,137,yilo-fevo87,True,ROI,,
|
655 |
+
-0.0071796623941057965,2025-07-10 18:10:42.683244,137,yilo-fevo87,True,ROI,,
|
656 |
+
-0.005319804036824925,2025-07-10 18:20:42.683244,137,yilo-fevo87,True,ROI,,
|
657 |
+
-0.0028996676032842427,2025-07-10 18:30:42.683244,137,yilo-fevo87,True,ROI,,
|
658 |
+
-0.01,2025-07-10 18:40:42.683244,137,yilo-fevo87,True,ROI,,
|
659 |
+
0.0,2025-07-10 18:50:42.683244,137,yilo-fevo87,True,ROI,,
|
660 |
+
-0.005,2025-07-10 18:00:42.683244,162,meron-fifa01,True,ROI,,
|
661 |
+
-0.005320093686449535,2025-07-10 18:10:42.683244,162,meron-fifa01,True,ROI,,
|
662 |
+
-0.01,2025-07-10 18:20:42.683244,162,meron-fifa01,True,ROI,,
|
663 |
+
-0.007278510315854666,2025-07-10 18:30:42.683244,162,meron-fifa01,True,ROI,,
|
664 |
+
0.0,2025-07-10 18:40:42.683244,162,meron-fifa01,True,ROI,,
|
665 |
+
-0.0025890938506250554,2025-07-10 18:50:42.683244,162,meron-fifa01,True,ROI,,
|
666 |
+
-0.003249205232236818,2025-07-10 18:00:42.683244,163,limwire-waryel10,True,ROI,,
|
667 |
+
-0.0003957933421783355,2025-07-10 18:10:42.683244,163,limwire-waryel10,True,ROI,,
|
668 |
+
-0.01,2025-07-10 18:20:42.683244,163,limwire-waryel10,True,ROI,,
|
669 |
+
-0.004610881622677211,2025-07-10 18:30:42.683244,163,limwire-waryel10,True,ROI,,
|
670 |
+
-0.0025874690300187386,2025-07-10 18:40:42.683244,163,limwire-waryel10,True,ROI,,
|
671 |
+
-0.007844748108495503,2025-07-10 18:50:42.683244,163,limwire-waryel10,True,ROI,,
|
672 |
+
-0.005,2025-07-10 18:00:42.683244,164,todan-bztnu21,True,ROI,,
|
673 |
+
-0.007828469941793368,2025-07-10 18:10:42.683244,164,todan-bztnu21,True,ROI,,
|
674 |
+
-0.01,2025-07-10 18:20:42.683244,164,todan-bztnu21,True,ROI,,
|
675 |
+
-0.002795754159862625,2025-07-10 18:30:42.683244,164,todan-bztnu21,True,ROI,,
|
676 |
+
-0.0053253421156164845,2025-07-10 18:40:42.683244,164,todan-bztnu21,True,ROI,,
|
677 |
+
-0.00011003015571832908,2025-07-10 18:50:42.683244,164,todan-bztnu21,True,ROI,,
|
678 |
+
-0.00479074691325132,2025-07-10 18:00:42.683244,165,wuni-dannus19,True,ROI,,
|
679 |
+
-0.0001492071217503491,2025-07-10 18:10:42.683244,165,wuni-dannus19,True,ROI,,
|
680 |
+
-0.00484559117230797,2025-07-10 18:20:42.683244,165,wuni-dannus19,True,ROI,,
|
681 |
+
-0.002722294270729858,2025-07-10 18:30:42.683244,165,wuni-dannus19,True,ROI,,
|
682 |
+
-0.01,2025-07-10 18:40:42.683244,165,wuni-dannus19,True,ROI,,
|
683 |
+
-0.007355119806950263,2025-07-10 18:50:42.683244,165,wuni-dannus19,True,ROI,,
|
684 |
+
-0.005,2025-07-10 18:00:42.683244,166,delnu-robit07,True,ROI,,
|
685 |
+
-0.0076699855641370225,2025-07-10 18:10:42.683244,166,delnu-robit07,True,ROI,,
|
686 |
+
-0.004615569577923525,2025-07-10 18:20:42.683244,166,delnu-robit07,True,ROI,,
|
687 |
+
-0.01,2025-07-10 18:30:42.683244,166,delnu-robit07,True,ROI,,
|
688 |
+
-0.0021038809015648044,2025-07-10 18:40:42.683244,166,delnu-robit07,True,ROI,,
|
689 |
+
-0.0003139468773426902,2025-07-10 18:50:42.683244,166,delnu-robit07,True,ROI,,
|
690 |
+
-0.005,2025-07-10 18:00:42.683244,168,vijim-pitar56,True,ROI,,
|
691 |
+
-0.01,2025-07-10 18:10:42.683244,168,vijim-pitar56,True,ROI,,
|
692 |
+
-0.007563891890073995,2025-07-10 18:20:42.683244,168,vijim-pitar56,True,ROI,,
|
693 |
+
-0.0029787280455161563,2025-07-10 18:30:42.683244,168,vijim-pitar56,True,ROI,,
|
694 |
+
-0.005077147674514112,2025-07-10 18:40:42.683244,168,vijim-pitar56,True,ROI,,
|
695 |
+
-2.734884824761853e-05,2025-07-10 18:50:42.683244,168,vijim-pitar56,True,ROI,,
|
696 |
+
-0.005,2025-07-10 18:00:42.683244,169,tartim-wacor68,True,ROI,,
|
697 |
+
-3.434493981403097e-05,2025-07-10 18:10:42.683244,169,tartim-wacor68,True,ROI,,
|
698 |
+
-0.009523184328026806,2025-07-10 18:20:42.683244,169,tartim-wacor68,True,ROI,,
|
699 |
+
-0.007939740509605888,2025-07-10 18:30:42.683244,169,tartim-wacor68,True,ROI,,
|
700 |
+
-0.005296319532323782,2025-07-10 18:40:42.683244,169,tartim-wacor68,True,ROI,,
|
701 |
+
-0.0021915478682639506,2025-07-10 18:50:42.683244,169,tartim-wacor68,True,ROI,,
|
702 |
+
-0.005,2025-07-10 18:00:42.683244,170,delsus-simgi16,True,ROI,,
|
703 |
+
-0.0003051470205138811,2025-07-10 18:10:42.683244,170,delsus-simgi16,True,ROI,,
|
704 |
+
-0.002843417829334968,2025-07-10 18:20:42.683244,170,delsus-simgi16,True,ROI,,
|
705 |
+
-0.007680488973520876,2025-07-10 18:30:42.683244,170,delsus-simgi16,True,ROI,,
|
706 |
+
-0.01,2025-07-10 18:40:42.683244,170,delsus-simgi16,True,ROI,,
|
707 |
+
-0.004821400865567378,2025-07-10 18:50:42.683244,170,delsus-simgi16,True,ROI,,
|
708 |
+
-0.005,2025-07-10 18:00:42.683244,171,helve-welfur78,True,ROI,,
|
709 |
+
-0.009578779352249852,2025-07-10 18:10:42.683244,171,helve-welfur78,True,ROI,,
|
710 |
+
0.0,2025-07-10 18:20:42.683244,171,helve-welfur78,True,ROI,,
|
711 |
+
-0.002250182036113385,2025-07-10 18:30:42.683244,171,helve-welfur78,True,ROI,,
|
712 |
+
-0.005338029406625413,2025-07-10 18:40:42.683244,171,helve-welfur78,True,ROI,,
|
713 |
+
-0.007680966299759532,2025-07-10 18:50:42.683244,171,helve-welfur78,True,ROI,,
|
714 |
+
-0.005,2025-07-10 18:00:42.683244,173,gemek-janyar44,True,ROI,,
|
715 |
+
0.0,2025-07-10 18:10:42.683244,173,gemek-janyar44,True,ROI,,
|
716 |
+
-0.002042334087131207,2025-07-10 18:20:42.683244,173,gemek-janyar44,True,ROI,,
|
717 |
+
-0.007441785301023877,2025-07-10 18:30:42.683244,173,gemek-janyar44,True,ROI,,
|
718 |
+
-0.01,2025-07-10 18:40:42.683244,173,gemek-janyar44,True,ROI,,
|
719 |
+
-0.004674494559862043,2025-07-10 18:50:42.683244,173,gemek-janyar44,True,ROI,,
|
720 |
+
-0.005,2025-07-10 18:00:42.683244,175,bomtar-dronsus81,True,ROI,,
|
721 |
+
-0.01,2025-07-10 18:10:42.683244,175,bomtar-dronsus81,True,ROI,,
|
722 |
+
-0.00515072561135372,2025-07-10 18:20:42.683244,175,bomtar-dronsus81,True,ROI,,
|
723 |
+
-0.00216835644421688,2025-07-10 18:30:42.683244,175,bomtar-dronsus81,True,ROI,,
|
724 |
+
-0.00018648588283878218,2025-07-10 18:40:42.683244,175,bomtar-dronsus81,True,ROI,,
|
725 |
+
-0.007947865260941439,2025-07-10 18:50:42.683244,175,bomtar-dronsus81,True,ROI,,
|
726 |
+
-0.005,2025-07-10 18:00:42.683244,176,bleepro-nusgen10,True,ROI,,
|
727 |
+
-0.0023049022201787304,2025-07-10 18:10:42.683244,176,bleepro-nusgen10,True,ROI,,
|
728 |
+
-0.009584553472094456,2025-07-10 18:20:42.683244,176,bleepro-nusgen10,True,ROI,,
|
729 |
+
-0.007264383990274479,2025-07-10 18:30:42.683244,176,bleepro-nusgen10,True,ROI,,
|
730 |
+
-0.005458073099165701,2025-07-10 18:40:42.683244,176,bleepro-nusgen10,True,ROI,,
|
731 |
+
0.0,2025-07-10 18:50:42.683244,176,bleepro-nusgen10,True,ROI,,
|
732 |
+
-0.005,2025-07-10 18:00:42.683244,178,geso-cusva41,True,ROI,,
|
733 |
+
-0.0051144181276734325,2025-07-10 18:10:42.683244,178,geso-cusva41,True,ROI,,
|
734 |
+
-0.0029573065153634228,2025-07-10 18:20:42.683244,178,geso-cusva41,True,ROI,,
|
735 |
+
-0.007123860687160682,2025-07-10 18:30:42.683244,178,geso-cusva41,True,ROI,,
|
736 |
+
-0.0001447365496673465,2025-07-10 18:40:42.683244,178,geso-cusva41,True,ROI,,
|
737 |
+
-0.01,2025-07-10 18:50:42.683244,178,geso-cusva41,True,ROI,,
|
738 |
+
-0.005,2025-07-10 18:00:42.683244,179,kajim-zimvu56,True,ROI,,
|
739 |
+
-0.007555464712439043,2025-07-10 18:10:42.683244,179,kajim-zimvu56,True,ROI,,
|
740 |
+
-0.01,2025-07-10 18:20:42.683244,179,kajim-zimvu56,True,ROI,,
|
741 |
+
-0.004925864966857636,2025-07-10 18:30:42.683244,179,kajim-zimvu56,True,ROI,,
|
742 |
+
0.0,2025-07-10 18:40:42.683244,179,kajim-zimvu56,True,ROI,,
|
743 |
+
-0.0023860610217274507,2025-07-10 18:50:42.683244,179,kajim-zimvu56,True,ROI,,
|
744 |
+
-0.005,2025-07-10 18:00:42.683244,180,zezton-sonfam02,True,ROI,,
|
745 |
+
-0.0023568825939235738,2025-07-10 18:10:42.683244,180,zezton-sonfam02,True,ROI,,
|
746 |
+
0.0,2025-07-10 18:20:42.683244,180,zezton-sonfam02,True,ROI,,
|
747 |
+
-0.005476997194801053,2025-07-10 18:30:42.683244,180,zezton-sonfam02,True,ROI,,
|
748 |
+
-0.007728115705846195,2025-07-10 18:40:42.683244,180,zezton-sonfam02,True,ROI,,
|
749 |
+
-0.009777490503890459,2025-07-10 18:50:42.683244,180,zezton-sonfam02,True,ROI,,
|
750 |
+
-0.005,2025-07-10 18:00:42.683244,182,zapzi-milan20,True,ROI,,
|
751 |
+
-0.009702430873407924,2025-07-10 18:10:42.683244,182,zapzi-milan20,True,ROI,,
|
752 |
+
-0.00507149736956835,2025-07-10 18:20:42.683244,182,zapzi-milan20,True,ROI,,
|
753 |
+
0.0,2025-07-10 18:30:42.683244,182,zapzi-milan20,True,ROI,,
|
754 |
+
-0.007569480130819552,2025-07-10 18:40:42.683244,182,zapzi-milan20,True,ROI,,
|
755 |
+
-0.0029473247725702307,2025-07-10 18:50:42.683244,182,zapzi-milan20,True,ROI,,
|