Update filtering

This commit is contained in:
Sik Yoon 2024-05-25 07:54:37 +09:00
parent c691999599
commit 12d97c109a
2 changed files with 4 additions and 4 deletions

View File

@ -90,8 +90,8 @@ pub async fn list_up_for_buy(
// Heatmap volume: filtering close price with Extra High is over the previous candle from 30 previous candles // Heatmap volume: filtering close price with Extra High is over the previous candle from 30 previous candles
let mut keys_to_remove: HashSet<String> = HashSet::new(); let mut keys_to_remove: HashSet<String> = HashSet::new();
let heatmap_volumes = heatmap_volume( let heatmap_volumes = heatmap_volume(
60, 30,
60, 30,
4.0, 4.0,
1.5, 1.5,
0.5, 0.5,

View File

@ -90,8 +90,8 @@ pub async fn list_up_for_buy(
// Heatmap volume: filtering close price with Extra High is over the previous candle from 30 previous candles // Heatmap volume: filtering close price with Extra High is over the previous candle from 30 previous candles
let mut keys_to_remove: HashSet<String> = HashSet::new(); let mut keys_to_remove: HashSet<String> = HashSet::new();
let heatmap_volumes = heatmap_volume( let heatmap_volumes = heatmap_volume(
60, 30,
60, 30,
4.0, 4.0,
1.5, 1.5,
0.5, 0.5,