|
| 1 | +<!doctype html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <script> |
| 6 | + (function () { |
| 7 | + try { |
| 8 | + var stored = localStorage.getItem("vibetrading-theme"); |
| 9 | + var resolved = stored === "dark" || stored === "light" |
| 10 | + ? stored |
| 11 | + : window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"; |
| 12 | + document.documentElement.setAttribute("data-theme", resolved); |
| 13 | + } catch (e) { |
| 14 | + document.documentElement.setAttribute("data-theme", "light"); |
| 15 | + } |
| 16 | + })(); |
| 17 | + </script> |
| 18 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 19 | + <title>Alpha Library | Vibe-Trading Wiki</title> |
| 20 | + <meta name="description" content="Alpha Library for Vibe-Trading."> |
| 21 | + <meta name="robots" content="index, follow, max-image-preview:large"> |
| 22 | + <meta property="og:type" content="website"> |
| 23 | + <meta property="og:site_name" content="Vibe-Trading Wiki"> |
| 24 | + <meta property="og:title" content="Alpha Library"> |
| 25 | + <meta property="og:description" content="Alpha Library for Vibe-Trading."> |
| 26 | + <meta property="og:image" content="https://vibetrading.wiki/assets/icon.png"> |
| 27 | + <meta property="og:url" content="https://vibetrading.wiki/alpha-library/"> |
| 28 | + <link rel="canonical" href="https://vibetrading.wiki/alpha-library/"> |
| 29 | + <link rel="icon" type="image/png" href="/assets/icon.png"> |
| 30 | + <link rel="preconnect" href="https://fonts.googleapis.com"> |
| 31 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 32 | + <link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,750&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet"> |
| 33 | + <link rel="stylesheet" href="/styles.css"> |
| 34 | + <script type="module" src="/main.js"></script> |
| 35 | +</head> |
| 36 | +<body> |
| 37 | + <header class="site-header" id="site-header"> |
| 38 | + <div class="site-header__inner"> |
| 39 | + <a class="brand" href="/home/" aria-label="Vibe-Trading home"> |
| 40 | + <img class="brand__mark" src="/assets/icon.png" alt="" width="40" height="40"> |
| 41 | + <span class="brand__text">Vibe-Trading</span> |
| 42 | + </a> |
| 43 | + <nav class="site-nav" aria-label="Primary"> |
| 44 | + <a href="/docs/">Docs</a> |
| 45 | + <a href="/tutorials/">Tutorials</a> |
| 46 | + <a href="/alpha-library/">Alpha Library</a> |
| 47 | + <a href="/research-lab/">Research Lab</a> |
| 48 | + <a href="https://github.com/HKUDS/Vibe-Trading">Source</a> |
| 49 | + </nav> |
| 50 | + <div class="site-actions"> |
| 51 | + <a class="star-pill" href="https://github.com/HKUDS/Vibe-Trading" aria-label="Vibe-Trading on GitHub"> |
| 52 | + <span aria-hidden="true">Star</span> |
| 53 | + <strong id="star-count">--</strong> |
| 54 | + </a> |
| 55 | + <button class="icon-button" id="theme-toggle" type="button" aria-label="Toggle color theme"> |
| 56 | + <span class="theme-icon" aria-hidden="true"></span> |
| 57 | + </button> |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + </header> |
| 61 | + |
| 62 | + <main class="section-page"> |
| 63 | + <section class="section-hero section-hero--blank"> |
| 64 | + <p class="eyebrow">Alpha Library</p> |
| 65 | + <h1>Alpha Library.</h1> |
| 66 | + </section> |
| 67 | + </main> |
| 68 | + |
| 69 | + <footer class="site-footer"> |
| 70 | + <span>Vibe-Trading Wiki</span> |
| 71 | + <a href="/docs/">Docs</a> |
| 72 | + <a href="/tutorials/">Tutorials</a> |
| 73 | + <a href="/alpha-library/">Alpha Library</a> |
| 74 | + <a href="/research-lab/">Research Lab</a> |
| 75 | + <a href="https://github.com/HKUDS/Vibe-Trading">GitHub</a> |
| 76 | + </footer> |
| 77 | +</body> |
| 78 | +</html> |
0 commit comments