forked from Rblp/Rblpapi
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bd1df7
commit ee0f87f
Showing
4 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2015-10-03 Dirk Eddelbuettel <[email protected]> | ||
|
||
* man/beqs.Rd: Added by running roxygenize() | ||
* src/RcppExports.cpp: Updated by running compileAttributes() | ||
* R/RcppExports.R: Updated by running compileAttributes() | ||
|
||
2015-10-03 Rademeyer Vermaak <[email protected]> | ||
|
||
* src/beqs.cpp: Add BEQS functionality | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/beqs.R | ||
\name{beqs} | ||
\alias{beqs} | ||
\title{Run 'Bloomberg EQS' Queries} | ||
\usage{ | ||
beqs(screenName, screenType = "GLOBAL", languageID = NULL, Group = NULL, | ||
PiTDate = NULL, con = defaultConnection()) | ||
} | ||
\arguments{ | ||
\item{screenName}{A character string with the name of the screen to execute. | ||
It can be a user defined EQS screen or one of the Bloomberg Example screens on EQS} | ||
|
||
\item{screenType}{A character string of value PRIVATE or GLOBAL | ||
Use PRIVATE for user-defined EQS screen. | ||
Use GLOBAL for Bloomberg EQS screen.} | ||
|
||
\item{languageID}{An optional character string with the EQS language} | ||
|
||
\item{Group}{An optional character string with the Screen folder name as defined in EQS} | ||
|
||
\item{PiTDate}{A character string with the Point in Time Date of the screen to execute. | ||
Format = "YYYYMMDD"} | ||
|
||
\item{con}{A connection object as created by a \code{blpConnect} | ||
call, and retrieved via the internal function | ||
\code{defaultConnection}.} | ||
} | ||
\value{ | ||
A matrix with requested EQS data | ||
} | ||
\description{ | ||
This function uses the Bloomberg API to retrieve 'beqs' (Bloomberg | ||
EQS Data) queries | ||
} | ||
\examples{ | ||
\dontrun{ | ||
beqs("Global Oil Companies YTD Return","GLOBAL") | ||
beqs("Global Oil Companies YTD Return","GLOBAL","GERMAN") | ||
beqs("Global Oil Companies YTD Return","GLOBAL","GERMAN","GENERAL") | ||
beqs("Global Oil Companies YTD Return","GLOBAL","ENGLISH","GENERAL","20150930") | ||
} | ||
} | ||
\author{ | ||
Whit Armstrong, Dirk Eddelbuettel | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters