library(shiny)
library(rsconnect)
library(shinyjs)
shinyUI(fluidPage(
  
  titlePanel("index predictive plot and predictive table"),
  mainPanel(
    textInput( "index1",label = "code") ,
    textOutput("yahooop"),
    actionButton("goButton", "Go!"),
    textOutput("income1"),
    
    textOutput("income2"),
    textOutput("income3"),
    textOutput("start.date1"),
    tableOutput("start.date"),
    
    

tabsetPanel(    
  tabPanel(  "op.index",
  plotOutput("open.predict.plot1"),
  textOutput("open.table1"),
    tableOutput("open.value1"),
  textOutput("open.table2"),
    tableOutput("open.predict.table1"),
    
  ),
  tabPanel( "close.index",
    plotOutput("close.predict.plot1"),
    textOutput("close.table1"),
    tableOutput("close.value1"),
  
    textOutput("close.table2"),
    tableOutput("close.predict.table1"),
   
    
))
    ,width = 15,height=15))) # your code goes here