Crates.io Build Status MIT licensed Apache-2.0 licensed

bitfinex-rs

Unofficial Rust Library for the Bitfinex API V2

Risk Warning

It is a personal project, use at your own risk. I will not be responsible for your investment losses. Cryptocurrency investment is subject to high market risk.

Usage

Add this to your Cargo.toml

toml [dependencies] bitfinex = { git = "https://github.com/wisespace-io/bitfinex-rs.git" }

PUBLIC ENDPOINTS

```rust extern crate bitfinex;

use bitfinex::api::; use bitfinex::pairs::; use bitfinex::currency::; use bitfinex::precision::;

fn main() { let api = Bitfinex::new(None, None);

// TICKER
let trading_pair = api.ticker.trading_pair(ETHUSD);
match trading_pair {
    Ok(answer) => println!("bid: {:?}  ask: {:?}", answer.bid, answer.ask),
    Err(e) => println!("Error: {}", e),
}

let funding_currency = api.ticker.funding_currency(USD);
match funding_currency {
    Ok(answer) => println!("bid: {:?}  ask: {:?}", answer.bid, answer.ask),
    Err(e) => println!("Error: {}", e),
}

// TRADES
let trading_pairs = api.trades.trading_pair(ETHUSD);
match trading_pairs {
    Ok(trades) => {
        for trade in &trades {
            println!("Trading => amount: {:?}  price: {:?}", trade.amount, trade.price);
        }
    },
    Err(e) => println!("Error: {}", e),
}

let funding_currency = api.trades.funding_currency(USD);
match funding_currency {
    Ok(trades) => {
        for trade in &trades {
            println!("Funding => amount: {:?}  price: {:?}", trade.amount, trade.price);
        }
    },
    Err(e) => println!("Error: {}", e),
}

// BOOK
let trading_pairs = api.book.trading_pair(ETHUSD, P0);
match trading_pairs {
    Ok(books) => {
        for book in &books {
            println!("Trading => price: {:?} amount: {:?}", book.price, book.amount);
        }
    },
    Err(e) => println!("Error: {}", e),
}

let funding_currency = api.book.funding_currency(USD, P0);
match funding_currency {
    Ok(books) => {
        for book in &books {
            println!("Funding => rate: {:?} amount: {:?}", book.rate, book.amount);
        }
    },
    Err(e) => println!("Error: {}", e),
}

// CANDLES
let last = api.candles.last(ETHUSD, "1m");
match last {
    Ok(answer) => println!("Candle Last => High: {:?} low: {:?}", answer.high, answer.low),
    Err(e) => println!("Error: {}", e),
}

let history = api.candles.history(ETHUSD, "12h");
match history {
    Ok(candles) => {
        for candle in &candles {
            println!("Candle History => High: {:?} Low: {:?}", candle.high, candle.low);
        }
    },
    Err(e) => println!("Error: {}", e),
}

} ```

PRIVATE ENDPOINTS

Wallets, Orders, Trades, Margin and Funding Info, see example

Public Channels (Websockets)

Ticker example

Other Exchanges

If you use Binance check out my Rust library for Binance API