I don't think you need eventReactive
here - you could just use reactive
, and it will respond to either value changing.
economics_points <- reactive(get_points(input$daterange, 1, input$sigmaThresholdSlider))
EDIT: not sure how to handle the ignoreNULL = FALSE
bit, though, doesn't seem to be an option with reactive
.