diff --git a/docs/concepts/index.md b/docs/concepts/index.md index ed90861d1f09..dc4c48aa8c55 100644 --- a/docs/concepts/index.md +++ b/docs/concepts/index.md @@ -37,22 +37,22 @@ The terms "NautilusTrader", "Nautilus" and "platform" are used interchageably th Explore the core concepts of NautilusTrader through these guides: ### Fundamentals -- [Overview](docs/concepts/overview.md) -- [Architecture](docs/concepts/architecture.md) -- [Strategies](docs/concepts/strategies.md) +- [Overview](overview.md) +- [Architecture](architecture.md) +- [Strategies](strategies.md) ### Trading essentials -- [Instruments](docs/concepts/instruments.md) -- [Orders](docs/concepts/orders.md) -- [Execution](docs/concepts/execution.md) +- [Instruments](instruments.md) +- [Orders](orders.md) +- [Execution](execution.md) - [Backtesting](backtesting.md) ### Data & integrations -- [Data](docs/concepts/data.md) -- [Adapters](docs/concepts/adapters.md) +- [Data](data.md) +- [Adapters](adapters.md) ### Utilities -- [Logging](docs/concepts/logging.md) +- [Logging](logging.md) ### Advanced topics -- [Advanced](docs/concepts/advanced/index.md) +- [Advanced](advanced/index.md) diff --git a/docs/concepts/strategies.md b/docs/concepts/strategies.md index a5996cb381dd..24a647e8d13b 100644 --- a/docs/concepts/strategies.md +++ b/docs/concepts/strategies.md @@ -28,7 +28,7 @@ The main capabilities of a strategy include: - Creating and managing orders ```{note} -See the `Strategy` [API reference](/docs/api_reference/trading#Strategy) for a complete list of available methods. +See the `Strategy` [API reference](../docs/api_reference/trading#Strategy) for a complete list of available methods. ``` ## Implementation diff --git a/docs/core/index.md b/docs/core/index.md deleted file mode 100644 index a841a9441bc3..000000000000 --- a/docs/core/index.md +++ /dev/null @@ -1,3 +0,0 @@ -# Rust API Reference - -Placeholder (will be overwritten on final docs build) diff --git a/docs/developer_guide/index.md b/docs/developer_guide/index.md index 2e19d89d1447..cbdc17b73d9d 100644 --- a/docs/developer_guide/index.md +++ b/docs/developer_guide/index.md @@ -46,9 +46,9 @@ types and how these map to their corresponding `PyObject` types. ## Contents -- [Environment Setup](/docs/developer_guide/environment_setup.md) -- [Coding Standards](/docs/developer_guide/coding_standards.md) -- [Cython](/docs/developer_guide/cython.md) -- [Rust](/docs/developer_guide/rust.md) -- [Testing](/docs/developer_guide/testing.md) -- [Packaged Data](/docs/developer_guide/packaged_data.md) +- [Environment Setup](environment_setup.md) +- [Coding Standards](coding_standards.md) +- [Cython](cython.md) +- [Rust](rust.md) +- [Testing](testing.md) +- [Packaged Data](packaged_data.md) diff --git a/docs/index.md b/docs/index.md index 1ee02428dfdc..912943054437 100644 --- a/docs/index.md +++ b/docs/index.md @@ -113,7 +113,6 @@ does not need to have Rust installed to run NautilusTrader. In the future as mor guides/index.md integrations/index.md api_reference/index.md - core/index.md developer_guide/index.md ```