Hi! I faced up with this issue too. The problem is into this code:
TickSize = Convert.ToDecimal(data["tick_size"]);
data["tick_size"] is a string, for example "0.25". It has '.' (dot) as separator, but my current system culture use ',' (comma) as se…