# Wrong values on certain tokens

**URL:** https://community.bitquery.io/t/wrong-values-on-certain-tokens/1617
**Category:** GraphQL API
**Created:** [August 20, 2023, 10:56am UTC](https://community.bitquery.io/t/wrong-values-on-certain-tokens/1617 "2023-08-20T10:56:27Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![kayzen112](https://avatars.discourse-cdn.com/v4/letter/k/9de0a6/32.png) [@kayzen112](https://community.bitquery.io/u/kayzen112)
#### Post date: [August 20, 2023, 10:56am UTC](https://community.bitquery.io/t/wrong-values-on-certain-tokens/1617/1 "2023-08-20T10:56:27Z")

</div>

Trying to get the high of some tokens results on wrong values, sometimes i get the right values and sometimes not, why is this happening im using this query

{  
ethereum(network: ethereum) {  
dexTrades(  
options: {desc: “high”}  
date: {since: “2021-03-07”}  
exchangeAddress: {is: “0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f”}  
baseCurrency: {is: “0xdC5d0F60390916f53627f4BeEdb2bD1ff1a497c5”}  
quoteCurrency: {is: “0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2”}  
priceAsymmetry: {lteq: 10},  
tradeAmountUsd: {gteq: 1}  
) {  
timeInterval {  
minute(format: “%FT%TZ”, count: 5)  
}  
baseAmount(in: USD)  
volume: quoteAmount  
high: quotePrice(calculate: maximum)  
baseCurrency {  
name  
decimals  
}  
}  
}  
}

i get 1262.243764515803 as high which is far from the real value, same happens with other tokens, sometimes i get the correct value, sometimes not

---

<div class="post-metadata">

### Author: ![Divya](https://avatars.discourse-cdn.com/v4/letter/d/13edae/32.png) [@Divya](https://community.bitquery.io/u/Divya)
#### Post date: [August 22, 2023, 8:23am UTC](https://community.bitquery.io/t/wrong-values-on-certain-tokens/1617/2 "2023-08-22T08:23:44Z")

</div>

There are very few trades (27) that’s why the high is so askew even with priceAsymmetry filter… This one trade skewed the price [Ethereum Mainnet DEX Trades](https://explorer.bitquery.io/ethereum/tx/0xca8bc4274d9907a0438f6c447c0bf553d8995065bcba134ebf462b1fdca692e9/dex_trades)

Let me know if this answers your question.
