Marfusios/tradingview-udf-provider

newtonsoft json problem

Closed this issue · 1 comments

when use
.AddNewtonsoftJson(options => { options.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore; });
instead of :
.AddJsonOptions(opts => { opts.JsonSerializerOptions.IgnoreNullValues = true; })
get below error in console
Uncaught (in promise) Error: Unsupported datafeed configuration. Must either support search, or support group request

is any way to use newtonsoft json?

add
[JsonProperty("propertyname")]
to all models in core and resolve problem and support newtonsoftjson