We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cb94a2 commit b48467bCopy full SHA for b48467b
src/ExchangeSharp/API/Exchanges/OKGroup/ExchangeOKExAPI.cs
@@ -34,6 +34,11 @@ public sealed partial class ExchangeOKExAPI : OKGroupCommon
34
public string BaseUrlV5 { get; set; } = "https://www.okex.com/api/v5";
35
protected override bool IsFuturesAndSwapEnabled { get; } = true;
36
37
+ private ExchangeOKExAPI()
38
+ {
39
+ RateLimit = new RateGate(20, TimeSpan.FromSeconds(2));
40
+ }
41
+
42
public override string PeriodSecondsToString(int seconds)
43
{
44
return CryptoUtility.SecondsToPeriodString(seconds, true);
0 commit comments