public ActionResult AddWatchList(int groupId, string stockCode)
 {
     _watchListService.QuickAddWatchList(groupId, stockCode);
     return(RedirectToAction("Index", new { id = groupId }));
 }