update
This commit is contained in:
parent
e4f5527f64
commit
59a23bb5c1
@ -1434,12 +1434,14 @@ class LLMSignalAnalyzer:
|
|||||||
position_icon = {'heavy': '🔥', 'medium': '📊', 'light': '🌱'}.get(position_size, '🌱')
|
position_icon = {'heavy': '🔥', 'medium': '📊', 'light': '🌱'}.get(position_size, '🌱')
|
||||||
position_text = position_map.get(position_size, '轻仓')
|
position_text = position_map.get(position_size, '轻仓')
|
||||||
|
|
||||||
# 标题和颜色 - 区分美股/港股
|
# 标题和颜色 - 区分加密货币/美股/港股
|
||||||
is_market_order = entry_type == 'market'
|
is_market_order = entry_type == 'market'
|
||||||
market_badge = '【现价】' if is_market_order else ''
|
market_badge = '【现价】' if is_market_order else ''
|
||||||
|
|
||||||
# 识别市场类型(港股以 .HK 结尾)
|
# 识别市场类型
|
||||||
if symbol.endswith('.HK'):
|
if self.agent_type == 'crypto':
|
||||||
|
market_tag = '[加密货币] '
|
||||||
|
elif symbol.endswith('.HK'):
|
||||||
market_tag = '[港股] '
|
market_tag = '[港股] '
|
||||||
else:
|
else:
|
||||||
market_tag = '[美股] '
|
market_tag = '[美股] '
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user