getMUBets: getMUBets

Description Usage Arguments Author(s) Examples

Description

Betfair getMUBets

Usage

1
getMUBets(betIds = NULL, betStatus = "MU", excludeLastSecond = NULL, marketId = NULL, matchedSince = NULL, orderBy = "BET_ID", recordCount = 200, sortOrder = "ASC", startRecord = 0, service = Exchange)

Arguments

betIds

betIds

betStatus

betStatus

excludeLastSecond

excludeLastSecond

marketId

marketId

matchedSince

matchedSince

orderBy

orderBy

recordCount

recordCount

sortOrder

sortOrder

startRecord

startRecord

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
20
21
22
23
24
25
26
27
28
29
##---- 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(betIds=NULL,
                        betStatus="MU",
                        excludeLastSecond=NULL,
                        marketId=NULL,
                        matchedSince=NULL,
                        orderBy="BET_ID",
                        recordCount=200,
                        sortOrder="ASC",
                        startRecord=0, 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("bets",v)
  x <- .xmlarray2dataframe(x)
  d <- withCallingHandlers(strptime(x$placedDate,format="%Y-%m-%dT%H:%M:%OS"),
         error=function(e) x$placedDate)
  x$placedDate <-  d
  d <- withCallingHandlers(strptime(x$matchedDate,format="%Y-%m-%dT%H:%M:%OS"),
         error=function(e) x$matchedDate)
  x$matchedDate <-  d
  x
  }

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