Navigation

    SmartAPI Forum
    • Register
    • Login
    • Search
    • Categories
    • Popular
    • Groups
    • FAQs
    • API Docs
    1. Home
    2. NST
    3. Posts
    N
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Posts made by NST

    • RE: Not able to get the orders and trade details

      @Xcaliber Yes, I am able to fetch real-time order and trade book.

      posted in Python SDK
      N
      NST
    • RE: Not Getting Data from websocket

      @rohithmaccs I suppose you're passing wrong feedToken. Please review.

      posted in Bugs
      N
      NST
    • RE: "YOUR USER ID OR PASSWORD IS INVALID","errorcode":"AB1007"

      @A111706 I suppose you're passing wrong API_KEY. Please review.

      posted in General Discussion
      N
      NST
    • RE: Not able to get the orders and trade details

      @nshekhar Please refer links below to get order book and get trade book request.

      https://smartapi.angelbroking.com/docs/Orders

      posted in Python SDK
      N
      NST
    • RE: Order Placing API return no response

      @sachinsrm There is missing "duration":"DAY" in place order request body.

      posted in General Discussion
      N
      NST
    • RE: Order Placing API return no response

      @sachinsrm Please try with below request.

      {
      "variety":"NORMAL",
      "tradingsymbol":"RELIANCE-EQ",
      "symboltoken":"2885",
      "transactiontype":"BUY",
      "exchange":"NSE",
      "ordertype":"MARKET",
      "producttype":"MIS",
      "duration":"DAY",
      "price":"0",
      "quantity":"1"
      }

      posted in General Discussion
      N
      NST
    • RE: Order Placing API return no response

      Hi @sachinsrm variety parameter should either be NORMAL, STOPLOSS or AMO. Please refer https://smartapi.angelbroking.com/docs/Orders#place

      posted in General Discussion
      N
      NST
    • RE: Options trading

      Hi @dushyant,
      I think you are missing "duration":"DAY" in place order request body.

      So try with below request, I hope it will be helpful for you.

      {'exchange': 'NFO', 'tradingsymbol': 'BANKNIFTY07JAN2131400CE', 'quantity': 1, 'transactiontype': 'BUY', 'ordertype': 'MARKET', 'variety': 'NORMAL', 'producttype': 'CARRYFORWARD', 'price': '177.35', 'symboltoken': '43099','duration':'DAY'}

      posted in General Discussion
      N
      NST
    • RE: Unable to fetch LTP

      @krishna I suppose you're passing wrong feedToken. Please review.

      posted in General Discussion
      N
      NST
    • RE: Authentication: AB1007 and Mac Format

      @A224819 Please try pip install pyOpenSSL

      posted in Python SDK
      N
      NST
    • RE: Inconsistent data in instrument dump

      @dheepi said in Inconsistent data in instrument dump:

      Instrument list API certificate have certificate error when used from command line tools. Though not a showstopper, should be fixed. I have workaround for now

      vagrant@ubuntulab:/opt/kite$ wget https://margincalculator.angelbroking.com/OpenAPI_File/files/OpenAPIScripMaster.json
      --2020-12-17 00:09:53-- https://margincalculator.angelbroking.com/OpenAPI_File/files/OpenAPIScripMaster.json
      Resolving margincalculator.angelbroking.com (margincalculator.angelbroking.com)... 3.7.249.209
      Connecting to margincalculator.angelbroking.com (margincalculator.angelbroking.com)|3.7.249.209|:443... connected.
      ERROR: cannot verify margincalculator.angelbroking.com's certificate, issued by ‘CN=GeoTrust RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US’:
      Unable to locally verify the issuer's authority.

      @dheepi Please try wget with --no-check-certificate --quiet option as below :

      wget --no-check-certificate --quiet
      --method GET
      --timeout=0
      --header ''
      'https://margincalculator.angelbroking.com/OpenAPI_File/files/OpenAPIScripMaster.json'

      posted in General Discussion
      N
      NST