Getting "b'Access denied because of exceeding access rate'" even for placing single order for the past two days


  • Dear Admin,

    I am entering getting the access rate even if I place single order. It was running fine last week. The code snippet is below:

    ticker = "BANKNIFTY24DEC2451200CE"
    token = "43599"
    buy_sell = "BUY"
    exchange = "NFO"
    quantity = 10000000000 #testing quantity
    
    
    params = {
                "variety":"NORMAL",
                "tradingsymbol":ticker,
                "symboltoken":token,
                "transactiontype":buy_sell,
                "exchange":exchange,
                "ordertype":"MARKET",
                "producttype":"INTRADAY",
                "duration":"DAY",
                "quantity":quantity
                }
    order_response = obj.placeOrderFullResponse(params)
    

    Could you please respond?

    Thanks in advance.

    Best,
    Vetri


  • @windpacer can you please try again with a different quantity, also ensure that the quantity is in the multiples of lot size.

    We tested it with the API snippet below, and orders are going fine.

    {
    "variety":"NORMAL",
    "tradingsymbol":"NIFTY02JAN2524900CE",
    "symboltoken":"52599",
    "transactiontype":"BUY",
    "exchange":"NFO",
    "ordertype":"MARKET",
    "producttype":"INTRADAY",
    "duration":"DAY",
    "price":"0",
    "squareoff":"0",
    "stoploss":"0",
    "quantity":"750000000"
    }