-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
59 lines (53 loc) · 1.54 KB
/
mkdocs.yml
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
site_name: Estrade
site_description: Build, Backtest and Go Live your own trading bots
site_author: Gabriel Oger
site_url: "https://estrade.readthedocs.io/"
repo_name: cimourdain/estrade
repo_url: https://github.com/cimourdain/estrade
edit_uri: ""
dev_addr: "0.0.0.0:8000"
theme:
name: 'material'
markdown_extensions:
- codehilite
- admonition
- codehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tasklist
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
inherited_members: true
rendering:
heading_level: 3
watch:
- estrade
- tests
nav:
- Home: index.md
- Install: install.md
- Tutorial: tutorial.md
- Reference:
Tick: reference/tick.md
Epic: reference/epic.md
Tick Provider: reference/tick_provider.md
Trade: reference/trade.md
Trade Provider: reference/trade_provider.md
Strategy: reference/strategy.md
FrameSet: reference/graph/frame_set.md
BaseIndicators: reference/graph/base_indicators.md
Indicators:
- Candle Sets: reference/graph/indicators/candle_set.md
- Simple Moving Average: reference/graph/indicators/simple_moving_average.md
- Pivot: reference/graph/indicators/pivot.md
- RSI: reference/graph/indicators/rsi.md
Enums: reference/enums.md
Reporting:
- CSV: reference/reporting/csv.md
- Changelog: changelog.md
- Roadmap: ROADMAP.md
- Contributing: contributing.md