Skip to content

Commit

Permalink
Add badges to README
Browse files Browse the repository at this point in the history
  • Loading branch information
vnegi10 committed Jul 25, 2021
1 parent 349df37 commit c5a7355
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CryptoDashApp.jl

[![Build status (Github Actions)](https://github.com/vnegi10/CryptoDashApp.jl/workflows/CI/badge.svg)](https://github.com/vnegi10/CryptoDashApp.jl/actions)

[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://vnegi10.github.io/CryptoDashApp.jl/stable)

Interactive visualization of historical price, health metrics, candlestick and volume data for various cryptocurrencies. Data are obtained via API queries to Alpha Vantage.
The app is written in Julia and makes use of Dash.jl along with its react framework to generate a dashboard style view accessible via a browser.
Different moving averages are also calculated and plotted along with the daily average price data. Averaging window can be selected by the user.
Expand All @@ -20,7 +24,9 @@ Once all the packages are downloaded, you can make use of the **CryptoDashApp**
```julia
julia> using CryptoDashApp
julia> run_app(8056, "your key") # where 8056 is the port
```
```

Free API key can be obtained from [here.](https://www.alphavantage.co/support/#api-key)

Now, open a new tab in your browser and check if you can access http://0.0.0.0:8056/ or http://127.0.0.1:8056/

Expand Down

2 comments on commit c5a7355

@vnegi10
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • First version
  • Updated documentation

@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/41500

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>" c5a735518930c21f2505021d2262dc5f6aba7830
git push origin v0.1.0

Please sign in to comment.