public async Task <ActionResult> Create(FormCollection collection)
        {
            try
            {
                var rand              = new Random();
                var id                = rand.Next().ToString();
                var ticker            = collection["Ticker"].ToString();
                var tickerPrice       = Convert.ToDouble(collection["Ticker"]);
                var time              = Convert.ToDateTime(collection["Time"]);
                var stockPriceHistory = new StockPriceHistory()
                {
                    Id          = id,
                    Ticker      = ticker,
                    TickerPrice = tickerPrice,
                    Time        = time
                };
                await StockPriceHistoryLib.InsertStockPriceHistory(stockPriceHistory);

                return(RedirectToAction("Index"));
            }
            catch (Exception ex)
            {
                return(View());
            }
        }