1
0
mirror of https://gitlab.com/simple-stock-bots/splash-page.git synced 2025-06-16 07:06:47 +00:00
splash-page/index.html
2021-05-06 16:52:43 -07:00

91 lines
3.2 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="Page description" />
<meta property="og:title" content="Unique page title - My Site" />
<meta property="og:description" content="Page description" />
<meta property="og:image" content="https://www.mywebsite.com/image.jpg" />
<meta property="og:image:alt" content="Image description" />
<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://www.mywebsite.com/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" />
<link rel="manifest" href="/my.webmanifest" />
<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>Telegram</button>
<button>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>