Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Architecture Overview

TBD

Requirements

  1. Sierra Chart version 2448 or higher

  2. python version 3.10+

  3. Windows 10/11

Download, Install and Setup

The solution includes a custom study dll and a python library

“T29 SC-Py” custom study dll

Download: T29-SCdX_64.dll

Install

  1. Download to your computer

  2. Copy the dll file to your SC Data folder

See here for more details: HowTo Manually Install and Upgrade a Sierra Chart Custom Study Dll

Verify the custom study installation

“trade29” python library

Download: trade29-0.0.2.tar.gz

Install

  1. Download to your computer

  2. pip install trade29-0.0.2.tar.gz

Verify the library installation

Getting Started

time and sales

https://vimeo.com/835672238/9b3f7fb6d0
from trade29.sc.bridge import SCBridge

# create the bridge object
bridge = SCBridge()

# subscribe to time and sales data
bridge.time_and_sales_request('xx')

# get access to the response queue
messages = bridge.get_response_queue()

# go into a while loop, wait for messages and print them out

while True:
    msg = messages.get()
    print(msg.df)

 

market depth

order management

graph data

Support and Help

Email: support@trade29.com

Slack: TBD

  • No labels