Skip to content

Commit dcda33e

Browse files
committed
DOC: Replace spaces in URLs with urlencoded %20
1 parent a4a6142 commit dcda33e

8 files changed

+12
-12
lines changed

doc/examples/Multiple Time Frames.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"This tutorial will show how to do that with _backtesting.py_, offloading most of the work to\n",
1212
"[pandas resampling](http://pandas.pydata.org/pandas-docs/stable/timeseries.html#resampling).\n",
1313
"It is assumed you're already familiar with\n",
14-
"[basic framework usage](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html).\n",
14+
"[basic framework usage](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html).\n",
1515
"\n",
1616
"We will put to the test this long-only, supposed\n",
1717
"[400%-a-year trading strategy](http://jbmarwood.com/stock-trading-strategy-300/),\n",

doc/examples/Multiple Time Frames.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# This tutorial will show how to do that with _backtesting.py_, offloading most of the work to
2020
# [pandas resampling](http://pandas.pydata.org/pandas-docs/stable/timeseries.html#resampling).
2121
# It is assumed you're already familiar with
22-
# [basic framework usage](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html).
22+
# [basic framework usage](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html).
2323
#
2424
# We will put to the test this long-only, supposed
2525
# [400%-a-year trading strategy](http://jbmarwood.com/stock-trading-strategy-300/),

doc/examples/Parameter Heatmap & Optimization.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"\n",
1010
"This tutorial will show how to optimize strategies with multiple parameters and how to examine and reason about optimization results.\n",
1111
"It is assumed you're already familiar with\n",
12-
"[basic _backtesting.py_ usage](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html).\n",
12+
"[basic _backtesting.py_ usage](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html).\n",
1313
"\n",
1414
"First, let's again import our helper moving average function.\n",
1515
"In practice, one should use functions from an indicator library, such as\n",
@@ -350,7 +350,7 @@
350350
"metadata": {},
351351
"source": [
352352
"Our strategy will be a similar moving average cross-over strategy to the one in\n",
353-
"[Quick Start User Guide](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html),\n",
353+
"[Quick Start User Guide](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html),\n",
354354
"but we will use four moving averages in total:\n",
355355
"two moving averages whose relationship determines a general trend\n",
356356
"(we only trade long when the shorter MA is above the longer one, and vice versa),\n",

doc/examples/Parameter Heatmap & Optimization.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# This tutorial will show how to optimize strategies with multiple parameters and how to examine and reason about optimization results.
2020
# It is assumed you're already familiar with
21-
# [basic _backtesting.py_ usage](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html).
21+
# [basic _backtesting.py_ usage](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html).
2222
#
2323
# First, let's again import our helper moving average function.
2424
# In practice, one should use functions from an indicator library, such as
@@ -28,7 +28,7 @@
2828
from backtesting.test import SMA
2929

3030
# Our strategy will be a similar moving average cross-over strategy to the one in
31-
# [Quick Start User Guide](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html),
31+
# [Quick Start User Guide](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html),
3232
# but we will use four moving averages in total:
3333
# two moving averages whose relationship determines a general trend
3434
# (we only trade long when the shorter MA is above the longer one, and vice versa),

doc/examples/Strategies Library.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"\n",
1010
"This tutorial will show how to reuse composable base trading strategies that are part of _backtesting.py_ software distribution.\n",
1111
"It is, henceforth, assumed you're already familiar with\n",
12-
"[basic package usage](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html).\n",
12+
"[basic package usage](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html).\n",
1313
"\n",
1414
"We'll extend the same moving average cross-over strategy as in\n",
15-
"[Quick Start User Guide](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html),\n",
15+
"[Quick Start User Guide](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html),\n",
1616
"but we'll rewrite it as a vectorized signal strategy and add trailing stop-loss.\n",
1717
"\n",
1818
"Again, we'll use our helper moving average function."

doc/examples/Strategies Library.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
#
1818
# This tutorial will show how to reuse composable base trading strategies that are part of _backtesting.py_ software distribution.
1919
# It is, henceforth, assumed you're already familiar with
20-
# [basic package usage](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html).
20+
# [basic package usage](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html).
2121
#
2222
# We'll extend the same moving average cross-over strategy as in
23-
# [Quick Start User Guide](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html),
23+
# [Quick Start User Guide](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html),
2424
# but we'll rewrite it as a vectorized signal strategy and add trailing stop-loss.
2525
#
2626
# Again, we'll use our helper moving average function.

doc/examples/Trading with Machine Learning.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"This tutorial will show how to train and backtest a \n",
1010
"[machine learning](https://en.wikipedia.org/wiki/Machine_learning)\n",
1111
"price forecast model with _backtesting.py_ framework. It is assumed you're already familiar with\n",
12-
"[basic framework usage](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html)\n",
12+
"[basic framework usage](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html)\n",
1313
"and machine learning in general.\n",
1414
"\n",
1515
"For this tutorial, we'll use almost a year's worth sample of hourly EUR/USD forex data:"

doc/examples/Trading with Machine Learning.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# This tutorial will show how to train and backtest a
1818
# [machine learning](https://en.wikipedia.org/wiki/Machine_learning)
1919
# price forecast model with _backtesting.py_ framework. It is assumed you're already familiar with
20-
# [basic framework usage](https://kernc.github.io/backtesting.py/doc/examples/Quick Start User Guide.html)
20+
# [basic framework usage](https://kernc.github.io/backtesting.py/doc/examples/Quick%20Start%20User%20Guide.html)
2121
# and machine learning in general.
2222
#
2323
# For this tutorial, we'll use almost a year's worth sample of hourly EUR/USD forex data:

0 commit comments

Comments
 (0)