Optiongreek not returning any value.


  • for my valid payload, I don't get any output. please help.
    params = {
    "name" : "NIFTY",
    "expirydate" : "16SEP2025"
    }
    smart_api.optionGreek(params)
    {'status': False, 'message': 'No Data Available', 'errorcode': 'AB9019', 'data': None}


  • @darshanmc It is working properly, there might be an issue with your code. You can try it in postman and check.

    Below is the snippet for the API request:

    {
        "name":"NIFTY", // Here Name represents the Underlying stock
        "expirydate":"16SEP2025"
    }