Percent price error

I get this:-ccxt.base.errors.invalidorder: binance {“code”:-1013,“msg”:“filter failure: percent_price”}…

I only get this in eth/btc. Other symbols work fine.i

Please paste your code that produced this issue. (All parameters must be disclosed with the value; it really matters)

This is the entry operation and lot size which matters and is related with the error
def entry_operation(self, price):
if self.entry_ops_phase == 0:
# create limit buy order and generate orderID
amount = self.lot_sizing(price, self.amount, btc=True)
result = ex.create_order(self.symbol, ‘LIMIT’, ‘buy’, amount, price)

I edited your reply. Please just tell me what values are for ‘symbol’, ‘amount’ and ‘price’

Symbol=eth/btc
Amount= 0.001 btc
Price = 0.041007

If symbol is ‘eth/btc’, the amount is used to describe eth not btc. So if you run it, you’d get MIN_NOTIONAL filter error. Try below and you’d be fine as long as you have enough BTC.

ex.create_order('ETH/BTC', ‘LIMIT’, ‘buy’,0.003,0.041007)

Sir i tried with 0.003 btc still got same error:

ccxt.base.errors.InvalidOrder: binance {“code”:-1013,“msg”:“Filter failure: PERCENT_PRICE”}.
There something with Percent price.Other symbols work fine.

The only possible reason is you’re using testnet

No sir its live api spot trading.i can place order successfully with other symbols.plz help

Then don’t use ccxt and use cURL instead. If you still have the same error, share with us the whole request with the details.