-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
51 lines (33 loc) · 1.35 KB
/
README.Rmd
File metadata and controls
51 lines (33 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
output:
md_document:
variant: markdown_github
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# Roanda
Roanda is a new package that makes it incredibly easy to integrate with OANDA API.
[![Build Status] (https://travis-ci.org/gitdek/Roanda.svg?branch=master)](https://travis-ci.org/gitdek/Roanda)
## Features
* Interactive web UI using the [shiny](https://github.com/rstudio/shiny) package for monitoring and debugging.
* Works in any R environment (Console R, Rgui for Windows or Mac, ESS, StatET, RStudio, etc.).
## Installation
To install the stable version from CRAN, simply run the following from an R console:
```
install.packages("Roanda")
```
To install the latest development builds directly from GitHub, run this instead:
```
if (!require("devtools"))
install.packages("devtools")
devtools::install_github("gitdek/Roanda")
```
## Getting Started
To learn more we highly recommend you check out the [Roanda Tutorial](https://gitdek.github.io/Roanda). The tutorial explains the framework in-depth, walks you through building a simple application, and includes extensive annotated examples.
We hope you enjoy using Roanda. For bug reports, please use the [issue tracker](https://github.com/gitdek/Roanda/issues).