Please keep in mind that backtesting only displays a picture of the past and may not be very accurate depending on the strategy.
However, it could still give you a trend or indication during a specific market condition.
A lot of strategies introduce lookahead bias
Backtests are conducted every month, analyzing the performance of the previous month's data.
Please note that only the
first class in a strategy file is currently supported for backtesting.
Latest Comments
Re: maqun2025 - Strategy - Freqtrade Strategy Ninjahmm, looks very good on backtesting, but what about forward testing results?
by: akaSmirnoff on Wednesday, 28 May 2025, 17:34:37
Re: binance - Strategy - Freqtrade Strategy Ninja
The primary suspect is the call to ta.STOCHF. You're using import talib.abstract as ta. The signature for talib.abstract.STOCHF is:STOCHF(inputs, fastk_period=5, fastd_period=3, fastd_matype=0)Your current code calls it as:stoch_fast = ta.STOCHF(dataframe, 5, 3, 0, 3, 0)The arguments 5, 3, and 0 correctly map to fastk_period, fastd_period, and fastd_matype respectively. However, the additional 3, 0 are extraneous arguments for the talib.abstract.STOCHF function. Passing incorrect arguments to TA-Lib functions can lead to undefined behavior, including the generation of corrupted data that might later be interpreted as a numpy.void type by pandas, causing the error you're seeing during the trim_dataframe step.Fix for STOCHF call:You need to correct the ta.STOCHF call by removing the extra arguments.
by: Олександр on Wednesday, 28 May 2025, 07:21:56
Re: StarMark5mv3_1 - Strategy - Freqtrade Strategy Ninja
I'm amazed how you can achieve such high profits?
by: parzival on Tuesday, 27 May 2025, 23:03:34
Re: binance - Strategy - Freqtrade Strategy Ninja
script error!It seems that the latest version of freqtrade is not supported
by: wen Smith on Sunday, 25 May 2025, 23:03:22
Re: newstrategy_modify_support_ft - Strategy - Freqtrade Strategy Ninja
Hello can I ask which configuration is this strategy using?
by: legendarydemo on Saturday, 24 May 2025, 23:43:03