-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
97 lines (93 loc) · 2.69 KB
/
Copy pathmkdocs.yml
File metadata and controls
97 lines (93 loc) · 2.69 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
site_name: PineForge Data
site_description: Provider-neutral market and macro data adapters for PineForge
site_url: https://pineforge-4pass.github.io/pineforge-data/
repo_url: https://github.com/pineforge-4pass/pineforge-data
repo_name: pineforge-4pass/pineforge-data
edit_uri: edit/main/docs/
copyright: Copyright © PineForge contributors
theme:
name: material
features:
- content.code.copy
- content.code.annotate
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.top
- search.highlight
- search.suggest
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Use dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Use light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_style: google
filters: ["!^_"]
heading_level: 2
inherited_members: false
members_order: source
merge_init_into_class: true
separate_signature: true
show_object_full_path: false
show_root_full_path: false
show_root_heading: true
show_signature_annotations: true
show_source: false
signature_crossrefs: true
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
nav:
- Home: index.md
- Getting started: getting-started.md
- Concepts:
- Data model: data-model.md
- Provider contract: provider-contract.md
- Providers:
- Provider catalog: providers.md
- Shared tabular mapping: providers/tabular-schema.md
- CCXT: providers/ccxt.md
- CSV: providers/csv.md
- SQLite: providers/sqlite.md
- SQLAlchemy: providers/sqlalchemy.md
- Backtesting:
- Harness and reports: backtesting.md
- FastAPI server: server.md
- API reference:
- Overview: api/index.md
- Models: api/models.md
- Requests: api/requests.md
- Providers: api/providers.md
- Backtesting: api/backtesting.md
- Streaming and C ABI: api/streaming.md
- Server components: api/server.md
- Maintainers:
- Releasing: releasing.md
- Contributing: https://github.com/pineforge-4pass/pineforge-data/blob/main/CONTRIBUTING.md