{% extends "base.html" %} {% block title %}Search{% endblock %} {% block description %}Search and browse every stock, ETF, index, and future this app tracks.{% endblock %} {% block extra_css %}{% endblock %} {% block main %}

Search

{% if q %} {{ result_count }} match{{ '' if result_count == 1 else 'es' }} {% else %} {{ result_count }} symbol{{ '' if result_count == 1 else 's' }} {% endif %}
{% for opt in [ {"value": "", "label": "All"}, {"value": "index", "label": "Indexes"}, {"value": "future", "label": "Futures"}, {"value": "crypto", "label": "Crypto"}, {"value": "etf", "label": "ETFs"}, {"value": "stock", "label": "Stocks"} ] %} {{ opt.label }} {% endfor %}
{% if show_add %}

Not tracking {{ add_ticker }} yet

Add it, and its quote, deep price history, and (for stocks) SEC fundamentals all sync automatically.

{% endif %} {% if results %} {% from "includes/macros.html" import ticker_card %} {% if asof %}

Prices as of {{ asof|asof }}

{% endif %}
{% for c in results %}{{ ticker_card(c) }}{% endfor %}
{% elif q %} {% else %}

The market universe is empty

No symbols are seeded yet. Run make seed to import the curated starter list, or add a symbol by searching for its ticker above.

{% endif %}
{% endblock %} {% block extra_js %}{% endblock %}