Navigation

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

    Posts made by Poonam Tomar

    • RE: Create basket order

      @Moderator_1

      Hi, Is basket order now implemented now in June 2024?
      Is there any future plan to implement it?

      posted in General Discussion
      P
      Poonam Tomar
    • RE: How to place Basket order with API?

      @ananduthaman said in How to place Basket order with API?:

      o sufficient to get the stocks names and quantity from the basket using API. If any of you hav

      Did you get solution for this that how to place basket order through python?

      posted in General Discussion
      P
      Poonam Tomar
    • RE: How to read order status and update in own app. SmartWebSocketOrderUpdate

      @Moderator_3 . I got the bit better understanding that whenever any order get executed then only it is reading the data otherwise it keep on checking the order update.

      Now my another puzzle is, if some order got executed and it got order information then how to read and further process that order for further use. means in which function i can do that. One simple example would help me.

      posted in Python SDK
      P
      Poonam Tomar
    • RE: Not revising STOPLOSS order in ROBO Trade - ModifyOrder

      @Moderator_3 Thank You for responding. my problem get solved by mentioning the price in trigger price. sending parent order id was not required. That solution was also available in this forum only.

      posted in Python SDK
      P
      Poonam Tomar
    • Not revising STOPLOSS order in ROBO Trade - ModifyOrder

      Hi,

      I am working on ROBO order. I am able to place robo order and able to modify order for target. but when I am trying to modify order for stoploss limit order, it does not change. allthough it is giving sucess message but didnt change the stop loss limit. below are the params

      orderparsm = {
      "variety":"ROBO",
      "orderid":"240508000449911", # It is unique order id of stoploss_limit
      "ordertype":"STOPLOSS_LIMIT", # In case of target I mention limit and it worked. I tried with limit instead of stoploss but not helping
      "producttype":"INTRADAY",
      "duration":"DAY",
      "price":"29.00",
      "quantity":"25",
      "tradingsymbol":"NIFTY09MAY2422150PE",
      "symboltoken":"46905",
      "exchange":"NFO"
      }

      @admin could you please help ?? any other help will be appreciated

      posted in Python SDK
      P
      Poonam Tomar
    • How to read order status and update in own app. SmartWebSocketOrderUpdate

      @admin I am not able to read and process the data through SmartWebSocketOrderUpdate method. I am able to connect client and receiving the some tick message but now sure were I actually got the real message and process it further. SmartWebSocketOrderUpdate.png

      client = SmartWebSocketOrderUpdate(AUTH_TOKEN, API_KEY, CLIENT_CODE, FEED_TOKEN)

      threading.Thread(target = client.connect).start()

      Like I am able to do in reading the strike price data in websocket

      def on_data(wsapp, message):
      print("Ticks: {}".format(message))
      LIVE_FEED_JSON[message['token']] = {'token': message['token'],
      'ltp':message['last_traded_price']/100,
      'o':message['open_price_of_the_day']/100,
      'h':message['high_price_of_the_day']/100,
      'l':message['low_price_of_the_day']/100}

      posted in Python SDK
      P
      Poonam Tomar