Spaces:
Running
Running
File size: 4,096 Bytes
42a6400 876e7b7 879a1ae ec7c563 876e7b7 cd36fcf 9990a57 16610bd cd36fcf 9990a57 cd36fcf 9990a57 cd36fcf 9990a57 cd36fcf 9990a57 2b988d4 9990a57 cd36fcf 9990a57 2b988d4 9990a57 cd36fcf 9990a57 cd36fcf 9990a57 16610bd 9990a57 876e7b7 42a6400 cd36fcf ab2dc87 42a6400 879a1ae 9990a57 0ef8043 42a6400 ab2dc87 9990a57 cd36fcf 9990a57 cd36fcf 9990a57 ab2dc87 42a6400 525ee21 879a1ae f6b4cc5 146a2e5 248e6ba 876e7b7 83d09c1 146a2e5 42a6400 ab2dc87 42a6400 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | {% extends "base.html" %}
{% block title %}Help & Resources - QuantVAT{% endblock %}
{% block description %}Documentation, setup guides, and community resources for the Quantitative Crypto Volume Analysis Toolkit.{% endblock %}
{% block og_title %}Help & Resources - QuantVAT{% endblock %}
{% block og_description %}Documentation, setup guides, and community resources for the Quantitative Crypto Volume Analysis Toolkit.{% endblock %}
{% block keywords %}help page, crypto dashboard, cryptovat, trading tools{% endblock %}
{% block extra_css %}
<style>
/* --- TYPOGRAPHY FIXES --- */
.card p {
color: #94a3b8;
line-height: 1.6;
font-size: 0.95rem;
margin-bottom: 15px;
}
.card strong {
color: #f1f5f9;
font-weight: 700;
}
/* --- RESOURCE GRID --- */
.grid-social {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-top: 20px;
}
/* --- SOFT BLUE BUTTONS --- */
.btn-resource {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
padding: 14px;
background: rgba(59, 130, 246, 0.08);
border: 1px solid rgba(59, 130, 246, 0.2);
color: #e2e8f0;
font-weight: 500;
border-radius: 8px;
transition: all 0.2s ease;
box-sizing: border-box;
margin-bottom: 15px;
font-size: 0.95rem;
text-decoration: none;
}
.btn-resource:hover {
background: rgba(59, 130, 246, 0.15);
border-color: #3b82f6;
color: #ffffff;
transform: translateY(-2px);
}
.grid-social .btn-resource {
margin-bottom: 0;
}
/* --- LIST STYLING --- */
.guide-list {
padding-left: 20px;
margin: 0;
color: #94a3b8;
}
.guide-list li {
margin-bottom: 12px;
line-height: 1.6;
}
@media (max-width: 600px) {
.grid-social { grid-template-columns: 1fr; }
}
</style>
{% endblock %}
{% block content %}
<div class="container">
<h1 style="display:flex; align-items:center; gap:10px;">
<span>π</span> Help & Information
</h1>
<div class="card">
<h2 style="color: var(--accent-green);">About QuantVAT</h2>
<p>
<strong>Quantitative Crypto Volume Analysis Toolkit</strong> is an ecosystem built for data-driven traders. It tracks volumetric activity, performing cross-market analysis by fusing Spot and Futures data. In addition, it features the <strong>Deep Diver Engine</strong> for spot analysis and a semi-automated <strong>Trading Journal</strong> with blunt AI auditing.
</p>
</div>
<div class="card">
<h2 style="color: var(--accent-green);">Quick Start Guide</h2>
<ol class="guide-list">
<li><strong>Register & Login:</strong> Create your account. It is easy, fast, and free.</li>
<li><strong>Setup Wizard:</strong> Configure your API keys (CoinMarketCap, etc.) once.</li>
<li><strong>Spot Scan:</strong> Tap to identify volume-weighted spot tokens in the last 24 hours.</li>
<li><strong>Futures Data:</strong> Export PDF from CoinAlyze and upload it here.</li>
<li><strong>Cross-Analysis:</strong> The engine fuses data to generate your OISS score.</li>
<li><strong>Report:</strong> Download your professional PDF report instantly.</li>
</ol>
</div>
<div class="card">
<h2 style="color: var(--accent-green);">Learn & Connect</h2>
<a href="https://github.com/heisbuba/quantvat" class="btn-resource" target="_blank">
<span>π</span> Github Documentation
</a>
<h3 style="font-size:1rem; color:#94a3b8; margin: 25px 0 15px;">Follow Project</h3>
<div class="grid-social">
<a href="https://x.com/quantvat" class="btn-resource" target="_blank">
<span>π</span> Twitter</a>
</div>
</div>
</div>
{% endblock %} |