gauravlochab commited on
Commit
175e92c
·
1 Parent(s): cf88990

chore: change the system from loading to adding the csv for solving the rate limiter error

Browse files
.gitignore CHANGED
@@ -1,3 +1,10 @@
 
1
  hf-dash/
2
  env/
3
  debug_scripts/
 
 
 
 
 
 
 
1
+ __pycache__/
2
  hf-dash/
3
  env/
4
  debug_scripts/
5
+ .DS_Store
6
+ *.txt
7
+ *.html
8
+ *.png
9
+ *.json
10
+ *.log
QUICK_START_GUIDE.md ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Quick Start Guide: CSV-First Deployment
2
+
3
+ This guide shows you exactly how to run the CSV-first deployment for your Hugging Face Space.
4
+
5
+ ## Prerequisites
6
+
7
+ Make sure you have Python installed with these packages:
8
+ ```bash
9
+ pip install pandas requests plotly gradio logging datetime typing os
10
+ ```
11
+
12
+ ## Step 1: Generate CSV Files Locally
13
+
14
+ ### Option A: Using the Interactive Script (Recommended)
15
+
16
+ 1. **Open your terminal** in the project directory
17
+ 2. **Run the CSV generation script**:
18
+ ```bash
19
+ python generate_csv_for_space.py
20
+ ```
21
+
22
+ 3. **Follow the interactive prompts**:
23
+ ```
24
+ ============================================================
25
+ CSV Generation for Hugging Face Space Deployment
26
+ ============================================================
27
+
28
+ 1. Checking existing CSV files...
29
+ 2. Checking data freshness...
30
+ 3. Data generation options:
31
+ [1] Generate fresh data from API (recommended)
32
+ [2] Skip if CSV files are fresh (< 24 hours old)
33
+ [3] Exit without generating
34
+
35
+ Enter your choice (1-3): 1
36
+ ```
37
+
38
+ 4. **Choose option 1** to generate fresh data
39
+ 5. **Wait for completion** - the script will:
40
+ - Fetch data from the API
41
+ - Apply preprocessing
42
+ - Save CSV files
43
+ - Show you what files were created
44
+
45
+ ### Option B: Using Python Directly
46
+
47
+ If you prefer to run it programmatically:
48
+
49
+ ```python
50
+ # Run this in Python or Jupyter notebook
51
+ from app import fetch_apr_data_from_db, save_to_csv, save_roi_to_csv
52
+ from initial_value_fixer import fix_apr_and_roi
53
+
54
+ # Fetch data
55
+ df_apr, df_roi = fetch_apr_data_from_db()
56
+
57
+ # Apply preprocessing
58
+ df_apr_processed = fix_apr_and_roi(df_apr)
59
+
60
+ # Save CSV files
61
+ save_to_csv(df_apr_processed)
62
+ save_roi_to_csv(df_roi)
63
+
64
+ print("CSV files generated successfully!")
65
+ ```
66
+
67
+ ## Step 2: Verify CSV Files Were Created
68
+
69
+ Check that these files exist in your directory:
70
+ ```bash
71
+ ls -la *.csv
72
+ ```
73
+
74
+ You should see:
75
+ - `optimus_apr_values.csv`
76
+ - `optimus_apr_statistics.csv`
77
+ - `optimus_roi_values.csv`
78
+
79
+ ## Step 3: Test CSV Loading Locally (Optional)
80
+
81
+ Test that the CSV files load correctly:
82
+
83
+ ```python
84
+ from load_from_csv import load_apr_data_from_csv, load_roi_data_from_csv
85
+
86
+ # Test loading
87
+ df_apr, csv_file = load_apr_data_from_csv()
88
+ df_roi, csv_file = load_roi_data_from_csv()
89
+
90
+ print(f"APR data loaded: {len(df_apr)} records")
91
+ print(f"ROI data loaded: {len(df_roi)} records")
92
+ ```
93
+
94
+ ## Step 4: Test the App Locally
95
+
96
+ Run your app locally to make sure everything works:
97
+
98
+ ```bash
99
+ python app.py
100
+ ```
101
+
102
+ The app should:
103
+ 1. Try to load from CSV files first
104
+ 2. Show visualizations using CSV data
105
+ 3. Display "Successfully loaded APR/ROI data from CSV" in logs
106
+
107
+ ## Step 5: Deploy to Hugging Face Space
108
+
109
+ ### Upload These Files to Your Space:
110
+
111
+ **Required Files:**
112
+ - `app.py` (modified with CSV-first logic)
113
+ - `load_from_csv.py` (new CSV loading functions)
114
+ - `initial_value_fixer.py` (existing preprocessing)
115
+ - `fetch_and_preprocess_data.py` (existing data functions)
116
+
117
+ **Generated CSV Files:**
118
+ - `optimus_apr_values.csv`
119
+ - `optimus_apr_statistics.csv`
120
+ - `optimus_roi_values.csv`
121
+
122
+ ### Upload Methods:
123
+
124
+ **Method 1: Hugging Face Web Interface**
125
+ 1. Go to your Space on huggingface.co
126
+ 2. Click "Files" tab
127
+ 3. Upload each file individually
128
+ 4. Commit changes
129
+
130
+ **Method 2: Git (if you have git setup)**
131
+ ```bash
132
+ git add *.py *.csv
133
+ git commit -m "Add CSV-first deployment files"
134
+ git push
135
+ ```
136
+
137
+ ## Step 6: Monitor Your Space
138
+
139
+ After deployment:
140
+
141
+ 1. **Check Space logs** for these messages:
142
+ ```
143
+ Successfully loaded APR data from CSV: X records
144
+ Successfully loaded ROI data from CSV: Y records
145
+ Creating APR visualizations from CSV data...
146
+ ```
147
+
148
+ 2. **Verify fast loading** - graphs should appear instantly
149
+
150
+ 3. **No API calls** - you shouldn't see API-related errors in logs
151
+
152
+ ## Troubleshooting
153
+
154
+ ### Problem: "No module named 'load_from_csv'"
155
+ **Solution:** Make sure you uploaded `load_from_csv.py` to your Space
156
+
157
+ ### Problem: "CSV file not found"
158
+ **Solution:**
159
+ 1. Check CSV files are in the Space root directory
160
+ 2. Verify file names match exactly: `optimus_apr_values.csv`, `optimus_roi_values.csv`
161
+
162
+ ### Problem: "Error loading data from CSV"
163
+ **Solution:**
164
+ 1. Regenerate CSV files locally: `python generate_csv_for_space.py`
165
+ 2. Re-upload the new CSV files to your Space
166
+
167
+ ### Problem: App falls back to API calls
168
+ **Solution:** This means CSV loading failed. Check Space logs for specific error messages.
169
+
170
+ ## Updating Data
171
+
172
+ To update your Space with fresh data:
173
+
174
+ 1. **Run locally** (every few days or weekly):
175
+ ```bash
176
+ python generate_csv_for_space.py
177
+ ```
178
+
179
+ 2. **Upload new CSV files** to your Space
180
+
181
+ 3. **Space automatically updates** with new data
182
+
183
+ ## Expected Results
184
+
185
+ ✅ **Fast Loading**: Graphs appear instantly
186
+ ✅ **No Rate Limits**: No API calls from the Space
187
+ ✅ **Smooth Graphs**: ROI graph has smooth curves
188
+ ✅ **All Features**: All preprocessing and visualization features work
189
+ ✅ **Reliable**: No dependency on external API availability
190
+
191
+ ## Commands Summary
192
+
193
+ ```bash
194
+ # Generate CSV files
195
+ python generate_csv_for_space.py
196
+
197
+ # Test locally
198
+ python app.py
199
+
200
+ # Check what files were created
201
+ ls -la *.csv
202
+
203
+ # Check file sizes
204
+ du -h *.csv
205
+ ```
206
+
207
+ That's it! Your Hugging Face Space will now run without rate limiting issues using the preprocessed CSV data.
README_CSV_DEPLOYMENT.md ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CSV-First Deployment for Hugging Face Spaces
2
+
3
+ This document explains how to deploy your Optimus Agent Performance dashboard to Hugging Face Spaces using a CSV-first approach to avoid API rate limiting issues.
4
+
5
+ ## Overview
6
+
7
+ The CSV-first approach works by:
8
+ 1. **Local Data Generation**: Run data fetching and preprocessing locally where you have full API access
9
+ 2. **CSV Export**: Save preprocessed data to CSV files
10
+ 3. **Space Deployment**: Upload CSV files to your Hugging Face Space
11
+ 4. **CSV-First Loading**: The Space app prioritizes loading from CSV files over making API calls
12
+
13
+ ## Files Added for CSV-First Deployment
14
+
15
+ ### 1. `load_from_csv.py`
16
+ Contains functions to load data from CSV files:
17
+ - `load_apr_data_from_csv()` - Loads APR data from CSV
18
+ - `load_roi_data_from_csv()` - Loads ROI data from CSV
19
+ - `load_statistics_from_csv()` - Loads statistics from CSV
20
+ - `check_csv_data_availability()` - Checks which CSV files are available
21
+ - `get_data_freshness_info()` - Analyzes how fresh the CSV data is
22
+
23
+ ### 2. `generate_csv_for_space.py`
24
+ Interactive script to generate CSV files locally:
25
+ - Fetches fresh data from the API
26
+ - Applies all preprocessing (including `initial_value_fixer.py`)
27
+ - Saves to CSV files ready for Space deployment
28
+ - Provides deployment guidance
29
+
30
+ ### 3. Modified `app.py`
31
+ Updated visualization functions with CSV-first logic:
32
+ - `generate_apr_visualizations()` - Now tries CSV first, falls back to API
33
+ - `generate_roi_visualizations()` - Now tries CSV first, falls back to API
34
+ - Imports CSV loading functions
35
+ - Maintains backward compatibility
36
+
37
+ ## Deployment Workflow
38
+
39
+ ### Step 1: Generate CSV Files Locally
40
+
41
+ Run the CSV generation script on your local machine:
42
+
43
+ ```bash
44
+ python generate_csv_for_space.py
45
+ ```
46
+
47
+ This will:
48
+ - Check existing CSV files and their freshness
49
+ - Fetch fresh data from the API (no rate limits locally)
50
+ - Apply preprocessing using `initial_value_fixer.py`
51
+ - Save CSV files: `optimus_apr_values.csv`, `optimus_apr_statistics.csv`, `optimus_roi_values.csv`
52
+
53
+ ### Step 2: Upload Files to Hugging Face Space
54
+
55
+ Upload these files to your Hugging Face Space repository:
56
+ - `app.py` (modified with CSV-first logic)
57
+ - `load_from_csv.py` (new CSV loading functions)
58
+ - `initial_value_fixer.py` (existing preprocessing)
59
+ - `fetch_and_preprocess_data.py` (existing data functions)
60
+ - `optimus_apr_values.csv` (generated data)
61
+ - `optimus_apr_statistics.csv` (generated statistics)
62
+ - `optimus_roi_values.csv` (generated data)
63
+
64
+ ### Step 3: Deploy Space
65
+
66
+ Your Space will now:
67
+ 1. **Try CSV first**: Load data from uploaded CSV files
68
+ 2. **Fast loading**: No API calls needed, instant visualization
69
+ 3. **Fallback**: If CSV files are missing, fall back to API (with rate limits)
70
+ 4. **Error handling**: Show appropriate messages if both CSV and API fail
71
+
72
+ ## CSV File Structure
73
+
74
+ ### APR Data (`optimus_apr_values.csv`)
75
+ ```csv
76
+ apr,adjusted_apr,timestamp,agent_id,agent_name,is_dummy,metric_type,roi,address
77
+ 15.5,12.3,2025-06-14 10:30:00,123,Agent_1,False,APR,0.85,0x123...
78
+ ```
79
+
80
+ ### ROI Data (`optimus_roi_values.csv`)
81
+ ```csv
82
+ roi,timestamp,agent_id,agent_name,is_dummy,metric_type
83
+ 0.85,2025-06-14 10:30:00,123,Agent_1,False,ROI
84
+ ```
85
+
86
+ ### Statistics (`optimus_apr_statistics.csv`)
87
+ ```csv
88
+ agent_id,agent_name,total_points,apr_points,avg_apr,avg_adjusted_apr,latest_timestamp
89
+ 123,Agent_1,100,50,15.5,12.3,2025-06-14 10:30:00
90
+ ```
91
+
92
+ ## Benefits
93
+
94
+ ### ✅ Advantages
95
+ - **No Rate Limits**: Space doesn't make API calls
96
+ - **Fast Loading**: Instant visualization from CSV
97
+ - **Reliable**: No dependency on external API availability
98
+ - **Preprocessed**: Data includes all transformations from `initial_value_fixer.py`
99
+ - **Fresh Data**: Update CSV files as needed locally
100
+
101
+ ### ⚠️ Considerations
102
+ - **Manual Updates**: Need to regenerate CSV files for fresh data
103
+ - **File Size**: CSV files add to Space storage
104
+ - **Data Staleness**: CSV data becomes stale over time
105
+
106
+ ## Updating Data
107
+
108
+ To update your Space with fresh data:
109
+
110
+ 1. **Run locally**: `python generate_csv_for_space.py`
111
+ 2. **Upload new CSV files** to your Space repository
112
+ 3. **Space auto-updates** with new data
113
+
114
+ ## Monitoring
115
+
116
+ ### Data Freshness
117
+ The app logs data freshness information:
118
+ ```python
119
+ from load_from_csv import get_data_freshness_info
120
+ freshness = get_data_freshness_info()
121
+ # Shows how old the CSV data is
122
+ ```
123
+
124
+ ### CSV Availability
125
+ Check which CSV files are available:
126
+ ```python
127
+ from load_from_csv import check_csv_data_availability
128
+ availability = check_csv_data_availability()
129
+ # Shows file status, size, modification date
130
+ ```
131
+
132
+ ## Troubleshooting
133
+
134
+ ### CSV Files Not Loading
135
+ 1. Check file names match exactly: `optimus_apr_values.csv`, `optimus_roi_values.csv`
136
+ 2. Verify CSV files are in the Space root directory
137
+ 3. Check Space logs for CSV loading errors
138
+
139
+ ### Data Issues
140
+ 1. Regenerate CSV files locally with fresh API data
141
+ 2. Verify preprocessing ran correctly in `generate_csv_for_space.py`
142
+ 3. Check CSV file structure matches expected format
143
+
144
+ ### Fallback to API
145
+ If CSV loading fails, the app falls back to API calls:
146
+ 1. This may trigger rate limits in Hugging Face Spaces
147
+ 2. Check Space logs for API errors
148
+ 3. Ensure CSV files are properly uploaded
149
+
150
+ ## Best Practices
151
+
152
+ 1. **Regular Updates**: Run `generate_csv_for_space.py` daily or weekly
153
+ 2. **Monitor Logs**: Check Space logs for CSV loading status
154
+ 3. **Backup CSV**: Keep local copies of generated CSV files
155
+ 4. **Test Locally**: Test CSV loading locally before deploying
156
+ 5. **Version Control**: Track CSV generation timestamps
157
+
158
+ ## Example Space Configuration
159
+
160
+ Your Space should include these files:
161
+ ```
162
+ ├── app.py # Modified with CSV-first logic
163
+ ├── load_from_csv.py # CSV loading functions
164
+ ├── initial_value_fixer.py # Preprocessing logic
165
+ ├── fetch_and_preprocess_data.py # Data functions
166
+ ├── optimus_apr_values.csv # Generated APR data
167
+ ├── optimus_apr_statistics.csv # Generated statistics
168
+ ├── optimus_roi_values.csv # Generated ROI data
169
+ ├── requirements.txt # Dependencies
170
+ └── README.md # Space documentation
171
+ ```
172
+
173
+ This approach ensures your Hugging Face Space runs reliably without hitting API rate limits while maintaining all the preprocessing and visualization features of your application.
app.py CHANGED
@@ -20,6 +20,13 @@ from typing import List, Dict, Any, Optional
20
  # APR visualization functions integrated directly
21
  from fetch_and_preprocess_data import generate_continuous_random_data
22
  from initial_value_fixer import fix_apr_and_roi
 
 
 
 
 
 
 
23
 
24
  # Set up logging with appropriate verbosity
25
  logging.basicConfig(
@@ -752,91 +759,158 @@ def log_adjusted_apr_availability(df):
752
  logger.info(f"Agent {agent_name} (ID: {agent_id}): Missing adjusted_apr from {gap_start} to {gap_end} ({gap_duration.days} days, {gap_duration.seconds//3600} hours)")
753
 
754
  def generate_apr_visualizations():
755
- """Generate APR visualizations with real data only (no dummy data)"""
756
  global global_df
757
 
758
- # Fetch data from database
759
- df, _ = fetch_apr_data_from_db()
 
760
 
761
- # If we got no data at all, return placeholder figures
762
- if df.empty:
763
- logger.info("No APR data available. Using fallback visualization.")
764
- # Create empty visualizations with a message using Plotly
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
765
  fig = go.Figure()
766
  fig.add_annotation(
767
  x=0.5, y=0.5,
768
- text="No APR data available",
769
- font=dict(size=20),
770
  showarrow=False
771
  )
772
  fig.update_layout(
773
  xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
774
  yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
775
  )
776
-
777
- # Save as static file for reference
778
- fig.write_html("optimus_apr_combined_graph.html")
779
- fig.write_image("optimus_apr_combined_graph.png")
780
-
781
- csv_file = None
782
- return fig, csv_file
783
-
784
- # No longer generating dummy data
785
- # Set global_df for access by other functions
786
- df = fix_apr_and_roi(df) # Currently it assumes no investment has been made
787
- global_df = df
788
-
789
- # Save to CSV before creating visualizations
790
- csv_file = save_to_csv(df)
791
-
792
- # Only create combined time series graph
793
- combined_fig = create_combined_time_series_graph(df)
794
-
795
- return combined_fig, csv_file
796
 
797
  def generate_roi_visualizations():
798
- """Generate ROI visualizations with real data only (no dummy data)"""
799
  global global_roi_df
800
 
801
- # Fetch data from database if not already fetched
802
- if global_roi_df is None or global_roi_df.empty:
803
- _, df_roi = fetch_apr_data_from_db()
804
- else:
805
- df_roi = global_roi_df
806
 
807
- # If we got no data at all, return placeholder figures
808
- if df_roi.empty:
809
- logger.info("No ROI data available. Using fallback visualization.")
810
- # Create empty visualizations with a message using Plotly
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
811
  fig = go.Figure()
812
  fig.add_annotation(
813
  x=0.5, y=0.5,
814
- text="No ROI data available",
815
- font=dict(size=20),
816
  showarrow=False
817
  )
818
  fig.update_layout(
819
  xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
820
  yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
821
  )
822
-
823
- # Save as static file for reference
824
- fig.write_html("optimus_roi_graph.html")
825
- fig.write_image("optimus_roi_graph.png")
826
-
827
- csv_file = None
828
- return fig, csv_file
829
-
830
- # Set global_roi_df for access by other functions
831
- global_roi_df = df_roi
832
-
833
- # Save to CSV before creating visualizations
834
- csv_file = save_roi_to_csv(df_roi)
835
-
836
- # Create combined time series graph for ROI
837
- combined_fig = create_combined_roi_time_series_graph(df_roi)
838
-
839
- return combined_fig, csv_file
840
 
841
  def aggregate_daily_data(df, metric_column):
842
  """
@@ -1151,7 +1225,7 @@ def create_combined_roi_time_series_graph(df):
1151
  x=x_values_ma,
1152
  y=y_values_ma,
1153
  mode='lines', # Only lines for moving average
1154
- line=dict(color='blue', width=3), # Thicker line for main trend
1155
  name='Median ROI (7d window)',
1156
  hovertext=hover_data_roi,
1157
  hoverinfo='text',
 
20
  # APR visualization functions integrated directly
21
  from fetch_and_preprocess_data import generate_continuous_random_data
22
  from initial_value_fixer import fix_apr_and_roi
23
+ from load_from_csv import (
24
+ load_apr_data_from_csv,
25
+ load_roi_data_from_csv,
26
+ load_statistics_from_csv,
27
+ check_csv_data_availability,
28
+ get_data_freshness_info
29
+ )
30
 
31
  # Set up logging with appropriate verbosity
32
  logging.basicConfig(
 
759
  logger.info(f"Agent {agent_name} (ID: {agent_id}): Missing adjusted_apr from {gap_start} to {gap_end} ({gap_duration.days} days, {gap_duration.seconds//3600} hours)")
760
 
761
  def generate_apr_visualizations():
762
+ """Generate APR visualizations with CSV-first approach for Hugging Face Space deployment"""
763
  global global_df
764
 
765
+ # CSV-FIRST APPROACH: Try to load from CSV first
766
+ logger.info("Attempting to load APR data from CSV files...")
767
+ df, csv_file = load_apr_data_from_csv()
768
 
769
+ if not df.empty:
770
+ logger.info(f"Successfully loaded APR data from CSV: {len(df)} records")
771
+ global_df = df
772
+
773
+ # Create visualizations using CSV data
774
+ logger.info("Creating APR visualizations from CSV data...")
775
+ combined_fig = create_combined_time_series_graph(df)
776
+ return combined_fig, csv_file
777
+
778
+ # FALLBACK: If CSV not available, try API
779
+ logger.info("CSV data not available, falling back to API...")
780
+ try:
781
+ df, _ = fetch_apr_data_from_db()
782
+
783
+ # If we got no data at all, return placeholder figures
784
+ if df.empty:
785
+ logger.info("No APR data available from API either. Using fallback visualization.")
786
+ # Create empty visualizations with a message using Plotly
787
+ fig = go.Figure()
788
+ fig.add_annotation(
789
+ x=0.5, y=0.5,
790
+ text="No APR data available",
791
+ font=dict(size=20),
792
+ showarrow=False
793
+ )
794
+ fig.update_layout(
795
+ xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
796
+ yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
797
+ )
798
+
799
+ # Save as static file for reference
800
+ fig.write_html("optimus_apr_combined_graph.html")
801
+ fig.write_image("optimus_apr_combined_graph.png")
802
+
803
+ csv_file = None
804
+ return fig, csv_file
805
+
806
+ # Apply preprocessing to fix APR and ROI values
807
+ logger.info("Applying preprocessing to fix APR and ROI values...")
808
+ df = fix_apr_and_roi(df) # Apply preprocessing
809
+ global_df = df
810
+
811
+ # Save preprocessed data to CSV before creating visualizations
812
+ logger.info("Saving preprocessed APR data to CSV...")
813
+ csv_file = save_to_csv(df)
814
+
815
+ # Create visualizations using the saved CSV data
816
+ logger.info("Creating APR visualizations from preprocessed data...")
817
+ combined_fig = create_combined_time_series_graph(df)
818
+
819
+ return combined_fig, csv_file
820
+
821
+ except Exception as e:
822
+ logger.error(f"Error fetching APR data from API: {e}")
823
+ # Return error visualization
824
  fig = go.Figure()
825
  fig.add_annotation(
826
  x=0.5, y=0.5,
827
+ text=f"Error loading data: {str(e)}",
828
+ font=dict(size=16, color="red"),
829
  showarrow=False
830
  )
831
  fig.update_layout(
832
  xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
833
  yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
834
  )
835
+ return fig, None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
836
 
837
  def generate_roi_visualizations():
838
+ """Generate ROI visualizations with CSV-first approach for Hugging Face Space deployment"""
839
  global global_roi_df
840
 
841
+ # CSV-FIRST APPROACH: Try to load from CSV first
842
+ logger.info("Attempting to load ROI data from CSV files...")
843
+ df_roi, csv_file = load_roi_data_from_csv()
 
 
844
 
845
+ if not df_roi.empty:
846
+ logger.info(f"Successfully loaded ROI data from CSV: {len(df_roi)} records")
847
+ global_roi_df = df_roi
848
+
849
+ # Create visualizations using CSV data
850
+ logger.info("Creating ROI visualizations from CSV data...")
851
+ combined_fig = create_combined_roi_time_series_graph(df_roi)
852
+ return combined_fig, csv_file
853
+
854
+ # FALLBACK: If CSV not available, try API
855
+ logger.info("CSV data not available, falling back to API...")
856
+ try:
857
+ # Fetch data from database if not already fetched
858
+ if global_roi_df is None or global_roi_df.empty:
859
+ _, df_roi = fetch_apr_data_from_db()
860
+ else:
861
+ df_roi = global_roi_df
862
+
863
+ # If we got no data at all, return placeholder figures
864
+ if df_roi.empty:
865
+ logger.info("No ROI data available from API either. Using fallback visualization.")
866
+ # Create empty visualizations with a message using Plotly
867
+ fig = go.Figure()
868
+ fig.add_annotation(
869
+ x=0.5, y=0.5,
870
+ text="No ROI data available",
871
+ font=dict(size=20),
872
+ showarrow=False
873
+ )
874
+ fig.update_layout(
875
+ xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
876
+ yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
877
+ )
878
+
879
+ # Save as static file for reference
880
+ fig.write_html("optimus_roi_graph.html")
881
+ fig.write_image("optimus_roi_graph.png")
882
+
883
+ csv_file = None
884
+ return fig, csv_file
885
+
886
+ # Set global_roi_df for access by other functions
887
+ global_roi_df = df_roi
888
+
889
+ # Save preprocessed ROI data to CSV before creating visualizations
890
+ logger.info("Saving preprocessed ROI data to CSV...")
891
+ csv_file = save_roi_to_csv(df_roi)
892
+
893
+ # Create visualizations using the saved CSV data
894
+ logger.info("Creating ROI visualizations from preprocessed data...")
895
+ combined_fig = create_combined_roi_time_series_graph(df_roi)
896
+
897
+ return combined_fig, csv_file
898
+
899
+ except Exception as e:
900
+ logger.error(f"Error fetching ROI data from API: {e}")
901
+ # Return error visualization
902
  fig = go.Figure()
903
  fig.add_annotation(
904
  x=0.5, y=0.5,
905
+ text=f"Error loading data: {str(e)}",
906
+ font=dict(size=16, color="red"),
907
  showarrow=False
908
  )
909
  fig.update_layout(
910
  xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
911
  yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
912
  )
913
+ return fig, None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
914
 
915
  def aggregate_daily_data(df, metric_column):
916
  """
 
1225
  x=x_values_ma,
1226
  y=y_values_ma,
1227
  mode='lines', # Only lines for moving average
1228
+ line=dict(color='blue', width=3, shape='spline', smoothing=1.3), # Smooth curved line like APR
1229
  name='Median ROI (7d window)',
1230
  hovertext=hover_data_roi,
1231
  hoverinfo='text',
generate_csv_for_space.py ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ CSV Generation Script for Hugging Face Space Deployment
4
+
5
+ This script fetches data from the API, applies preprocessing, and saves CSV files
6
+ that can be uploaded to your Hugging Face Space to avoid rate limiting issues.
7
+
8
+ Usage:
9
+ python generate_csv_for_space.py
10
+
11
+ Output files:
12
+ - optimus_apr_values.csv
13
+ - optimus_apr_statistics.csv
14
+ - optimus_roi_values.csv
15
+ """
16
+
17
+ import logging
18
+ import sys
19
+ import os
20
+ from datetime import datetime
21
+
22
+ # Add the current directory to the path so we can import our modules
23
+ sys.path.append(os.path.dirname(os.path.abspath(__file__)))
24
+
25
+ # Import our existing functions
26
+ from app import fetch_apr_data_from_db, save_to_csv, save_roi_to_csv
27
+ from initial_value_fixer import fix_apr_and_roi
28
+ from load_from_csv import check_csv_data_availability, get_data_freshness_info
29
+
30
+ # Set up logging
31
+ logging.basicConfig(
32
+ level=logging.INFO,
33
+ format="%(asctime)s - %(levelname)s - %(message)s",
34
+ handlers=[
35
+ logging.FileHandler("csv_generation.log"),
36
+ logging.StreamHandler()
37
+ ]
38
+ )
39
+ logger = logging.getLogger(__name__)
40
+
41
+ def main():
42
+ """Main function to generate CSV files for Hugging Face Space deployment"""
43
+
44
+ print("=" * 60)
45
+ print("CSV Generation for Hugging Face Space Deployment")
46
+ print("=" * 60)
47
+
48
+ # Check if CSV files already exist
49
+ print("\n1. Checking existing CSV files...")
50
+ csv_info = check_csv_data_availability()
51
+
52
+ for data_type, info in csv_info.items():
53
+ if info['available']:
54
+ print(f" ✓ {data_type.upper()}: {info['file']} ({info['records']} records, {info['size_mb']:.2f} MB)")
55
+ print(f" Last modified: {info['modified']}")
56
+ else:
57
+ print(f" ✗ {data_type.upper()}: {info['error']}")
58
+
59
+ # Check data freshness
60
+ print("\n2. Checking data freshness...")
61
+ freshness_info = get_data_freshness_info()
62
+
63
+ for data_type, info in freshness_info.items():
64
+ if data_type != 'error':
65
+ hours_old = info['hours_old']
66
+ is_fresh = info['is_fresh']
67
+ status = "FRESH" if is_fresh else "STALE"
68
+ print(f" {data_type.upper()}: {hours_old:.1f} hours old ({status})")
69
+
70
+ # Ask user if they want to proceed
71
+ print("\n3. Data generation options:")
72
+ print(" [1] Generate fresh data from API (recommended)")
73
+ print(" [2] Skip if CSV files are fresh (< 24 hours old)")
74
+ print(" [3] Exit without generating")
75
+
76
+ choice = input("\nEnter your choice (1-3): ").strip()
77
+
78
+ if choice == "3":
79
+ print("Exiting without generating CSV files.")
80
+ return
81
+
82
+ elif choice == "2":
83
+ # Check if all files are fresh
84
+ all_fresh = True
85
+ for data_type, info in freshness_info.items():
86
+ if data_type != 'error' and not info.get('is_fresh', False):
87
+ all_fresh = False
88
+ break
89
+
90
+ if all_fresh and csv_info['apr']['available'] and csv_info['roi']['available']:
91
+ print("All CSV files are fresh. No need to regenerate.")
92
+ return
93
+ else:
94
+ print("Some CSV files are missing or stale. Proceeding with generation...")
95
+
96
+ # Generate fresh data
97
+ print("\n4. Fetching data from API...")
98
+ try:
99
+ df_apr, df_roi = fetch_apr_data_from_db()
100
+
101
+ if df_apr.empty and df_roi.empty:
102
+ print(" ✗ No data fetched from API. Check your connection and API status.")
103
+ return
104
+
105
+ print(f" ✓ Fetched {len(df_apr)} APR records and {len(df_roi)} ROI records")
106
+
107
+ except Exception as e:
108
+ print(f" ✗ Error fetching data: {e}")
109
+ logger.exception("Error fetching data from API")
110
+ return
111
+
112
+ # Apply preprocessing
113
+ print("\n5. Applying preprocessing...")
114
+ try:
115
+ if not df_apr.empty:
116
+ df_apr_processed = fix_apr_and_roi(df_apr)
117
+ print(f" ✓ Processed APR data: {len(df_apr_processed)} records")
118
+ else:
119
+ df_apr_processed = df_apr
120
+ print(" ! No APR data to process")
121
+
122
+ if not df_roi.empty:
123
+ df_roi_processed = df_roi # ROI data is already processed in fetch function
124
+ print(f" ✓ ROI data ready: {len(df_roi_processed)} records")
125
+ else:
126
+ df_roi_processed = df_roi
127
+ print(" ! No ROI data to process")
128
+
129
+ except Exception as e:
130
+ print(f" ✗ Error during preprocessing: {e}")
131
+ logger.exception("Error during preprocessing")
132
+ return
133
+
134
+ # Save CSV files
135
+ print("\n6. Saving CSV files...")
136
+ csv_files_created = []
137
+
138
+ try:
139
+ # Save APR data
140
+ if not df_apr_processed.empty:
141
+ apr_csv = save_to_csv(df_apr_processed)
142
+ if apr_csv:
143
+ csv_files_created.append(apr_csv)
144
+ print(f" ✓ Saved APR data: {apr_csv}")
145
+
146
+ # Also save statistics
147
+ stats_csv = "optimus_apr_statistics.csv"
148
+ if os.path.exists(stats_csv):
149
+ csv_files_created.append(stats_csv)
150
+ print(f" ✓ Saved APR statistics: {stats_csv}")
151
+
152
+ # Save ROI data
153
+ if not df_roi_processed.empty:
154
+ roi_csv = save_roi_to_csv(df_roi_processed)
155
+ if roi_csv:
156
+ csv_files_created.append(roi_csv)
157
+ print(f" ✓ Saved ROI data: {roi_csv}")
158
+
159
+ if not csv_files_created:
160
+ print(" ✗ No CSV files were created")
161
+ return
162
+
163
+ except Exception as e:
164
+ print(f" ✗ Error saving CSV files: {e}")
165
+ logger.exception("Error saving CSV files")
166
+ return
167
+
168
+ # Summary
169
+ print("\n" + "=" * 60)
170
+ print("CSV GENERATION COMPLETE")
171
+ print("=" * 60)
172
+
173
+ print(f"\nGenerated {len(csv_files_created)} CSV files:")
174
+ for csv_file in csv_files_created:
175
+ if os.path.exists(csv_file):
176
+ size_mb = os.path.getsize(csv_file) / (1024 * 1024)
177
+ print(f" • {csv_file} ({size_mb:.2f} MB)")
178
+
179
+ print(f"\nGeneration completed at: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
180
+
181
+ print("\nNext steps for Hugging Face Space deployment:")
182
+ print("1. Upload these CSV files to your Hugging Face Space repository")
183
+ print("2. Ensure your Space app.py imports and uses load_from_csv functions")
184
+ print("3. The app will prioritize CSV data over API calls, avoiding rate limits")
185
+ print("4. Re-run this script periodically to update the CSV files with fresh data")
186
+
187
+ print("\nDeployment tips:")
188
+ print("• Add these CSV files to your Space's file list")
189
+ print("• Consider setting up a scheduled job to update CSV files regularly")
190
+ print("• Monitor your Space logs to ensure CSV loading works correctly")
191
+
192
+ if __name__ == "__main__":
193
+ main()
load_from_csv.py ADDED
@@ -0,0 +1,251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ CSV Loading Functions for Hugging Face Space Deployment
3
+ This module provides functions to load preprocessed data from CSV files
4
+ instead of making API calls, which helps avoid rate limiting issues.
5
+ """
6
+
7
+ import pandas as pd
8
+ import logging
9
+ from datetime import datetime
10
+ from typing import Tuple, Optional
11
+ import os
12
+
13
+ logger = logging.getLogger(__name__)
14
+
15
+ def load_apr_data_from_csv() -> Tuple[pd.DataFrame, Optional[str]]:
16
+ """
17
+ Load APR data from CSV files.
18
+
19
+ Returns:
20
+ Tuple of (DataFrame, csv_file_path) or (empty DataFrame, None) if files don't exist
21
+ """
22
+ csv_file = "optimus_apr_values.csv"
23
+
24
+ try:
25
+ if not os.path.exists(csv_file):
26
+ logger.warning(f"APR CSV file not found: {csv_file}")
27
+ return pd.DataFrame(), None
28
+
29
+ # Load the CSV file
30
+ df = pd.read_csv(csv_file)
31
+
32
+ # Convert timestamp column back to datetime
33
+ if 'timestamp' in df.columns:
34
+ df['timestamp'] = pd.to_datetime(df['timestamp'])
35
+
36
+ # Ensure proper data types
37
+ if 'apr' in df.columns:
38
+ df['apr'] = df['apr'].astype(float)
39
+ if 'adjusted_apr' in df.columns:
40
+ df['adjusted_apr'] = pd.to_numeric(df['adjusted_apr'], errors='coerce')
41
+ if 'agent_id' in df.columns:
42
+ df['agent_id'] = df['agent_id'].astype(str)
43
+ if 'is_dummy' in df.columns:
44
+ df['is_dummy'] = df['is_dummy'].astype(bool)
45
+
46
+ logger.info(f"Successfully loaded {len(df)} APR records from {csv_file}")
47
+
48
+ # Log data freshness
49
+ if not df.empty and 'timestamp' in df.columns:
50
+ latest_timestamp = df['timestamp'].max()
51
+ oldest_timestamp = df['timestamp'].min()
52
+ logger.info(f"APR data range: {oldest_timestamp} to {latest_timestamp}")
53
+
54
+ # Check how fresh the data is
55
+ now = datetime.now()
56
+ if latest_timestamp.tzinfo is None:
57
+ # Make timezone-naive for comparison
58
+ now = now.replace(tzinfo=None)
59
+
60
+ hours_old = (now - latest_timestamp).total_seconds() / 3600
61
+ logger.info(f"Latest APR data is {hours_old:.1f} hours old")
62
+
63
+ return df, csv_file
64
+
65
+ except Exception as e:
66
+ logger.error(f"Error loading APR data from CSV: {e}")
67
+ return pd.DataFrame(), None
68
+
69
+ def load_roi_data_from_csv() -> Tuple[pd.DataFrame, Optional[str]]:
70
+ """
71
+ Load ROI data from CSV files.
72
+
73
+ Returns:
74
+ Tuple of (DataFrame, csv_file_path) or (empty DataFrame, None) if files don't exist
75
+ """
76
+ csv_file = "optimus_roi_values.csv"
77
+
78
+ try:
79
+ if not os.path.exists(csv_file):
80
+ logger.warning(f"ROI CSV file not found: {csv_file}")
81
+ return pd.DataFrame(), None
82
+
83
+ # Load the CSV file
84
+ df = pd.read_csv(csv_file)
85
+
86
+ # Convert timestamp column back to datetime
87
+ if 'timestamp' in df.columns:
88
+ df['timestamp'] = pd.to_datetime(df['timestamp'])
89
+
90
+ # Ensure proper data types
91
+ if 'roi' in df.columns:
92
+ df['roi'] = df['roi'].astype(float)
93
+ if 'agent_id' in df.columns:
94
+ df['agent_id'] = df['agent_id'].astype(str)
95
+ if 'is_dummy' in df.columns:
96
+ df['is_dummy'] = df['is_dummy'].astype(bool)
97
+
98
+ logger.info(f"Successfully loaded {len(df)} ROI records from {csv_file}")
99
+
100
+ # Log data freshness
101
+ if not df.empty and 'timestamp' in df.columns:
102
+ latest_timestamp = df['timestamp'].max()
103
+ oldest_timestamp = df['timestamp'].min()
104
+ logger.info(f"ROI data range: {oldest_timestamp} to {latest_timestamp}")
105
+
106
+ # Check how fresh the data is
107
+ now = datetime.now()
108
+ if latest_timestamp.tzinfo is None:
109
+ # Make timezone-naive for comparison
110
+ now = now.replace(tzinfo=None)
111
+
112
+ hours_old = (now - latest_timestamp).total_seconds() / 3600
113
+ logger.info(f"Latest ROI data is {hours_old:.1f} hours old")
114
+
115
+ return df, csv_file
116
+
117
+ except Exception as e:
118
+ logger.error(f"Error loading ROI data from CSV: {e}")
119
+ return pd.DataFrame(), None
120
+
121
+ def load_statistics_from_csv() -> pd.DataFrame:
122
+ """
123
+ Load statistics data from CSV file.
124
+
125
+ Returns:
126
+ DataFrame with statistics or empty DataFrame if file doesn't exist
127
+ """
128
+ csv_file = "optimus_apr_statistics.csv"
129
+
130
+ try:
131
+ if not os.path.exists(csv_file):
132
+ logger.warning(f"Statistics CSV file not found: {csv_file}")
133
+ return pd.DataFrame()
134
+
135
+ # Load the CSV file
136
+ df = pd.read_csv(csv_file)
137
+
138
+ logger.info(f"Successfully loaded statistics from {csv_file}")
139
+ return df
140
+
141
+ except Exception as e:
142
+ logger.error(f"Error loading statistics from CSV: {e}")
143
+ return pd.DataFrame()
144
+
145
+ def check_csv_data_availability() -> dict:
146
+ """
147
+ Check which CSV files are available and their basic info.
148
+
149
+ Returns:
150
+ Dictionary with availability status and file info
151
+ """
152
+ files_info = {}
153
+
154
+ # Check APR data
155
+ apr_file = "optimus_apr_values.csv"
156
+ if os.path.exists(apr_file):
157
+ try:
158
+ df = pd.read_csv(apr_file)
159
+ files_info['apr'] = {
160
+ 'available': True,
161
+ 'file': apr_file,
162
+ 'records': len(df),
163
+ 'size_mb': os.path.getsize(apr_file) / (1024 * 1024),
164
+ 'modified': datetime.fromtimestamp(os.path.getmtime(apr_file))
165
+ }
166
+ except Exception as e:
167
+ files_info['apr'] = {'available': False, 'error': str(e)}
168
+ else:
169
+ files_info['apr'] = {'available': False, 'error': 'File not found'}
170
+
171
+ # Check ROI data
172
+ roi_file = "optimus_roi_values.csv"
173
+ if os.path.exists(roi_file):
174
+ try:
175
+ df = pd.read_csv(roi_file)
176
+ files_info['roi'] = {
177
+ 'available': True,
178
+ 'file': roi_file,
179
+ 'records': len(df),
180
+ 'size_mb': os.path.getsize(roi_file) / (1024 * 1024),
181
+ 'modified': datetime.fromtimestamp(os.path.getmtime(roi_file))
182
+ }
183
+ except Exception as e:
184
+ files_info['roi'] = {'available': False, 'error': str(e)}
185
+ else:
186
+ files_info['roi'] = {'available': False, 'error': 'File not found'}
187
+
188
+ # Check statistics data
189
+ stats_file = "optimus_apr_statistics.csv"
190
+ if os.path.exists(stats_file):
191
+ try:
192
+ df = pd.read_csv(stats_file)
193
+ files_info['statistics'] = {
194
+ 'available': True,
195
+ 'file': stats_file,
196
+ 'records': len(df),
197
+ 'size_mb': os.path.getsize(stats_file) / (1024 * 1024),
198
+ 'modified': datetime.fromtimestamp(os.path.getmtime(stats_file))
199
+ }
200
+ except Exception as e:
201
+ files_info['statistics'] = {'available': False, 'error': str(e)}
202
+ else:
203
+ files_info['statistics'] = {'available': False, 'error': 'File not found'}
204
+
205
+ return files_info
206
+
207
+ def get_data_freshness_info() -> dict:
208
+ """
209
+ Get information about how fresh the CSV data is.
210
+
211
+ Returns:
212
+ Dictionary with freshness information
213
+ """
214
+ info = {}
215
+
216
+ try:
217
+ # Check APR data freshness
218
+ apr_df, _ = load_apr_data_from_csv()
219
+ if not apr_df.empty and 'timestamp' in apr_df.columns:
220
+ latest_apr = apr_df['timestamp'].max()
221
+ now = datetime.now()
222
+ if latest_apr.tzinfo is None:
223
+ now = now.replace(tzinfo=None)
224
+
225
+ hours_old = (now - latest_apr).total_seconds() / 3600
226
+ info['apr'] = {
227
+ 'latest_data': latest_apr,
228
+ 'hours_old': hours_old,
229
+ 'is_fresh': hours_old < 24 # Consider fresh if less than 24 hours old
230
+ }
231
+
232
+ # Check ROI data freshness
233
+ roi_df, _ = load_roi_data_from_csv()
234
+ if not roi_df.empty and 'timestamp' in roi_df.columns:
235
+ latest_roi = roi_df['timestamp'].max()
236
+ now = datetime.now()
237
+ if latest_roi.tzinfo is None:
238
+ now = now.replace(tzinfo=None)
239
+
240
+ hours_old = (now - latest_roi).total_seconds() / 3600
241
+ info['roi'] = {
242
+ 'latest_data': latest_roi,
243
+ 'hours_old': hours_old,
244
+ 'is_fresh': hours_old < 24 # Consider fresh if less than 24 hours old
245
+ }
246
+
247
+ except Exception as e:
248
+ logger.error(f"Error checking data freshness: {e}")
249
+ info['error'] = str(e)
250
+
251
+ return info
optimus_apr_statistics.csv ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ agent_id,agent_name,total_points,apr_points,performance_points,real_apr_points,real_performance_points,avg_apr,avg_performance,max_apr,min_apr,avg_adjusted_apr,max_adjusted_apr,min_adjusted_apr,latest_timestamp
2
+ 111,furtek-gilje55,41,41,0,4,0,4.299586579767991,,132.09,-94.88,6.642506092362181,125.13,-0.5,2025-06-14 04:50:52
3
+ 112,vuzus-fazi89,38,38,0,1,0,-2.100231738154815,,1.0,-74.97,-0.0697329975030058,1.0,-31.43,2025-06-14 04:50:52
4
+ 115,yenot-zoncen49,59,59,0,22,0,6.496904819117842,,190.0,-96.36,9.748857520651566,182.41,-0.5,2025-06-14 04:50:52
5
+ 116,honji-hahi60,72,72,0,35,0,22.846921430806514,,159.56,-94.35,24.52348550109173,151.96,-0.5,2025-06-14 04:50:52
6
+ 117,furye-himkon89,44,44,0,7,0,10.555388593373978,,228.68,-96.79,12.588233703022667,221.09,-0.5,2025-06-14 04:50:52
7
+ 118,lonwus-patu86,48,48,0,11,0,62.60820345728928,,335.69,-82.06,63.23977379713219,333.22,-41.28,2025-06-14 04:50:52
8
+ 119,lonlim-zapgi60,44,44,0,7,0,34.4231033537116,,421.68,-97.95,35.56522333573912,410.8,-0.5,2025-06-14 04:50:52
9
+ 120,joyus-goson39,41,41,0,4,0,62.62124763568349,,2081.35,-99.55,64.59516944347087,2081.35,-32.34,2025-06-14 04:50:52
10
+ 121,cilwar-rimlu27,38,38,0,1,0,56.18564353858787,,2108.94,-4.2,56.22901845166416,2108.94,-0.5,2025-06-14 04:50:52
11
+ 122,tevi-kulo15,43,43,0,6,0,58.849670457498725,,1038.47,-89.79,59.937215935661435,1038.47,-0.5,2025-06-14 04:50:52
12
+ 123,cordron-yelku44,42,42,0,5,0,24.374324516006045,,381.81,-99.79,25.956333593464684,370.64,-0.5,2025-06-14 04:50:52
13
+ 126,tonvel-beeprel23,41,41,0,4,0,53.320657463987594,,978.68,-92.51,54.8419743967097,971.66,-0.5,2025-06-14 04:50:52
14
+ 127,lunel-luwus85,42,42,0,5,0,99.48560256891523,,1305.08,-99.74,100.99112520846289,1298.06,-0.5,2025-06-14 04:50:52
15
+ 128,kozu-hanfil63,41,41,0,4,0,5.213374066025682,,314.71,-97.82,7.491235297101682,310.11,-30.96,2025-06-14 04:50:52
16
+ 86,nusus-tayar25,37,37,0,0,0,44215.79035373322,,1635999.03,-0.5,-0.3366212568602806,1.0,-0.5,2025-06-14 04:50:52
17
+ 102,kelrus-muha52,37,37,0,0,0,-1.0078958214312357,,1.0,-60.4,0.6266466549790262,1.0,-0.5,2025-06-14 04:50:52
18
+ ALL,All Agents,708,708,0,116,0,2341.654014114298,,1635999.03,-99.79,32.52177745491984,2108.94,-41.28,2025-06-14 04:50:52
optimus_apr_values.csv ADDED
The diff for this file is too large to render. See raw diff
 
optimus_roi_values.csv ADDED
@@ -0,0 +1,745 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ roi,timestamp,agent_id,agent_name,is_dummy,metric_type,apr,adjusted_apr
2
+ -0.0002765562977782299,2025-05-15 21:37:27.000000,86,nusus-tayar25,False,ROI,,
3
+ -0.0002765562977782299,2025-05-15 21:39:37.000000,86,nusus-tayar25,False,ROI,,
4
+ -0.0002765562977782299,2025-05-15 21:40:02.000000,86,nusus-tayar25,False,ROI,,
5
+ -0.0002765562977782299,2025-05-15 21:40:28.000000,86,nusus-tayar25,False,ROI,,
6
+ -0.0002765562977782299,2025-05-15 21:36:35.000000,86,nusus-tayar25,False,ROI,,
7
+ -0.0002765562977782299,2025-05-15 21:37:02.000000,86,nusus-tayar25,False,ROI,,
8
+ -0.0002765562977782299,2025-05-15 21:39:10.000000,86,nusus-tayar25,False,ROI,,
9
+ -0.0002765562977782299,2025-05-15 21:41:11.000000,86,nusus-tayar25,False,ROI,,
10
+ -0.0002765562977782299,2025-05-15 21:41:55.000000,86,nusus-tayar25,False,ROI,,
11
+ -0.0002765562977782299,2025-05-15 21:42:41.000000,86,nusus-tayar25,False,ROI,,
12
+ -0.0002765562977782299,2025-05-15 21:43:24.000000,86,nusus-tayar25,False,ROI,,
13
+ -0.0002765562977782299,2025-05-15 21:44:09.000000,86,nusus-tayar25,False,ROI,,
14
+ -0.0002765562977782299,2025-05-15 21:44:51.000000,86,nusus-tayar25,False,ROI,,
15
+ -0.0002765562977782299,2025-05-15 21:45:37.000000,86,nusus-tayar25,False,ROI,,
16
+ -0.0002765562977782299,2025-05-15 21:46:20.000000,86,nusus-tayar25,False,ROI,,
17
+ -0.00012649422506416652,2025-05-19 22:39:16.682649,86,nusus-tayar25,False,ROI,,
18
+ -0.00010449205744944567,2025-05-19 22:47:57.660329,86,nusus-tayar25,False,ROI,,
19
+ -0.00010449205744944567,2025-05-19 22:53:48.567618,86,nusus-tayar25,False,ROI,,
20
+ -0.00012649422506416652,2025-05-19 22:39:37.060636,86,nusus-tayar25,False,ROI,,
21
+ -0.00010449205744944567,2025-05-19 22:46:29.056289,86,nusus-tayar25,False,ROI,,
22
+ -0.00010449205744944567,2025-05-19 22:51:30.269824,86,nusus-tayar25,False,ROI,,
23
+ -0.00010449205744944567,2025-05-19 22:57:07.717697,86,nusus-tayar25,False,ROI,,
24
+ -0.0011357601313007892,2025-05-23 19:05:51.628406,86,nusus-tayar25,False,ROI,,
25
+ -0.0016374352988718366,2025-05-27 05:42:54.798079,86,nusus-tayar25,False,ROI,,
26
+ -0.8666050938279419,2025-06-04 21:48:07.115718,86,nusus-tayar25,False,ROI,,
27
+ -0.8666050938279419,2025-06-04 21:52:00.578098,86,nusus-tayar25,False,ROI,,
28
+ -0.999999999999975,2025-06-05 01:55:15.033359,86,nusus-tayar25,False,ROI,,
29
+ -0.1696775721419591,2025-06-05 18:27:57.578268,86,nusus-tayar25,False,ROI,,
30
+ 1.8675787957432175,2025-06-06 05:14:51.027065,86,nusus-tayar25,False,ROI,,
31
+ 1.8675787957432175,2025-06-06 03:39:44.505985,86,nusus-tayar25,False,ROI,,
32
+ 1.0420726955249058,2025-05-30 01:10:42.776945,102,kelrus-muha52,False,ROI,,
33
+ 1.0371385033661085,2025-05-30 16:11:26.814088,102,kelrus-muha52,False,ROI,,
34
+ -0.20964670158400078,2025-06-03 19:28:54.348419,102,kelrus-muha52,False,ROI,,
35
+ -0.6044365419107054,2025-06-04 12:35:13.593971,102,kelrus-muha52,False,ROI,,
36
+ -0.6040367838477997,2025-06-04 14:25:41.343980,102,kelrus-muha52,False,ROI,,
37
+ -0.5407000717190478,2025-06-06 13:40:55.755362,111,furtek-gilje55,False,ROI,,
38
+ -0.5407000717190478,2025-06-06 14:42:37.722147,111,furtek-gilje55,False,ROI,,
39
+ -0.7884286963057436,2025-06-10 22:35:07.125343,111,furtek-gilje55,False,ROI,,
40
+ -0.9488224700727876,2025-06-12 21:50:15.066243,111,furtek-gilje55,False,ROI,,
41
+ -0.36854758417016864,2025-06-05 20:46:51.369656,112,vuzus-fazi89,False,ROI,,
42
+ -0.7496728527619763,2025-06-08 02:03:32.248014,112,vuzus-fazi89,False,ROI,,
43
+ -0.5456503958801932,2025-06-06 06:06:41.681577,115,yenot-zoncen49,False,ROI,,
44
+ -0.5456503958801932,2025-06-06 08:19:44.944148,115,yenot-zoncen49,False,ROI,,
45
+ -0.5456503958801932,2025-06-06 09:23:09.755892,115,yenot-zoncen49,False,ROI,,
46
+ -0.5456503958801932,2025-06-06 07:13:18.351148,115,yenot-zoncen49,False,ROI,,
47
+ -0.5456503958801932,2025-06-06 10:29:34.181627,115,yenot-zoncen49,False,ROI,,
48
+ -0.5456503958801932,2025-06-06 11:29:53.721747,115,yenot-zoncen49,False,ROI,,
49
+ -0.6935346167526257,2025-06-06 18:03:43.542513,115,yenot-zoncen49,False,ROI,,
50
+ -0.6935346167526257,2025-06-06 19:04:52.884426,115,yenot-zoncen49,False,ROI,,
51
+ -0.6935346167526257,2025-06-06 20:11:32.564197,115,yenot-zoncen49,False,ROI,,
52
+ -0.6935346167526257,2025-06-06 21:17:44.644404,115,yenot-zoncen49,False,ROI,,
53
+ -0.6935346167526257,2025-06-06 23:49:32.590705,115,yenot-zoncen49,False,ROI,,
54
+ -0.6935346167526257,2025-06-06 22:42:27.626419,115,yenot-zoncen49,False,ROI,,
55
+ -0.7694497887241564,2025-06-07 00:58:38.934274,115,yenot-zoncen49,False,ROI,,
56
+ -0.7694497887241564,2025-06-07 01:59:14.908032,115,yenot-zoncen49,False,ROI,,
57
+ -0.7694497887241564,2025-06-07 03:06:00.184228,115,yenot-zoncen49,False,ROI,,
58
+ -0.7694497887241564,2025-06-07 04:12:56.442833,115,yenot-zoncen49,False,ROI,,
59
+ -0.7694497887241564,2025-06-07 05:17:05.382648,115,yenot-zoncen49,False,ROI,,
60
+ -0.8157364377840948,2025-06-07 10:38:37.999244,115,yenot-zoncen49,False,ROI,,
61
+ -0.8419242567103777,2025-06-10 04:19:24.254702,115,yenot-zoncen49,False,ROI,,
62
+ -0.9107340650896589,2025-06-11 22:23:52.680327,115,yenot-zoncen49,False,ROI,,
63
+ -0.9415532636683955,2025-06-12 22:29:06.555260,115,yenot-zoncen49,False,ROI,,
64
+ -0.9635936504813616,2025-06-13 22:40:52.426319,115,yenot-zoncen49,False,ROI,,
65
+ -0.5419683668321018,2025-06-06 11:29:18.913469,116,honji-hahi60,False,ROI,,
66
+ -0.5419683668321018,2025-06-06 12:31:08.139923,116,honji-hahi60,False,ROI,,
67
+ -0.6918271067123792,2025-06-06 22:15:03.771384,116,honji-hahi60,False,ROI,,
68
+ -0.6918271067123792,2025-06-07 00:12:24.552821,116,honji-hahi60,False,ROI,,
69
+ -0.6918271067123792,2025-06-07 02:01:48.183436,116,honji-hahi60,False,ROI,,
70
+ -0.7697658335453386,2025-06-07 15:35:09.317222,116,honji-hahi60,False,ROI,,
71
+ -0.8148303173953624,2025-06-08 00:16:07.222875,116,honji-hahi60,False,ROI,,
72
+ -0.8148303173953624,2025-06-08 04:13:13.395768,116,honji-hahi60,False,ROI,,
73
+ -0.8148303173953624,2025-06-08 02:11:01.421104,116,honji-hahi60,False,ROI,,
74
+ -0.8148303173953624,2025-06-08 03:12:05.231210,116,honji-hahi60,False,ROI,,
75
+ -0.845686327990629,2025-06-08 14:28:01.349077,116,honji-hahi60,False,ROI,,
76
+ -0.8677918616728917,2025-06-08 21:32:22.234368,116,honji-hahi60,False,ROI,,
77
+ -0.8677918616728917,2025-06-08 22:36:17.834229,116,honji-hahi60,False,ROI,,
78
+ -0.8677918616728917,2025-06-08 23:59:43.295623,116,honji-hahi60,False,ROI,,
79
+ -0.8677918616728917,2025-06-09 01:00:58.054069,116,honji-hahi60,False,ROI,,
80
+ -0.8842017831796516,2025-06-09 19:31:39.204380,116,honji-hahi60,False,ROI,,
81
+ -0.8842017831796516,2025-06-09 20:34:23.789481,116,honji-hahi60,False,ROI,,
82
+ -0.8842017831796516,2025-06-10 00:05:22.986881,116,honji-hahi60,False,ROI,,
83
+ -0.8842017831796516,2025-06-10 01:11:09.610266,116,honji-hahi60,False,ROI,,
84
+ -0.8842017831796516,2025-06-09 21:40:11.196609,116,honji-hahi60,False,ROI,,
85
+ -0.8842017831796516,2025-06-09 22:59:27.051209,116,honji-hahi60,False,ROI,,
86
+ -0.8959727145977444,2025-06-10 02:15:06.888709,116,honji-hahi60,False,ROI,,
87
+ -0.8959727145977444,2025-06-10 03:16:08.200810,116,honji-hahi60,False,ROI,,
88
+ -0.9049633984067742,2025-06-10 13:06:56.183812,116,honji-hahi60,False,ROI,,
89
+ -0.9049633984067742,2025-06-10 14:12:49.085955,116,honji-hahi60,False,ROI,,
90
+ -0.9049633984067742,2025-06-10 12:05:28.212332,116,honji-hahi60,False,ROI,,
91
+ -0.9049633984067742,2025-06-10 15:17:49.725694,116,honji-hahi60,False,ROI,,
92
+ -0.9122831964482513,2025-06-10 19:30:50.269289,116,honji-hahi60,False,ROI,,
93
+ -0.9122831964482513,2025-06-10 20:30:54.841382,116,honji-hahi60,False,ROI,,
94
+ -0.9049633984067742,2025-06-10 16:17:52.268774,116,honji-hahi60,False,ROI,,
95
+ -0.9049633984067742,2025-06-10 17:23:51.522272,116,honji-hahi60,False,ROI,,
96
+ -0.9122831964482513,2025-06-10 18:29:24.025681,116,honji-hahi60,False,ROI,,
97
+ -0.9182298315923811,2025-06-11 22:14:54.110285,116,honji-hahi60,False,ROI,,
98
+ -0.9182298315923811,2025-06-11 23:15:11.685382,116,honji-hahi60,False,ROI,,
99
+ -0.9435336077967746,2025-06-13 18:28:24.365605,116,honji-hahi60,False,ROI,,
100
+ -0.539434826138091,2025-06-07 12:07:37.903080,117,furye-himkon89,False,ROI,,
101
+ -0.8457106839760286,2025-06-08 14:06:51.667566,117,furye-himkon89,False,ROI,,
102
+ -0.9230692071887114,2025-06-09 18:36:45.190353,117,furye-himkon89,False,ROI,,
103
+ -0.9405482339574164,2025-06-10 19:00:01.668753,117,furye-himkon89,False,ROI,,
104
+ -0.9557433990624431,2025-06-11 20:01:40.606767,117,furye-himkon89,False,ROI,,
105
+ -0.9644214185359603,2025-06-12 20:03:47.365734,117,furye-himkon89,False,ROI,,
106
+ -0.9678726884215347,2025-06-13 20:08:14.584427,117,furye-himkon89,False,ROI,,
107
+ -0.522856603000806,2025-06-07 16:03:45.373863,118,lonwus-patu86,False,ROI,,
108
+ -0.522856603000806,2025-06-07 17:07:58.993795,118,lonwus-patu86,False,ROI,,
109
+ -0.522856603000806,2025-06-07 14:59:15.300909,118,lonwus-patu86,False,ROI,,
110
+ -0.522856603000806,2025-06-07 18:11:58.599501,118,lonwus-patu86,False,ROI,,
111
+ -0.522856603000806,2025-06-07 19:15:56.087703,118,lonwus-patu86,False,ROI,,
112
+ -0.6808073824663021,2025-06-08 20:18:54.565690,118,lonwus-patu86,False,ROI,,
113
+ -0.6808073824663021,2025-06-08 19:12:17.097068,118,lonwus-patu86,False,ROI,,
114
+ -0.6808073824663021,2025-06-08 17:00:30.730686,118,lonwus-patu86,False,ROI,,
115
+ -0.6808073824663021,2025-06-08 18:06:00.793190,118,lonwus-patu86,False,ROI,,
116
+ -0.6808073824663021,2025-06-08 21:24:29.536035,118,lonwus-patu86,False,ROI,,
117
+ -0.8205651694178833,2025-06-11 13:51:16.740004,118,lonwus-patu86,False,ROI,,
118
+ -0.5209472494164171,2025-06-06 21:16:18.171681,119,lonlim-zapgi60,False,ROI,,
119
+ -0.8806121461884667,2025-06-07 21:20:52.452249,119,lonlim-zapgi60,False,ROI,,
120
+ -0.9494425475236697,2025-06-08 21:24:43.897906,119,lonlim-zapgi60,False,ROI,,
121
+ -0.9581661316409477,2025-06-09 21:25:09.568709,119,lonlim-zapgi60,False,ROI,,
122
+ -0.9718003547903387,2025-06-10 21:27:14.352202,119,lonlim-zapgi60,False,ROI,,
123
+ -0.9787591800715275,2025-06-12 19:40:26.414300,119,lonlim-zapgi60,False,ROI,,
124
+ -0.9794772304169566,2025-06-13 20:14:38.143005,119,lonlim-zapgi60,False,ROI,,
125
+ -0.04228785271807323,2025-06-06 21:35:10.663781,120,joyus-goson39,False,ROI,,
126
+ -0.7433267707945117,2025-06-08 17:03:45.278780,120,joyus-goson39,False,ROI,,
127
+ -0.93143110654765,2025-06-08 22:12:15.454361,120,joyus-goson39,False,ROI,,
128
+ -0.9954715886959313,2025-06-13 21:09:43.972117,120,joyus-goson39,False,ROI,,
129
+ -0.0420238942074701,2025-06-06 21:50:52.233090,121,cilwar-rimlu27,False,ROI,,
130
+ -0.051812127318122125,2025-06-07 20:35:53.079934,122,tevi-kulo15,False,ROI,,
131
+ -0.6001593353781343,2025-06-08 22:11:03.101491,122,tevi-kulo15,False,ROI,,
132
+ -0.8147388067528492,2025-06-10 18:57:11.357853,122,tevi-kulo15,False,ROI,,
133
+ -0.8540570698375662,2025-06-11 19:15:27.075172,122,tevi-kulo15,False,ROI,,
134
+ -0.880022345073269,2025-06-12 19:16:57.908495,122,tevi-kulo15,False,ROI,,
135
+ -0.8978665442605297,2025-06-13 19:20:13.259482,122,tevi-kulo15,False,ROI,,
136
+ -0.4199199156585539,2025-06-09 00:31:18.357811,123,cordron-yelku44,False,ROI,,
137
+ -0.9919527478045069,2025-06-10 02:17:21.916446,123,cordron-yelku44,False,ROI,,
138
+ -0.9944496956447029,2025-06-11 08:14:14.656064,123,cordron-yelku44,False,ROI,,
139
+ -0.9970053478645255,2025-06-12 08:16:43.196306,123,cordron-yelku44,False,ROI,,
140
+ -0.9979487653300927,2025-06-13 20:51:54.959756,123,cordron-yelku44,False,ROI,,
141
+ -0.05187871471805383,2025-06-09 18:32:36.558142,126,tonvel-beeprel23,False,ROI,,
142
+ -0.8359260807052761,2025-06-10 18:35:49.668890,126,tonvel-beeprel23,False,ROI,,
143
+ -0.9158714676998039,2025-06-11 18:38:07.704650,126,tonvel-beeprel23,False,ROI,,
144
+ -0.9251027694298075,2025-06-12 18:42:17.665709,126,tonvel-beeprel23,False,ROI,,
145
+ -0.04820460539724125,2025-06-09 22:20:14.827769,127,lunel-luwus85,False,ROI,,
146
+ -0.8982926246499542,2025-06-10 11:46:19.456686,127,lunel-luwus85,False,ROI,,
147
+ -0.9902463093068504,2025-06-11 11:52:17.821684,127,lunel-luwus85,False,ROI,,
148
+ -0.9934574000002231,2025-06-12 12:14:06.850694,127,lunel-luwus85,False,ROI,,
149
+ -0.9973549609872299,2025-06-13 12:18:45.544337,127,lunel-luwus85,False,ROI,,
150
+ -0.06059521614727914,2025-06-10 09:06:37.010122,128,kozu-hanfil63,False,ROI,,
151
+ -0.7876204161976992,2025-06-10 09:29:20.119072,128,kozu-hanfil63,False,ROI,,
152
+ -0.9581645051657031,2025-06-11 12:58:00.236662,128,kozu-hanfil63,False,ROI,,
153
+ -0.9781812869068476,2025-06-13 07:59:58.559461,128,kozu-hanfil63,False,ROI,,
154
+ -0.005,2025-06-13 22:50:52.426319,86,nusus-tayar25,True,ROI,,
155
+ -0.004489510310909831,2025-06-13 23:00:52.426319,86,nusus-tayar25,True,ROI,,
156
+ -0.004268474771962935,2025-06-13 23:10:52.426319,86,nusus-tayar25,True,ROI,,
157
+ -0.003905261516723118,2025-06-13 23:20:52.426319,86,nusus-tayar25,True,ROI,,
158
+ -0.002918665502754824,2025-06-13 23:30:52.426319,86,nusus-tayar25,True,ROI,,
159
+ -0.0020226607478216296,2025-06-13 23:40:52.426319,86,nusus-tayar25,True,ROI,,
160
+ -0.0013207496055926296,2025-06-13 23:50:52.426319,86,nusus-tayar25,True,ROI,,
161
+ -0.00029204150983380456,2025-06-14 00:00:52.426319,86,nusus-tayar25,True,ROI,,
162
+ -0.0015090583665956197,2025-06-14 00:10:52.426319,86,nusus-tayar25,True,ROI,,
163
+ -0.002884372225317991,2025-06-14 00:20:52.426319,86,nusus-tayar25,True,ROI,,
164
+ -0.0034742437278181175,2025-06-14 00:30:52.426319,86,nusus-tayar25,True,ROI,,
165
+ -0.004451217794303483,2025-06-14 00:40:52.426319,86,nusus-tayar25,True,ROI,,
166
+ -0.005443286906046667,2025-06-14 00:50:52.426319,86,nusus-tayar25,True,ROI,,
167
+ -0.006332066131978136,2025-06-14 01:00:52.426319,86,nusus-tayar25,True,ROI,,
168
+ -0.007256436801848433,2025-06-14 01:10:52.426319,86,nusus-tayar25,True,ROI,,
169
+ -0.006085169393706694,2025-06-14 01:20:52.426319,86,nusus-tayar25,True,ROI,,
170
+ -0.005221062948115387,2025-06-14 01:30:52.426319,86,nusus-tayar25,True,ROI,,
171
+ -0.004260986934085638,2025-06-14 01:40:52.426319,86,nusus-tayar25,True,ROI,,
172
+ -0.003105477321445816,2025-06-14 01:50:52.426319,86,nusus-tayar25,True,ROI,,
173
+ -0.0022796797346442787,2025-06-14 02:00:52.426319,86,nusus-tayar25,True,ROI,,
174
+ -0.0013583592837075826,2025-06-14 02:10:52.426319,86,nusus-tayar25,True,ROI,,
175
+ -0.0006443673859894827,2025-06-14 02:20:52.426319,86,nusus-tayar25,True,ROI,,
176
+ -0.0012894717377449135,2025-06-14 02:30:52.426319,86,nusus-tayar25,True,ROI,,
177
+ -0.0017582844595584349,2025-06-14 02:40:52.426319,86,nusus-tayar25,True,ROI,,
178
+ -0.001896521054634634,2025-06-14 02:50:52.426319,86,nusus-tayar25,True,ROI,,
179
+ -0.002248010464077275,2025-06-14 03:00:52.426319,86,nusus-tayar25,True,ROI,,
180
+ -0.002621898447976877,2025-06-14 03:10:52.426319,86,nusus-tayar25,True,ROI,,
181
+ -0.00373955779426134,2025-06-14 03:20:52.426319,86,nusus-tayar25,True,ROI,,
182
+ -0.0039076784209985255,2025-06-14 03:30:52.426319,86,nusus-tayar25,True,ROI,,
183
+ -0.004617277501751433,2025-06-14 03:40:52.426319,86,nusus-tayar25,True,ROI,,
184
+ -0.005479032532158617,2025-06-14 03:50:52.426319,86,nusus-tayar25,True,ROI,,
185
+ -0.006554114655460185,2025-06-14 04:00:52.426319,86,nusus-tayar25,True,ROI,,
186
+ -0.007165164658317964,2025-06-14 04:10:52.426319,86,nusus-tayar25,True,ROI,,
187
+ -0.007912372240568854,2025-06-14 04:20:52.426319,86,nusus-tayar25,True,ROI,,
188
+ -0.008712257688328829,2025-06-14 04:30:52.426319,86,nusus-tayar25,True,ROI,,
189
+ -0.009308527844307333,2025-06-14 04:40:52.426319,86,nusus-tayar25,True,ROI,,
190
+ -0.00958151756206696,2025-06-14 04:50:52.426319,86,nusus-tayar25,True,ROI,,
191
+ -0.005,2025-06-13 22:50:52.426319,102,kelrus-muha52,True,ROI,,
192
+ -0.004972251855413145,2025-06-13 23:00:52.426319,102,kelrus-muha52,True,ROI,,
193
+ -0.004956883241066756,2025-06-13 23:10:52.426319,102,kelrus-muha52,True,ROI,,
194
+ -0.004780458851772261,2025-06-13 23:20:52.426319,102,kelrus-muha52,True,ROI,,
195
+ -0.004309144602101478,2025-06-13 23:30:52.426319,102,kelrus-muha52,True,ROI,,
196
+ -0.0035821182596531714,2025-06-13 23:40:52.426319,102,kelrus-muha52,True,ROI,,
197
+ -0.0033411671253005355,2025-06-13 23:50:52.426319,102,kelrus-muha52,True,ROI,,
198
+ -0.0033923320407693307,2025-06-14 00:00:52.426319,102,kelrus-muha52,True,ROI,,
199
+ -0.004408234197706487,2025-06-14 00:10:52.426319,102,kelrus-muha52,True,ROI,,
200
+ -0.005527668566483495,2025-06-14 00:20:52.426319,102,kelrus-muha52,True,ROI,,
201
+ -0.00648016314608676,2025-06-14 00:30:52.426319,102,kelrus-muha52,True,ROI,,
202
+ -0.007719400549543123,2025-06-14 00:40:52.426319,102,kelrus-muha52,True,ROI,,
203
+ -0.008887692296346679,2025-06-14 00:50:52.426319,102,kelrus-muha52,True,ROI,,
204
+ -0.00984811779903264,2025-06-14 01:00:52.426319,102,kelrus-muha52,True,ROI,,
205
+ -0.01,2025-06-14 01:10:52.426319,102,kelrus-muha52,True,ROI,,
206
+ -0.009655771240369515,2025-06-14 01:20:52.426319,102,kelrus-muha52,True,ROI,,
207
+ -0.009156127127232922,2025-06-14 01:30:52.426319,102,kelrus-muha52,True,ROI,,
208
+ -0.009082745739669072,2025-06-14 01:40:52.426319,102,kelrus-muha52,True,ROI,,
209
+ -0.008570512528555502,2025-06-14 01:50:52.426319,102,kelrus-muha52,True,ROI,,
210
+ -0.007829100740766596,2025-06-14 02:00:52.426319,102,kelrus-muha52,True,ROI,,
211
+ -0.0070348099417235355,2025-06-14 02:10:52.426319,102,kelrus-muha52,True,ROI,,
212
+ -0.006841756920720494,2025-06-14 02:20:52.426319,102,kelrus-muha52,True,ROI,,
213
+ -0.005675054073684331,2025-06-14 02:30:52.426319,102,kelrus-muha52,True,ROI,,
214
+ -0.0043492942623104035,2025-06-14 02:40:52.426319,102,kelrus-muha52,True,ROI,,
215
+ -0.003274381045959204,2025-06-14 02:50:52.426319,102,kelrus-muha52,True,ROI,,
216
+ -0.0020993884871796775,2025-06-14 03:00:52.426319,102,kelrus-muha52,True,ROI,,
217
+ -0.0009103714868139599,2025-06-14 03:10:52.426319,102,kelrus-muha52,True,ROI,,
218
+ 0.0,2025-06-14 03:20:52.426319,102,kelrus-muha52,True,ROI,,
219
+ 0.0,2025-06-14 03:30:52.426319,102,kelrus-muha52,True,ROI,,
220
+ -0.00022701493384044734,2025-06-14 03:40:52.426319,102,kelrus-muha52,True,ROI,,
221
+ -0.0010129198079448553,2025-06-14 03:50:52.426319,102,kelrus-muha52,True,ROI,,
222
+ -0.001971087849142931,2025-06-14 04:00:52.426319,102,kelrus-muha52,True,ROI,,
223
+ -0.0029119795759728903,2025-06-14 04:10:52.426319,102,kelrus-muha52,True,ROI,,
224
+ -0.003430587252319805,2025-06-14 04:20:52.426319,102,kelrus-muha52,True,ROI,,
225
+ -0.004325795303132409,2025-06-14 04:30:52.426319,102,kelrus-muha52,True,ROI,,
226
+ -0.004597309758849859,2025-06-14 04:40:52.426319,102,kelrus-muha52,True,ROI,,
227
+ -0.003681432249650301,2025-06-14 04:50:52.426319,102,kelrus-muha52,True,ROI,,
228
+ -0.005,2025-06-13 22:50:52.426319,111,furtek-gilje55,True,ROI,,
229
+ -0.004231971787142925,2025-06-13 23:00:52.426319,111,furtek-gilje55,True,ROI,,
230
+ -0.00331122479509309,2025-06-13 23:10:52.426319,111,furtek-gilje55,True,ROI,,
231
+ -0.002790150550345951,2025-06-13 23:20:52.426319,111,furtek-gilje55,True,ROI,,
232
+ -0.0016766337979347145,2025-06-13 23:30:52.426319,111,furtek-gilje55,True,ROI,,
233
+ -0.001121062024810815,2025-06-13 23:40:52.426319,111,furtek-gilje55,True,ROI,,
234
+ -0.0008735112064407048,2025-06-13 23:50:52.426319,111,furtek-gilje55,True,ROI,,
235
+ 0.0,2025-06-14 00:00:52.426319,111,furtek-gilje55,True,ROI,,
236
+ -0.0007560066170073302,2025-06-14 00:10:52.426319,111,furtek-gilje55,True,ROI,,
237
+ -0.0023054490075600973,2025-06-14 00:20:52.426319,111,furtek-gilje55,True,ROI,,
238
+ -0.0036418637849232006,2025-06-14 00:30:52.426319,111,furtek-gilje55,True,ROI,,
239
+ -0.004603378777693447,2025-06-14 00:40:52.426319,111,furtek-gilje55,True,ROI,,
240
+ -0.005710048452990995,2025-06-14 00:50:52.426319,111,furtek-gilje55,True,ROI,,
241
+ -0.006313431455238559,2025-06-14 01:00:52.426319,111,furtek-gilje55,True,ROI,,
242
+ -0.006970142483035892,2025-06-14 01:10:52.426319,111,furtek-gilje55,True,ROI,,
243
+ -0.006802458722589537,2025-06-14 01:20:52.426319,111,furtek-gilje55,True,ROI,,
244
+ -0.006254677360738891,2025-06-14 01:30:52.426319,111,furtek-gilje55,True,ROI,,
245
+ -0.00526924647918332,2025-06-14 01:40:52.426319,111,furtek-gilje55,True,ROI,,
246
+ -0.004432412460938451,2025-06-14 01:50:52.426319,111,furtek-gilje55,True,ROI,,
247
+ -0.0035495913792943025,2025-06-14 02:00:52.426319,111,furtek-gilje55,True,ROI,,
248
+ -0.0026658478593615397,2025-06-14 02:10:52.426319,111,furtek-gilje55,True,ROI,,
249
+ -0.0017381264139912232,2025-06-14 02:20:52.426319,111,furtek-gilje55,True,ROI,,
250
+ -0.002130213273520742,2025-06-14 02:30:52.426319,111,furtek-gilje55,True,ROI,,
251
+ -0.0028688870044584593,2025-06-14 02:40:52.426319,111,furtek-gilje55,True,ROI,,
252
+ -0.0032501611265232312,2025-06-14 02:50:52.426319,111,furtek-gilje55,True,ROI,,
253
+ -0.00379205329884134,2025-06-14 03:00:52.426319,111,furtek-gilje55,True,ROI,,
254
+ -0.004137087957912695,2025-06-14 03:10:52.426319,111,furtek-gilje55,True,ROI,,
255
+ -0.00493232285871924,2025-06-14 03:20:52.426319,111,furtek-gilje55,True,ROI,,
256
+ -0.004921743444422297,2025-06-14 03:30:52.426319,111,furtek-gilje55,True,ROI,,
257
+ -0.005578255524708765,2025-06-14 03:40:52.426319,111,furtek-gilje55,True,ROI,,
258
+ -0.006441327573654889,2025-06-14 03:50:52.426319,111,furtek-gilje55,True,ROI,,
259
+ -0.0073203249671829175,2025-06-14 04:00:52.426319,111,furtek-gilje55,True,ROI,,
260
+ -0.007677494777397799,2025-06-14 04:10:52.426319,111,furtek-gilje55,True,ROI,,
261
+ -0.008594934854004827,2025-06-14 04:20:52.426319,111,furtek-gilje55,True,ROI,,
262
+ -0.009243563662014747,2025-06-14 04:30:52.426319,111,furtek-gilje55,True,ROI,,
263
+ -0.009830703172870575,2025-06-14 04:40:52.426319,111,furtek-gilje55,True,ROI,,
264
+ -0.009598031806024124,2025-06-14 04:50:52.426319,111,furtek-gilje55,True,ROI,,
265
+ -0.005,2025-06-13 22:50:52.426319,112,vuzus-fazi89,True,ROI,,
266
+ -0.00518086119622134,2025-06-13 23:00:52.426319,112,vuzus-fazi89,True,ROI,,
267
+ -0.006023276324520206,2025-06-13 23:10:52.426319,112,vuzus-fazi89,True,ROI,,
268
+ -0.006114526502680049,2025-06-13 23:20:52.426319,112,vuzus-fazi89,True,ROI,,
269
+ -0.0064052800147811305,2025-06-13 23:30:52.426319,112,vuzus-fazi89,True,ROI,,
270
+ -0.006359454587177966,2025-06-13 23:40:52.426319,112,vuzus-fazi89,True,ROI,,
271
+ -0.006425484474821442,2025-06-13 23:50:52.426319,112,vuzus-fazi89,True,ROI,,
272
+ -0.006507146819588862,2025-06-14 00:00:52.426319,112,vuzus-fazi89,True,ROI,,
273
+ -0.005244158943724633,2025-06-14 00:10:52.426319,112,vuzus-fazi89,True,ROI,,
274
+ -0.0041486023493737915,2025-06-14 00:20:52.426319,112,vuzus-fazi89,True,ROI,,
275
+ -0.0036151711238320457,2025-06-14 00:30:52.426319,112,vuzus-fazi89,True,ROI,,
276
+ -0.0028676174984495852,2025-06-14 00:40:52.426319,112,vuzus-fazi89,True,ROI,,
277
+ -0.001508892979035329,2025-06-14 00:50:52.426319,112,vuzus-fazi89,True,ROI,,
278
+ -0.00087453732280117,2025-06-14 01:00:52.426319,112,vuzus-fazi89,True,ROI,,
279
+ 0.0,2025-06-14 01:10:52.426319,112,vuzus-fazi89,True,ROI,,
280
+ -0.0018388713944428754,2025-06-14 01:20:52.426319,112,vuzus-fazi89,True,ROI,,
281
+ -0.0037294811775907552,2025-06-14 01:30:52.426319,112,vuzus-fazi89,True,ROI,,
282
+ -0.005274746891834534,2025-06-14 01:40:52.426319,112,vuzus-fazi89,True,ROI,,
283
+ -0.006681919266874751,2025-06-14 01:50:52.426319,112,vuzus-fazi89,True,ROI,,
284
+ -0.008509110373285706,2025-06-14 02:00:52.426319,112,vuzus-fazi89,True,ROI,,
285
+ -0.01,2025-06-14 02:10:52.426319,112,vuzus-fazi89,True,ROI,,
286
+ -0.01,2025-06-14 02:20:52.426319,112,vuzus-fazi89,True,ROI,,
287
+ -0.008573041434380809,2025-06-14 02:30:52.426319,112,vuzus-fazi89,True,ROI,,
288
+ -0.007268566987938294,2025-06-14 02:40:52.426319,112,vuzus-fazi89,True,ROI,,
289
+ -0.005831715154426783,2025-06-14 02:50:52.426319,112,vuzus-fazi89,True,ROI,,
290
+ -0.005172750848187542,2025-06-14 03:00:52.426319,112,vuzus-fazi89,True,ROI,,
291
+ -0.004248323591180859,2025-06-14 03:10:52.426319,112,vuzus-fazi89,True,ROI,,
292
+ -0.0032496671600153043,2025-06-14 03:20:52.426319,112,vuzus-fazi89,True,ROI,,
293
+ -0.0025124475826137633,2025-06-14 03:30:52.426319,112,vuzus-fazi89,True,ROI,,
294
+ -0.002916943684207936,2025-06-14 03:40:52.426319,112,vuzus-fazi89,True,ROI,,
295
+ -0.0030720350967088257,2025-06-14 03:50:52.426319,112,vuzus-fazi89,True,ROI,,
296
+ -0.0029781499239157857,2025-06-14 04:00:52.426319,112,vuzus-fazi89,True,ROI,,
297
+ -0.0028748722466316362,2025-06-14 04:10:52.426319,112,vuzus-fazi89,True,ROI,,
298
+ -0.003367728092214796,2025-06-14 04:20:52.426319,112,vuzus-fazi89,True,ROI,,
299
+ -0.0037677809547320747,2025-06-14 04:30:52.426319,112,vuzus-fazi89,True,ROI,,
300
+ -0.0037173672794068627,2025-06-14 04:40:52.426319,112,vuzus-fazi89,True,ROI,,
301
+ -0.004323891125249553,2025-06-14 04:50:52.426319,112,vuzus-fazi89,True,ROI,,
302
+ -0.005,2025-06-13 22:50:52.426319,115,yenot-zoncen49,True,ROI,,
303
+ -0.004740953776636699,2025-06-13 23:00:52.426319,115,yenot-zoncen49,True,ROI,,
304
+ -0.004760308019949207,2025-06-13 23:10:52.426319,115,yenot-zoncen49,True,ROI,,
305
+ -0.005151963340042045,2025-06-13 23:20:52.426319,115,yenot-zoncen49,True,ROI,,
306
+ -0.004698850829952809,2025-06-13 23:30:52.426319,115,yenot-zoncen49,True,ROI,,
307
+ -0.004996416082591922,2025-06-13 23:40:52.426319,115,yenot-zoncen49,True,ROI,,
308
+ -0.00481567428200292,2025-06-13 23:50:52.426319,115,yenot-zoncen49,True,ROI,,
309
+ -0.004441823648341705,2025-06-14 00:00:52.426319,115,yenot-zoncen49,True,ROI,,
310
+ -0.004911868222754539,2025-06-14 00:10:52.426319,115,yenot-zoncen49,True,ROI,,
311
+ -0.004936994199521061,2025-06-14 00:20:52.426319,115,yenot-zoncen49,True,ROI,,
312
+ -0.005432704960312409,2025-06-14 00:30:52.426319,115,yenot-zoncen49,True,ROI,,
313
+ -0.005805637165746601,2025-06-14 00:40:52.426319,115,yenot-zoncen49,True,ROI,,
314
+ -0.0062971216383266625,2025-06-14 00:50:52.426319,115,yenot-zoncen49,True,ROI,,
315
+ -0.006887811671040394,2025-06-14 01:00:52.426319,115,yenot-zoncen49,True,ROI,,
316
+ -0.0076591876284796395,2025-06-14 01:10:52.426319,115,yenot-zoncen49,True,ROI,,
317
+ -0.006812059905806905,2025-06-14 01:20:52.426319,115,yenot-zoncen49,True,ROI,,
318
+ -0.0059430037376576265,2025-06-14 01:30:52.426319,115,yenot-zoncen49,True,ROI,,
319
+ -0.0053795399949950065,2025-06-14 01:40:52.426319,115,yenot-zoncen49,True,ROI,,
320
+ -0.004859245846018318,2025-06-14 01:50:52.426319,115,yenot-zoncen49,True,ROI,,
321
+ -0.004311345225515109,2025-06-14 02:00:52.426319,115,yenot-zoncen49,True,ROI,,
322
+ -0.0033196858685565307,2025-06-14 02:10:52.426319,115,yenot-zoncen49,True,ROI,,
323
+ -0.0027097695988051755,2025-06-14 02:20:52.426319,115,yenot-zoncen49,True,ROI,,
324
+ -0.004204427998995982,2025-06-14 02:30:52.426319,115,yenot-zoncen49,True,ROI,,
325
+ -0.005188178446303585,2025-06-14 02:40:52.426319,115,yenot-zoncen49,True,ROI,,
326
+ -0.005912891905115749,2025-06-14 02:50:52.426319,115,yenot-zoncen49,True,ROI,,
327
+ -0.006654619465153827,2025-06-14 03:00:52.426319,115,yenot-zoncen49,True,ROI,,
328
+ -0.007594103937067131,2025-06-14 03:10:52.426319,115,yenot-zoncen49,True,ROI,,
329
+ -0.0087302750791121,2025-06-14 03:20:52.426319,115,yenot-zoncen49,True,ROI,,
330
+ -0.01,2025-06-14 03:30:52.426319,115,yenot-zoncen49,True,ROI,,
331
+ -0.008676907544430094,2025-06-14 03:40:52.426319,115,yenot-zoncen49,True,ROI,,
332
+ -0.0073385203420417685,2025-06-14 03:50:52.426319,115,yenot-zoncen49,True,ROI,,
333
+ -0.005888398141352802,2025-06-14 04:00:52.426319,115,yenot-zoncen49,True,ROI,,
334
+ -0.004075243968467526,2025-06-14 04:10:52.426319,115,yenot-zoncen49,True,ROI,,
335
+ -0.002432347492886326,2025-06-14 04:20:52.426319,115,yenot-zoncen49,True,ROI,,
336
+ -0.0005169122319110633,2025-06-14 04:30:52.426319,115,yenot-zoncen49,True,ROI,,
337
+ 0.0,2025-06-14 04:40:52.426319,115,yenot-zoncen49,True,ROI,,
338
+ -0.0008069434290778141,2025-06-14 04:50:52.426319,115,yenot-zoncen49,True,ROI,,
339
+ -0.005,2025-06-13 22:50:52.426319,116,honji-hahi60,True,ROI,,
340
+ -0.005150790230035517,2025-06-13 23:00:52.426319,116,honji-hahi60,True,ROI,,
341
+ -0.005137727090326303,2025-06-13 23:10:52.426319,116,honji-hahi60,True,ROI,,
342
+ -0.005129428667827634,2025-06-13 23:20:52.426319,116,honji-hahi60,True,ROI,,
343
+ -0.005343117340711841,2025-06-13 23:30:52.426319,116,honji-hahi60,True,ROI,,
344
+ -0.005615010362113959,2025-06-13 23:40:52.426319,116,honji-hahi60,True,ROI,,
345
+ -0.005881257035479608,2025-06-13 23:50:52.426319,116,honji-hahi60,True,ROI,,
346
+ -0.005956163638695329,2025-06-14 00:00:52.426319,116,honji-hahi60,True,ROI,,
347
+ -0.006732034948263309,2025-06-14 00:10:52.426319,116,honji-hahi60,True,ROI,,
348
+ -0.007727555733140574,2025-06-14 00:20:52.426319,116,honji-hahi60,True,ROI,,
349
+ -0.008663807353575971,2025-06-14 00:30:52.426319,116,honji-hahi60,True,ROI,,
350
+ -0.00949669657890632,2025-06-14 00:40:52.426319,116,honji-hahi60,True,ROI,,
351
+ -0.00985711878230355,2025-06-14 00:50:52.426319,116,honji-hahi60,True,ROI,,
352
+ -0.01,2025-06-14 01:00:52.426319,116,honji-hahi60,True,ROI,,
353
+ -0.01,2025-06-14 01:10:52.426319,116,honji-hahi60,True,ROI,,
354
+ -0.008929832857775792,2025-06-14 01:20:52.426319,116,honji-hahi60,True,ROI,,
355
+ -0.007132594966164642,2025-06-14 01:30:52.426319,116,honji-hahi60,True,ROI,,
356
+ -0.0053501442141813725,2025-06-14 01:40:52.426319,116,honji-hahi60,True,ROI,,
357
+ -0.004081766243383671,2025-06-14 01:50:52.426319,116,honji-hahi60,True,ROI,,
358
+ -0.003144212833011985,2025-06-14 02:00:52.426319,116,honji-hahi60,True,ROI,,
359
+ -0.002085067038944133,2025-06-14 02:10:52.426319,116,honji-hahi60,True,ROI,,
360
+ -0.0003649030909558843,2025-06-14 02:20:52.426319,116,honji-hahi60,True,ROI,,
361
+ -0.0014175001705289789,2025-06-14 02:30:52.426319,116,honji-hahi60,True,ROI,,
362
+ -0.002229640177246364,2025-06-14 02:40:52.426319,116,honji-hahi60,True,ROI,,
363
+ -0.002504121014597563,2025-06-14 02:50:52.426319,116,honji-hahi60,True,ROI,,
364
+ -0.0034280108857058173,2025-06-14 03:00:52.426319,116,honji-hahi60,True,ROI,,
365
+ -0.003952622226901337,2025-06-14 03:10:52.426319,116,honji-hahi60,True,ROI,,
366
+ -0.004859291314516031,2025-06-14 03:20:52.426319,116,honji-hahi60,True,ROI,,
367
+ -0.005610454374991818,2025-06-14 03:30:52.426319,116,honji-hahi60,True,ROI,,
368
+ -0.005082441511162531,2025-06-14 03:40:52.426319,116,honji-hahi60,True,ROI,,
369
+ -0.004656270525238784,2025-06-14 03:50:52.426319,116,honji-hahi60,True,ROI,,
370
+ -0.004481885042970544,2025-06-14 04:00:52.426319,116,honji-hahi60,True,ROI,,
371
+ -0.0037504633275216364,2025-06-14 04:10:52.426319,116,honji-hahi60,True,ROI,,
372
+ -0.0032943257239063444,2025-06-14 04:20:52.426319,116,honji-hahi60,True,ROI,,
373
+ -0.002650787833672787,2025-06-14 04:30:52.426319,116,honji-hahi60,True,ROI,,
374
+ -0.001916944156457497,2025-06-14 04:40:52.426319,116,honji-hahi60,True,ROI,,
375
+ -0.0021176487379760186,2025-06-14 04:50:52.426319,116,honji-hahi60,True,ROI,,
376
+ -0.005,2025-06-13 22:50:52.426319,117,furye-himkon89,True,ROI,,
377
+ -0.004684864456138433,2025-06-13 23:00:52.426319,117,furye-himkon89,True,ROI,,
378
+ -0.0042784160037106014,2025-06-13 23:10:52.426319,117,furye-himkon89,True,ROI,,
379
+ -0.004028010350527006,2025-06-13 23:20:52.426319,117,furye-himkon89,True,ROI,,
380
+ -0.003805921344023862,2025-06-13 23:30:52.426319,117,furye-himkon89,True,ROI,,
381
+ -0.0033455997381521487,2025-06-13 23:40:52.426319,117,furye-himkon89,True,ROI,,
382
+ -0.0023012430065112296,2025-06-13 23:50:52.426319,117,furye-himkon89,True,ROI,,
383
+ -0.0013912048662081669,2025-06-14 00:00:52.426319,117,furye-himkon89,True,ROI,,
384
+ -0.002842888622248107,2025-06-14 00:10:52.426319,117,furye-himkon89,True,ROI,,
385
+ -0.004260645463719121,2025-06-14 00:20:52.426319,117,furye-himkon89,True,ROI,,
386
+ -0.005124701967811918,2025-06-14 00:30:52.426319,117,furye-himkon89,True,ROI,,
387
+ -0.006784426829955543,2025-06-14 00:40:52.426319,117,furye-himkon89,True,ROI,,
388
+ -0.008241026515988407,2025-06-14 00:50:52.426319,117,furye-himkon89,True,ROI,,
389
+ -0.009610510725937408,2025-06-14 01:00:52.426319,117,furye-himkon89,True,ROI,,
390
+ -0.01,2025-06-14 01:10:52.426319,117,furye-himkon89,True,ROI,,
391
+ -0.009424346967655577,2025-06-14 01:20:52.426319,117,furye-himkon89,True,ROI,,
392
+ -0.008286110646836414,2025-06-14 01:30:52.426319,117,furye-himkon89,True,ROI,,
393
+ -0.007223333966663617,2025-06-14 01:40:52.426319,117,furye-himkon89,True,ROI,,
394
+ -0.006388174519486551,2025-06-14 01:50:52.426319,117,furye-himkon89,True,ROI,,
395
+ -0.005320067275424251,2025-06-14 02:00:52.426319,117,furye-himkon89,True,ROI,,
396
+ -0.004865072350038901,2025-06-14 02:10:52.426319,117,furye-himkon89,True,ROI,,
397
+ -0.004468578393047731,2025-06-14 02:20:52.426319,117,furye-himkon89,True,ROI,,
398
+ -0.003856223704536286,2025-06-14 02:30:52.426319,117,furye-himkon89,True,ROI,,
399
+ -0.0035086257770409095,2025-06-14 02:40:52.426319,117,furye-himkon89,True,ROI,,
400
+ -0.003644706815984481,2025-06-14 02:50:52.426319,117,furye-himkon89,True,ROI,,
401
+ -0.002932501335366854,2025-06-14 03:00:52.426319,117,furye-himkon89,True,ROI,,
402
+ -0.0029056687476413834,2025-06-14 03:10:52.426319,117,furye-himkon89,True,ROI,,
403
+ -0.0026087813744787324,2025-06-14 03:20:52.426319,117,furye-himkon89,True,ROI,,
404
+ -0.002500413052759139,2025-06-14 03:30:52.426319,117,furye-himkon89,True,ROI,,
405
+ -0.0034695296365597744,2025-06-14 03:40:52.426319,117,furye-himkon89,True,ROI,,
406
+ -0.004067555216908549,2025-06-14 03:50:52.426319,117,furye-himkon89,True,ROI,,
407
+ -0.0043843802885863686,2025-06-14 04:00:52.426319,117,furye-himkon89,True,ROI,,
408
+ -0.004775082174240584,2025-06-14 04:10:52.426319,117,furye-himkon89,True,ROI,,
409
+ -0.005449978794812275,2025-06-14 04:20:52.426319,117,furye-himkon89,True,ROI,,
410
+ -0.0064744674858552235,2025-06-14 04:30:52.426319,117,furye-himkon89,True,ROI,,
411
+ -0.007226208098637578,2025-06-14 04:40:52.426319,117,furye-himkon89,True,ROI,,
412
+ -0.007150014263608781,2025-06-14 04:50:52.426319,117,furye-himkon89,True,ROI,,
413
+ -0.005,2025-06-13 22:50:52.426319,118,lonwus-patu86,True,ROI,,
414
+ -0.0050503855504385985,2025-06-13 23:00:52.426319,118,lonwus-patu86,True,ROI,,
415
+ -0.004616702617579537,2025-06-13 23:10:52.426319,118,lonwus-patu86,True,ROI,,
416
+ -0.004134752929896605,2025-06-13 23:20:52.426319,118,lonwus-patu86,True,ROI,,
417
+ -0.00396650156626698,2025-06-13 23:30:52.426319,118,lonwus-patu86,True,ROI,,
418
+ -0.0036340514968222215,2025-06-13 23:40:52.426319,118,lonwus-patu86,True,ROI,,
419
+ -0.00396436143050952,2025-06-13 23:50:52.426319,118,lonwus-patu86,True,ROI,,
420
+ -0.004255219212803228,2025-06-14 00:00:52.426319,118,lonwus-patu86,True,ROI,,
421
+ -0.004380015995371497,2025-06-14 00:10:52.426319,118,lonwus-patu86,True,ROI,,
422
+ -0.004743044769736719,2025-06-14 00:20:52.426319,118,lonwus-patu86,True,ROI,,
423
+ -0.005609208937300182,2025-06-14 00:30:52.426319,118,lonwus-patu86,True,ROI,,
424
+ -0.005614866748406282,2025-06-14 00:40:52.426319,118,lonwus-patu86,True,ROI,,
425
+ -0.006561869528514076,2025-06-14 00:50:52.426319,118,lonwus-patu86,True,ROI,,
426
+ -0.007310315874378498,2025-06-14 01:00:52.426319,118,lonwus-patu86,True,ROI,,
427
+ -0.007749280681955091,2025-06-14 01:10:52.426319,118,lonwus-patu86,True,ROI,,
428
+ -0.007139715459724499,2025-06-14 01:20:52.426319,118,lonwus-patu86,True,ROI,,
429
+ -0.006573075334954715,2025-06-14 01:30:52.426319,118,lonwus-patu86,True,ROI,,
430
+ -0.005739396697851523,2025-06-14 01:40:52.426319,118,lonwus-patu86,True,ROI,,
431
+ -0.005444492614016003,2025-06-14 01:50:52.426319,118,lonwus-patu86,True,ROI,,
432
+ -0.0048887214852588665,2025-06-14 02:00:52.426319,118,lonwus-patu86,True,ROI,,
433
+ -0.004554123955010271,2025-06-14 02:10:52.426319,118,lonwus-patu86,True,ROI,,
434
+ -0.0039544418880276145,2025-06-14 02:20:52.426319,118,lonwus-patu86,True,ROI,,
435
+ -0.004372428270576003,2025-06-14 02:30:52.426319,118,lonwus-patu86,True,ROI,,
436
+ -0.005376270425125437,2025-06-14 02:40:52.426319,118,lonwus-patu86,True,ROI,,
437
+ -0.0064241302573606095,2025-06-14 02:50:52.426319,118,lonwus-patu86,True,ROI,,
438
+ -0.007433618946589104,2025-06-14 03:00:52.426319,118,lonwus-patu86,True,ROI,,
439
+ -0.007979176709321044,2025-06-14 03:10:52.426319,118,lonwus-patu86,True,ROI,,
440
+ -0.00888592233504649,2025-06-14 03:20:52.426319,118,lonwus-patu86,True,ROI,,
441
+ -0.009878462333658035,2025-06-14 03:30:52.426319,118,lonwus-patu86,True,ROI,,
442
+ -0.008444083872721695,2025-06-14 03:40:52.426319,118,lonwus-patu86,True,ROI,,
443
+ -0.006923482107791002,2025-06-14 03:50:52.426319,118,lonwus-patu86,True,ROI,,
444
+ -0.005035793536038486,2025-06-14 04:00:52.426319,118,lonwus-patu86,True,ROI,,
445
+ -0.003271743055211123,2025-06-14 04:10:52.426319,118,lonwus-patu86,True,ROI,,
446
+ -0.001642370918897697,2025-06-14 04:20:52.426319,118,lonwus-patu86,True,ROI,,
447
+ -0.0005541186722724336,2025-06-14 04:30:52.426319,118,lonwus-patu86,True,ROI,,
448
+ 0.0,2025-06-14 04:40:52.426319,118,lonwus-patu86,True,ROI,,
449
+ -0.00028064851122062094,2025-06-14 04:50:52.426319,118,lonwus-patu86,True,ROI,,
450
+ -0.005,2025-06-13 22:50:52.426319,119,lonlim-zapgi60,True,ROI,,
451
+ -0.004883339188873818,2025-06-13 23:00:52.426319,119,lonlim-zapgi60,True,ROI,,
452
+ -0.005129904133415925,2025-06-13 23:10:52.426319,119,lonlim-zapgi60,True,ROI,,
453
+ -0.005685893859721554,2025-06-13 23:20:52.426319,119,lonlim-zapgi60,True,ROI,,
454
+ -0.006511180960613046,2025-06-13 23:30:52.426319,119,lonlim-zapgi60,True,ROI,,
455
+ -0.006675939894017139,2025-06-13 23:40:52.426319,119,lonlim-zapgi60,True,ROI,,
456
+ -0.007188787072384464,2025-06-13 23:50:52.426319,119,lonlim-zapgi60,True,ROI,,
457
+ -0.0076139292417288125,2025-06-14 00:00:52.426319,119,lonlim-zapgi60,True,ROI,,
458
+ -0.006800160567641265,2025-06-14 00:10:52.426319,119,lonlim-zapgi60,True,ROI,,
459
+ -0.005280609810935141,2025-06-14 00:20:52.426319,119,lonlim-zapgi60,True,ROI,,
460
+ -0.0039022323011807226,2025-06-14 00:30:52.426319,119,lonlim-zapgi60,True,ROI,,
461
+ -0.0031995558680502547,2025-06-14 00:40:52.426319,119,lonlim-zapgi60,True,ROI,,
462
+ -0.0019547954794739914,2025-06-14 00:50:52.426319,119,lonlim-zapgi60,True,ROI,,
463
+ -0.0006525053890102146,2025-06-14 01:00:52.426319,119,lonlim-zapgi60,True,ROI,,
464
+ 0.0,2025-06-14 01:10:52.426319,119,lonlim-zapgi60,True,ROI,,
465
+ -0.00042843450843782114,2025-06-14 01:20:52.426319,119,lonlim-zapgi60,True,ROI,,
466
+ -0.0012061863653243176,2025-06-14 01:30:52.426319,119,lonlim-zapgi60,True,ROI,,
467
+ -0.0013815110351902986,2025-06-14 01:40:52.426319,119,lonlim-zapgi60,True,ROI,,
468
+ -0.0013675800237897497,2025-06-14 01:50:52.426319,119,lonlim-zapgi60,True,ROI,,
469
+ -0.001712980333359668,2025-06-14 02:00:52.426319,119,lonlim-zapgi60,True,ROI,,
470
+ -0.0024396548523087317,2025-06-14 02:10:52.426319,119,lonlim-zapgi60,True,ROI,,
471
+ -0.0026782923517371052,2025-06-14 02:20:52.426319,119,lonlim-zapgi60,True,ROI,,
472
+ -0.003350186427880872,2025-06-14 02:30:52.426319,119,lonlim-zapgi60,True,ROI,,
473
+ -0.0032949369566106167,2025-06-14 02:40:52.426319,119,lonlim-zapgi60,True,ROI,,
474
+ -0.0033368575620556715,2025-06-14 02:50:52.426319,119,lonlim-zapgi60,True,ROI,,
475
+ -0.0034412801276685135,2025-06-14 03:00:52.426319,119,lonlim-zapgi60,True,ROI,,
476
+ -0.004125904791516823,2025-06-14 03:10:52.426319,119,lonlim-zapgi60,True,ROI,,
477
+ -0.004507865015821487,2025-06-14 03:20:52.426319,119,lonlim-zapgi60,True,ROI,,
478
+ -0.0045902994610967545,2025-06-14 03:30:52.426319,119,lonlim-zapgi60,True,ROI,,
479
+ -0.005565910039546077,2025-06-14 03:40:52.426319,119,lonlim-zapgi60,True,ROI,,
480
+ -0.006115984002693274,2025-06-14 03:50:52.426319,119,lonlim-zapgi60,True,ROI,,
481
+ -0.006906112378223994,2025-06-14 04:00:52.426319,119,lonlim-zapgi60,True,ROI,,
482
+ -0.007588075416393902,2025-06-14 04:10:52.426319,119,lonlim-zapgi60,True,ROI,,
483
+ -0.008655508302477964,2025-06-14 04:20:52.426319,119,lonlim-zapgi60,True,ROI,,
484
+ -0.009277286476451572,2025-06-14 04:30:52.426319,119,lonlim-zapgi60,True,ROI,,
485
+ -0.01,2025-06-14 04:40:52.426319,119,lonlim-zapgi60,True,ROI,,
486
+ -0.009271657655431,2025-06-14 04:50:52.426319,119,lonlim-zapgi60,True,ROI,,
487
+ -0.005,2025-06-13 22:50:52.426319,120,joyus-goson39,True,ROI,,
488
+ -0.0045061570727419524,2025-06-13 23:00:52.426319,120,joyus-goson39,True,ROI,,
489
+ -0.004575463439554021,2025-06-13 23:10:52.426319,120,joyus-goson39,True,ROI,,
490
+ -0.004570863153568455,2025-06-13 23:20:52.426319,120,joyus-goson39,True,ROI,,
491
+ -0.004561736629941315,2025-06-13 23:30:52.426319,120,joyus-goson39,True,ROI,,
492
+ -0.004482934227707731,2025-06-13 23:40:52.426319,120,joyus-goson39,True,ROI,,
493
+ -0.004839583895570475,2025-06-13 23:50:52.426319,120,joyus-goson39,True,ROI,,
494
+ -0.004423522421784647,2025-06-14 00:00:52.426319,120,joyus-goson39,True,ROI,,
495
+ -0.00456424939431917,2025-06-14 00:10:52.426319,120,joyus-goson39,True,ROI,,
496
+ -0.004963136878725086,2025-06-14 00:20:52.426319,120,joyus-goson39,True,ROI,,
497
+ -0.005852776770605718,2025-06-14 00:30:52.426319,120,joyus-goson39,True,ROI,,
498
+ -0.006001262532139712,2025-06-14 00:40:52.426319,120,joyus-goson39,True,ROI,,
499
+ -0.006497455241357615,2025-06-14 00:50:52.426319,120,joyus-goson39,True,ROI,,
500
+ -0.0074108788940263,2025-06-14 01:00:52.426319,120,joyus-goson39,True,ROI,,
501
+ -0.007463865978607783,2025-06-14 01:10:52.426319,120,joyus-goson39,True,ROI,,
502
+ -0.0072491271652001055,2025-06-14 01:20:52.426319,120,joyus-goson39,True,ROI,,
503
+ -0.006672570158539871,2025-06-14 01:30:52.426319,120,joyus-goson39,True,ROI,,
504
+ -0.00617148824233576,2025-06-14 01:40:52.426319,120,joyus-goson39,True,ROI,,
505
+ -0.005005656767293132,2025-06-14 01:50:52.426319,120,joyus-goson39,True,ROI,,
506
+ -0.004529099556888836,2025-06-14 02:00:52.426319,120,joyus-goson39,True,ROI,,
507
+ -0.004101429548321901,2025-06-14 02:10:52.426319,120,joyus-goson39,True,ROI,,
508
+ -0.0036631964272270693,2025-06-14 02:20:52.426319,120,joyus-goson39,True,ROI,,
509
+ -0.004283403387339471,2025-06-14 02:30:52.426319,120,joyus-goson39,True,ROI,,
510
+ -0.005117208768157826,2025-06-14 02:40:52.426319,120,joyus-goson39,True,ROI,,
511
+ -0.005859818756695036,2025-06-14 02:50:52.426319,120,joyus-goson39,True,ROI,,
512
+ -0.0067879928852013025,2025-06-14 03:00:52.426319,120,joyus-goson39,True,ROI,,
513
+ -0.008171271735553008,2025-06-14 03:10:52.426319,120,joyus-goson39,True,ROI,,
514
+ -0.00873357476966245,2025-06-14 03:20:52.426319,120,joyus-goson39,True,ROI,,
515
+ -0.009153088469091328,2025-06-14 03:30:52.426319,120,joyus-goson39,True,ROI,,
516
+ -0.007818697717922977,2025-06-14 03:40:52.426319,120,joyus-goson39,True,ROI,,
517
+ -0.00651204269046905,2025-06-14 03:50:52.426319,120,joyus-goson39,True,ROI,,
518
+ -0.005622951929856319,2025-06-14 04:00:52.426319,120,joyus-goson39,True,ROI,,
519
+ -0.004410841181963477,2025-06-14 04:10:52.426319,120,joyus-goson39,True,ROI,,
520
+ -0.0029990134587764626,2025-06-14 04:20:52.426319,120,joyus-goson39,True,ROI,,
521
+ -0.0015652955368010528,2025-06-14 04:30:52.426319,120,joyus-goson39,True,ROI,,
522
+ -0.00043956157105693155,2025-06-14 04:40:52.426319,120,joyus-goson39,True,ROI,,
523
+ -0.00015390783291854382,2025-06-14 04:50:52.426319,120,joyus-goson39,True,ROI,,
524
+ -0.005,2025-06-13 22:50:52.426319,121,cilwar-rimlu27,True,ROI,,
525
+ -0.004371709462234937,2025-06-13 23:00:52.426319,121,cilwar-rimlu27,True,ROI,,
526
+ -0.0036670484633935328,2025-06-13 23:10:52.426319,121,cilwar-rimlu27,True,ROI,,
527
+ -0.003102856477144587,2025-06-13 23:20:52.426319,121,cilwar-rimlu27,True,ROI,,
528
+ -0.0028519900976043933,2025-06-13 23:30:52.426319,121,cilwar-rimlu27,True,ROI,,
529
+ -0.0017585165807692885,2025-06-13 23:40:52.426319,121,cilwar-rimlu27,True,ROI,,
530
+ -0.0013948287069616217,2025-06-13 23:50:52.426319,121,cilwar-rimlu27,True,ROI,,
531
+ -0.0008644734851549584,2025-06-14 00:00:52.426319,121,cilwar-rimlu27,True,ROI,,
532
+ -0.0006404958396730104,2025-06-14 00:10:52.426319,121,cilwar-rimlu27,True,ROI,,
533
+ -0.0013409412401389604,2025-06-14 00:20:52.426319,121,cilwar-rimlu27,True,ROI,,
534
+ -0.002047351449586275,2025-06-14 00:30:52.426319,121,cilwar-rimlu27,True,ROI,,
535
+ -0.00243457508366861,2025-06-14 00:40:52.426319,121,cilwar-rimlu27,True,ROI,,
536
+ -0.002218154863074894,2025-06-14 00:50:52.426319,121,cilwar-rimlu27,True,ROI,,
537
+ -0.0020619873034378134,2025-06-14 01:00:52.426319,121,cilwar-rimlu27,True,ROI,,
538
+ -0.0027802486111546116,2025-06-14 01:10:52.426319,121,cilwar-rimlu27,True,ROI,,
539
+ -0.0039033351574427047,2025-06-14 01:20:52.426319,121,cilwar-rimlu27,True,ROI,,
540
+ -0.004786395426041555,2025-06-14 01:30:52.426319,121,cilwar-rimlu27,True,ROI,,
541
+ -0.005791171870702551,2025-06-14 01:40:52.426319,121,cilwar-rimlu27,True,ROI,,
542
+ -0.006227639100059856,2025-06-14 01:50:52.426319,121,cilwar-rimlu27,True,ROI,,
543
+ -0.006603357339602025,2025-06-14 02:00:52.426319,121,cilwar-rimlu27,True,ROI,,
544
+ -0.007239057599721171,2025-06-14 02:10:52.426319,121,cilwar-rimlu27,True,ROI,,
545
+ -0.008331914486206527,2025-06-14 02:20:52.426319,121,cilwar-rimlu27,True,ROI,,
546
+ -0.009059617942455567,2025-06-14 02:30:52.426319,121,cilwar-rimlu27,True,ROI,,
547
+ -0.008987796606736724,2025-06-14 02:40:52.426319,121,cilwar-rimlu27,True,ROI,,
548
+ -0.009666649678744482,2025-06-14 02:50:52.426319,121,cilwar-rimlu27,True,ROI,,
549
+ -0.01,2025-06-14 03:00:52.426319,121,cilwar-rimlu27,True,ROI,,
550
+ -0.00988449513181085,2025-06-14 03:10:52.426319,121,cilwar-rimlu27,True,ROI,,
551
+ -0.009817548483929456,2025-06-14 03:20:52.426319,121,cilwar-rimlu27,True,ROI,,
552
+ -0.00989467242899328,2025-06-14 03:30:52.426319,121,cilwar-rimlu27,True,ROI,,
553
+ -0.009618126820152404,2025-06-14 03:40:52.426319,121,cilwar-rimlu27,True,ROI,,
554
+ -0.009331712038245843,2025-06-14 03:50:52.426319,121,cilwar-rimlu27,True,ROI,,
555
+ -0.008751124604239845,2025-06-14 04:00:52.426319,121,cilwar-rimlu27,True,ROI,,
556
+ -0.008082418799641005,2025-06-14 04:10:52.426319,121,cilwar-rimlu27,True,ROI,,
557
+ -0.007011880562536512,2025-06-14 04:20:52.426319,121,cilwar-rimlu27,True,ROI,,
558
+ -0.006505493826511951,2025-06-14 04:30:52.426319,121,cilwar-rimlu27,True,ROI,,
559
+ -0.00576827779664962,2025-06-14 04:40:52.426319,121,cilwar-rimlu27,True,ROI,,
560
+ -0.005209212674670673,2025-06-14 04:50:52.426319,121,cilwar-rimlu27,True,ROI,,
561
+ -0.005,2025-06-13 22:50:52.426319,122,tevi-kulo15,True,ROI,,
562
+ -0.004642527622550718,2025-06-13 23:00:52.426319,122,tevi-kulo15,True,ROI,,
563
+ -0.003914837046331932,2025-06-13 23:10:52.426319,122,tevi-kulo15,True,ROI,,
564
+ -0.003172865251125184,2025-06-13 23:20:52.426319,122,tevi-kulo15,True,ROI,,
565
+ -0.0025050294154663334,2025-06-13 23:30:52.426319,122,tevi-kulo15,True,ROI,,
566
+ -0.0017062982395538958,2025-06-13 23:40:52.426319,122,tevi-kulo15,True,ROI,,
567
+ -0.001607751927701724,2025-06-13 23:50:52.426319,122,tevi-kulo15,True,ROI,,
568
+ -0.0009664823092530844,2025-06-14 00:00:52.426319,122,tevi-kulo15,True,ROI,,
569
+ -0.0020100972979631895,2025-06-14 00:10:52.426319,122,tevi-kulo15,True,ROI,,
570
+ -0.0024672303682971974,2025-06-14 00:20:52.426319,122,tevi-kulo15,True,ROI,,
571
+ -0.0030338981545915437,2025-06-14 00:30:52.426319,122,tevi-kulo15,True,ROI,,
572
+ -0.004045531186894951,2025-06-14 00:40:52.426319,122,tevi-kulo15,True,ROI,,
573
+ -0.004791545346366903,2025-06-14 00:50:52.426319,122,tevi-kulo15,True,ROI,,
574
+ -0.004912596998713093,2025-06-14 01:00:52.426319,122,tevi-kulo15,True,ROI,,
575
+ -0.005957201617057128,2025-06-14 01:10:52.426319,122,tevi-kulo15,True,ROI,,
576
+ -0.005096819587950062,2025-06-14 01:20:52.426319,122,tevi-kulo15,True,ROI,,
577
+ -0.003909032914714765,2025-06-14 01:30:52.426319,122,tevi-kulo15,True,ROI,,
578
+ -0.0030223584088160463,2025-06-14 01:40:52.426319,122,tevi-kulo15,True,ROI,,
579
+ -0.0022991802439764016,2025-06-14 01:50:52.426319,122,tevi-kulo15,True,ROI,,
580
+ -0.0018294561117193724,2025-06-14 02:00:52.426319,122,tevi-kulo15,True,ROI,,
581
+ -0.0010132723678220865,2025-06-14 02:10:52.426319,122,tevi-kulo15,True,ROI,,
582
+ 0.0,2025-06-14 02:20:52.426319,122,tevi-kulo15,True,ROI,,
583
+ -0.0014638606810254196,2025-06-14 02:30:52.426319,122,tevi-kulo15,True,ROI,,
584
+ -0.0028133366996274606,2025-06-14 02:40:52.426319,122,tevi-kulo15,True,ROI,,
585
+ -0.004017711753380621,2025-06-14 02:50:52.426319,122,tevi-kulo15,True,ROI,,
586
+ -0.005590315129008463,2025-06-14 03:00:52.426319,122,tevi-kulo15,True,ROI,,
587
+ -0.007469661878583645,2025-06-14 03:10:52.426319,122,tevi-kulo15,True,ROI,,
588
+ -0.008722462195990209,2025-06-14 03:20:52.426319,122,tevi-kulo15,True,ROI,,
589
+ -0.01,2025-06-14 03:30:52.426319,122,tevi-kulo15,True,ROI,,
590
+ -0.009778088522933132,2025-06-14 03:40:52.426319,122,tevi-kulo15,True,ROI,,
591
+ -0.009227203344500686,2025-06-14 03:50:52.426319,122,tevi-kulo15,True,ROI,,
592
+ -0.0089814022533764,2025-06-14 04:00:52.426319,122,tevi-kulo15,True,ROI,,
593
+ -0.008755444236427365,2025-06-14 04:10:52.426319,122,tevi-kulo15,True,ROI,,
594
+ -0.008236729504546268,2025-06-14 04:20:52.426319,122,tevi-kulo15,True,ROI,,
595
+ -0.007537560239687157,2025-06-14 04:30:52.426319,122,tevi-kulo15,True,ROI,,
596
+ -0.007641494238322171,2025-06-14 04:40:52.426319,122,tevi-kulo15,True,ROI,,
597
+ -0.00786648767330307,2025-06-14 04:50:52.426319,122,tevi-kulo15,True,ROI,,
598
+ -0.005,2025-06-13 22:50:52.426319,123,cordron-yelku44,True,ROI,,
599
+ -0.00559627636778936,2025-06-13 23:00:52.426319,123,cordron-yelku44,True,ROI,,
600
+ -0.006309240343597821,2025-06-13 23:10:52.426319,123,cordron-yelku44,True,ROI,,
601
+ -0.006600934607403347,2025-06-13 23:20:52.426319,123,cordron-yelku44,True,ROI,,
602
+ -0.0074358772164662135,2025-06-13 23:30:52.426319,123,cordron-yelku44,True,ROI,,
603
+ -0.008419382303050888,2025-06-13 23:40:52.426319,123,cordron-yelku44,True,ROI,,
604
+ -0.00869344937372906,2025-06-13 23:50:52.426319,123,cordron-yelku44,True,ROI,,
605
+ -0.009369617835255507,2025-06-14 00:00:52.426319,123,cordron-yelku44,True,ROI,,
606
+ -0.008581869041600687,2025-06-14 00:10:52.426319,123,cordron-yelku44,True,ROI,,
607
+ -0.007160032676323601,2025-06-14 00:20:52.426319,123,cordron-yelku44,True,ROI,,
608
+ -0.006364603332643525,2025-06-14 00:30:52.426319,123,cordron-yelku44,True,ROI,,
609
+ -0.005443076453066012,2025-06-14 00:40:52.426319,123,cordron-yelku44,True,ROI,,
610
+ -0.004520293835192262,2025-06-14 00:50:52.426319,123,cordron-yelku44,True,ROI,,
611
+ -0.003718861052290082,2025-06-14 01:00:52.426319,123,cordron-yelku44,True,ROI,,
612
+ -0.0024682232043730283,2025-06-14 01:10:52.426319,123,cordron-yelku44,True,ROI,,
613
+ -0.0027903585776504966,2025-06-14 01:20:52.426319,123,cordron-yelku44,True,ROI,,
614
+ -0.0032020186563285423,2025-06-14 01:30:52.426319,123,cordron-yelku44,True,ROI,,
615
+ -0.003903491475754312,2025-06-14 01:40:52.426319,123,cordron-yelku44,True,ROI,,
616
+ -0.004642952040927977,2025-06-14 01:50:52.426319,123,cordron-yelku44,True,ROI,,
617
+ -0.004896794443899374,2025-06-14 02:00:52.426319,123,cordron-yelku44,True,ROI,,
618
+ -0.004828432433766796,2025-06-14 02:10:52.426319,123,cordron-yelku44,True,ROI,,
619
+ -0.00538100923314838,2025-06-14 02:20:52.426319,123,cordron-yelku44,True,ROI,,
620
+ -0.004502141210818562,2025-06-14 02:30:52.426319,123,cordron-yelku44,True,ROI,,
621
+ -0.004195303404753751,2025-06-14 02:40:52.426319,123,cordron-yelku44,True,ROI,,
622
+ -0.003672758046853376,2025-06-14 02:50:52.426319,123,cordron-yelku44,True,ROI,,
623
+ -0.002664079312656967,2025-06-14 03:00:52.426319,123,cordron-yelku44,True,ROI,,
624
+ -0.001460173633859262,2025-06-14 03:10:52.426319,123,cordron-yelku44,True,ROI,,
625
+ -0.0008330038569690182,2025-06-14 03:20:52.426319,123,cordron-yelku44,True,ROI,,
626
+ -0.00013180875382991773,2025-06-14 03:30:52.426319,123,cordron-yelku44,True,ROI,,
627
+ -0.0012658606962867023,2025-06-14 03:40:52.426319,123,cordron-yelku44,True,ROI,,
628
+ -0.0025188023197011697,2025-06-14 03:50:52.426319,123,cordron-yelku44,True,ROI,,
629
+ -0.003316969312016168,2025-06-14 04:00:52.426319,123,cordron-yelku44,True,ROI,,
630
+ -0.0038884997890282725,2025-06-14 04:10:52.426319,123,cordron-yelku44,True,ROI,,
631
+ -0.004828356441476334,2025-06-14 04:20:52.426319,123,cordron-yelku44,True,ROI,,
632
+ -0.006273862477632015,2025-06-14 04:30:52.426319,123,cordron-yelku44,True,ROI,,
633
+ -0.0069900823969309845,2025-06-14 04:40:52.426319,123,cordron-yelku44,True,ROI,,
634
+ -0.007957004946792936,2025-06-14 04:50:52.426319,123,cordron-yelku44,True,ROI,,
635
+ -0.005,2025-06-13 22:50:52.426319,126,tonvel-beeprel23,True,ROI,,
636
+ -0.0042954395783181085,2025-06-13 23:00:52.426319,126,tonvel-beeprel23,True,ROI,,
637
+ -0.003977089863028156,2025-06-13 23:10:52.426319,126,tonvel-beeprel23,True,ROI,,
638
+ -0.0037796411461456293,2025-06-13 23:20:52.426319,126,tonvel-beeprel23,True,ROI,,
639
+ -0.0034036866376958453,2025-06-13 23:30:52.426319,126,tonvel-beeprel23,True,ROI,,
640
+ -0.0030419620637068814,2025-06-13 23:40:52.426319,126,tonvel-beeprel23,True,ROI,,
641
+ -0.0024910512213372786,2025-06-13 23:50:52.426319,126,tonvel-beeprel23,True,ROI,,
642
+ -0.0021366037125791137,2025-06-14 00:00:52.426319,126,tonvel-beeprel23,True,ROI,,
643
+ -0.002880007105821226,2025-06-14 00:10:52.426319,126,tonvel-beeprel23,True,ROI,,
644
+ -0.0029456482818660365,2025-06-14 00:20:52.426319,126,tonvel-beeprel23,True,ROI,,
645
+ -0.0029259502646364548,2025-06-14 00:30:52.426319,126,tonvel-beeprel23,True,ROI,,
646
+ -0.0036192108227932392,2025-06-14 00:40:52.426319,126,tonvel-beeprel23,True,ROI,,
647
+ -0.0045153754788461115,2025-06-14 00:50:52.426319,126,tonvel-beeprel23,True,ROI,,
648
+ -0.00501532701123431,2025-06-14 01:00:52.426319,126,tonvel-beeprel23,True,ROI,,
649
+ -0.005567560913378106,2025-06-14 01:10:52.426319,126,tonvel-beeprel23,True,ROI,,
650
+ -0.0051148663160328935,2025-06-14 01:20:52.426319,126,tonvel-beeprel23,True,ROI,,
651
+ -0.004601227342781201,2025-06-14 01:30:52.426319,126,tonvel-beeprel23,True,ROI,,
652
+ -0.00360849851590974,2025-06-14 01:40:52.426319,126,tonvel-beeprel23,True,ROI,,
653
+ -0.0029987714153097427,2025-06-14 01:50:52.426319,126,tonvel-beeprel23,True,ROI,,
654
+ -0.0022947155235017113,2025-06-14 02:00:52.426319,126,tonvel-beeprel23,True,ROI,,
655
+ -0.0010917841436956554,2025-06-14 02:10:52.426319,126,tonvel-beeprel23,True,ROI,,
656
+ -0.0004659470539543482,2025-06-14 02:20:52.426319,126,tonvel-beeprel23,True,ROI,,
657
+ -0.0015985447869026042,2025-06-14 02:30:52.426319,126,tonvel-beeprel23,True,ROI,,
658
+ -0.002409972983058622,2025-06-14 02:40:52.426319,126,tonvel-beeprel23,True,ROI,,
659
+ -0.003536574262382987,2025-06-14 02:50:52.426319,126,tonvel-beeprel23,True,ROI,,
660
+ -0.0048483505772640035,2025-06-14 03:00:52.426319,126,tonvel-beeprel23,True,ROI,,
661
+ -0.005495325054031725,2025-06-14 03:10:52.426319,126,tonvel-beeprel23,True,ROI,,
662
+ -0.0064685100397308916,2025-06-14 03:20:52.426319,126,tonvel-beeprel23,True,ROI,,
663
+ -0.007454624901504235,2025-06-14 03:30:52.426319,126,tonvel-beeprel23,True,ROI,,
664
+ -0.00757129144733104,2025-06-14 03:40:52.426319,126,tonvel-beeprel23,True,ROI,,
665
+ -0.008271311120538232,2025-06-14 03:50:52.426319,126,tonvel-beeprel23,True,ROI,,
666
+ -0.008571832166752738,2025-06-14 04:00:52.426319,126,tonvel-beeprel23,True,ROI,,
667
+ -0.008735722877337416,2025-06-14 04:10:52.426319,126,tonvel-beeprel23,True,ROI,,
668
+ -0.008969993164174907,2025-06-14 04:20:52.426319,126,tonvel-beeprel23,True,ROI,,
669
+ -0.009127493448988984,2025-06-14 04:30:52.426319,126,tonvel-beeprel23,True,ROI,,
670
+ -0.00942987215845069,2025-06-14 04:40:52.426319,126,tonvel-beeprel23,True,ROI,,
671
+ -0.01,2025-06-14 04:50:52.426319,126,tonvel-beeprel23,True,ROI,,
672
+ -0.005,2025-06-13 22:50:52.426319,127,lunel-luwus85,True,ROI,,
673
+ -0.00537661049406704,2025-06-13 23:00:52.426319,127,lunel-luwus85,True,ROI,,
674
+ -0.0061041777907830976,2025-06-13 23:10:52.426319,127,lunel-luwus85,True,ROI,,
675
+ -0.006966532861894541,2025-06-13 23:20:52.426319,127,lunel-luwus85,True,ROI,,
676
+ -0.0081697844513092,2025-06-13 23:30:52.426319,127,lunel-luwus85,True,ROI,,
677
+ -0.009312928467224223,2025-06-13 23:40:52.426319,127,lunel-luwus85,True,ROI,,
678
+ -0.009952484326261238,2025-06-13 23:50:52.426319,127,lunel-luwus85,True,ROI,,
679
+ -0.01,2025-06-14 00:00:52.426319,127,lunel-luwus85,True,ROI,,
680
+ -0.008976908548028866,2025-06-14 00:10:52.426319,127,lunel-luwus85,True,ROI,,
681
+ -0.00832432286328081,2025-06-14 00:20:52.426319,127,lunel-luwus85,True,ROI,,
682
+ -0.007580625122993655,2025-06-14 00:30:52.426319,127,lunel-luwus85,True,ROI,,
683
+ -0.006421974152329664,2025-06-14 00:40:52.426319,127,lunel-luwus85,True,ROI,,
684
+ -0.0057821139717660714,2025-06-14 00:50:52.426319,127,lunel-luwus85,True,ROI,,
685
+ -0.005161942524691288,2025-06-14 01:00:52.426319,127,lunel-luwus85,True,ROI,,
686
+ -0.0037496779345226085,2025-06-14 01:10:52.426319,127,lunel-luwus85,True,ROI,,
687
+ -0.003802129202949129,2025-06-14 01:20:52.426319,127,lunel-luwus85,True,ROI,,
688
+ -0.004432004498044297,2025-06-14 01:30:52.426319,127,lunel-luwus85,True,ROI,,
689
+ -0.005040991334233883,2025-06-14 01:40:52.426319,127,lunel-luwus85,True,ROI,,
690
+ -0.005370917495173138,2025-06-14 01:50:52.426319,127,lunel-luwus85,True,ROI,,
691
+ -0.005421000221358329,2025-06-14 02:00:52.426319,127,lunel-luwus85,True,ROI,,
692
+ -0.005597841890008286,2025-06-14 02:10:52.426319,127,lunel-luwus85,True,ROI,,
693
+ -0.00572537898200585,2025-06-14 02:20:52.426319,127,lunel-luwus85,True,ROI,,
694
+ -0.004826596704195075,2025-06-14 02:30:52.426319,127,lunel-luwus85,True,ROI,,
695
+ -0.004257723838233621,2025-06-14 02:40:52.426319,127,lunel-luwus85,True,ROI,,
696
+ -0.0033315328506954025,2025-06-14 02:50:52.426319,127,lunel-luwus85,True,ROI,,
697
+ -0.002500949411089361,2025-06-14 03:00:52.426319,127,lunel-luwus85,True,ROI,,
698
+ -0.00191315391592526,2025-06-14 03:10:52.426319,127,lunel-luwus85,True,ROI,,
699
+ -0.0009124720336265501,2025-06-14 03:20:52.426319,127,lunel-luwus85,True,ROI,,
700
+ -0.00045897682899717136,2025-06-14 03:30:52.426319,127,lunel-luwus85,True,ROI,,
701
+ -0.0009560370562636815,2025-06-14 03:40:52.426319,127,lunel-luwus85,True,ROI,,
702
+ -0.0015195496494385076,2025-06-14 03:50:52.426319,127,lunel-luwus85,True,ROI,,
703
+ -0.0026042730882807393,2025-06-14 04:00:52.426319,127,lunel-luwus85,True,ROI,,
704
+ -0.0029092112191011882,2025-06-14 04:10:52.426319,127,lunel-luwus85,True,ROI,,
705
+ -0.003821798503707938,2025-06-14 04:20:52.426319,127,lunel-luwus85,True,ROI,,
706
+ -0.004138058942630542,2025-06-14 04:30:52.426319,127,lunel-luwus85,True,ROI,,
707
+ -0.0044374156788286575,2025-06-14 04:40:52.426319,127,lunel-luwus85,True,ROI,,
708
+ -0.004932548947718841,2025-06-14 04:50:52.426319,127,lunel-luwus85,True,ROI,,
709
+ -0.005,2025-06-13 22:50:52.426319,128,kozu-hanfil63,True,ROI,,
710
+ -0.005797114640226318,2025-06-13 23:00:52.426319,128,kozu-hanfil63,True,ROI,,
711
+ -0.0064176852081547844,2025-06-13 23:10:52.426319,128,kozu-hanfil63,True,ROI,,
712
+ -0.007502611039755115,2025-06-13 23:20:52.426319,128,kozu-hanfil63,True,ROI,,
713
+ -0.00791339665255824,2025-06-13 23:30:52.426319,128,kozu-hanfil63,True,ROI,,
714
+ -0.008628173662857175,2025-06-13 23:40:52.426319,128,kozu-hanfil63,True,ROI,,
715
+ -0.009438988938771499,2025-06-13 23:50:52.426319,128,kozu-hanfil63,True,ROI,,
716
+ -0.009756332206369131,2025-06-14 00:00:52.426319,128,kozu-hanfil63,True,ROI,,
717
+ -0.009759036766148373,2025-06-14 00:10:52.426319,128,kozu-hanfil63,True,ROI,,
718
+ -0.008990927696417916,2025-06-14 00:20:52.426319,128,kozu-hanfil63,True,ROI,,
719
+ -0.008641998128693583,2025-06-14 00:30:52.426319,128,kozu-hanfil63,True,ROI,,
720
+ -0.007922149245299402,2025-06-14 00:40:52.426319,128,kozu-hanfil63,True,ROI,,
721
+ -0.007787494742187375,2025-06-14 00:50:52.426319,128,kozu-hanfil63,True,ROI,,
722
+ -0.00726986629712226,2025-06-14 01:00:52.426319,128,kozu-hanfil63,True,ROI,,
723
+ -0.007313845127954198,2025-06-14 01:10:52.426319,128,kozu-hanfil63,True,ROI,,
724
+ -0.0057718951387865656,2025-06-14 01:20:52.426319,128,kozu-hanfil63,True,ROI,,
725
+ -0.004942080259041081,2025-06-14 01:30:52.426319,128,kozu-hanfil63,True,ROI,,
726
+ -0.0038874664322614307,2025-06-14 01:40:52.426319,128,kozu-hanfil63,True,ROI,,
727
+ -0.0032099826690235463,2025-06-14 01:50:52.426319,128,kozu-hanfil63,True,ROI,,
728
+ -0.0017860832972553542,2025-06-14 02:00:52.426319,128,kozu-hanfil63,True,ROI,,
729
+ -0.0010946680885441313,2025-06-14 02:10:52.426319,128,kozu-hanfil63,True,ROI,,
730
+ -0.0004881501401728435,2025-06-14 02:20:52.426319,128,kozu-hanfil63,True,ROI,,
731
+ -0.0012230546124764664,2025-06-14 02:30:52.426319,128,kozu-hanfil63,True,ROI,,
732
+ -0.00210676677234659,2025-06-14 02:40:52.426319,128,kozu-hanfil63,True,ROI,,
733
+ -0.0023200576761970722,2025-06-14 02:50:52.426319,128,kozu-hanfil63,True,ROI,,
734
+ -0.002531730079509091,2025-06-14 03:00:52.426319,128,kozu-hanfil63,True,ROI,,
735
+ -0.0032432614349497124,2025-06-14 03:10:52.426319,128,kozu-hanfil63,True,ROI,,
736
+ -0.00412977822821021,2025-06-14 03:20:52.426319,128,kozu-hanfil63,True,ROI,,
737
+ -0.005248669836919524,2025-06-14 03:30:52.426319,128,kozu-hanfil63,True,ROI,,
738
+ -0.004467470775153762,2025-06-14 03:40:52.426319,128,kozu-hanfil63,True,ROI,,
739
+ -0.0036911018641988245,2025-06-14 03:50:52.426319,128,kozu-hanfil63,True,ROI,,
740
+ -0.003045773396200822,2025-06-14 04:00:52.426319,128,kozu-hanfil63,True,ROI,,
741
+ -0.0030806681062986586,2025-06-14 04:10:52.426319,128,kozu-hanfil63,True,ROI,,
742
+ -0.0023559194398050922,2025-06-14 04:20:52.426319,128,kozu-hanfil63,True,ROI,,
743
+ -0.0022378931611853397,2025-06-14 04:30:52.426319,128,kozu-hanfil63,True,ROI,,
744
+ -0.0017998043548454242,2025-06-14 04:40:52.426319,128,kozu-hanfil63,True,ROI,,
745
+ -0.0012338463268219675,2025-06-14 04:50:52.426319,128,kozu-hanfil63,True,ROI,,