0

The task is related to Share market.

Currently Omnesys NEST trading terminal provides streaming data for NSE and MCX and so. They also provide an option to link the live share streaming data to EXCEL sheet, and the the market changes are updating to excel sheet for every second.

This is the function used in EXCEL to read the data from NEST terminal:

=RTD("nest.scriprtd",,"mcx_fo|GOLDM15SEPFUT","LTP")

Can anybody help me to extract the live streaming data?

Axeman
  • 32,068
  • 8
  • 81
  • 94

1 Answers1

0

Can you be more specific ? Do you want to develop some live trading strategy using the live data , or do you want to store this data in some database or .... As an example, you can use pandas DataFrame to retrieve this data into your python program and process it.


UPD:

The NSE NOW terminal is based on Omnesys Nest. I have automated this using AutoIt Check out this link: . The live streaming data from the market watch of Omnesys Nest can be extracted using AutoIt

The github repo for the program is Here

Pavan
  • 209
  • 2
  • 10