tweaks to docs (#200)

This commit is contained in:
Dominic Wong
2021-09-02 15:23:24 +01:00
committed by GitHub
parent 2e5af32faf
commit d378ef2de5
39 changed files with 83 additions and 88 deletions

View File

@@ -1,8 +1,8 @@
Foreign Exchange (FX) rates
Foreign exchange (FX) rates
# Forex Service
Real-time and Historical Foreign Exchange (FX) rates from over 200 world currencies.
Real-time and historical foreign exchange (FX) rates for over 200 world currencies. Get the latest rates and bid/ask prices.
Powered by [Finage](https://finage.co.uk)

View File

@@ -10,7 +10,7 @@ service Forex {
rpc History(HistoryRequest) returns (HistoryResponse) {}
}
// Get the last price for a given forex ticker
// Get the latest price for a given forex ticker
message PriceRequest {
// forex symbol e.g GBPUSD
string symbol = 1;
@@ -23,7 +23,7 @@ message PriceResponse {
double price = 2;
}
// Get the last quote for the forex
// Get the latest quote for the forex
message QuoteRequest {
// the forex symbol e.g GBPUSD
string symbol = 1;