-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (73 loc) · 3.91 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MCG Trading Tools</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-900 min-h-screen text-gray-100">
<div class="container mx-auto px-4 py-16">
<header class="text-center mb-16">
<h1 class="text-5xl font-bold text-blue-400 mb-4">
MCG Trading Tools
</h1>
<p class="text-gray-400 text-lg">Advanced Analytics for Smart Trading Decisions</p>
</header>
<main class="max-w-3xl mx-auto">
<div class="space-y-6">
<!-- Halt Band Estimator Card -->
<a href="https://mcg88.github.io/mcg-trading-tools/halt"
class="block">
<div class="bg-gray-800 border border-gray-700 rounded-lg p-6 transition-all duration-300
hover:shadow-lg hover:border-blue-500">
<div class="flex items-start justify-between">
<div>
<h2 class="text-2xl font-semibold text-blue-400 mb-2">
Halt Band Estimator
</h2>
<p class="text-gray-400 leading-relaxed">
Precision tool for calculating and visualizing trading halt bands.
Make informed decisions with accurate band estimations.
</p>
</div>
<div class="bg-blue-600 p-3 rounded-lg">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"/>
</svg>
</div>
</div>
</div>
</a>
<!-- MUTS Calculator Card -->
<a href="https://mcg88.github.io/mcg-trading-tools/muts"
class="block">
<div class="bg-gray-800 border border-gray-700 rounded-lg p-6 transition-all duration-300
hover:shadow-lg hover:border-purple-500">
<div class="flex items-start justify-between">
<div>
<h2 class="text-2xl font-semibold text-purple-400 mb-2">
Scheduler
</h2>
<p class="text-gray-400 leading-relaxed">
Milliseconds since midnight calculator used for scheduling
</p>
</div>
<div class="bg-purple-600 p-3 rounded-lg">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"/>
</svg>
</div>
</div>
</div>
</a>
</div>
</main>
<footer class="text-center mt-16 text-gray-500 text-sm">
<p>© 2024 MCG Trading Tools. Empowering traders with precision analytics.</p>
</footer>
</div>
</body>
</html>