//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)
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)
Penafian
Maklumat dan penerbitan adalah tidak dimaksudkan untuk menjadi, dan tidak membentuk, nasihat untuk kewangan, pelaburan, perdagangan dan jenis-jenis lain atau cadangan yang dibekalkan atau disahkan oleh TradingView. Baca dengan lebih lanjut di Terma Penggunaan.
Penafian
Maklumat dan penerbitan adalah tidak dimaksudkan untuk menjadi, dan tidak membentuk, nasihat untuk kewangan, pelaburan, perdagangan dan jenis-jenis lain atau cadangan yang dibekalkan atau disahkan oleh TradingView. Baca dengan lebih lanjut di Terma Penggunaan.