Function cryptocompare::get_price_multi_full [] [src]

pub fn get_price_multi_full(
    fsyms: &str,
    tsyms: &str,
    options: &Options
) -> Result<Value, Box<Error>>

Get all the current trading info of any list of cryptocurrencies in any other currency that you need.

If the crypto does not trade directly into the toSymbol requested, BTC will be used for conversion

Example

    let option: Options = Options {exchanges: "Bitfinex", try_conversion: false};
    let price_multi_full = cryptocompare::get_price_multi_full("IOT", "USD,BTC,ETH", &option);