Files
OpenBB/website/content/sdk/reference/forex/quote.md
DidierRLopes 4ad995fdd0 Docs/terminalpro and improvement (#5622)
* add first iteration of content for Terminal Pro

* Update index.md

* Update dashboards.md

* Update folders.md

* Update grouping.md

* Update report.md

* Update templates.md

* Update quick-start.md

* Update index.md

* Update index.md

* Update home.md

* Update news.md

* Update index.md

* Update index.md

* Update index.md

* Update data-provider.md

* Update chat-with-widget.md

* Update data-manipulation.md

* Update forecasting.md

* fix: images self closing tags

* fix: only pro visitors can see pro

* inter font

* improve SEO content and restructuring

* add new package for toggle on tutorials

* move folder around

* improve main page of each prod

* small updates and improvements

* fix logo above

* small improvement in headtitle for portfolio funcs

* fix typos from OpenAI's GPT-4

* fix _category_ json

* remove generic SEO words

* add script that generates SEO for documentation

* add missing file

* remove sdk warning message

* fix links for andrew

---------

Co-authored-by: jose-donato <zmcdonato@gmail.com>
Co-authored-by: jose-donato <43375532+jose-donato@users.noreply.github.com>
Co-authored-by: andrewkenreich <andrew.kenreich@gmail.com>
2023-10-30 21:01:29 +00:00

1.4 KiB
Vendored

title, description, keywords
title description keywords
quote Documentation on how to get forex quotes using the OpenBB Terminal. It covers the different parameters that can be used, return types and also gives example usage.
OpenBB Terminal Documentation
Forex Quotes
Python SDK
OpenBB forex.quote function
Forex Quote Parameter Instructions
YahooFinance Forex API
AlphaVantage Forex API

import HeadTitle from '@site/src/components/General/HeadTitle.tsx';

Get forex quote.

Source Code: [link]

openbb.forex.quote(symbol: str, source: str = "YahooFinance")

Parameters

Name Type Description Default Optional
symbol str Forex symbol to get quote for. None False
source str Source to get quote from, by default "YahooFinance" YahooFinance True

Returns

Type Description
pd.DataFrame DataFrame of quote data.

Examples

from openbb_terminal.sdk import openbb
EUR_USD_quote = openbb.forex.quote("EURUSD")
This also supports AlphaVantage and will handle different conventions
EUR_USD= openbb.forex.quote("EUR/USD", source="AlphaVantage")