module BitmexClient

Constants

VERSION

Public Class Methods

http_private_client(key, secret) click to toggle source
# File lib/bitmex_client.rb, line 12
def http_private_client(key, secret)
  Bitmex::HTTP::Private::Client.new(key, secret)
end
http_public_client() click to toggle source
# File lib/bitmex_client.rb, line 8
def http_public_client
  Bitmex::HTTP::Public::Client.new
end

Private Instance Methods

http_private_client(key, secret) click to toggle source
# File lib/bitmex_client.rb, line 12
def http_private_client(key, secret)
  Bitmex::HTTP::Private::Client.new(key, secret)
end
http_public_client() click to toggle source
# File lib/bitmex_client.rb, line 8
def http_public_client
  Bitmex::HTTP::Public::Client.new
end