stable/tests/strategy/strats/broken_strats/legacy_strategy_v1.py

31 lines
624 B
Python
Raw Normal View History

# type: ignore
2020-09-28 17:43:15 +00:00
from pandas import DataFrame
2021-09-21 05:11:53 +00:00
from freqtrade.strategy import IStrategy
2020-09-28 17:43:15 +00:00
# Dummy strategy - no longer loads but raises an exception.
2021-08-26 05:04:33 +00:00
class TestStrategyLegacyV1(IStrategy):
minimal_roi = {
"40": 0.0,
"30": 0.01,
"20": 0.02,
"0": 0.04
}
stoploss = -0.10
timeframe = '5m'
def populate_indicators(self, dataframe: DataFrame) -> DataFrame:
return dataframe
def populate_buy_trend(self, dataframe: DataFrame) -> DataFrame:
return dataframe
def populate_sell_trend(self, dataframe: DataFrame) -> DataFrame:
return dataframe