newBet: newBet

Description Usage Arguments Author(s) Examples

Description

Betfair newBet

Usage

1
newBet(asianLineId = 0, betType = "B", betCategoryType = "E", betPersistenceType = "NONE", bspLiability = ifelse(betType == "B", 2, 10), marketId, price, selectionId, size = 2)

Arguments

asianLineId

asianLineId

betType

betType

betCategoryType

betCategoryType

betPersistenceType

betPersistenceType

bspLiability

bspLiability

marketId

marketId

price

price

selectionId

selectionId

size

size

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
##---- 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(asianLineId=0,
                     betType="B",
                     betCategoryType="E",
                     betPersistenceType="NONE",
                     bspLiability=ifelse(betType=="B",2.0, 10.0),
                     marketId,
                     price,
                     selectionId,
                     size=2.0)
{
# Add some checks here on size, types.
  bet <- list(asianLineId=asianLineId, betType=betType,
              betCategoryType=betCategoryType,
              betPersistenceType=betPersistenceType,
              bspLiability=bspLiability, marketId=marketId, price=price,
              selectionId=selectionId, size=size)
  return(bet)
  }

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