Releases: matbarofex/rRofex
Releases · matbarofex/rRofex
rRofex 2.0.2
Changes since last release
- Added dependencies on libraries and R itself. This resolves issue #20
- Solved issue on websocket methods where it was not referencing properly the data when selecting different environment that wasn’t .GlobalEnv. This was issue #19
- Every logical function now uses && instead of &.
- Added new article about Shiny and rRofex
rRofex 2.0.0
Important
This is a major release with new Websocket features to consume market data.
There is still room to be improved and there are some design definitions that could be reviewed according to the feedback obtained.
Changes since last release
- The function
trading_ws_md()
has been added. This will update your desire data frame when any new data is generated. You can also listen to specific columns and only receive those changes. - The function
trading_ws_orders()
has been added. This will update your desire data frame with information about your order status when any new data is generated. See function documentation for more information. - The function
trading_ws_close()
has been added. Tkanhs to @soberto to the idea of saving every Websocket on an environment for a more clean way to handle them. You can close every connection at once if needed. - Changed logo, adapted to the new image of the company.
- Started using Lifecyle badges to show the state of every function inside the package.
rRofex 1.6.11
Changes since last release
- Fix Underlying and Strike Price. It wasn't parsing correctly DOP and strike prices for BYMA options.
- Changes made to
trading_md()
. Now the result gets flattened when depth=1L. This solves the issue #17. - Added Symbol column generated tibble with
trading_md()
- Improved examples on site https://matbarofex.github.io/rRofex.
rRofex 1.6.9
Important News
- The package has been accepted into CRAN and is officially on https://cran.r-project.org/package=rRofex.
You can install it directly in R usinginstall.packages("rRofex")
.
Changes since last release
- New method
trading_account_report()
to request information about your trading account. - Added 'Trade Count' entry type to
trading_md()
. - I've improved log-in method by storing more information into it.
- Now sending 'user-agent' in each API request.
- Extra validation on
trading_md()
andtrading_mdh()
. It only supports one instrument at the time. See documentation page for requesting many. - "tidy = TRUE" is set by default in
trading_md()
andtrading_mdh()
.
rRofex 1.6.0
Changes
- New method
trading_account_report()
to request information about your trading account.
rRofex 1.5.0
rRofex 1.5.0
Changes
- New method
trading_currencies()
to request currencies prices. - New method
trading_account()
to request information about your trading account. - Added new entries to metdho
trading_md()
. trading_mdh()
now supportsmarket_id = 'MERV'
.
rRofex 1.4.0
Changes
- Corrected package version according to standars from R Packages
trading_md()
andtrading_mdh()
gain a new parameter: tidy. Iftidy = TRUE
the information will be arrange in a tidy format.
rRofex 0.0.1.0000
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
- Close issue #12 now that the connection parameters can be access with
token()
,base_url()
andlogin_date_time()
IMPORTANT
This version is not backwards compatible due to the way connections work now.
rRofex 0.0.0.9008
NEW FEATURES
- New time_in_force available. Now supports GTD.
- New Iceberg order.
CHANGES
- Sovled issue #8
BUG FIXES
Acknowledgement
- Thanks @jfgomezok for your PR solving #8