//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)
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。