mljones

2-Year MA Multiplier

This is a recreation of the chart from "Bitcoin Investor Tool: 2-Year MA Multiplier" at lookintobitcoin by Philip Swift.

It gives an idea of BTC swings on a 2 year period with the highs being marked by 5x the 2 year SMA. This could be useful on other alts like LTC and Eth.

Source:

//@version=3
// based on Bitcoin Investor Tool: 2-Year MA Multiplier
// lookintobitcoin com/charts/bitcoin-investor-tool/
study(title="2-Year MA", overlay=true)
avg = sma(close, 730)
avgMult = avg*5
avgPlot=plot(avg, color = green, linewidth = 1)
avgMultPlot=plot(avgMult, color = red, linewidth = 1)

fill(avgPlot, avgMultPlot)
Script de código aberto

Dentro do verdadeiro espírito TradingView, o autor deste script publicou ele como um script de código aberto, para que os traders possam compreender e checar ele. Um viva ao autor! Você pode usá-lo gratuitamente, mas a reutilização deste código em uma publicação é regida pelas Regras da Casa. Você pode favoritá-lo para usá-lo em um gráfico.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.

Quer usar esse script no gráfico?