Hi,
I am trying to get ATH and ATL for some token, it works well with some tokens, but any new token it fails.
This is my query:
{
ethereum(network: ethereum) {
dexTrades(
baseCurrency: {is: “0x4206931337dc273a630d328dA6441786BfaD668f”}
quoteCurrency: {is: “0xdAC17F958D2ee523a2206206994597C13D831ec7”}
time: {}
priceAsymmetry: {lt: 1}
tradeAmountUsd: {gt: 5000}
options: {limit: 10, desc: “timeInterval.year”}
) {
timeInterval {
year(count: 5)
}
baseCurrency {
name
}
quoteCurrency {
name
}
high: quotePrice(calculate: maximum)
low: quotePrice(calculate: minimum)
}
}
}