getDetailAvailableMktDepth: getDetailAvailableMktDepth

Description Usage Arguments Author(s) Examples

Description

Betfair getDetailAvailableMktDepth

Usage

1
getDetailAvailableMktDepth(marketId, selectionId, currencyCode = NULL, asianLineId = NULL, locale = NULL, service = Exchange)

Arguments

marketId

marketId

selectionId

selectionId

currencyCode

currencyCode

asianLineId

asianLineId

locale

locale

service

service

Author(s)

colin@betwise.co.uk

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
##---- 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(
  marketId, selectionId,
  currencyCode=NULL,
  asianLineId=NULL,
  locale=NULL,
  service=Exchange)
{
  v <- .bfapi(match.call(), service=service)
  z <- .xmlp("errorCode", v)
  if(is.null(z)) return(v)
  if(z != "OK") return(z)
  x <- .xmlp("priceItems",v)
  .xmlarray2dataframe(x)
  }

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