Error in getting ATH

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)
}
}
}

Here’s my take:
New tokens that have been in circulation for a short period of time may not have sufficient trading data or price consolidation to meet the criteria of your query. This is because the price of a new token is still highly volatile and has not yet established a clear trend.

  priceAsymmetry: {lt: 0.1}
      tradeAmountUsd: {gt: 5000}