# Indicador Alpha Pro

Si llegaste a este artículo, es porque estás necesitando agregar el indicador de Alpha Pro en tu TradingView.

Es supersencillo, aquí les compartimos un video explicativo al detalle de cómo agregar el indicador Alpha Pro en TradingView:

{% embed url="<https://vimeo.com/491829039>" %}

### Código Indicador Alpha Pro <a href="#cdigo-alpha-pro-indicator" id="cdigo-alpha-pro-indicator"></a>

```
//@version=4
study(title="Alpha Pro Indicator", overlay=true)
//----EMA200----
len = 200
src = close
out = ema(src, len)
plot(out, color=#000000)
//----MA50----
len2 = 50
src2 = close
out2 = sma(src2, len2)
plot(out2, color=#ff0303)
//----EMA14----
len1 = 14
src1 = close
out1 = ema(src1, len1)
plot(out1, color=#2637e2)
//

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ayuda.alphaproacademy.com/agregar-indicador-alpha-pro.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
