As requested, here is the WWMA as an actual script release, I wasn't going to release this at first, but figured I would since it was requested, and I could help shed some light on what it is at the same time.

There is nothing too fancy about the WWMA, it is basically an ema calculated a little differently. I've added an ema with a different length that mirrors the WWMA to help illustrate this. Scroll over the EMA and you will see they are both the same.

Is there an advantage to one or the other?
I honestly couldn't tell you (chime in if you know!). But for those of you who are interested in Wilder, it's good to know what he used to calculate some of his indicators.
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?
study(title="The Lark: Welles Wilder Moving Average",shorttitle="WWMA_LK",overlay=true)

// Inputs
length = input(defval=14)
sd = input(true, title="Show dots?")
ccol = input(true,title="Change Color?")

// Calc
wwma(l,p) =>
    wwma = (nz(wwma[1]) * (l - 1) + p) / l
    
wma = wwma(length,close)

// Styling
col = ccol ?( wma > wma[1] ? #0094FF : #FF3571) : #0094FF
up = wma > wma[1] ? 1 : 0
down = wma < wma[1] ? 1 : 0

// Plots
plot(wma,linewidth=2,color=col)
plot(sd and cross(up,down) ? wma : na,style=circles, linewidth=4, color=col )