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_text = position_map.get(position_size, '轻仓')
|
||||
|
||||
# 标题和颜色 - 区分美股/港股
|
||||
# 标题和颜色 - 区分加密货币/美股/港股
|
||||
is_market_order = entry_type == 'market'
|
||||
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 = '[港股] '
|
||||
else:
|
||||
market_tag = '[美股] '
|
||||
|
||||
Loading…
Reference in New Issue
Block a user