Skip to content

Commit

Permalink
CRAN release 1.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
shikokuchuo committed Dec 15, 2023
1 parent e3cd031 commit 3ba129f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.11.9000
Version: 1.4.12
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
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ichimoku 1.4.11.9000 (development)
# ichimoku 1.4.12

#### Updates:

Expand Down
2 changes: 1 addition & 1 deletion R/iplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ drawInfotip <- function(sidx, sdata, left, top, type, custom = NULL) {
r = sprintf("<br />R-indicator: %.3g", 100 * sdata[["osc_typ_slw"]]),
s = sprintf("<br />S-fast: %.3g<br />S-slow: %.3g", 100 * sdata[["osc_typ_fst"]], 100 * sdata[["osc_typ_slw"]]),
line = ,
bar = sprintf("<br />%s: %.5g", custom, sdata[[custom]]),
bar = sprintf("<br />%s: %s", custom, as.character(signif(sdata[[custom]], digits = 5))),
""
)
)
Expand Down

0 comments on commit 3ba129f

Please sign in to comment.