i am getting a JSONDecodeError when calling in .FTSE in websockets. This appears to be due to invalid raw json being returned. - i,e we are getting key:value pairs where there is no value. i,e it is blank and does not have null.
Other instruments appear ok like BARC.L
e,g using .FTSE u can see the missing null from ACT_FLAG fields.
"THEO_LHDAT" : null,
"THEO_LLDAT" : null,
"ACT_FLAG1" : ,
"ACT_FLAG2" : ,
"ACT_FLAG3" : ,
"ACT_FLAG4" : ,
"ACT_FLAG5" : ,
"GEN_VAL1" : 6590.10,
"GEN_VAL2" : 7716.74,
Using BARC.L these fields are populated in correct json format using null
"ACT_FLAG1":null,
"ACT_FLAG2":null,
"ACT_FLAG3":null,
"ACT_FLAG4":null ,
"ACT_FLAG5":null