Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Moelf committed Aug 9, 2020
1 parent 00dc9bc commit a87f0d8
Showing 1 changed file with 28 additions and 6 deletions.
34 changes: 28 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
# TDAmeritrade

| **Build Status** |
|:-----------------------------------------------------------------------------------------------------------------------------:|
| [![Build Status](https://travis-ci.org/Moelf/TDAmeritrade.jl.svg?branch=master)](https://travis-ci.org/Moelf/TDAmeritrade.jl) |
| **Build Status** | **Docs** |
|:---------------------------:|---------------------------|
| [![][build-img]][build-url] | [![][docs-img]][docs-url] |

## Quick example
```julia
julia> using TDAmeritrade

**Documentation**: [![][docs-latest-img]][docs-latest-url]
julia> TD_auth()
[ Info: REFRESH_TOKEN found, refreshing ACCESS_TOKEN
[ Info: Authentication completed.

[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg
[docs-latest-url]: https://moelf.github.io/TDAmeritrade.jl/dev/
julia> get_quotes(["AAPL", "FB"])[:AAPL][:lastPrice]
445.49

julia> using Dates

julia> price_history("GE", Minute(1), Day(1))[end]
JSON3.Object{Array{UInt8,1},SubArray{UInt64,1,Array{UInt64,1},Tuple{UnitRange{Int64}},true}} with 6 entries:
:open => 6.4
:high => 6.4
:low => 6.39
:close => 6.39
:volume => 2800
:datetime => 1596844740000
```
[build-img]: https://travis-ci.com/Moelf/TDAmeritrade.jl.svg?branch=master
[build-url]: https://travis-ci.com/Moelf/TDAmeritrade.jl
[docs-img]: https://img.shields.io/badge/docs-latest-blue.svg
[docs-url]: https://moelf.github.io/TDAmeritrade.jl/dev/

6 comments on commit a87f0d8

@Moelf
Copy link
Owner Author

@Moelf Moelf commented on a87f0d8 Aug 9, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: "Tag with name v0.1.0 already exists and points to a different commit"

@Moelf
Copy link
Owner Author

@Moelf Moelf commented on a87f0d8 Aug 9, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: "Tag with name v0.1.0 already exists and points to a different commit"

@Moelf
Copy link
Owner Author

@Moelf Moelf commented on a87f0d8 Aug 9, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/19215

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" a87f0d820407a0d9885605dc788693f725680b67
git push origin v0.1.0

Please sign in to comment.