Update filtering

This commit is contained in:
Sik Yoon 2024-06-06 02:39:26 +09:00
parent 0c1e8d1949
commit 653c3835d4

View File

@ -70,6 +70,8 @@ pub async fn linear_regression(
lr_data.close_time = window.last().unwrap().close_time;
lr_data_vec.push(lr_data.clone());
}
let mut lr_data_wrapper_lock = lr_data_wrapper_arc_c.lock().await;
lr_data_wrapper_lock.insert(symbol_c, lr_data_vec.clone());
}));
}
}