mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
47352e1721
Breakdown insllation instructions Make installation instructions shorter Separate Windows from the remainder Use tabs for better navigation Minor language improvements
73 lines
2.2 KiB
YAML
73 lines
2.2 KiB
YAML
site_name: Freqtrade
|
|
nav:
|
|
- Home: index.md
|
|
- Installation Docker:
|
|
- Quickstart: docker.md
|
|
- Freqtrade with Docker Compose (Advanced): docker_compose.md
|
|
- Freqtrade without docker-compose: without_docker_compose.md
|
|
- Installation:
|
|
- Linux/MacOS/Raspberry: installation.md
|
|
- Windows: windows_installation.md
|
|
- Freqtrade Basics: bot-basics.md
|
|
- Configuration: configuration.md
|
|
- Strategy Customization: strategy-customization.md
|
|
- Stoploss: stoploss.md
|
|
- Start the bot: bot-usage.md
|
|
- Control the bot:
|
|
- Telegram: telegram-usage.md
|
|
- Web Hook: webhook-config.md
|
|
- REST API: rest-api.md
|
|
- Data Downloading: data-download.md
|
|
- Backtesting: backtesting.md
|
|
- Hyperopt: hyperopt.md
|
|
- Edge Positioning: edge.md
|
|
- Utility Subcommands: utils.md
|
|
- Exchange-specific Notes: exchanges.md
|
|
- FAQ: faq.md
|
|
- Data Analysis:
|
|
- Jupyter Notebooks: data-analysis.md
|
|
- Strategy analysis: strategy_analysis_example.md
|
|
- Plotting: plotting.md
|
|
- SQL Cheatsheet: sql_cheatsheet.md
|
|
- Advanced Post-installation Tasks: advanced-setup.md
|
|
- Advanced Strategy: strategy-advanced.md
|
|
- Advanced Hyperopt: advanced-hyperopt.md
|
|
- Sandbox Testing: sandbox-testing.md
|
|
- Deprecated Features: deprecated.md
|
|
- Contributors Guide: developer.md
|
|
theme:
|
|
name: material
|
|
logo: 'images/logo.png'
|
|
custom_dir: 'docs'
|
|
palette:
|
|
primary: 'blue grey'
|
|
accent: 'tear'
|
|
extra_css:
|
|
- 'stylesheets/ft.extra.css'
|
|
extra_javascript:
|
|
- javascripts/config.js
|
|
- https://polyfill.io/v3/polyfill.min.js?features=es6
|
|
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
|
|
markdown_extensions:
|
|
- admonition
|
|
- footnotes
|
|
- codehilite:
|
|
guess_lang: false
|
|
- toc:
|
|
permalink: true
|
|
- pymdownx.arithmatex:
|
|
generic: true
|
|
- pymdownx.caret
|
|
- pymdownx.critic
|
|
- pymdownx.details
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.magiclink
|
|
- pymdownx.mark
|
|
- pymdownx.smartsymbols
|
|
- pymdownx.tabbed
|
|
- pymdownx.superfences
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
- pymdownx.tilde
|
|
- mdx_truly_sane_lists
|