You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-30Lines changed: 4 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
##CoinbaseProExchange
1
+
# CoinbaseProExchange.jl
2
2
3
3
[](https://github.com/vnegi10/CoinbaseProExchange.jl/actions)
4
4
@@ -17,7 +17,7 @@ This package provides an unofficial Julia wrapper for the Coinbase Pro REST API.
17
17
18
18
Public endpoints can be accessed without a Coinbase Pro account.
19
19
20
-
In order to use the private endpoints, you will need to register and create an account on [Coinbase](https://www.coinbase.com/). Please note that Coinbase Pro account is separate froom Coinbase, but they use the same login credentials. More information about the API can be found [here](https://docs.pro.coinbase.com/#api)
20
+
In order to use the private endpoints, you will need to register and create an account on [Coinbase](https://www.coinbase.com/). Please note that Coinbase Pro account is separate from Coinbase, but they use the same login credentials. More information about the API can be found [here.](https://docs.pro.coinbase.com/#api)
21
21
22
22
## API key permissions
23
23
@@ -33,11 +33,7 @@ Some examples of available functions along with the expected output are shown be
**Check docs for more examples:**[](https://vnegi10.github.io/CoinbaseProExchange.jl/stable)
64
60
65
-
###Private endpoints (Coinbase Pro account + API keys are needed)
61
+
## Private endpoints (Coinbase Pro account + API keys are needed)
66
62
67
63
Obtain your API key, API secret and passphrase from your Coinbase Pro account. Create an object **user_data** with type **UserInfo** to store your API data, as shown below:
68
64
@@ -93,28 +89,6 @@ Dict{String, Any} with 14 entries:
Copy file name to clipboardExpand all lines: docs/src/index.md
+31-11Lines changed: 31 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,41 +1,61 @@
1
-
# CoinbaseProExchange.jl
1
+
# User Guide
2
2
---
3
3
4
-
### Available functions
4
+
## Overview
5
+
CoinbaseProExchange.jl provides a Julia wrapper for the Coinbase Pro REST API. Available endpoints are implemented in the form of callable functions. Depending on the operation, a function can return data (either as a DataFrame or Dict) or the associated HTTP response (Dict).
5
6
6
-
#### Public endpoints (Coinbase account is not necessary)
7
+
## Available functions
8
+
```@index
9
+
```
7
10
11
+
## Public endpoints (Coinbase Pro account is not necessary)
0 commit comments