Created
September 5, 2021 19:27
-
-
Save ries9112/9f6768bc801ee8fdaff9adb919c6acc4 to your computer and use it in GitHub Desktop.
Plot cumulative sales in Tezos for your favorite HEN artist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(ghql) | |
library(jsonlite) | |
library(tidyverse) | |
library(ggdark) | |
library(ggfx) | |
library(scales) | |
# Tag to lookup: | |
artist = "tz2Pkj2xWJovKKCsABjnr3NbyMVJTMBkpTvb" | |
# connect to the endpoint | |
con = GraphqlClient$new( | |
url = "https://api.hicdex.com/v1/graphql" | |
) | |
# initialize a new query | |
graphql_request = Query$new() | |
# Define query | |
graphql_request$query('mydata', paste0('query artistSales { | |
hic_et_nunc_trade(where: {token: {creator: {address: {_eq: ',artist,'}}}}, order_by: {swap: {price: desc}}) { | |
token { | |
title | |
mime | |
description | |
id | |
artifact_uri | |
display_uri | |
} | |
timestamp | |
amount | |
token_id | |
swap { | |
price | |
} | |
} | |
}')) | |
# Run query (pull data) | |
hen_data = con$exec(graphql_request$queries$mydata) | |
# convert results to JSON | |
hen_data = fromJSON(hen_data) | |
# extract dataframe | |
hen_data = hen_data$data$hic_et_nunc_trade | |
# Add Tezos price | |
hen_data$price_tezos = hen_data$swap$price/1000000 | |
# Add date | |
hen_data$date = as.Date(hen_data$timestamp) | |
# Add datetime | |
hen_data$datetime = as.POSIXct(hen_data$timestamp) | |
# Order by datetime | |
hen_data = arrange(hen_data, datetime) | |
# Plot cumulative sum over time | |
ggplot(hen_data, aes(x=date, y=cumsum(price_tezos))) + | |
with_outer_glow(geom_point(color="white",size=1.1),colour="deeppink",sigma=10,expand=1) + | |
#geom_point() + | |
scale_y_continuous(name='Cumulative Trades in Tezos', labels = comma) + | |
ggtitle(paste('Cumulative Tezos Traded'), paste(artist)) + | |
theme(axis.title.x=element_blank()) + | |
dark_theme_gray() + | |
theme(plot.background = element_rect(fill = "grey10"), | |
panel.background = element_blank(), | |
panel.grid.major = element_line(color = "grey30", size = 0.2), | |
panel.grid.minor = element_line(color = "grey30", size = 0.2), | |
legend.background = element_blank(), | |
axis.ticks = element_blank(), | |
axis.title.x=element_blank()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment