Skip to main content

Truedata's Official Python Package

Project description

This is the official python repo for TrueData.

What have we covered so far ?

  • Websocket APIs
    • Live data
    • Historical data

How do you use it ?

For beginners

  • Installing from PyPi
pip install truedata
  • Connecting
from truedata.websocket.TD import TD
td_app = TD('<enter_your_login_id>', '<enter_your_password>')
  • Starting live data
td_app.start_live_data('<enter_symbol>', req_id=2000)  # Example: td_app.start_live_data('CRUDEOIL-I')
count = 0
while count < 60:
    print(f'{td_app.live_data[2000].ltp} @ {td_app.live_data[2000].timestamp}')
    sleep(1)
    count = count + 1






For advanced users

  • Installing from PyPi
pip install truedata==xx.xx.xx <pick your version number>
  • Installing from source

Download the sources

Make "truedata" the working directory using cd

python3 setup.py install
  • Connecting
from truedata.websocket.TD import TD
td_app = TD('<enter_your_login_id>', '<enter_your_password>, live_port=8080, historical_port=8090)  # historical_port should be None, if you do not have access to historical data...
  • Starting live data
td_app.start_live_data('<enter_symbol>', req_id=2000)  # Example: td_app.start_live_data('CRUDEOIL-I')
count = 0
while count < 60:
    print(td_app.live_data[2000].__dict__)
    sleep(1)
    count = count + 1

What is the plan going forward ?

  • Ease of contract handling
  • Improved error handling

Project details


Release history Release notifications | RSS feed

This version

0.1.9

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

truedata_ws-0.1.9.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

truedata_ws-0.1.9-py3-none-any.whl (23.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page