Skip to content

Instantly share code, notes, and snippets.

View aaramirez's full-sized avatar

Alexander A. Ramírez M. aaramirez

View GitHub Profile

Keybase proof

I hereby claim:

  • I am aaramirez on github.
  • I am arvision (https://keybase.io/arvision) on keybase.
  • I have a public key whose fingerprint is D9AA 7B93 08B0 956D 13F1 C3C2 73D1 6685 EC2A B449

To claim this, I am signing this object:

@aaramirez
aaramirez / server.R
Last active September 2, 2017 22:19
Aplicación Shiny para mostrar gráficos de Acciones del Mercado Americano
library(shiny)
library(quantmod)
shinyServer(function(input, output) {
stockdata <- reactive({
getSymbols(input$accion, src="google", from = input$fechadesde,
to = input$fechahasta, auto.assign = FALSE)
})
output$grafico <- renderPlot({