Skip to content

Commit 40c5ef8

Browse files
authored
Move readme to index (#33)
1 parent 89d4fb3 commit 40c5ef8

File tree

2 files changed

+14
-26
lines changed

2 files changed

+14
-26
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "CryptoAPIs"
22
uuid = "5e3d4798-c815-4641-85e1-deed530626d3"
3-
version = "0.16.1"
3+
version = "0.16.2"
44

55
[deps]
66
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

docs/src/index.md

Lines changed: 13 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1+
![terminal](assets/terminal.gif)
2+
13
# CryptoAPIs.jl
24

35
CryptoAPIs is a library written in Julia that combines API wrappers from various exchanges, simplifying access to market 💹 data.
46

5-
## Supported Exchange APIs
7+
## Installation
8+
If you haven't installed our [local registry](https://github.com/bhftbootcamp/Green) yet, do that first:
9+
```
10+
] registry add https://github.com/bhftbootcamp/Green.git
11+
```
612

13+
Then, to install CryptoAPIs, simply use the Julia package manager:
14+
```
15+
] add CryptoAPIs
16+
```
17+
18+
## Supported Exchange APIs
719
```@raw html
820
<html>
921
<body>
@@ -89,27 +101,3 @@ CryptoAPIs is a library written in Julia that combines API wrappers from various
89101
</body>
90102
</html>
91103
```
92-
93-
## Quickstart
94-
95-
```julia
96-
using CryptoAPIs
97-
using CryptoAPIs.Binance
98-
99-
Binance.Spot.ticker(;
100-
symbols = ["ADAUSDT", "BTCUSDT"]
101-
)
102-
103-
Binance.Spot.candle(;
104-
symbol = "ADAUSDT",
105-
interval = Binance.Spot.Candle.M1
106-
)
107-
108-
Binance.Spot.avg_price(;
109-
symbol = "ADAUSDT"
110-
)
111-
112-
Binance.Spot.order_book(;
113-
symbol = "ADAUSDT"
114-
)
115-
```

0 commit comments

Comments
 (0)