Skip to content

Commit

Permalink
CRAN release 1.4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
shikokuchuo committed Dec 8, 2023
1 parent 0174f5e commit fd8016d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: ichimoku
Type: Package
Title: Visualization and Tools for Ichimoku Kinko Hyo Strategies
Version: 1.4.10.9000
Version: 1.4.11
Description: An implementation of 'Ichimoku Kinko Hyo', also commonly known as
'cloud charts'. Static and interactive visualizations with tools for
creating, backtesting and development of quantitative 'ichimoku' strategies.
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ichimoku 1.4.10.9000 (development)
# ichimoku 1.4.11

* Allows using the environment variable 'OANDA_API_KEY' as an alternative to storing using the 'keyring' package.
* Allows using the environment variable 'OANDA_API_KEY' as an alternative to the 'keyring' package.
* Arguments 'keep.data' and 'keep.attrs' across the package now have an explicit default value of FALSE (no resultant change in behaviour).
* Internal performance enhancements.
* Requires nanonext >= 0.11.0.
Expand Down
2 changes: 1 addition & 1 deletion R/iplot.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2021-2022 Hibiki AI Limited <info@hibiki-ai.com>
# Copyright (C) 2021-2023 Hibiki AI Limited <info@hibiki-ai.com>
#
# This file is part of ichimoku.
#
Expand Down
5 changes: 3 additions & 2 deletions R/oanda.R
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,9 @@ getPrices <- function(instrument, granularity, count = NULL, from = NULL,
#' session on function exit. The latest rows of the dataframe are printed to
#' the console, as governed by the 'display' argument.
#'
#' @details This function connects to the OANDA fxTrade Streaming API. Use the
#' 'Esc' key to stop the stream and return the session data.
#' @details This function connects to the OANDA fxTrade Streaming API. Send an
#' interrupt using the 'Esc' key or 'Ctrl+c' to stop the stream and return
#' the session data.
#'
#' Note: only messages of type 'PRICE' are processed. Messages of type
#' 'HEARTBEAT' consisting of only a timestamp are discarded.
Expand Down
5 changes: 3 additions & 2 deletions man/oanda_stream.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vignettes/xoanda.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Separate keys can be set for practice and live accounts; please choose the corre

If an access token is revoked and re-generated, please remember to set the API key again through the `oanda_set_key()` function.

As an alternative, the package looks for an environment variable "OANDA_API_KEY". If present, this will be taken to be the OANDA API key, irrespective of type of account, and in precedence to keys stored using 'keyring'.
As an alternative, the package looks for an environment variable `OANDA_API_KEY`. If present, this will be taken to be the OANDA API key, irrespective of type of account, and in precedence to keys stored using 'keyring'.

## Using a Live Account

Expand Down

0 comments on commit fd8016d

Please sign in to comment.