MAX Exchange API Ruby SDK
A ruby implementation of MAX exchange API
gem 'max_exchange_api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install max_exchange_api
# Set default timeout time
MaxExchangeApi.default_config.timeout = 3 # seconds
# Create an api instance with custom timeout time
api = MaxExchangeApi::PublicApi.new(config: { timeout: 12 })
api = MaxExchangeApi::PrivateApi.new(access_key, secret_key, config: { timeout: 12 })
require 'logger'
# Print log to standard output
MaxExchangeApi.default_config.logger = Logger.new(STDOUT)
# Print log to file
MaxExchangeApi.default_config.logger = Logger.new('log/api.log')
# Create an api instance with custom logger
api = MaxExchangeApi::PublicApi.new(config: { logger: Logger.new(STDOUT) })
api = MaxExchangeApi::PrivateApi.new(access_key, secret_key, config: { logger: Logger.new(STDOUT) })
@api = MaxExchangeApi::PublicApi.new
Get all VIP level fees.
rb
@api.vip_levels
Get VIP level fee by level.
rb
@api.vip_levels(2)
Get all available currencies.
rb
@api.currencies
Get OHLC(k line) of a specific market.
rb
# use default parameters
@api.k('btctwd')
# provide all possible parameters
@api.k('btctwd', limit: 30, period: 1, timestamp: 1624705402)
Get depth of a specified market.
rb
# use default parameters
@api.depth('maxtwd')
# provide all possible parameters
@api.depth('maxtwd', limit: 10, sort_by_price: true)
Get recent trades on market, sorted in reverse creation order.
rb
# use default parameters
@api.trades('btctwd')
# provide all possible parameters
@api.trades(
'maxtwd',
timestamp: 1624705402,
from: 68444,
to: 69444,
order_by: 'asc',
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
Get all available markets.
rb
@api.markets
Overview of market data for all tickers.
rb
@api.summary
Get ticker of specific market.
rb
@api.tickers('btctwd')
Get ticker of all markets.
rb
@api.tickers
Get server current time, in seconds since Unix epoch.
rb
@api.timestamp
access_key = 'YOUR_ACCESS_KEY'
secret_key = 'YOUR_SECRET_KEY'
@api = MaxExchangeApi::PrivateApi.new(access_key, secret_key)
get your executed trades related to a order
rb
# use max unique order id
@api.my_trades_of_order(123456)
# use user specified order id
@api.my_trades_of_order('MY_ORDER_123456', use_client_id: true)
get your executed trades, sorted in reverse creation order
rb
# use default parameters
@api.my_trades('btctwd')
# provide all possible parameters
@api.my_trades(
'maxtwd',
timestamp: 1624705402,
from: 68444,
to: 69444,
order_by: 'asc',
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
get your external withdrawals history
rb
# use default parameters
@api.withdrawals('max')
# provide all possible parameters
@api.withdrawals(
'max',
'confirmed',
from: 68444,
to: 69444,
state: 'confirmed',
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
get details of a specific external withdraw
rb
@api.withdrawal('withdraw_id')
submit a withdrawal. IP whitelist for api token is required.
rb
@api.create_withdrawal!('twd', 'withdraw_address_id', 100000)
get personal profile information
rb
@api.member_profile
get your profile and accounts information
rb
@api.me
get VIP level info
rb
@api.vip_level
get personal accounts information
rb
@api.accounts
get personal accounts information of a currency
rb
@api.account(currnecy)
get your deposits history
rb
# use default parameters
@api.deposits('max')
# provide all possible parameters
@api.deposits(
'max',
'confirmed',
from: 68444,
to: 69444,
state: 'accepted',
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
get details of a specific deposit
rb
@api.deposit('transaction_id')
The addresses could be empty before generated, please call POST /deposit_addresses in that case
rb
# use default parameters
@api.deposit_addresses
# provide all possible parameters
@api.deposit_addresses(currency: 'twd', pagination: true, page: 3, limit: 15, offset: 5)
Address creation is asynchronous, please call GET /deposit_addresses later to get generated addresses
rb
@api.create_deposit_addresses!('twd')
get withdraw addresses
rb
# use default parameters
@api.withdraw_addresses('twd')
# provide all possible parameters
@api.withdraw_addresses('usdt', pagination: true, page: 3, limit: 15, offset: 5)
get internal transfers history
rb
# use default parameters
@api.internal_transfers
# provide all possible parameters
@api.internal_transfers(
currency: 'btc',
side: 'in',
from: 68444,
to: 69444,
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
get details of a specific internal transfer
rb
@api.internal_transfer('internal_transfer_id')
get rewards history
rb
# use default parameters
@api.rewards
# provide all possible parameters
@api.rewards(
currency: 'btc',
from: 68444,
to: 69444,
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
get specific rewards history
rb
# use default parameters
@api.rewards(reward_type: 'airdrop_rewards')
# provide all possible parameters
@api.rewards(
reward_type: 'airdrop_rewards',
currency: 'btc',
from: 68444,
to: 69444,
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
get max rewards yesterday
rb
@api.max_rewards_yesterday
get yields history
rb
# use default parameters
@api.yields
# provide all possible parameters
@api.yields(
currency: 'usdt',
from: 68444,
to: 69444,
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
get your orders, results is paginated.
rb
# use default parameters
@api.orders('maxtwd')
# provide all possible parameters
@api.orders(
'maxtwd',
state: 'done',
order_by: 'desc',
group_id: 12345,
pagination: true,
page: 3,
limit: 15,
offset: 5,
)
get a specific order.
rb
# use max unique order id
@api.order(123456)
# use user specified order id
@api.order('MY_ORDER_123456', use_client_id: true)
cancel all your orders with given market and side
rb
# use default parameters
@api.cancel_orders!
# provide all possible parameters
@api.cancel_orders!(market: 'maxtwd', side: 'sell', group_id: '123456')
cancel an order
rb
# use max unique order id
@api.cancel_order!(123456)
# use user specified order id
@api.cancel_order!('MY_ORDER_123456', use_client_id: true)
create a sell/buy order
rb
# use default parameters
@api.create_order!('maxtwd', 'buy', 1000, price: 7.5)
# provide all possible parameters
@api.create_order!(
'maxtwd',
'buy',
1000,
price: 7.5,
client_oid: 'MY_ORDER_ID_12345',
stop_price: 8,
ord_type: 'limit',
group_id: 12345678,
)
Create multiple sell/buy orders, orders may be partially accepted, please put your orders as an array in json body.
rb
# use default parameters
@api.create_orders!('maxtwd', [
{ side: 'buy', volume: '1000', price: '7.5' },
{ side: 'buy', volume: '1500', price: '7.2' },
])
# provide all possible parameters
@api.create_orders!('maxtwd', [
{ side: 'buy', volume: '1000', price: '7.5', client_oid: 'MY_ORDER_ID_12345', stop_price: '8', ord_type: 'limit' },
{ side: 'buy', volume: '1500', price: '7.2', client_oid: 'MY_ORDER_ID_12346', stop_price: '8', ord_type: 'limit' },
], group_id: 12345)
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/khiav223577/max_exchange_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.