-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmkdocs.yaml
140 lines (138 loc) · 3.84 KB
/
mkdocs.yaml
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
site_name: MQPy
repo_url: https://github.com/Joaopeuko/Mql5-Python-Integration
repo_name: MQPy
# Enable GitHub repository statistics
edit_uri: "" # Disable edit button by setting to empty string
# Settings for GitHub stars and forks display
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Joaopeuko/Mql5-Python-Integration
name: GitHub
# analytics:
# provider: google
# property: !ENV GOOGLE_ANALYTICS_KEY
status:
new: Recently added
deprecated: Deprecated
markdown_extensions:
- pymdownx.snippets
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- admonition
- pymdownx.details
- toc:
permalink: "#"
- pymdownx.magiclink:
repo_url_shorthand: true
user: Joaopeuko
repo: Mql5-Python-Integration
- attr_list:
- md_in_html:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite:
- markdown.extensions.attr_list:
- pymdownx.keys:
- pymdownx.tabbed:
alternate_style: true
theme:
name: material
favicon: assets/favicon.svg
logo: assets/logo.svg
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.sections
- navigation.indexes
- navigation.tracking
- content.code.annotate
- toc.follow
- navigation.footer
- navigation.top
- content.code.copy
- content.tabs.link
- content.action.edit
- content.action.view
- content.tooltips
# Enable GitHub repository statistics
- content.action.edit
- content.action.view
- navigation.footer
# Shows the GitHub icon with repository stats
- header.autohide
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: astral-light
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: astral-dark
toggle:
icon: material/brightness-4
name: Switch to system preference
extra_css:
- extra.css
extra_javascript:
- extra.js
plugins:
- search
- gen-files:
scripts:
- scripts/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
show_root_heading: false
show_root_full_path: false
show_object_full_path: false
show_category_heading: false
show_if_no_docstring: false
show_source: true
show_bases: true
show_signature: true
heading_level: 2
members_order: source
docstring_style: google
docstring_section_style: table
separate_signature: true
merge_init_into_class: true
show_submodules: false
filters: ["!^_[^_]", "!^__init__"]
show_inherited_members: false
annotations_path: source
docstring_options:
ignore_init_summary: true
line_length: 80
show_root_members_full_path: false
show_module_member_docstring: true
- mkdocs-jupyter
nav:
- Home: index.md
- Contributing: contributing.md
- Examples: examples.md
- Strategy Explanations:
- Moving Average Crossover: strategies/moving_average.md
- RSI Strategy: strategies/rsi_strategy.md
- Bollinger Bands Strategy: strategies/bollinger_bands.md
- Fibonacci Retracement Strategy: strategies/fibonacci_retracement.md
- Market Depth Analysis: strategies/market_depth_analysis.md
- Code documentation: reference/