Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
Squeze+adx+media5020
Bitcoin / TetherUS
Squeze+adx+media5020
By rober98303
Follow
Follow
Oct 8
0
Oct 8
//
version
=5
indicator("Indicador Combinado", overlay=true)
// Cálculos de los indicadores (ejemplo simplificado)
squeeze = ta.squeeze(12, 20, 2, 3)
adx = ta.adx(14)
sma50 = ta.sma(close, 50)
sma10 = ta.sma(close, 10)
// Combinación de los indicadores
combined_indicator = squeeze * adx * (sma10 > sma50)
// Visualización
plot(combined_indicator, color=color.blue, linewidth=2)
// Señales (ejemplo básico)
plotshape(cross(sma10, sma50) and combined_indicator > 50, style=shape.triangleup, location=location.belowbar, color=color.green)
Technical Indicators
Trend Analysis
rober98303
Follow
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the
Terms of Use
.