Skip to content

Commit 8288a5c

Browse files
authoredMar 11, 2025
Merge pull request freqtrade#11481 from mrpabloyeah/add-year-to-backtest-breakdowns
Add year to backtest breakdowns
2 parents d69b156 + 442b29e commit 8288a5c

File tree

7 files changed

+18
-12
lines changed

7 files changed

+18
-12
lines changed
 

‎build_helpers/schema.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@
257257
"enum": [
258258
"day",
259259
"week",
260-
"month"
260+
"month",
261+
"year"
261262
]
262263
}
263264
},

‎docs/commands/backtesting-show.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
usage: freqtrade backtesting-show [-h] [-v] [--no-color] [--logfile FILE] [-V]
33
[-c PATH] [-d PATH] [--userdir PATH]
44
[--export-filename PATH] [--show-pair-list]
5-
[--breakdown {day,week,month} [{day,week,month} ...]]
5+
[--breakdown {day,week,month,year} [{day,week,month,year} ...]]
66
77
options:
88
-h, --help show this help message and exit
@@ -11,8 +11,9 @@ options:
1111
`--export` to be set as well. Example: `--export-filen
1212
ame=user_data/backtest_results/backtest_today.json`
1313
--show-pair-list Show backtesting pairlist sorted by profit.
14-
--breakdown {day,week,month} [{day,week,month} ...]
15-
Show backtesting breakdown per [day, week, month].
14+
--breakdown {day,week,month,year} [{day,week,month,year} ...]
15+
Show backtesting breakdown per [day, week, month,
16+
year].
1617
1718
Common arguments:
1819
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages).

‎docs/commands/backtesting.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ usage: freqtrade backtesting [-h] [-v] [--no-color] [--logfile FILE] [-V]
1515
[--strategy-list STRATEGY_LIST [STRATEGY_LIST ...]]
1616
[--export {none,trades,signals}]
1717
[--export-filename PATH]
18-
[--breakdown {day,week,month} [{day,week,month} ...]]
18+
[--breakdown {day,week,month,year} [{day,week,month,year} ...]]
1919
[--cache {none,day,week,month}]
2020
[--freqai-backtest-live-models]
2121
@@ -65,8 +65,9 @@ options:
6565
Use this filename for backtest results.Requires
6666
`--export` to be set as well. Example: `--export-filen
6767
ame=user_data/backtest_results/backtest_today.json`
68-
--breakdown {day,week,month} [{day,week,month} ...]
69-
Show backtesting breakdown per [day, week, month].
68+
--breakdown {day,week,month,year} [{day,week,month,year} ...]
69+
Show backtesting breakdown per [day, week, month,
70+
year].
7071
--cache {none,day,week,month}
7172
Load a cached backtest result no older than specified
7273
age (default: day).

‎docs/commands/hyperopt-show.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ usage: freqtrade hyperopt-show [-h] [-v] [--no-color] [--logfile FILE] [-V]
44
[--profitable] [-n INT] [--print-json]
55
[--hyperopt-filename FILENAME] [--no-header]
66
[--disable-param-export]
7-
[--breakdown {day,week,month} [{day,week,month} ...]]
7+
[--breakdown {day,week,month,year} [{day,week,month,year} ...]]
88
99
options:
1010
-h, --help show this help message and exit
@@ -18,8 +18,9 @@ options:
1818
--no-header Do not print epoch details header.
1919
--disable-param-export
2020
Disable automatic hyperopt parameter export.
21-
--breakdown {day,week,month} [{day,week,month} ...]
22-
Show backtesting breakdown per [day, week, month].
21+
--breakdown {day,week,month,year} [{day,week,month,year} ...]
22+
Show backtesting breakdown per [day, week, month,
23+
year].
2324
2425
Common arguments:
2526
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages).

‎freqtrade/commands/cli_options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def __init__(self, *args, **kwargs):
224224
),
225225
"backtest_breakdown": Arg(
226226
"--breakdown",
227-
help="Show backtesting breakdown per [day, week, month].",
227+
help="Show backtesting breakdown per [day, week, month, year].",
228228
nargs="+",
229229
choices=constants.BACKTEST_BREAKDOWNS,
230230
),

‎freqtrade/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"VolatilityFilter",
6060
]
6161
AVAILABLE_DATAHANDLERS = ["json", "jsongz", "feather", "parquet"]
62-
BACKTEST_BREAKDOWNS = ["day", "week", "month"]
62+
BACKTEST_BREAKDOWNS = ["day", "week", "month", "year"]
6363
BACKTEST_CACHE_AGE = ["none", "day", "week", "month"]
6464
BACKTEST_CACHE_DEFAULT = "day"
6565
DRY_RUN_WALLET = 1000

‎freqtrade/optimize/optimize_reports/optimize_reports.py

+2
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,8 @@ def _get_resample_from_period(period: str) -> str:
212212
return "1W-MON"
213213
if period == "month":
214214
return "1ME"
215+
if period == "year":
216+
return "1Y"
215217
raise ValueError(f"Period {period} is not supported.")
216218

217219

0 commit comments

Comments
 (0)
Failed to load comments.