daroczig / binancer

An R client to the Public Rest API for Binance.
https://daroczig.github.io/binancer
54 stars 57 forks source link

Binancer not available for R 3.6.3 #13

Closed advisely closed 2 years ago

advisely commented 3 years ago

Hi,

when I try to install your package, I get this message:

Warning in install.packages :
  package ‘binancer’ is not available (for R version 3.6.3)

Warning message:
  there is no package called ‘binancer’
PatronMaster commented 3 years ago

Hi BlueSkyTrading,

This is a package outside of CRAN. So, you need install by git.

Example:

library(devtools)
install_github(" daroczig/binancer")

This is amazing package. You also need create your API in Binance if you are trying to trade. Also, I recommend you to Update your R for last version.

daroczig commented 2 years ago

Thanks a lot, @PatronMaster, for the above pointers.