convertCurrency: convertCurrency

Description Usage Arguments Author(s) Examples

Description

Betfair convertCurrency

Usage

1
convertCurrency(amount, fromCurrency, toCurrency)

Arguments

amount

amount

fromCurrency

fromCurrency

toCurrency

toCurrency

Author(s)

colin@betwise.co.uk

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function(amount, fromCurrency, toCurrency)
{
  v <- .bfapi(match.call(), service=Global)
  z <- .xmlp("errorCode", v)
  if(is.null(z)) return(v)
  if(z != "OK") return(z)
  z <- .xmlp("convertedAmount", v)
  return(as.numeric(z))
  }

bwlewis/betfair documentation built on May 13, 2019, 9:05 a.m.