You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## 📚 What?
This PR consists of two bug-fixes --- one user-reported, and one
reported by CRAN:
1. The `Funding Rate` from Binance API were returning vectors of dates
instead of the Funding Rate. Thank you Michael; I would have put your
name in the release docs but I do not have your Github-handle.
2. The docs were generating NOTE on CRAN when embedding {plotly}-graps
via HTML and Latex. The plots have been deleted as they are already
shown in the examples.
## Repository and pkg-specific changes
* Added a Makefile for more flexible control-flow of the pkg-building
process.
* Streamlined CoinMarketCap input so it follows the remaining syntax, ie
`1M` instead of `30d`.
* Cleaned up unused .png-files
> [!NOTE]
>
> See commit history for more details.
Copy file name to clipboardExpand all lines: NEWS.Rmd
+19-11Lines changed: 19 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -23,26 +23,34 @@ knitr::opts_chunk$set(
23
23
library(cryptoQuotes)
24
24
```
25
25
26
-
# Version 1.3.2
26
+
# Version 1.3.3
27
27
28
28
## General
29
29
30
-
*`bitmart` has updated their futures API. The backend have been updated accordingly.
31
-
32
-
* Unit-tests have been updated and now all `get_quote()`-functions are being tested for equality in passed and inferred interval.
33
-
34
-
## Improvements
35
-
36
-
## [NEW FEATURE] Global Market Capitalization
30
+
### New features
37
31
38
32
* The `get_mktcap()`-function returns the global market capitalization of the cryptocurrency market. It also has the option to return altcoin market capitalization.
39
33
40
34
```{r}
41
-
# get market
42
-
# capitalization
43
-
tail(get_mktcap())
35
+
# get market capitalization
36
+
tail(
37
+
get_mktcap()
38
+
)
44
39
```
45
40
41
+
## Bugfixes
42
+
43
+
* A bug in the funding rates from Binance have been fixed. The returned values was the time indices of the json-array, not the actual rates.
44
+
45
+
# Version 1.3.2
46
+
47
+
## General
48
+
49
+
*`bitmart` has updated their futures API. The backend have been updated accordingly.
50
+
51
+
* Unit-tests have been updated and now all `get_quote()`-functions are being tested for equality in passed and inferred interval.
0 commit comments