mirror of
https://gitlab.com/simple-stock-bots/splash-page.git
synced 2025-06-16 07:06:47 +00:00
105 lines
3.5 KiB
HTML
105 lines
3.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="no-js">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
<title>Simple Stock Bots</title>
|
|
|
|
<script type="module">
|
|
document.documentElement.classList.remove("no-js");
|
|
document.documentElement.classList.add("js");
|
|
</script>
|
|
<link rel="stylesheet" href="assets/css/water.css" />
|
|
<link rel="stylesheet" href="assets/css/styles.css" />
|
|
|
|
<meta
|
|
name="description"
|
|
content="Simple Stock Market and Cryptocurreny bots for Telegram and Discord"
|
|
/>
|
|
<meta property="og:title" content="Simple Stock Bots" />
|
|
<meta
|
|
property="og:description"
|
|
content="Simple Stock Market and Cryptocurreny bots for Telegram and Discord"
|
|
/>
|
|
<meta property="og:image" content="assets/img/TgChartChat" />
|
|
<meta property="og:image:alt" content="Stock Market Chart" />
|
|
<meta property="og:locale" content="en_US" />
|
|
<meta property="og:type" content="website" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta
|
|
property="og:url"
|
|
content="https://simple-stock-bots.gitlab.io/splash-page/"
|
|
/>
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<meta name="theme-color" content="#FF00FF" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<a href="https://simple-stock-bots.gitlab.io/site/">Documentation</a>
|
|
<a href="https://gitlab.com/simple-stock-bots" target="_blank"
|
|
><img
|
|
src="assets/img/gitlab-icon.svg"
|
|
alt="Gitlab Logo"
|
|
style="height: 35px !important"
|
|
/></a>
|
|
<a href="https://www.buymeacoffee.com/Anson" target="_blank"
|
|
><img
|
|
src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"
|
|
alt="Buy Me A Coffee"
|
|
style="height: 44px !important"
|
|
/></a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<h1>Simple Stock Bots</h1>
|
|
<h2>Take your Stock groupchats to the next level</h2>
|
|
<p>
|
|
Stock market bots that bring Stock and Cryptocurrency info to any group
|
|
chat.
|
|
</p>
|
|
<button onclick="window.location.href='https://t.me/SimpleStockBot';">
|
|
Telegram
|
|
</button>
|
|
<button
|
|
onclick="window.location.href='https://discordapp.com/api/oauth2/authorize?client_id=532045200823025666&permissions=0&scope=bot';"
|
|
>
|
|
Discord
|
|
</button>
|
|
</main>
|
|
<h2>Quotes</h2>
|
|
<p>
|
|
The current price of any Stock or Cryptocurrency can be called by using
|
|
dollar signs in front of a ticket. Stocks use a single ticker and
|
|
cryptocurrencies use two dollar signs. So the following message in any
|
|
chat with the bot:
|
|
</p>
|
|
<code>I wonder how $tsla and $$eth are doing today.</code>
|
|
<p>Would return:</p>
|
|
<code
|
|
>The current stock price of Tesla Inc is $664.315, the stock is currently
|
|
down -0.99%</code
|
|
><br />
|
|
<code>
|
|
The current price of Ethereum is $3,523.57, the coin is currently up
|
|
2.194% for today</code
|
|
>
|
|
<h2>Charts</h2>
|
|
<p>
|
|
Simple Stock Bots can return either intraday or monthly charts. Monthly
|
|
charts are called by using the <code>/chart</code> command, and intraday
|
|
with the <code>/intra</code> command.
|
|
</p>
|
|
<code>/chart $tsla</code><br /><br />
|
|
<img src="assets/img/TgChartChat.png" alt="" width="350" />
|
|
|
|
<!-- Content -->
|
|
<script src="assets/js/script.js" type="module"></script>
|
|
</body>
|
|
</html>
|