for tick in list_of_tickers:
if (tick[‘symbol’][-3:] != ‘BNB’):
continue
else:
max_price = binance_functions.historical_max(tick[‘symbol’])
if max_price <= 0.009:
“save it in database”
The output of this code is some like this:
1|POWRBNB|0.00433
2|GTOBNB|0.000424
3|AIONBNB|0.007618
4|BRDBNB|0.00896
5|BLZBNB|0.008767
But then I go to the webpage and search for example powrbnb and does not exist and blzbnb exist. The point is that the api return me values without sense. I m doing something wrong ?