Here is the Strat's "JUST THE 2-2's PLEASE!! with reversals" SCAN for anyone who wants to use it created by CHAT GBT 5:
Code:
# --- Scan: 2D-2U and 2U-2D Reversals (Primary TF only)
def H = high;
def L = low;
# Bar type definitions
def twoup = H > H[1] and L >= L[1];
def twodown = H <= H[1] and L < L[1];
# Bullish reversal
def TwoTwoBull = twoup and twodown[1];
# Bearish reversal
def TwoTwoBear = twodown and twoup[1];
# Scan criteria:
plot scan = TwoTwoBull or TwoTwoBear;