{{ total_signals }}
总信号数
{{ long_signals }}
多头信号
{{ short_signals }}
空头信号
{{ update_time }}
更新时间
{% if grouped_selections %} {% for group_time, timeframe_groups in grouped_selections.items() %}
{{ group_time }} {% set total_coins = timeframe_groups.values() | map('length') | sum %} ({{ total_coins }}个币种)
{% for timeframe, selections in timeframe_groups.items() %}
{{ timeframe }} 时间级别 ({{ selections|length }}个信号)
{% for selection in selections %} {% endfor %}
币种 符合因子 信号类型 策略 入场价 止损价 止盈价 操作建议 选择理由 时间
{{ selection.symbol.replace('USDT', '') }} {{ selection.qualified_factors if selection.qualified_factors is not none else selection.score|round|int }}/6 {{ '做空' if selection.signal_type == 'SHORT' else '做多' }} {{ selection.strategy_type }} ${{ "%.4f"|format(selection.entry_price) }} ${{ "%.4f"|format(selection.stop_loss) }} ${{ "%.4f"|format(selection.take_profit) }} {{ selection.action_suggestion }} {{ selection.reason }} {{ selection.selection_time.split(' ')[1][:5] if selection.selection_time else '-' }}
{% endfor %}
{% endfor %} {% if total_count >= current_limit %}
{% endif %} {% else %}

暂无选币数据

请稍后刷新或运行选币程序

{% endif %}