-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmkdocs.yml
More file actions
40 lines (40 loc) · 1.16 KB
/
mkdocs.yml
File metadata and controls
40 lines (40 loc) · 1.16 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
site_name: Omspy Documentation
theme:
name: material
nav:
- Home: index.md
- API Reference:
- Omspy: reference/omspy.md
- Base: reference/base.md
- Models: reference/models.md
- Multi: reference/multi.md
- Order: reference/order.md
- Utils: reference/utils.md
- Algos:
- Trailing: reference/algos/trailing.md
- Brokers:
- API Helper: reference/brokers/api_helper.md
- Finvasia: reference/brokers/finvasia.md
- ICICI: reference/brokers/icici.md
- Neo: reference/brokers/neo.md
- Noren: reference/brokers/noren.md
- Paper: reference/brokers/paper.md
- Zerodha: reference/brokers/zerodha.md
- Orders:
- Depth: reference/orders/depth.md
- Peg: reference/orders/peg.md
- Stop: reference/orders/stop.md
- Simulation:
- Models: reference/simulation/models.md
- Server: reference/simulation/server.md
- Virtual: reference/simulation/virtual.md
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
paths: ["omspy"] # Target the omspy package
options:
show_root_heading: true
show_source: true