Check 1day data

This commit is contained in:
jackyu66git
2025-06-06 21:42:35 +08:00
parent 6fbdf65422
commit 9ace03b29b
5 changed files with 1951 additions and 1862 deletions
+3 -3
View File
@@ -3250,7 +3250,7 @@
// 构建显示文本,包含分型类型和强度信息
let displayText = `${fx.fx_strength.toFixed(1)}`;
if (fx.fx_strength < 1.4) { // 降低阈值让更多分型显示
if (fx.fx_strength < 1.1) { // 降低阈值让更多分型显示
displayText = fx.fx_strength >= 0.8 ? '•' : '' // 0.8以上显示点,0.8以下不显示文本
}
@@ -3314,7 +3314,7 @@
// 构建显示文本,包含分型类型和强度信息
let displayText = `${fx.fx_strength.toFixed(1)}`;
if (fx.fx_strength < 1.4) { // 降低阈值让更多分型显示
if (fx.fx_strength < 1.3) { // 降低阈值让更多分型显示
displayText = fx.fx_strength >= 0.8 ? '•' : '' // 0.8以上显示点,0.8以下不显示文本
}
@@ -3455,7 +3455,7 @@
let strengthColor = fx.is_bottom ? '#9A8C98' : '#F2CC8F'; // 底分型用灰紫色,顶分型用浅黄色
let displayText = `${fx.fx_strength.toFixed(1)}`;
// 构建小周期分型显示文本
if (fx.fx_strength < 1.4){ // 调整小周期阈值
if (fx.fx_strength < 1.3){ // 调整小周期阈值
displayText = fx.fx_strength >= 0.6 ? '•' : '' // 0.6以上显示点
}