Skip to content

Commit 7492cf8

Browse files
committed
docs: update doc links from latest to stable
1 parent d29d4cb commit 7492cf8

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

docs/advanced-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ services:
7373
volumes:
7474
- "./user_data:/freqtrade/user_data"
7575
# Expose api on port 8080 (localhost only)
76-
# Please read the https://www.freqtrade.io/en/latest/rest-api/ documentation
76+
# Please read the https://www.freqtrade.io/en/stable/rest-api/ documentation
7777
# before enabling this.
7878
ports:
7979
- "127.0.0.1:8080:8080"
@@ -100,7 +100,7 @@ services:
100100
volumes:
101101
- "./user_data:/freqtrade/user_data"
102102
# Expose api on port 8080 (localhost only)
103-
# Please read the https://www.freqtrade.io/en/latest/rest-api/ documentation
103+
# Please read the https://www.freqtrade.io/en/stable/rest-api/ documentation
104104
# before enabling this.
105105
ports:
106106
- "127.0.0.1:8081:8080"

docs/freqai-reinforcement-learning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ where `ReinforcementLearner` will use the templated `ReinforcementLearner` from
4545
4646
More details about feature engineering available:
4747
48-
https://www.freqtrade.io/en/latest/freqai-feature-engineering
48+
https://www.freqtrade.io/en/stable/freqai-feature-engineering
4949
5050
:param df: strategy dataframe which will receive the targets
5151
usage example: dataframe["&-target"] = dataframe["close"].shift(-1) / dataframe["close"]

docs/freqai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
FreqAI is a software designed to automate a variety of tasks associated with training a predictive machine learning model to generate market forecasts given a set of input signals. In general, FreqAI aims to be a sandbox for easily deploying robust machine learning libraries on real-time data ([details](#freqai-position-in-open-source-machine-learning-landscape)).
88

99
!!! Note
10-
FreqAI is, and always will be, a not-for-profit, open source project. FreqAI does *not* have a crypto token, FreqAI does *not* sell signals, and FreqAI does not have a domain besides the present [freqtrade documentation](https://www.freqtrade.io/en/latest/freqai/).
10+
FreqAI is, and always will be, a not-for-profit, open source project. FreqAI does *not* have a crypto token, FreqAI does *not* sell signals, and FreqAI does not have a domain besides the present [freqtrade documentation](https://www.freqtrade.io/en/stable/freqai/).
1111

1212
Features include:
1313

docs/strategy-callbacks.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ class AwesomeStrategy(IStrategy):
225225
e.g. returning -0.05 would create a stoploss 5% below current_rate.
226226
The custom stoploss can never be below self.stoploss, which serves as a hard maximum loss.
227227
228-
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-advanced/
228+
For full documentation please go to https://www.freqtrade.io/en/stable/strategy-advanced/
229229
230230
When not implemented by a strategy, returns the initial stoploss value.
231231
Only called when use_custom_stoploss is set to True.
@@ -805,7 +805,7 @@ class AwesomeStrategy(IStrategy):
805805
Timing for this function is critical, so avoid doing heavy computations or
806806
network requests in this method.
807807
808-
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-advanced/
808+
For full documentation please go to https://www.freqtrade.io/en/stable/strategy-advanced/
809809
810810
When not implemented by a strategy, returns True (always confirming).
811811
@@ -853,7 +853,7 @@ class AwesomeStrategy(IStrategy):
853853
Timing for this function is critical, so avoid doing heavy computations or
854854
network requests in this method.
855855
856-
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-advanced/
856+
For full documentation please go to https://www.freqtrade.io/en/stable/strategy-advanced/
857857
858858
When not implemented by a strategy, returns True (always confirming).
859859
@@ -991,7 +991,7 @@ class DigDeeperStrategy(IStrategy):
991991
This means extra entry or exit orders with additional fees.
992992
Only called when `position_adjustment_enable` is set to True.
993993
994-
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-advanced/
994+
For full documentation please go to https://www.freqtrade.io/en/stable/strategy-advanced/
995995
996996
When not implemented by a strategy, returns None
997997
@@ -1118,7 +1118,7 @@ class AwesomeStrategy(IStrategy):
11181118
This only executes when a order was already placed, still open (unfilled fully or partially)
11191119
and not timed out on subsequent candles after entry trigger.
11201120
1121-
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-callbacks/
1121+
For full documentation please go to https://www.freqtrade.io/en/stable/strategy-callbacks/
11221122
11231123
When not implemented by a strategy, returns current_order_rate as default.
11241124
If current_order_rate is returned then the existing order is maintained.

docs/strategy_migration.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -594,9 +594,9 @@ Features will now expand automatically. As such, the expansion loops, as well as
594594
More details on how these config defined parameters accelerate feature engineering
595595
in the documentation at:
596596
597-
https://www.freqtrade.io/en/latest/freqai-parameter-table/#feature-parameters
597+
https://www.freqtrade.io/en/stable/freqai-parameter-table/#feature-parameters
598598
599-
https://www.freqtrade.io/en/latest/freqai-feature-engineering/#defining-the-features
599+
https://www.freqtrade.io/en/stable/freqai-feature-engineering/#defining-the-features
600600
601601
:param df: strategy dataframe which will receive the features
602602
:param period: period of the indicator - usage example:
@@ -657,9 +657,9 @@ Basic features. Make sure to remove the `{pair}` part from your features.
657657
More details on how these config defined parameters accelerate feature engineering
658658
in the documentation at:
659659
660-
https://www.freqtrade.io/en/latest/freqai-parameter-table/#feature-parameters
660+
https://www.freqtrade.io/en/stable/freqai-parameter-table/#feature-parameters
661661
662-
https://www.freqtrade.io/en/latest/freqai-feature-engineering/#defining-the-features
662+
https://www.freqtrade.io/en/stable/freqai-feature-engineering/#defining-the-features
663663
664664
:param df: strategy dataframe which will receive the features
665665
dataframe["%-pct-change"] = dataframe["close"].pct_change()
@@ -690,7 +690,7 @@ Basic features. Make sure to remove the `{pair}` part from your features.
690690
691691
More details about feature engineering available:
692692
693-
https://www.freqtrade.io/en/latest/freqai-feature-engineering
693+
https://www.freqtrade.io/en/stable/freqai-feature-engineering
694694
695695
:param df: strategy dataframe which will receive the features
696696
usage example: dataframe["%-day_of_week"] = (dataframe["date"].dt.dayofweek + 1) / 7
@@ -713,7 +713,7 @@ Targets now get their own, dedicated method.
713713
714714
More details about feature engineering available:
715715
716-
https://www.freqtrade.io/en/latest/freqai-feature-engineering
716+
https://www.freqtrade.io/en/stable/freqai-feature-engineering
717717
718718
:param df: strategy dataframe which will receive the targets
719719
usage example: dataframe["&-target"] = dataframe["close"].shift(-1) / dataframe["close"]

0 commit comments

Comments
 (0)