Skip to content

Instantly share code, notes, and snippets.

View ashworth-zach's full-sized avatar

Zach Ashworth ashworth-zach

View GitHub Profile
@ashworth-zach
ashworth-zach / chart.js
Created November 17, 2019 17:57
candlestick chart with vanilla js
// let metaData = {
// information:"",
// symbol:"",
// lastRefresh:"",
// outputSize:"",
// timeZone:""
// }
let candleOhlcMappings = [];
namespace Expando
{
public static class ExpandoHelper
{
public static dynamic ParseDictionary(IDictionary<string, object> dict, Type explicitType)
{
if (dict == null)
{
throw new ArgumentNullException("dict", "Dictionary was null, cannot parse a null dictionary");