-
Notifications
You must be signed in to change notification settings - Fork 14
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
6738fad
commit fb01f48
Showing
26 changed files
with
295 additions
and
205 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,7 +1,7 @@ | ||
Package: rRofex | ||
Type: Package | ||
Title: Interface to ROFEX APIs | ||
Version: 0.0.1.0003 | ||
Version: 1.4.0 | ||
Authors@R: c(person("Augusto", "Hassel", role = c("aut", "cre"), email = "[email protected]")) | ||
Description: Provides a convenient wrapper for consuming data from ROFEX APIs: Trading API, Risk API and BackOffice API. | ||
License: MIT | ||
|
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 |
---|---|---|
@@ -1,68 +1,75 @@ | ||
# rRofex 0.0.1.0003 | ||
## rRofex 1.4.0 | ||
|
||
## Changes | ||
### Changes | ||
|
||
* Corrected package version according to standars from [R Packages](http://r-pkgs.had.co.nz/) | ||
* `trading_md()` and `trading_mdh()` gain a new parameter: **tidy**. If `tidy = TRUE` the information will be arrange in a tidy format. | ||
|
||
## rRofex 1.3.0 | ||
|
||
### Changes | ||
|
||
* Improved metadata on `trading_instruments()` method. It has been added: Product Type, Ticker, Option Type, Strike Price, Underlying, Settlement. | ||
|
||
# rRofex 0.0.1.0002 | ||
## rRofex 1.2.0 | ||
|
||
## Changes | ||
### Changes | ||
|
||
* Added new parameters to `trading_instruments()`. Now you can search instruments by Segment, Type and CFI Code. | ||
* Added new method `trading_instruments_fronts()` to list only front month future contracts. Thanks @jfgomezok for the request and clarification on how to show the data. | ||
|
||
# rRofex 0.0.1.0001 | ||
## rRofex 1.1.0 | ||
|
||
## Changes | ||
### Changes | ||
|
||
* Added a `NEWS.md` file to track changes to the package. | ||
* Using `pkgdown` to build the documentation. | ||
|
||
# rRofex 0.0.1.0000 | ||
## rRofex 1.0.0 | ||
|
||
## New Features | ||
### New Features | ||
|
||
* *xOMS* support. Ask your broker for credentials. | ||
* Use of S4 objects to save connections. This means that you can have different connections on the same R session. | ||
|
||
## Changes | ||
### Changes | ||
|
||
* Close issue #12 now that the connection parameters can be access with `token()`, `base_url()` and `login_date_time()` | ||
|
||
## Important | ||
### Important | ||
|
||
**This version is not backwards compatible due to the way connections work now.** | ||
|
||
# rRofex 0.0.0.9008 | ||
## rRofex 0.0.0.9008 | ||
|
||
## New Features | ||
### New Features | ||
|
||
* New *time_in_force* available. Now supports GTD. | ||
* New Iceberg order. | ||
|
||
## Changes | ||
### Changes | ||
|
||
* Sovled issue #8 | ||
|
||
## Acknowledgement | ||
### Acknowledgement | ||
|
||
* Thanks @jfgomezok for your PR solving #8 | ||
|
||
# rRofex 0.0.0.9007 | ||
## rRofex 0.0.0.9007 | ||
|
||
## New Features | ||
### New Features | ||
|
||
* New *time_in_force* available. Now supports IOC and FOK. | ||
|
||
## Changes | ||
### Changes | ||
|
||
* #6 Corrected mistakes on the documentation. | ||
|
||
## BUG FIXES | ||
### Bug Fixes | ||
|
||
* #6 'Environment' variable for log-in was misspelled. | ||
|
||
## Acknowledgement | ||
### Acknowledgement | ||
|
||
* Thanks @kenarab for your PR solving #6 | ||
|
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#' @import dplyr | ||
#' @import httr | ||
#' @import jsonlite | ||
#' @importFrom tibble enframe | ||
#' @importFrom tidyr separate replace_na | ||
#' @importFrom tibble enframe as_tibble | ||
#' @importFrom tidyr separate replace_na pivot_wider | ||
#' @importFrom magrittr %>% | ||
#' @importFrom glue glue glue_collapse | ||
#' @importFrom purrr some | ||
#' @importFrom purrr some modify_depth | ||
#' @importFrom rlang is_null | ||
"_PACKAGE" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.