forked from psmlbhor/Stock-Prediction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverBackup.txt
executable file
·83 lines (67 loc) · 3.2 KB
/
serverBackup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
library(shiny)
source("listfiles.R")
source("runner.R")
source("polynomialplot.R")
source("stlplot.R")
source("actualplot.R")
source("alllines.R")
server <- function(input,output){
#THESE TWO LINES RENDER THE DROP DOWN LIST DYNAMICALLY
########################################################################
stock_names <- reactive({
return(listfiles())
})
output$stocknames <- renderUI({
selectInput("choices","Select your choice",choices = stock_names())
})
########################################################################
#THIS IS THE MOTHER OF ALL REACTIVE CALCULATIONS THAT WE SHALL BE DOING
#THE FUNDAMENTAL OUTPUT IS THE CHOICE OF ON WHICH STOCK TO WORK
########################################################################
best_predict <- reactive({
input$choices
})
########################################################################
#THIS EVENT LISTENS FOR THE BUTTON PRESS AND THE GIVES THE PREDICTED RESULT
########################################################################
predicted_winner <- eventReactive(input$calculate,{
return(runner(best_predict()))
})
########################################################################
#PRINTING THE WINNING MODEL
########################################################################
output$winner <- renderPrint({
paste("Winner for ",best_predict()," is ",predicted_winner(),sep = "")
})
########################################################################
#THESE LINES PRINT THE CURRENTLY SELECTED INPUT(MAY BE REMOVED)
########################################################################
output$text <- renderPrint({
paste("Now calculating all the predictions for",best_predict(),sep=" ")
})
########################################################################
#THE FOLLOWING LINES RENDER A PLOT TO THE APP
########################################################################
output$polytrend <- renderPlot({
return(polynomialplot(best_predict()))
})
########################################################################
#THE FOLLOWING LINES RENDER A PLOT TO THE APP
########################################################################
output$stltrend <- renderPlot({
return(stlplot(best_predict()))
})
########################################################################
#THE FOLLOWING LINES RENDER A PLOT TO THE APP
########################################################################
output$actualtrend <- renderPlot({
return(actualplot(best_predict()))
})
########################################################################
#THE FOLLOWING LINES RENDER A PLOT TO THE APP
########################################################################
output$alllinestrend <- renderPlot({
return(alllines(best_predict()))
})
########################################################################
}