forked from algobulls/pyalgotrading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
145 lines (132 loc) · 5.74 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
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
141
142
143
144
145
# Reference:
# mkdocs - https://www.mkdocs.org/user-guide/configuration/
# mkdocs material theme - https://squidfunk.github.io/mkdocs-material/getting-started/#configuration
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# Project Information
site_name: Python Build
site_description: Official Python Package for Algorithmic Trading APIs powered by AlgoBulls
site_author: Pushpak Dagade ([email protected])
site_url: https://algobulls.github.io/pythonbuild/
# GitHub Repo information
repo_url: https://github.com/algobulls/pyalgotrading
theme:
name: material
features:
- content.code.copy
- content.tabs.link
- tabs
- navigation.footer
favicon: 'https://algobulls.com/img/favicon.svg'
logo: 'algobulls_logo.svg'
palette:
primary: blue
accent: blue
# scheme: slate # dark mode
scheme: default # light mode
language: en
collapse_navigation: False
sticky_navigation: True
copyright: Copyright © 2020 | All Rights Reserved | AlgoBulls Technologies Private Limited
# Navigation
nav:
- Home: 'index.md'
- Strategies:
- General Strategy Guide: 'strategies/strategy_guides/common_strategy_guide.md'
- Regular Strategies:
- Aroon Crossover: 'strategies/aroon_crossover.md'
- Bollinger Bands: 'strategies/bollinger_bands.md'
- EMA Crossover: 'strategies/ema_crossover.md'
- Inverse EMA Scalping: 'strategies/inverse_ema_scalping.md'
- MACD Crossover: 'strategies/macd_crossover.md'
- Mean Reversion Bollinger Bands: 'strategies/mean_reversion_bollinger_bands.md'
- Reverse RSI: 'strategies/reverse_rsi.md'
- RSI MACD Crossover : 'strategies/rsi_macd_crossover.md'
- Stochastic Crossover: 'strategies/stochastic_crossover.md'
- VWAP Crossover: 'strategies/vwap_crossover.md'
- Volatility Trend ATR : 'strategies/volatility_trend_atr.md'
- Options Strategies:
- Options Bear Call Ladder: 'strategies/options_bear_call_ladder.md'
- Options Bear Put Ladder: 'strategies/options_bear_put_ladder.md'
- Options Bull Call Ladder: 'strategies/options_bull_call_ladder.md'
- Options Bull Put Ladder: 'strategies/options_bull_put_ladder.md'
- Options Long Iron Butterfly: 'strategies/options_long_iron_butterfly.md'
- Options Straddle: 'strategies/options_straddle.md'
- Options Strangle: 'strategies/options_strangle.md'
- Pyalgotrading:
- Introduction: 'pyalgotrad/introduction.md'
- Setup your Workspace: 'pyalgotrad/prerequisites.md'
- Strategy Creation and Execution:
- Upload your Strategy: 'pyalgotrad/upload.md'
- Select your Strategy: 'pyalgotrad/select.md'
- Execute your Strategy: 'pyalgotrad/testing.md'
- Analytics: 'pyalgotrad/pyalgotrading_analytics.md'
- Features:
- Slippage: 'pyalgotrad/slippage.md'
- Brokerage : 'pyalgotrad/brokerage.md'
- Python Build Web:
- Introduction: 'python_build/python-build-introduction.md'
- Setup your Workspace: 'python_build/python-build-getstarted.md'
- Strategy Creation and Execution:
- Code Using AI: 'python_build/python-build-code-gen-ai.md'
- Professional Support: 'python_build/python-build-professional.md'
- Code Ready Templates: 'python_build/python-build-code-ready-templates.md'
- Code New Strategy: 'python_build/python-build-code-new.md'
- Configure and Execute your Strategy: 'python_build/python-build-config-parameters.md'
- Analytics: 'python_build/python-build-view-results.md'
- Brokers:
- Alpaca: 'brokers/broker_alpaca_guide.md'
- Setting Up Alpaca with AlgoBulls:
- OAuth: 'brokers/connecting_alpaca.md'
- Non-OAuth: 'brokers/non_auth_alpaca.md'
- Gen AI:
- Create your OpenAI Keys: 'gen_ai/get_open_ai_keys.md'
- Prompt Library: 'gen_ai/gen_ai_prompt_library.md'
- Python Build Support: 'support/support_pybuild.md'
plugins:
- search # necessary for search to work
- git-revision-date-localized: # When enabled, the respective 'Last Updated' date is automatically added at the bottom of each page. Docs: https://squidfunk.github.io/mkdocs-material/plugins/revision-date/
type: timeago
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
watch:
- pyalgotrading
- redirects:
redirect_maps:
'strategies/common_regular_strategy.md': 'strategies/strategy_guides/common_regular_strategy.md'
'strategies/common_options_strategy.md': 'strategies/strategy_guides/common_options_strategy.md'
'gen_ai_guide.md': 'gen_ai/get_open_ai_keys.md'
google_analytics:
- 'UA-147658856-4'
- 'auto'
extra:
social:
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/company/algobulls
- icon: fontawesome/brands/facebook
link: https://facebook.com/algobullsalgotrading
- icon: fontawesome/brands/github-alt
link: https://github.com/algobulls/
disqus: algobulls
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition # Add note, tip, question, warning, error, etc. Docs: https://squidfunk.github.io/mkdocs-material/extensions/admonition/
- attr_list
- codehilite
- md_in_html
- def_list
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
# anchor_linenums: true
- toc: # Docs: https://squidfunk.github.io/mkdocs-material/extensions/permalinks/
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
auto_title: false
pygments_lang_class: true