exchanges

Function exchanges 

Source
pub async fn exchanges() -> Result<Vec<Exchange>>
Expand description

Get list of supported exchanges

Scrapes the Yahoo Finance help page for a list of supported exchanges with their symbol suffixes and data delay information.

ยงExamples

use finance_query::finance;

let exchanges = finance::exchanges().await?;
for exchange in &exchanges {
    println!("{} - {} ({})", exchange.country, exchange.market, exchange.suffix);
}