Have you heard of support and resistance? These areas where the price bounces, breaks through or not...?

Look carefully, if the price exceeds its resistance, it increases incredibly, you can go Long.

On the contrary, below its support if it pierces it you can enter a SHORT

You will obviously have to combine this with other indicators like a sma33, sma50 etc.

In PINE code, it's very simple

// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/

// © jeromehorus

//@version=6

indicator("ASUPPORT",overlay=true)

// we determine the supports and nearby resistances here

bas = ta.lowest(close,33)

high = ta.highest(close,33)

// green = buy, strong buy if we have just passed above the resistances

//red = sale, strong sale if we have just passed below the supports

plot( close, color= close> haut[13] ? color.green: close< bas[13]? color.red: color.yellow,linewidth=5)

// show supports and resistances

plot(bas, offset=33)

plot(now,offset =33)