public ExchangeBL3PAPI()
        {
            MarketSymbolIsUppercase = true;
            MarketSymbolIsReversed  = true;
            MarketSymbolSeparator   = string.Empty;
            WebSocketOrderBookType  = WebSocketOrderBookType.FullBookAlways;
            RequestContentType      = "application/x-www-form-urlencoded";
            RequestMethod           = "POST";

            RateLimit = new RateGate(600, TimeSpan.FromMinutes(10));

            converterToEight = new FixedIntDecimalConverter(8);
            converterToFive  = new FixedIntDecimalConverter(5);
        }
 public FixedIntDecimalJsonConverter(int multiplier)
 {
     converter = new FixedIntDecimalConverter(multiplier);
 }