13,192 strategies found
Chinmaychinmayk/freqtrade_project
This is a sample strategy to inspire you. More information in https://www.freqtrade.io/en/latest/strategy-customization/
Chinmaychinmayk/freqtrade_project
Chinmaychinmayk/freqtrade_project
Breakout Strategy: - Long Entry: When price breaks above 20-bar high - Short Entry: When price breaks below 20-bar low - Stoploss: Based on 3-bar high/low with trailing - Only one trade open at a time
heaven010210/freqtrade-strategies-that-work
RSIDirectionalWithTrendSlow author@: Paul Csapak github@: https://github.com/paulcpk/freqtrade-strategies-that-work
heaven010210/freqtrade-strategies-that-work
RSIDirectionalWithTrend author@: Paul Csapak github@: https://github.com/paulcpk/freqtrade-strategies-that-work
heaven010210/freqtrade-strategies-that-work
MACDCrossoverWithTrend author@: Paul Csapak github@: https://github.com/paulcpk/freqtrade-strategies-that-work
heaven010210/freqtrade-strategies-that-work
EMAPriceCrossoverWithThreshold author@: Paul Csapak github@: https://github.com/paulcpk/freqtrade-strategies-that-work
heaven010210/freqtrade-strategies-that-work
DoubleEMACrossoverWithTrend author@: Paul Csapak github@: https://github.com/paulcpk/freqtrade-strategies-that-work
ken2190/freqtrade-strategies-5
ken2190/freqtrade-strategies-5
ken2190/freqtrade-strategies-5
ken2190/freqtrade-strategies-5
Miku_PP_v3 La base de la Estrategia es: Miku_PP_v2 y Miku_1m_5m_CSen44_1_5m
ken2190/freqtrade-strategies-5
buy: MACD crosses MACD signal above and CCI < -50 sell: MACD crosses MACD signal below and CCI > 100
ken2190/freqtrade-strategies-5
PASTE OUTPUT FROM HYPEROPT HERE
ken2190/freqtrade-strategies-5
ken2190/freqtrade-strategies-5
Please only use this with TrailingBuy
ken2190/freqtrade-strategies-5
BB_RPB_TSL @author jilv220 Simple bollinger brand strategy inspired by this blog ( https://hacks-for-life.blogspot.com/2020/12/freqtrade-notes.html ) RPB, which stands for Real Pull Back, taken from ( https://github.com/GeorgeMurAlkh/freqtrade-stuff/blob/main/user_data/strategies/TheRealPullbackV2.py ) The trailing custom stoploss taken from BigZ04_TSL from Perkmeister ( modded by ilya ) I modified it to better suit my taste and added Hyperopt for this strategy.
ken2190/freqtrade-strategies-5
BB_RPB_TSL @author jilv220 Simple bollinger brand strategy inspired by this blog ( https://hacks-for-life.blogspot.com/2020/12/freqtrade-notes.html ) RPB, which stands for Real Pull Back, taken from ( https://github.com/GeorgeMurAlkh/freqtrade-stuff/blob/main/user_data/strategies/TheRealPullbackV2.py ) The trailing custom stoploss taken from BigZ04_TSL from Perkmeister ( modded by ilya ) I modified it to better suit my taste and added Hyperopt for this strategy.
ken2190/freqtrade-strategies-5
BB_RPB_TSL @author jilv220 Simple bollinger brand strategy inspired by this blog ( https://hacks-for-life.blogspot.com/2020/12/freqtrade-notes.html ) RPB, which stands for Real Pull Back, taken from ( https://github.com/GeorgeMurAlkh/freqtrade-stuff/blob/main/user_data/strategies/TheRealPullbackV2.py ) The trailing custom stoploss taken from BigZ04_TSL from Perkmeister ( modded by ilya ) I modified it to better suit my taste and added Hyperopt for this strategy.
krel99/SQX-Freqtrade-Strategies
Strategy 0.4536 - Converted from StrategyQuantX
krel99/SQX-Freqtrade-Strategies
Strategy 0.4501 - Converted from StrategyQuantX
krel99/SQX-Freqtrade-Strategies
Strategy 0.2422 - Converted from StrategyQuantX
krel99/SQX-Freqtrade-Strategies
V4 goals (based on your feedback): - Trade MORE often (closer to V2 frequency). - Still robust: "further positioning" via adaptive spacing: * long-term trend adaptive spacing * ATR adaptive spacing (current regime) * spacing widens as bot_state increases (deeper adds further apart) - Keep additive DCA: 1, +2, +3 ... (no martingale) - Keep max_entries constraint exactly (6..8, max = 8 total = 7 adds + base) - Keep candle-count / hyperopt safe time handling. - Do NOT use populate_indicators().
krel99/SQX-Freqtrade-Strategies
GridBotV3 goals: - Keep GridBotV2 structure (state machine + additive DCA). - Improve robustness: adaptive spacing based on long-term trend strength. - Reduce "death by ROI exits": enable exit_profit_only by default (prevents loss exits). - Keep it simple: same gating idea (post-move + low-vol) + light MA filters for first entry. - No populate_indicators() calculations (hyperopt-safe as you requested).