Wordcloud
Strategy: SqueezeOff
Downloaded: 20220513
Stoploss: 0
The SqueezeOff strategy is a trading strategy that utilizes various technical indicators to determine buy and sell signals in a backtesting environment. Here is a brief description of what the strategy does: In the populate_indicators function: The strategy calculates moving averages (SMA, EMA, TEMA) and exponential moving averages (EMA3, EMA5) of the price data. It calculates the MACD (Moving Average Convergence Divergence) and its components (macd, macdsignal, macdhist).

It computes the Money Flow Index (MFI), Average Directional Index (ADX), and directional movement components (dm_plus, dm_minus, dm_delta).

It calculates the Parabolic SAR (SAR) indicator.

It computes the Relative Strength Index (RSI) and transforms it into the Fisher RSI. It calculates Bollinger Bands (bb_upperband, bb_mid, bb_lowerband) and the percentage gain between the upper band and the closing price (bb_gain). It calculates Keltner Channels (kc_upper, kc_lower, kc_middle). It computes the Donchian Channel (dc_upper, dc_lower, dc_mid), the distance between upper and lower bands (dc_dist), and Fibonacci levels based on the channel (dc_hf, dc_chf, dc_clf, dc_lf). It calculates the squeeze indicators by subtracting Keltner Channel values from Bollinger Band values (sqz_upper, sqz_lower) and identifies squeeze conditions (sqz_on, sqz_off). It calculates the average between Donchian Channel midpoint and TEMA (sqz_ave) and the delta between the closing price and sqz_ave (sqz_delta). It calculates the linear regression of sqz_delta (sqz_val). In the populate_buy_trend function: The strategy defines a list of conditions that must be met for a buy signal. These conditions include a negative sqz_val, optional criteria such as ADX, directional movement, MFI, SAR, MACD, and Fisher RSI, and the transition from a squeeze-off state to a squeeze-on state. If the conditions are met, the 'buy' column of the dataframe is set to 1. In the populate_sell_trend function: The strategy defines a list of conditions that must be met for a sell signal. These conditions include optional criteria such as crossing below Bollinger Bands or Keltner Channels and the price being below the lower bands. If the conditions are met, the 'sell' column of the dataframe is set to 1. Overall, the SqueezeOff strategy combines multiple indicators to identify potential buying opportunities when certain conditions are met and provides sell signals based on different criteria.

stoploss: 0
timeframe: 5m
hash(sha256): b62cd58ce9bf18e05abadccb7088cda7f922be3e4a9513acce696c973127ba87
indicators:
upper sqz_off dc_lf tema sqz_on
kc_lower close dm_delta dc_h mfi
bb_lowerband ema5 sqz_lower bb_gain dc_hf
macdhist sma sqz_delta dc_cl dm_plus
sar sqz_val high macdsignal ema
mid fisher_rsi dc_upper dc_lower dc_clf
macd dc_ch dc_mid ema3 dc_dist
dc_chf adx lower kc_middle kc_upper
dc_l rsi bb_upperband low sqz_of
dm_minus sqz_ave bb_mid sqz_upper

Similar Strategies: (based on used indicators)

Strategy: SqueezeMomentum_2, Similarity Score: 98%
Strategy: SqueezeMomentum_3, Similarity Score: 98%
Strategy: SqueezeOff_2, Similarity Score: 98%
Strategy: Squeeze002, Similarity Score: 96%
Strategy: Squeeze002_2, Similarity Score: 96%
Strategy: Squeeze001, Similarity Score: 76%
Strategy: Squeeze001_2, Similarity Score: 76%

last change: 2024-05-05 11:14:33