Skip to content

Commit ae16147

Browse files
committed
Add Jekyll
1 parent 16e469b commit ae16147

4 files changed

Lines changed: 236 additions & 0 deletions

File tree

_config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
title: Start Your Quant
2+
description: A comprehensive guide to quantitative trading strategies and implementation
3+
baseurl: "/start-your-quant"
4+
url: "https://your-username.github.io"
5+
6+
markdown: kramdown
7+
highlighter: rouge
8+
plugins:
9+
- jekyll-feed
10+
- jekyll-sitemap
11+
12+
defaults:
13+
- scope:
14+
path: ""
15+
type: "pages"
16+
values:
17+
layout: "default"
18+
19+
exclude:
20+
- README.md
21+
- Gemfile
22+
- Gemfile.lock
23+
- node_modules
24+
- vendor
25+
- .bundle
26+
- .sass-cache
27+
- .jekyll-cache
28+
- .jekyll-metadata

_layouts/default.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
<meta name="description" content="{{ site.description }}">
8+
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
9+
</head>
10+
<body>
11+
<header>
12+
<nav>
13+
<h1><a href="{{ '/' | relative_url }}">{{ site.title }}</a></h1>
14+
</nav>
15+
</header>
16+
17+
<main>
18+
{{ content }}
19+
</main>
20+
21+
<footer>
22+
<p>&copy; 2025 {{ site.title }}. Built with Jekyll.</p>
23+
</footer>
24+
</body>
25+
</html>

assets/css/style.css

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
body {
2+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
3+
line-height: 1.6;
4+
margin: 0;
5+
padding: 0;
6+
background-color: #ffffff;
7+
}
8+
9+
header {
10+
background-color: #2c3e50;
11+
color: white;
12+
padding: 1rem 0;
13+
}
14+
15+
header nav {
16+
max-width: 1200px;
17+
margin: 0 auto;
18+
padding: 0 2rem;
19+
}
20+
21+
header h1 {
22+
margin: 0;
23+
}
24+
25+
header a {
26+
color: white;
27+
text-decoration: none;
28+
}
29+
30+
main {
31+
max-width: 1200px;
32+
margin: 0 auto;
33+
padding: 2rem;
34+
}
35+
36+
h1, h2, h3, h4, h5, h6 {
37+
color: #2c3e50;
38+
margin-top: 2rem;
39+
margin-bottom: 1rem;
40+
}
41+
42+
h1 {
43+
border-bottom: 3px solid #3498db;
44+
padding-bottom: 0.5rem;
45+
}
46+
47+
h2 {
48+
border-bottom: 2px solid #ecf0f1;
49+
padding-bottom: 0.3rem;
50+
}
51+
52+
a {
53+
color: #3498db;
54+
text-decoration: none;
55+
}
56+
57+
a:hover {
58+
text-decoration: underline;
59+
}
60+
61+
ul {
62+
list-style-type: none;
63+
padding-left: 0;
64+
}
65+
66+
li {
67+
margin-bottom: 0.5rem;
68+
}
69+
70+
li a {
71+
display: block;
72+
padding: 0.5rem;
73+
border-left: 3px solid #3498db;
74+
margin-bottom: 0.25rem;
75+
background-color: #f8f9fa;
76+
transition: background-color 0.2s;
77+
}
78+
79+
li a:hover {
80+
background-color: #e9ecef;
81+
text-decoration: none;
82+
}
83+
84+
footer {
85+
background-color: #34495e;
86+
color: white;
87+
text-align: center;
88+
padding: 2rem 0;
89+
margin-top: 4rem;
90+
}
91+
92+
code {
93+
background-color: #f1f2f6;
94+
padding: 0.2rem 0.4rem;
95+
border-radius: 3px;
96+
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
97+
}
98+
99+
pre {
100+
background-color: #f1f2f6;
101+
padding: 1rem;
102+
border-radius: 5px;
103+
overflow-x: auto;
104+
}
105+
106+
blockquote {
107+
border-left: 4px solid #3498db;
108+
margin: 1rem 0;
109+
padding-left: 1rem;
110+
color: #7f8c8d;
111+
}

index.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
---
2+
layout: default
3+
title: Home
4+
---
5+
6+
# Start Your Quant
7+
8+
Welcome to the comprehensive guide for quantitative trading strategies and implementation.
9+
10+
## Documentation Sections
11+
12+
### Fundamentals
13+
- [What is Quantitative Trading?](docs/fundamentals/what_is_quant.md)
14+
- [Discretionary vs Quantitative Trading](docs/fundamentals/discretionary_vs_quant.md)
15+
- [Strategy Types](docs/fundamentals/strategy_types.md)
16+
- [Why Code?](docs/fundamentals/why_code.md)
17+
18+
### Data & Analysis
19+
- [Data Sources](docs/data/data_sources.md)
20+
- [Data Types](docs/data/data_types.md)
21+
- [Data Cleaning](docs/data/data_cleaning.md)
22+
- [Backtesting Datasets](docs/data/backtesting_datasets.md)
23+
24+
### Technical Indicators
25+
- [Moving Averages](docs/indicators/moving_averages.md)
26+
- [VWAP](docs/indicators/vwap.md)
27+
- [Volume RVOL](docs/indicators/volume_rvol.md)
28+
- [Gap Float](docs/indicators/gap_float.md)
29+
- [Spike HOD/LOD](docs/indicators/spike_hod_lod.md)
30+
31+
### Trading Strategies
32+
- [Gap and Go](docs/strategies/gap_and_go.md)
33+
- [VWAP Reclaim](docs/strategies/vwap_reclaim.md)
34+
- [Low Float Runners](docs/strategies/low_float_runners.md)
35+
- [Parabolic Reversal](docs/strategies/parabolic_reversal.md)
36+
- [First Green Red Day](docs/strategies/first_green_red_day.md)
37+
- [Advanced Short Selling](docs/strategies/short_selling_advanced.md)
38+
39+
### Backtesting
40+
- [What is Backtesting?](docs/backtesting/what_is_backtest.md)
41+
- [Simple Backtesting Engine](docs/backtesting/simple_engine.md)
42+
- [Metrics](docs/backtesting/metrics.md)
43+
- [Advanced Analysis](docs/backtesting/advanced_analysis.md)
44+
- [Avoiding Overfitting](docs/backtesting/overfitting.md)
45+
46+
### Risk Management
47+
- [Position Sizing](docs/risk/position_sizing.md)
48+
- [Stop Losses](docs/risk/stops.md)
49+
- [Risk Limits](docs/risk/risk_limits.md)
50+
- [Asymmetric Risk](docs/risk/asymmetric_risk.md)
51+
52+
### Setup & Tools
53+
- [Getting Started](docs/setup/getting_started.md)
54+
- [Broker Integration](docs/setup/broker_integration.md)
55+
- [Data Providers](docs/setup/data_providers.md)
56+
- [DAS Trader Integration](docs/setup/das_trader_integration.md)
57+
- [Essential Libraries](docs/tools/essential_libraries.md)
58+
- [Development Workflow](docs/tools/development_workflow.md)
59+
- [Advanced Trading Infrastructure](docs/tools/advanced_trading_infrastructure.md)
60+
- [Flash Research Config](docs/tools/flash_research_config.md)
61+
62+
### Analysis & Performance
63+
- [Market Microstructure](docs/analysis/market_microstructure.md)
64+
- [Performance Tracking](docs/analysis/performance_tracking.md)
65+
- [Trade Validation](docs/analysis/trade_validation.md)
66+
67+
### Automation
68+
- [Automation Strategies](docs/automation/automation_strategies.md)
69+
- [System Architecture](docs/automation/system_architecture.md)
70+
71+
### Examples
72+
- [Platform Integration](docs/examples/platform_integration.md)

0 commit comments

Comments
 (0)