public ActionResult HeikinAshi() { var model = BoxData.GetDataFromJson(); ViewBag.DemoSettingsModel = new ClientSettingsModel(); ViewBag.ChartType = C1.Web.Mvc.Finance.ChartType.HeikinAshi; return(View(model)); }
public ActionResult ColumnVolume() { var model = BoxData.GetDataFromJson(); ViewBag.DemoSettingsModel = new ClientSettingsModel() { }; ViewBag.ChartType = C1.Web.Mvc.Finance.ChartType.ColumnVolume; return(View(model)); }
public ActionResult RangeSelector() { var model = BoxData.GetDataFromJson(); ViewBag.DemoSettingsModel = new ClientSettingsModel() { }; ViewBag.ChartType = C1.Web.Mvc.Finance.ChartType.Candlestick; return(View(model)); }
public ActionResult TrendLine() { var model = BoxData.GetDataFromJson(); ViewBag.DemoSettingsModel = new ClientSettingsModel() { Settings = CreateTrendLineSettings() }; return(View(model)); }
public ActionResult FibonacciTool() { var model = BoxData.GetDataFromJson(); ViewBag.DemoSettingsModel = new ClientSettingsModel() { Settings = CreateFibonacciToolSettings() }; return(View(model)); }
public ActionResult Markers() { var model = BoxData.GetDataFromJson().GetRange(0, 20); ViewBag.DemoSettingsModel = new ClientSettingsModel() { Settings = CreateMarkersSettings() }; return(View(model)); }
public ActionResult EventAnnotations() { var model = BoxData.GetDataFromJson(); ViewBag.DemoSettingsModel = new ClientSettingsModel() { }; ViewBag.Tooltips = BoxData.GetAnnotationTooltips(); ViewBag.ChartType = C1.Web.Mvc.Finance.ChartType.Candlestick; return(View(model)); }
public ActionResult MovingAverages() { var model = BoxData.GetDataFromJson(); return(View(model)); }
public ActionResult Overlays() { var model = BoxData.GetDataFromJson(); return(View(model)); }
public ActionResult Indicators() { var model = BoxData.GetDataFromJson(); return(View(model)); }