C# - ASP/MVC
TypeScript - client script
Kendo UI - ui
Bootstrap - ui
Draper - databse
algorithms
WMA - weighted moving average forecasting
F(t+1) = (Weight1 * D(t)) + (Weight2 * D(t-1)) + (Weight3 * D(t-2)) + ... + (WeightN * D(t-n+1))
Native - Native
ES - exponential smoothing forecasting
F(t+1) = ( Alpha * D(t) ) + (1 - Alpha) * F(t)
ARS - adaptive Rate Smoothing forecasting
SMA - Simple moving average
( Dt + D(t-1) + D(t-2) + ... + D(t-n+1) )
F(t+1) = -----------------------------------------
n