Technical analysis by user161803 about Symbol BTC on 3/1/2024
https://sahmeto.com/message/3313717
BTC Math
:Neutral
Price at Publish Time:
$60,857.91

// version =4 strategy("Pie Topd", overlay=true) //when viewed on the daily chart, this has accurately predicted btc tops only. seriously, it comes pretty close. it does so by calculating when the sma350x2 green crosses down the sma111 red. idk how. it just does. that's the power of mathematics. and remember this: it works until it doesn't. 2.29.2024 //variables below sma1=sma(close, 111) sma2=sma(close, 350)*2 // //(111x350*2) sma Strategy// plot(sma1,"sma111",color.red, linewidth=3, transp=0) plot(sma2,"sma350x2",color.green, linewidth=3, transp=0) if crossunder(sma2,sma1) label.new(bar_index, high, "Price:"+tostring(high) + "\nVol:"+ tostring(volume), style=label.style_labeldown, color=color.red)
Source Message: TradingView