🛅Bitcoin infinite volatility #pinescript

〽️〽️〽️〽️〽️〽️〽️〽️〽️🎬📸🖱

my technique is always the same it is to establish trendlines until the break and the changes in trend there are very well-known facts like this one where we have areas that will be favorable ☣ to novice traders' entries so that they can lose as much money as possible it is the big institutions and the big capitals that make these areas in order to fleece most of the traders🎞🎞🎞🎞🎞🎞🎞🎞🎞🎞🕯

🟢🟢🟢currently Bitcoin has 80% volatility since we have just had a very very large descent which corresponds to the 4th summit quite simply and we are therefore in a bearish trend but it goes up it goes down and there is a lot of noise we cannot find our way in fact in all these new trends finally

🈴️🈴️🈴️🈴️💾🈴️🈴️

🎛 I would nevertheless like to share a tool that is useful in a totally incredible volatility, it is a tool that will show trend reinforcements, that is to say that we will be able to see over time the highest peaks and the lowest peaks and to what extent they will be able to strengthen in fact in the future.

🆓️🆓️🆓️🆓️🆓️🆓️🆓️🆓️🆓️🆓️

🔊 it will show where we are in the support and resistance zone.

💠💠💠💠💠💠💠💠💠💠💠💠💠💠💠

📣 this is very useful when there is very, very high volatility to know where we are and where we are heading.

🟪☎️🟪🟪🟪🟪🟪🟪🟪🟪🟪🟪🟪🟪🟪

// 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=5

indicator("rupture",overlay=true)

t = input.int(13,"proche")

r = input.int( 83,"far")

haut = ta.highest(high,t)

bas = ta.lowest(low,t)

hautl = ta.highest(high,r)

basl = ta.lowest(low,r)

hi = ta.highestbars(high, t)

bi = ta.lowestbars(low, t)

hil = ta.highestbars(high, r)

bil = ta.lowestbars(low, r);

haut := close[math.abs(hi)]

bas := close[math.abs(bi)]

hautl := close[math.abs(hil)]

basl := close[math.abs(bil)]

// close the index

var line future_line = na

var table stats = table.new(position.bottom_right, 1, 9, border_width=1, frame_color=color.black, frame_width=2)

table.cell(stats, 0, 2, str.tostring(hil), bgcolor=close-close[3]>0?color.green:color.red)

//ble.cell(stats,0,3,rsilogo+"rsi:"+str.tostring(rsi_value))

if (not na(future_line))

line.delete(future_line)

var line future_lineh = na

if (not na(future_lineh))

line.delete(future_lineh)

if ( bar_index>0)

future_line := line.new(bar_index-math.abs(bil)-288,basl , bar_index-math.abs(bi)+288, bas,xloc.bar_index, color=color.green, width=2)

future_lineh := line.new(bar_index-math.abs(hil)-288, hautl, bar_index+hi+288,haut ,xloc.bar_index,color= color.red, width=2)

//future_line := line.new( bi, bas, bil, basl, xloc.bar_index, color=color.red, width=2)

// Line connecting the high points

//future_lineh := line.new( hi, haut, hil, hautl, xloc.bar_index, color=color.red, width=2)

//fuuture_line := line.new(bar_index - bi, bas, bar_index - bil, basl, xloc.bar_index, color=color.red, width=2)

// Line connecting the high points

//future_lineh := line.new(bar_index - hi, haut, bar_index - hil, hautl, xloc.bar_index, color=color.red, width=2)

//plot(close)