-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (134 loc) · 5.28 KB
/
Copy pathindex.html
File metadata and controls
140 lines (134 loc) · 5.28 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ORSTAC - Open Source Robots & Technical Analyses</title>
<link rel="ai-catalog" href=".well-known/ai-catalog.json" />
<!-- SEO & GEO (Generative Engine Optimization) Meta Tags -->
<meta name="description" content="ORSTAC is the world's largest open-source community for Deriv and Binary trading robots. Access over 4,000 free XML scripts, strategies, and AI-driven automated trading resources." />
<meta name="keywords" content="ORSTAC, Deriv, Binary, trading bots, DBot, open source bots, XML scripts, algorithmic trading, automated trading, AI trading assistant" />
<meta name="author" content="ORSTAC Community" />
<meta name="robots" content="index, follow" />
<!-- Open Graph / Facebook / LinkedIn -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://alanvito1.github.io/ORSTAC/" />
<meta property="og:title" content="ORSTAC - Open Source Robots & Technical Analyses Community" />
<meta property="og:description" content="Empowering traders with the world's largest collection of over 4,000 open-source Deriv and Binary trading bot XML scripts." />
<meta property="og:image" content="https://github.com/alanvito1.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary" />
<meta property="twitter:url" content="https://alanvito1.github.io/ORSTAC/" />
<meta property="twitter:title" content="ORSTAC - Open Source Robots & Technical Analyses Community" />
<meta property="twitter:description" content="Access over 4,000 free, open-source XML trading scripts for Deriv and Binary platforms." />
<meta property="twitter:image" content="https://github.com/alanvito1.png" />
<!-- JSON-LD Structured Data for SEO & LLM/GEO Discovery -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "ORSTAC",
"operatingSystem": "Web",
"applicationCategory": "BusinessApplication",
"genre": "Financial Trading Tools",
"description": "The world's largest repository of open-source automated trading robots (XML scripts) for the Deriv and Binary platforms.",
"url": "https://alanvito1.github.io/ORSTAC/",
"creator": {
"@type": "Organization",
"name": "ORSTAC Community",
"url": "https://github.com/alanvito1/ORSTAC"
},
"offers": {
"@type": "Offer",
"price": "0.00",
"priceCurrency": "USD"
},
"featureList": [
"Over 4,000 open-source XML trading scripts",
"AI-optimized code generation guidelines",
"Free Deriv and Binary platform compatibility",
"Community-driven strategies and documentation"
]
}
</script>
<style>
:root {
--primary: #ff4444;
--dark: #0e1117;
--text: #ffffff;
--gray: #8b949e;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--dark);
color: var(--text);
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 20px;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
background: linear-gradient(90deg, #ff4444, #ff8888);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
p {
color: var(--gray);
font-size: 1.2rem;
max-width: 600px;
margin-bottom: 2rem;
}
.cta-container {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.btn {
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
background-color: var(--primary);
color: white;
}
.btn-secondary {
background-color: transparent;
border: 2px solid var(--gray);
color: var(--text);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}
.footer {
margin-top: 3rem;
font-size: 0.9rem;
color: var(--gray);
}
</style>
</head>
<body>
<main>
<h1>ORSTAC</h1>
<p>Empowering Traders with the World's Largest Collection of Open-Source Deriv Trading Bots.</p>
<div class="cta-container">
<a href="https://track.deriv.com/_h1BT0UryldiFfUyb_9NCN2Nd7ZgqdRLk/1/" class="btn btn-primary">Register on Deriv</a>
<a href="https://bingxdao.com/invite/TLU7DW/" class="btn btn-primary">Join BingX AI</a>
<a href="docs/ROBOTS_INDEX.md" class="btn btn-secondary">Browse 4000+ Bots</a>
</div>
</main>
<footer class="footer">
© 2025 ORSTAC Community. All rights reserved.
</footer>
</body>
</html>