Xtik

Xtik

{% set ai_stocks = stocks | selectattr('gem_action') | list %}

✨ Recent AI Analysis Sorted by: Action > Reward Ratio

{% if ai_stocks | length > 0 %}
{% for stock in ai_stocks %}
{{ stock.ticker }}
{{ stock.gem_last_updated or 'Today' }}
${{ stock.current_price }} {% if stock.market_cap %} | {% if stock.market_cap > 1000000000 %} {{ (stock.market_cap / 1000000000)|round(1) }}B {% elif stock.market_cap > 1000000 %} {{ (stock.market_cap / 1000000)|round(1) }}M {% endif %} {% endif %}
{{ stock.gem_action }}

"{{ stock.gem_reasoning }}"

Entry
${{ stock.gem_entry_price or '--' }}
Stop
${{ stock.gem_stop_loss or '--' }}
Target
${{ stock.gem_target_price or '--' }}
R/R
{{ stock.gem_risk_reward or '--' }}
{% endfor %}
{% else %}

No AI analysis data found yet. Open a stock and click "Analyze" to generate insights.

{% endif %}