-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (95 loc) · 3.82 KB
/
Copy pathindex.html
File metadata and controls
101 lines (95 loc) · 3.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Autonomous Options Trading Engine | Ahmad</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: #f9f9f9;
}
.container {
background-color: #fff;
padding: 2rem 3rem;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
border-bottom: 2px solid #eee;
padding-bottom: 0.5rem;
}
h2 {
color: #34495e;
margin-top: 2rem;
}
.badges {
margin-bottom: 2rem;
}
.badges img {
margin-right: 5px;
}
.notice {
background-color: #fff3cd;
border-left: 4px solid #ffeeba;
padding: 1rem;
margin: 1.5rem 0;
border-radius: 4px;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
margin-top: 3rem;
text-align: center;
font-size: 0.9rem;
color: #7f8c8d;
}
</style>
</head>
<body>
<div class="container">
<h1>Autonomous Options Trading Engine</h1>
<div class="badges">
<img src="https://img.shields.io/badge/Status-Active-success" alt="Status">
<img src="https://img.shields.io/badge/License-Proprietary-red" alt="License">
<img src="https://img.shields.io/badge/Python-3.11-blue" alt="Python">
<img src="https://img.shields.io/badge/Broker-Alpaca-yellow" alt="Alpaca">
</div>
<div class="notice">
<strong>Notice:</strong> This page serves as a showcase portfolio. The source code, proprietary algorithms, and trading logic are strictly private and not open source.
</div>
<h2>Overview</h2>
<p>The Autonomous Options Trading Engine is a fully automated, zero-touch algorithmic trading system designed to execute complex options strategies. It autonomously scans the market, evaluates setups across multiple quantitative strategies, manages risk, and executes trades via the Alpaca API.</p>
<h2>Key Capabilities</h2>
<ul>
<li><strong>Autonomous Market Scanning:</strong> Daily automated scans of a curated universe of large-cap stocks and sector ETFs.</li>
<li><strong>Multi-Strategy Execution:</strong> Simultaneously evaluates setups across 5 distinct options strategies.</li>
<li><strong>Dynamic Risk Management:</strong> Hard-coded position sizing, portfolio exposure limits, and automated stop-loss/take-profit triggers.</li>
<li><strong>Real-Time Monitoring:</strong> Continuous position tracking during market hours with automated exit execution.</li>
<li><strong>Sharia Compliance:</strong> Built-in filtering to exclude non-compliant sectors.</li>
</ul>
<h2>Documentation</h2>
<p>Explore the architecture and product details in the GitHub repository:</p>
<ul>
<li><a href="ARCHITECTURE.md">System Architecture</a></li>
<li><a href="PRODUCT_BRIEF.md">Product Brief</a></li>
<li><a href="TECH_STACK.md">Technology Stack</a></li>
<li><a href="PRIOR_ART.md">Prior Art & IP Notice</a></li>
</ul>
<div class="footer">
© 2026 Ahmad. All Rights Reserved.
</div>
</div>
</body>
</html>