Package pinnacle.api

Size: px
Start display at page:

Download "Package pinnacle.api"

Transcription

1 Package pinnacle.api September 18, 2015 Type Package Version 1.89 Title A Wrapper for the Pinnacle Sports API URL Author Marco Blume, Nicholas Jhirad, Amine Gassem Maintainer Marco Blume <[email protected]> An R interface to the Pinnaclesports.com API. LazyData true License GPL-3 Imports dplyr, uuid, httr, RCurl, XML, rjson, jsonlite NeedsCompilation no Repository CRAN Date/Publication :02:30 R topics documented: AcceptTermsAndConditions authorization cbindnames CheckTermsAndConditions GetBetsList GetClientBalance GetCredentials GetCurrencies GetFixtures GetInrunning GetLeagues GetLeaguesByID GetLine GetOdds GetSports

2 2 authorization JSONtoDF PlaceBet PlaceParlayBet SetCredentials showoddsdf Index 18 AcceptTermsAndConditions Accept terms and conditions, only run once per session, must agree to terms or functions will not work Accept terms and conditions, only run once per session, must agree to terms or functions will not work AcceptTermsAndConditions(accepted = FALSE) accepted Default=FALSE, BOOLEAN authorization Authorization for the Pinnacle API Authorization for the Pinnacle API authorization(user = as.character(getcredentials()$[1]), pwd = as.character(getcredentials()$[2])) user pwd Pinnacle Username Pinnacle Password

3 cbindnames 3 cbindnames Combines elements of an object, keeping names Combines elements of an object, keeping names cbindnames(x) x takes a list of elements with names data.frame containing combined names CheckTermsAndConditions Prompts User for Terms and Conditions, otherwise stops running function Prompts User for Terms and Conditions, otherwise stops running function CheckTermsAndConditions() CheckTermsAndConditions()

4 4 GetClientBalance GetBetsList Get a list of running/settled bets Get a list of running/settled bets GetBetsList(betlist = c("settled", "RUNNING"), fromdate = as.posixlt(sys.date(), tz = "UTC") - 15 * 24 * 60 * 60, todate = as.posixlt(sys.date(), tz = "UTC") + 24 * 60 * 60) betlist fromdate todate Either SETTLED or RUNNING Default Behavior shows both Iso8061 Date Default: 15 days prior in UTC, as.posixct(sys.date(), tz = UTC )- 15*24*60*60 Iso8061 Date Default: 1 day ahead in UTC (to counter possible fencepost situations), as.posixct(sys.date(), tz = UTC ) + 24*60*60 A list of bets and associated details GetBetsList() GetClientBalance Get Client Balance Get Client Balance GetClientBalance(force = TRUE) force Default=TRUE, boolean if TRUE force a reload of the data if FALSE use cached data

5 GetCredentials 5 vector client balance parameter GetClientBalance() GetCredentials Get your credential values Get your credential values GetCredentials() A data.frame with your username and password GetCredentials() GetCurrencies Get the list of supported Currencies Get the list of supported Currencies GetCurrencies(force = FALSE) force Default=FALSE, boolean if TRUE force a reload of the data if FALSE use cached data

6 6 GetFixtures a data frame with these columns: Currency Code Exchange Rate to USD Currency Name GetCurrencies() GetFixtures Get Fixtures Get Fixtures GetFixtures(sportname, leagueids, since = NULL, islive = 0) sportname leagueids since islive The sport name for which to retrieve the fixtures integer vector with league IDs. Default=NULL, numeric This is used to receive incremental updates. Use the value of last from previous fixtures response. Default=FALSE, boolean if TRUE retrieves ONLY live events if FALSE retrieved all events returns a data frame with columns: SportID Last League LeagueID EventID StartTime HomeTeamName

7 GetInrunning 7 AwayTeamName Rotation Number Live Status Status Parlay Status GetFixtures(sportname = "Badminton",leagueIds = ) GetInrunning GetInrunning GetInrunning GetInrunning() A dataframe containing the current State of live events GetInrunning()

8 8 GetLeagues GetLeagues Get Leagues for Sport(s) by name Returns all Leagues for the Sport(s) GetLeagues(sports, force = FALSE, regex = FALSE) sports force regex character vector of sports names. Default=FALSE, boolean if TRUE force a reload of the data if FALSE use cached data Default=FALSE, boolean if TRUE, retreives sports id using regular expression on names a data frame having columns: LeagueID LinesAvailable HomeTeam AllowRoundRobin LeagueName GetLeagues("Badminton")

9 GetLeaguesByID 9 GetLeaguesByID Get Leagues for Sport(s) by ID Returns all Leagues for the Sport(s) GetLeaguesByID(sportid, force = FALSE) sportid force integer vector of sports IDs boolean whether to get new data (TRUE) or use cached data (FALSE) a data frame having columns: LeagueID LinesAvailable HomeTeam AllowRoundRobin LeagueName GetLeaguesByID(1) GetLine Get Lines (Use to get more detail on a single line, but the GetOdds or showoddsdf versions are intended for large amounts of data) Get Lines (Use to get more detail on a single line, but the GetOdds or showoddsdf versions are intended for large amounts of data) GetLine(sportId, leagueids, eventid, periodnumber, bettype, team = NULL, side = NULL, handicap = NULL, oddsformat = "AMERICAN")

10 10 GetLine sportid leagueids eventid periodnumber bettype team side handicap oddsformat The sport ID integer vector of leagueids. numeric xxxxx xxxxx xxxx xxxx xxx xxx xxx returns a data frame with columns: SportID Last League LeagueID EventID StartTime HomeTeamName AwayTeamName Rotation Number Live Status Status Parlay Status GetLine(sportId=1,leagueids=191545,eventId= , periodnumber=0,team="team1",bettype="moneyline")

11 GetOdds 11 GetOdds Get Odds Get Odds GetOdds(sportname, leagueids, since = NULL, islive = 0, force = TRUE) sportname leagueids since islive force The sport name for which to retrieve the fixutres integer vector of leagueids. numeric This is used to receive incremental updates. Use the value of last from previous fixtures response. boolean if TRUE retrieves ONLY live events boolean if FALSE, functions using cached data will use the values since the last force list of lists GetOdds (sportname="badminton", leagueids=191545,,islive=0) GetSports Get Sports Returns all sports with the status whether they currently have lines or not GetSports(force = FALSE)

12 12 JSONtoDF force Default=FALSE, boolean if TRUE force a reload of the data if FALSE use cached data a data frame with these columns: SportID LinesAvailable SportName GetSports() JSONtoDF Sets the determined depth as a data.frame, and evades R s listdropping rules Sets the determined depth as a data.frame, and evades R s list-dropping rules JSONtoDF(x, depth = 5, flag = TRUE) x depth flag a list numeric value of the number of sublist whether to start with combining factors or binding rows a tree with the defined level as a dataframe

13 PlaceBet 13 PlaceBet Place Bet Place bet in the system PlaceBet(stake, sportid, eventid, periodnumber, lineid, bettype, altlineid = NULL, team = NULL, side = NULL, acceptbetterline = TRUE, winriskstake = "RISK", oddsformat = "AMERICAN") stake sportid eventid periodnumber lineid bettype altlineid team side numeric Wager amount in currency numeric the sport id numeric the vent id numeric Number of the period, see Pinnacle API manual numeric ID of the line BET_TYPE SPREAD MONEYLINE TOTAL_POINTS TEAM_TOTAL_POINTS numeric ID of the alternate line (lineid must also be included) Default = NULL,, see Pinnacle API manual TEAM1 TEAM2 DRAW Defaulat = NULL,, see Pinnacle API manual OVER UNDER acceptbetterline Default=TRUE,boolean Whether or not to accept a bet when there is a line change in favor of the client winriskstake oddsformat Default="RISK", either place the stake to RISK or to WIN WIN RISK Default="AMERICAN", Desired Odds Format AMERICAN

14 14 PlaceParlayBet DECIMAL HONGKONG INDONESIAN MALAY list containing : status If Status is PROCESSED_WITH_ERROR errorcode will be in the response errorcode PlaceBet (stake=10, sportid=1, eventid= , periodnumber=0, lineid= , bettype="moneyline", team="team2", acceptbetterline=true, winriskstake="win", oddsformat="american") PlaceParlayBet PlaceParlayBet Place parlay or round robin parlay bet in the system PlaceParlayBet(riskAmount, legslist, roundrobinoptions = c("parlay", "TwoLegRoundRobin", "ThreeLegRoundRobin", "FourLegRoundRobin", "FiveLegRoundRobin", "SixLegRoundRobin", "SevenLegRoundRobin", "EightLegRoundRobin")[1], oddsformat = "AMERICAN", acceptbetterline = TRUE)

15 PlaceParlayBet 15 riskamount legslist numeric Wager amount in currency A list of wagers, where each wager must be in named list format. Required named values are: legbettype, lineid, either team or side, and periodnumber. Optional named values are: altlineid, pitcher1muststart, or pitcher2muststart. See the API Manual for more info lineid altlineid OPTIONAL sportid eventid periodnumber legbettype MONEYLINE SPREAD TOTAL TEAMTOTAL team/side using one will invalidate the other pitcher1muststart OPTIONAL pitcher2muststart OPTIONAL roundrobinoptions one of the round robin options, default is Parlay oddsformat Parlay TwoLegRoundRobin ThreeLegRoundRobin FourLegRoundRobin FiveLegRoundRobin SixLegRoundRobin SevenLegRoundRobin EightLegRoundRobin default: AMERICAN AMERICAN DECIMAL HONGKONG INDONESIAN MALAY acceptbetterline : Default TRUE,boolean Whether or not to accept a bet when there is a line change in favor of the client list containing: status If Status is PROCESSED_WITH_ERROR errorcode will be in the response errorcode

16 16 SetCredentials parlay1 <- list(lineid = , sportid=1, eventid = , periodnumber=0, legbettype = "MONEYLINE", team = TEAM1 ) parlay2 <- list(lineid = , sportid=1, eventid = , periodnumber=0, legbettype = "TOTAL_POINTS", side = OVER ) legslist <- list(parlay1,parlay2) PlaceParlayBet(riskAmount=10, legslist=legslist, roundrobinoptions="parlay", oddsformat="american", acceptbetterline=true) SetCredentials Set your pinnaclesports.com user credentials Set your pinnaclesports.com user credentials SetCredentials(username, password) username password Your username Your password

17 showoddsdf 17 showoddsdf showoddsdf - Takes a GetOdds JSON response and turns it into a data.frame showoddsdf - Takes a GetOdds JSON response and turns it into a data.frame showoddsdf(sportname, leagueids = NULL, since = NULL, islive = 0, attachleaguenames = TRUE, force = TRUE) sportname leagueids since The sport name for which to retrieve the fixutres numeric vector of leagueids - can get as output from GetLeagues numeric This is used to receive incremental updates. Use the value of last from previous fixtures response. islive boolean if TRUE retrieves ONLY live events attachleaguenames boolean default set to true, will attach league names. force boolean default set to TRUE, forces a reload of the cache. bettable leagues a dataframe combining GetOdds and GetFixtures data, containing NA s where levels of factors do not have a value. Naming convention is as follows, Example: spread.altlineid.n is the altlineid associated with spread.hdp.(n+1) whereas spread.hdp refers to the mainline. spread.altlineid is the first alternate, and equivalent to spread.altlineid.0 showoddsdf(sportname="badminton",leagueids=191545)

18 Index AcceptTermsAndConditions, 2 authorization, 2 cbindnames, 3 CheckTermsAndConditions, 3 GetBetsList, 4 GetClientBalance, 4 GetCredentials, 5 GetCurrencies, 5 GetFixtures, 6 GetInrunning, 7 GetLeagues, 8 GetLeaguesByID, 9 GetLine, 9 GetOdds, 11 GetSports, 11 JSONtoDF, 12 PlaceBet, 13 PlaceParlayBet, 14 SetCredentials, 16 showoddsdf, 17 18

Package retrosheet. April 13, 2015

Package retrosheet. April 13, 2015 Type Package Package retrosheet April 13, 2015 Title Import Professional Baseball Data from 'Retrosheet' Version 1.0.2 Date 2015-03-17 Maintainer Richard Scriven A collection of tools

More information

Package uptimerobot. October 22, 2015

Package uptimerobot. October 22, 2015 Type Package Version 1.0.0 Title Access the UptimeRobot Ping API Package uptimerobot October 22, 2015 Provide a set of wrappers to call all the endpoints of UptimeRobot API which includes various kind

More information

Program set _ApiPS for Pinnacle s services API

Program set _ApiPS for Pinnacle s services API Program set _ApiPS for Pinnacle s services API 15th Feb 2015 Version 1.2.16 Support for API services of bookmaker Pinnacle Sports - program _ApiPS.EXE and auxiliary program _ApiPS_aut.EXE for getting of

More information

TXODDS Running Ball Feed US Sports Edition. User Guide

TXODDS Running Ball Feed US Sports Edition. User Guide TXODDS Running Ball Feed US Sports Edition User Guide Document version 2.05 January 2012 Table of Contents TXODDS RUNNING BALL FEED...1 US SPORTS EDITION...1 TABLE OF CONTENTS...2 WHAT IS THE RUNNING BALL

More information

TXAPI IN-RUNNING FEED TENNIS EDITION

TXAPI IN-RUNNING FEED TENNIS EDITION TXAPI IN-RUNNING FEED TENNIS EDITION User Guide Document version 5.00 Dec 2015 Table of Contents WHAT ARE THE TXODDS XML FEEDS?... 4 Time sensitivity... 4 Data on demand... 5 FILTERING... 5 XML SCHEMAS...

More information

Package pdfetch. R topics documented: July 19, 2015

Package pdfetch. R topics documented: July 19, 2015 Package pdfetch July 19, 2015 Imports httr, zoo, xts, XML, lubridate, jsonlite, reshape2 Type Package Title Fetch Economic and Financial Time Series Data from Public Sources Version 0.1.7 Date 2015-07-15

More information

Package TSfame. February 15, 2013

Package TSfame. February 15, 2013 Package TSfame February 15, 2013 Version 2012.8-1 Title TSdbi extensions for fame Description TSfame provides a fame interface for TSdbi. Comprehensive examples of all the TS* packages is provided in the

More information

Package searchconsoler

Package searchconsoler Title Google Search Console R Client Version 0.2.0 Package searchconsoler April 3, 2016 Provides an interface with the Google Search Console, formally called Google Webmaster Tools. URL https://github.com/markedmondson1234/searchconsoler

More information

Package sjdbc. R topics documented: February 20, 2015

Package sjdbc. R topics documented: February 20, 2015 Package sjdbc February 20, 2015 Version 1.5.0-71 Title JDBC Driver Interface Author TIBCO Software Inc. Maintainer Stephen Kaluzny Provides a database-independent JDBC interface. License

More information

Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2.

Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2. Type Package Title Search and Extract Data from the OECD Version 0.2.2 Date 2016-01-17 Package OECD January 17, 2016 Search and extract data from the OECD. License CC0 URL https://www.github.com/expersso/oecd

More information

We have put together this beginners guide to sports betting to help you through your first foray into the betting world.

We have put together this beginners guide to sports betting to help you through your first foray into the betting world. If there is one thing about sports betting that is an absolute certainty, it s that the game is infinitely more exciting when there is money on the outcome. Most people like you are new to this concept

More information

Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes

Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Package whoapi June 26, 2015 Maintainer Oliver Keyes Retrieve data from the 'Whoapi' (https://whoapi.com)

More information

Package WikipediR. January 13, 2016

Package WikipediR. January 13, 2016 Type Package Title A MediaWiki API Wrapper Version 1.3.0 Date 2016-01-12 Author Oliver Keyes Package WikipediR January 13, 2016 Maintainer Oliver Keyes A wrapper for the MediaWiki

More information

Package empiricalfdr.deseq2

Package empiricalfdr.deseq2 Type Package Package empiricalfdr.deseq2 May 27, 2015 Title Simulation-Based False Discovery Rate in RNA-Seq Version 1.0.3 Date 2015-05-26 Author Mikhail V. Matz Maintainer Mikhail V. Matz

More information

Bet Types: Locating. This tutorial serves as a guide to locating the various bet types on the relevant bookmaker websites.

Bet Types: Locating. This tutorial serves as a guide to locating the various bet types on the relevant bookmaker websites. Bet Types: Locating This tutorial serves as a guide to locating the various bet types on the relevant bookmaker websites. Although bookmaker websites differ in layouts there are general similarities that

More information

Package translater. R topics documented: February 20, 2015. Type Package

Package translater. R topics documented: February 20, 2015. Type Package Type Package Package translater February 20, 2015 Title Bindings for the Google and Microsoft Translation APIs Version 1.0 Author Christopher Lucas and Dustin Tingley Maintainer Christopher Lucas

More information

Using XACML Policies to Express OAuth Scope. Hal Lockhart Oracle June 27, 2013

Using XACML Policies to Express OAuth Scope. Hal Lockhart Oracle June 27, 2013 Using XACML Policies to Express OAuth Scope Hal Lockhart Oracle June 27, 2013 Topics Scope Background Requirements Design AlternaKves XACML Overview Proposed Approach Benefits Next Steps Future Research

More information

Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface

Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface Version 0.1-3 Title R/Cassandra interface Package RCassandra February 19, 2015 Author Simon Urbanek Maintainer Simon Urbanek This packages provides

More information

Package dsmodellingclient

Package dsmodellingclient Package dsmodellingclient Maintainer Author Version 4.1.0 License GPL-3 August 20, 2015 Title DataSHIELD client site functions for statistical modelling DataSHIELD

More information

Package fimport. February 19, 2015

Package fimport. February 19, 2015 Version 3000.82 Revision 5455 Date 2013-03-15 Package fimport February 19, 2015 Title Rmetrics - Economic and Financial Data Import Author Diethelm Wuertz and many others Depends R (>= 2.13.0), methods,

More information

Package AzureML. August 15, 2015

Package AzureML. August 15, 2015 Version 0.1.1 Date 2015-08-14 Type Package Package AzureML August 15, 2015 Title Discover, Publish and Consume Web Services on Microsoft Azure Machine Learning Maintainer Raymond Laghaeian

More information

Package cgdsr. August 27, 2015

Package cgdsr. August 27, 2015 Type Package Package cgdsr August 27, 2015 Title R-Based API for Accessing the MSKCC Cancer Genomics Data Server (CGDS) Version 1.2.5 Date 2015-08-25 Author Anders Jacobsen Maintainer Augustin Luna

More information

REST Webservices API Reference Manual

REST Webservices API Reference Manual crm-now/ps REST Webservices API Reference Manual Version 1.5.1.0 crm-now development documents Page 1 Table Of Contents OVERVIEW...4 URL FORMAT...4 THE RESPONSE FORMAT...4 VtigerObject...5 Id Format...5

More information

SPARROW Gateway. Developer API. Version 2.00

SPARROW Gateway. Developer API. Version 2.00 SPARROW Gateway Developer API Version 2.00 Released May 2015 Table of Contents SPARROW Gateway... 1 Developer API... 1 Overview... 3 Architecture... 3 Merchant Private Key and Payment Types... 3 Integration...

More information

Package packrat. R topics documented: March 28, 2016. Type Package

Package packrat. R topics documented: March 28, 2016. Type Package Type Package Package packrat March 28, 2016 Title A Dependency Management System for Projects and their R Package Dependencies Version 0.4.7-1 Author Kevin Ushey, Jonathan McPherson, Joe Cheng, Aron Atkins,

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

Package R4CDISC. September 5, 2015

Package R4CDISC. September 5, 2015 Type Package Title Read CDISC Data Files Version 0.4 Date 2015-9-5 Depends R (>= 3.0.3, XML Author Package R4CDISC September 5, 2015 Maintainer URL https://github.com/i-akiya/r4cdisc

More information

Package HadoopStreaming

Package HadoopStreaming Package HadoopStreaming February 19, 2015 Type Package Title Utilities for using R scripts in Hadoop streaming Version 0.2 Date 2009-09-28 Author David S. Rosenberg Maintainer

More information

Package missforest. February 20, 2015

Package missforest. February 20, 2015 Type Package Package missforest February 20, 2015 Title Nonparametric Missing Value Imputation using Random Forest Version 1.4 Date 2013-12-31 Author Daniel J. Stekhoven Maintainer

More information

IoT-Ticket.com. Your Ticket to the Internet of Things and beyond. IoT API

IoT-Ticket.com. Your Ticket to the Internet of Things and beyond. IoT API IoT-Ticket.com Your Ticket to the Internet of Things and beyond IoT API Contents 1 Introduction... 4 1.1 Overview... 4 1.2 Abbreviations and definitions... 4 1.3 Data Model... 4 1.4 General Information...

More information

Package bizdays. March 13, 2015

Package bizdays. March 13, 2015 Title Business Days Calculations and Utilities Package bizdays March 13, 2015 Business days culations based on a list of holidays and nonworking weekdays. Quite useful for fixed income and derivatives

More information

Data Mailbox. support.ewon.biz. Reference Guide

Data Mailbox. support.ewon.biz. Reference Guide Reference Guide RG 005-0-EN / Rev. 1.0 Data Mailbox The Data Mailbox is a Talk2M service that gathers ewon historical data and makes it available for third party applications in an easy way. support.ewon.biz

More information

Package tagcloud. R topics documented: July 3, 2015

Package tagcloud. R topics documented: July 3, 2015 Package tagcloud July 3, 2015 Type Package Title Tag Clouds Version 0.6 Date 2015-07-02 Author January Weiner Maintainer January Weiner Description Generating Tag and Word Clouds.

More information

Package plan. R topics documented: February 20, 2015

Package plan. R topics documented: February 20, 2015 Package plan February 20, 2015 Version 0.4-2 Date 2013-09-29 Title Tools for project planning Author Maintainer Depends R (>= 0.99) Supports the creation of burndown

More information

Riverbed Cascade Shark Common REST API v1.0

Riverbed Cascade Shark Common REST API v1.0 Riverbed Cascade Shark Common REST API v1.0 Copyright Riverbed Technology Inc. 2015 Created Feb 1, 2015 at 04:02 PM Contents Contents Overview Data Encoding Resources information: ping information: list

More information

Package sendmailr. February 20, 2015

Package sendmailr. February 20, 2015 Version 1.2-1 Title send email using R Package sendmailr February 20, 2015 Package contains a simple SMTP client which provides a portable solution for sending email, including attachment, from within

More information

Package dsstatsclient

Package dsstatsclient Maintainer Author Version 4.1.0 License GPL-3 Package dsstatsclient Title DataSHIELD client site stattistical functions August 20, 2015 DataSHIELD client site

More information

Package hive. January 10, 2011

Package hive. January 10, 2011 Package hive January 10, 2011 Version 0.1-9 Date 2011-01-09 Title Hadoop InteractiVE Description Hadoop InteractiVE, is an R extension facilitating distributed computing via the MapReduce paradigm. It

More information

Version ENCORE SYSTEMS LLC. Web Development and ecommerce Integration. PayPal NVP API Class Library User Guide

Version ENCORE SYSTEMS LLC. Web Development and ecommerce Integration. PayPal NVP API Class Library User Guide Version 2 ENCORE SYSTEMS LLC Web Development and ecommerce Integration PayPal NVP API Class Library User Guide WEB DEVELOPMENT AND ECOMMERCE INTEGRATION PayPal Class Library User Guide The Encore Systems

More information

Package hoarder. June 30, 2015

Package hoarder. June 30, 2015 Type Package Title Information Retrieval for Genetic Datasets Version 0.1 Date 2015-06-29 Author [aut, cre], Anu Sironen [aut] Package hoarder June 30, 2015 Maintainer Depends

More information

Software Engineering I CS524 Professor Dr. Liang Sheldon X. Liang

Software Engineering I CS524 Professor Dr. Liang Sheldon X. Liang Software Requirement Specification Employee Tracking System Software Engineering I CS524 Professor Dr. Liang Sheldon X. Liang Team Members Seung Yang, Nathan Scheck, Ernie Rosales Page 1 Software Requirements

More information

Package jrvfinance. R topics documented: October 6, 2015

Package jrvfinance. R topics documented: October 6, 2015 Package jrvfinance October 6, 2015 Title Basic Finance; NPV/IRR/Annuities/Bond-Pricing; Black Scholes Version 1.03 Implements the basic financial analysis functions similar to (but not identical to) what

More information

Package LexisPlotR. R topics documented: April 4, 2016. Type Package

Package LexisPlotR. R topics documented: April 4, 2016. Type Package Type Package Package LexisPlotR April 4, 2016 Title Plot Lexis Diagrams for Demographic Purposes Version 0.3 Date 2016-04-04 Author [aut, cre], Marieke Smilde-Becker [ctb] Maintainer

More information

Package optirum. December 31, 2015

Package optirum. December 31, 2015 Title Financial Functions & More Package optirum December 31, 2015 This fills the gaps credit analysts and loan modellers at Optimum Credit identify in the existing R code body. It allows for the production

More information

ADDING A BET BONUS PROMO CODE TO YOUR ACCOUNT

ADDING A BET BONUS PROMO CODE TO YOUR ACCOUNT ADDING A BET BONUS PROMO CODE TO YOUR ACCOUNT 1. A promo code will be provided in an email or SMS specifically addressed to you. 2. On My Account Page, click Enter Promo Code button. 3. Enter promo code,

More information

MS ACCESS DATABASE DATA TYPES

MS ACCESS DATABASE DATA TYPES MS ACCESS DATABASE DATA TYPES Data Type Use For Size Text Memo Number Text or combinations of text and numbers, such as addresses. Also numbers that do not require calculations, such as phone numbers,

More information

Coveo Platform 7.0. Oracle Knowledge Connector Guide

Coveo Platform 7.0. Oracle Knowledge Connector Guide Coveo Platform 7.0 Oracle Knowledge Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

SnapLogic Salesforce Snap Reference

SnapLogic Salesforce Snap Reference SnapLogic Salesforce Snap Reference Document Release: October 2012 SnapLogic, Inc. 71 East Third Avenue San Mateo, California 94401 U.S.A. www.snaplogic.com Copyright Information 2012 SnapLogic, Inc. All

More information

cielo24 Documentation

cielo24 Documentation cielo24 Documentation Release 1.4.10 cielo24 November 19, 2015 1 The Basics 3 1.1 Getting Started.............................................. 3 1.2 Sandbox API...............................................

More information

SAML v2.0 for.net Developer Guide

SAML v2.0 for.net Developer Guide SAML v2.0 for.net Developer Guide Copyright ComponentSpace Pty Ltd 2004-2015. All rights reserved. www.componentspace.com Contents 1 Introduction... 1 1.1 Features... 1 1.2 Benefits... 1 1.3 Prerequisites...

More information

Package dunn.test. January 6, 2016

Package dunn.test. January 6, 2016 Version 1.3.2 Date 2016-01-06 Package dunn.test January 6, 2016 Title Dunn's Test of Multiple Comparisons Using Rank Sums Author Alexis Dinno Maintainer Alexis Dinno

More information

API Reference Guide. API Version 1. Copyright Platfora 2016

API Reference Guide. API Version 1. Copyright Platfora 2016 API Reference Guide API Version 1 Copyright Platfora 2016 Last Updated: 10:05 a.m. April 21, 2016 Contents Document Conventions... 5 Contact Platfora Support...6 Copyright Notices... 6 Chapter 1: Using

More information

Package erp.easy. September 26, 2015

Package erp.easy. September 26, 2015 Type Package Package erp.easy September 26, 2015 Title Event-Related Potential (ERP) Data Exploration Made Easy Version 0.6.3 A set of user-friendly functions to aid in organizing, plotting and analyzing

More information

Importing Lease Data into Forms Online

Importing Lease Data into Forms Online Blue Moon Software presents May 2012 Importing Lease Data into Forms Online A Developer's Guide Edited by Michael Phillipson wwwbluemooncom Table of Contents XML and the Blue Moon DTD 1 Login Data1 Login

More information

Package EasyHTMLReport

Package EasyHTMLReport Type Package Title EasyHTMLReport Version 0.1.1 Date 2013-08-13 Package EasyHTMLReport Author Yohei Sato Maintainer Yohei Sato February 19, 2015 It is a package

More information

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08 Online signature API Version 0.20, 2015-04-08 Terms used in this document Onnistuu.fi, the website https://www.onnistuu.fi/ Client, online page or other system using the API provided by Onnistuu.fi. End

More information

PeopleSoft. Travel and Expense Center. Expense Report. User Guide

PeopleSoft. Travel and Expense Center. Expense Report. User Guide Travel and Expense Center Expense Report User Guide Table of Contents Document Overview... 3 Expense Report Guidelines... 3 Creating an Expense Report... 4 Creating an Expense Report from a Blank Report...

More information

COLLABORATION NAVIGATING CMiC

COLLABORATION NAVIGATING CMiC Reference Guide covers the following items: How to login Launching applications and their typical action buttons Querying & filtering log views Export log views to Excel User Profile Update info / Change

More information

Change Compensation for a Position or Employee

Change Compensation for a Position or Employee Change Compensation for a Position or Employee Employee Work Center Revised: April, 2014 Table of Contents: Log in to Employee Work Center... 3 Edit Compensation... 3 Request Compensation Change Screen...

More information

Version ENCORE SYSTEMS LLC. Web Development and ecommerce Integration. PayPal SOAP API Class Library User Guide

Version ENCORE SYSTEMS LLC. Web Development and ecommerce Integration. PayPal SOAP API Class Library User Guide Version 2 ENCORE SYSTEMS LLC Web Development and ecommerce Integration PayPal SOAP API Class Library User Guide WEB DEVELOPMENT AND ECOMMERCE INTEGRATION PayPal Class Library User Guide The Encore Systems

More information

Ansible Tower API Guide

Ansible Tower API Guide Ansible Tower API Guide Release Ansible Tower 2.3.1 Ansible, Inc. October 19, 2015 CONTENTS 1 Introduction to the Tower API 2 1.1 Tools................................................... 2 1.2 Browsable

More information

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide Pervasive Data Integrator Oracle CRM On Demand Connector Guide Pervasive Software Inc. 12365 Riata Trace Parkway Building B Austin, Texas 78727 USA Telephone: (512) 231-6000 or (800) 287-4383 Fax: (512)

More information

LIVE BETTING ULTRA RULES

LIVE BETTING ULTRA RULES LIVE BETTING ULTRA RULES I. General Rules 1. Placement of wagers All wagers for Prematch Ultra and Live In Play Ultra must be placed online and are final once confirmed with the password. 2. Specificity

More information

Google Content Extension

Google Content Extension Google Content Extension About Google has launched new Shopping APIs that replaced Google Base Data API for shopping use cases. Google Base Data API was be fully retired on June 1, 2011 and merchants using

More information

Coveo Platform 7.0. Salesforce Connector Guide

Coveo Platform 7.0. Salesforce Connector Guide Coveo Platform 7.0 Salesforce Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market

More information

REST Webservices API Tutorial

REST Webservices API Tutorial REST Webservices API Tutorial Version 1.5.1.0 Table Of Contents OVERVIEW... 3 API Call characteristics... 3 API Response... 3 Response Object... 3 Error Object... 3 Error Handling... 4 Requirements to

More information

Kofax Export Connector 8.3.0 for Microsoft SharePoint

Kofax Export Connector 8.3.0 for Microsoft SharePoint Kofax Export Connector 8.3.0 for Microsoft SharePoint Administrator's Guide 2013-02-27 2013 Kofax, Inc., 15211 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to

More information

Package DCG. R topics documented: June 8, 2016. Type Package

Package DCG. R topics documented: June 8, 2016. Type Package Type Package Package DCG June 8, 2016 Title Data Cloud Geometry (DCG): Using Random Walks to Find Community Structure in Social Network Analysis Version 0.9.2 Date 2016-05-09 Depends R (>= 2.14.0) Data

More information

vcloud Air Platform Programmer's Guide

vcloud Air Platform Programmer's Guide vcloud Air Platform Programmer's Guide vcloud Air OnDemand 5.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Informatica Cloud Connector for SharePoint 2010/2013 User Guide

Informatica Cloud Connector for SharePoint 2010/2013 User Guide Informatica Cloud Connector for SharePoint 2010/2013 User Guide Contents 1. Introduction 3 2. SharePoint Plugin 4 3. Objects / Operation Matrix 4 4. Filter fields 4 5. SharePoint Configuration: 6 6. Data

More information

Package hazus. February 20, 2015

Package hazus. February 20, 2015 Package hazus February 20, 2015 Title Damage functions from FEMA's HAZUS software for use in modeling financial losses from natural disasters Damage Functions (DFs), also known as Vulnerability Functions,

More information

Sports Action & PlayNow Sports FAQ s

Sports Action & PlayNow Sports FAQ s Sports Action & PlayNow Sports FAQ s Sports Action and PlayNow Sports currently provide sports bettors with the best of both worlds, providing two unique sports betting options to all B.C. residents of

More information

Dobbin Day - User Guide

Dobbin Day - User Guide Dobbin Day - User Guide Introduction Dobbin Day is an in running performance form analysis tool. A runner s in-running performance is solely based on the price difference between its BSP (Betfair Starting

More information

Documentation to use the Elia Infeed web services

Documentation to use the Elia Infeed web services Documentation to use the Elia Infeed web services Elia Version 1.0 2013-10-03 Printed on 3/10/13 10:22 Page 1 of 20 Table of Contents Chapter 1. Introduction... 4 1.1. Elia Infeed web page... 4 1.2. Elia

More information

Process: Self Service

Process: Self Service How Do I Login to the Online Vendor Self-Service Application? 1. Using the information provided in the email sent to the primary Contact: Navigate to the URL for the application, the PeopleSoft Sign In

More information

Package benford.analysis

Package benford.analysis Type Package Package benford.analysis November 17, 2015 Title Benford Analysis for Data Validation and Forensic Analytics Version 0.1.3 Author Carlos Cinelli Maintainer Carlos Cinelli

More information

SYSPRO App Store: Registration Guide

SYSPRO App Store: Registration Guide SYSPRO App Store: Registration Guide SYSPRO App Store Registration Guide 2 Table of Contents What is the SYSPRO App Store?... 3 The SYSPRO App Store URL... 3 Who can use it?... 3 Register as a customer...

More information

Integrated Billing Solutions with HP CSA 4.00

Integrated Billing Solutions with HP CSA 4.00 Technical white paper Integrated Billing Solutions with HP CSA 4.00 Table of Contents Introduction... 2 Part 1. HP CSA Concepts... 2 Part 2. Billable Service Conditions... 4 Part 3. Billable Intervals...

More information

agileworkflow Manual 1. agileworkflow 2. The repository 1 of 29 Contents Definition

agileworkflow Manual 1. agileworkflow 2. The repository 1 of 29 Contents Definition agileworkflow Manual Contents 1. Intro 2. Repository 3. Diagrams 4. Agents 4.1. Dispatcher Service 4.2. Event Service 4.3. Execution Service 5. Variables 6. Instances 7. Events 7.1. External 7.2. File

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Package PKI. July 28, 2015

Package PKI. July 28, 2015 Version 0.1-3 Package PKI July 28, 2015 Title Public Key Infrastucture for R Based on the X.509 Standard Author Maintainer Depends R (>= 2.9.0),

More information

Package TimeWarp. R topics documented: April 1, 2015

Package TimeWarp. R topics documented: April 1, 2015 Type Package Title Date Calculations and Manipulation Version 1.0.12 Date 2015-03-30 Author Tony Plate, Jeffrey Horner, Lars Hansen Maintainer Tony Plate

More information

Databases with Microsoft Access. Using Access to create Databases Jan-Feb 2003

Databases with Microsoft Access. Using Access to create Databases Jan-Feb 2003 Databases with Microsoft Access Using Access to create Databases Jan-Feb 2003 What is a Database? An Organized collection of information about a subject. Examples: Address Book Telephone Book Filing Cabinet

More information

Package RIGHT. March 30, 2015

Package RIGHT. March 30, 2015 Type Package Title R Interactive Graphics via HTML Version 0.2.0 Date 2015-03-30 Package RIGHT March 30, 2015 Author ChungHa Sung, TaeJoon Song, JongHyun Bae, SangGi Hong, Jae W. Lee, and Junghoon Lee

More information

AutoTrading Fox Manual

AutoTrading Fox Manual AutoTrading Fox Manual All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information

More information

Getting Started with the icontact API

Getting Started with the icontact API Getting Started with the icontact API Contents - Introduction -... 2 - URIs, URLs, Resources, and Supported Actions -... 3 Contacts Category... 3 Messages Category... 4 Track Category... 4 GET... 5 POST...

More information

Contents. 2 Alfresco API Version 1.0

Contents. 2 Alfresco API Version 1.0 The Alfresco API Contents The Alfresco API... 3 How does an application do work on behalf of a user?... 4 Registering your application... 4 Authorization... 4 Refreshing an access token...7 Alfresco CMIS

More information

Global Transport Secure ecommerce. Web Service Implementation Guide

Global Transport Secure ecommerce. Web Service Implementation Guide Global Transport Secure ecommerce Web Service Implementation Guide Version 1.0 October 2013 Global Payments Inc. 10 Glenlake Parkway, North Tower Atlanta, GA 30328-3447 Global Transport Secure ecommerce

More information

Package bigrf. February 19, 2015

Package bigrf. February 19, 2015 Version 0.1-11 Date 2014-05-16 Package bigrf February 19, 2015 Title Big Random Forests: Classification and Regression Forests for Large Data Sets Maintainer Aloysius Lim OS_type

More information

Integration Client Guide

Integration Client Guide Integration Client Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

FOOTBALL INVESTOR. Member s Guide 2014/15

FOOTBALL INVESTOR. Member s Guide 2014/15 FOOTBALL INVESTOR Member s Guide 2014/15 V1.0 (September 2014) - 1 - Introduction Welcome to the Football Investor member s guide for the 2014/15 season. This will be the sixth season the service has operated

More information

Client SuiteScript Developer s Guide

Client SuiteScript Developer s Guide Client SuiteScript Developer s Guide Copyright NetSuite, Inc. 2005 All rights reserved. January 18, 2007 This document is the property of NetSuite, Inc., and may not be reproduced in whole or in part without

More information

Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide

Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide Index CDR REPORT... 3 CDR FILTER... 3 CDR REPORT DATA FIELDS... 4 CDR REPORT OPERATIONS... 5 CDR CSV FILE... 6 API CONFIGURATION...

More information

xstation API Communication Protocol Documentation v. 2.2

xstation API Communication Protocol Documentation v. 2.2 xstation API Communication Protocol Documentation v. 2.2 1. CONTENTS 2. Introduction... 4 3. Definitions... 4 4. General data format... 5 5. Communication with the xstation API... 6 1. Connection validation...

More information

1999-2006 enom, Inc. API response codes

1999-2006 enom, Inc. API response codes API response codes Introduction When you run a query against the enom API, the response includes a numeric code and a corresponding text message. This allows us to standardize our responses and make them

More information

1. Change Log... 3 2. Introduction... 4 3. Flow summary... 4 3.1 Flow Overview... 4 3.2 Premium SMS flow... 6 3.3 Pin Flow... 7 3.4 Redirect Flow...

1. Change Log... 3 2. Introduction... 4 3. Flow summary... 4 3.1 Flow Overview... 4 3.2 Premium SMS flow... 6 3.3 Pin Flow... 7 3.4 Redirect Flow... Payment API 1. Change Log... 3 2. Introduction... 4 3. Flow summary... 4 3.1 Flow Overview... 4 3.2 Premium SMS flow... 6 3.3 Pin Flow... 7 3.4 Redirect Flow... 8 3.5 SMS Handshake Flow... 9 4. One-time

More information

HTTP and HTTPS Statistics Services

HTTP and HTTPS Statistics Services CHAPTER 9 This chapter describes the HTTP and HTTPS Statistics service, which returns HTTP and HTTPS connection information and statistics for individual WAEs, device groups, and for the WAAS network,

More information