The Tesseract Pro Python API
Project description
Tesseract Pro Python API
-- This project is under active development. Please do not use in production before version 1.0.0 --
Example
Get visible tools for current chart
import time
from tesseractpro import TesseractPro
tpro = TesseractPro(
api_token="Your-API-token"
)
candles = 100 # the amount of candles to fetch
chart = tpro.get_chart(
space_id="cb0c8e03-62c6-4a1c-a872-18ed1c4c8f96",
symbol="btcusdt",
timeframe=32,
start_time=int(time.time()),
end_time=int(time.time()) - (32*60*candles)
)
for tool in chart.get_tools():
print(f"Tool: {tool['id']} is {tool['type']})
Get OHLC candles for the timeframe of the current chart
import time
from tesseractpro import TesseractPro
tpro = TesseractPro(
api_token="[YOUR-API-TOKEN]"
)
candles = 100 # the amount of candles to fetch
chart = tpro.get_chart(
space_id="[SPACE-ID]",
symbol="btcusdt",
timeframe=32,
start_time=int(time.time()),
end_time=int(time.time()) - (32*60*candles)
)
print(chart.get_candles())
Fetch BTCUSDT prices
import time
from tesseractpro import TesseractPro
tpro = TesseractPro(
api_token="[YOUR-API-TOKEN]"
)
candles = 100 # the amount of candles to fetch
chart = tpro.get_chart(
space_id="[SPACE-ID]",
symbol="btcusdt",
timeframe=32,
start_time=int(time.time()),
end_time=int(time.time()) - (32*60*candles)
)
chart.on(chart.ON_PRICE, lambda data: print(data))
chart.wait_for_events()
Watch for tool updates on BTCUSDT 32min chart
import time
from tesseractpro import TesseractPro
tpro = TesseractPro(
api_token="[YOUR-API-TOKEN]"
)
candles = 100 # the amount of candles to fetch
chart = tpro.get_chart(
space_id="[SPACE-ID]",
symbol="btcusdt",
timeframe=32,
start_time=int(time.time()),
end_time=int(time.time()) - (32*60*candles)
)
chart.on(chart.ON_TOOL_UPDATE, lambda data: print(f"Updated tool {data['id']}"))
chart.wait_for_events()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tesseractpro-0.1.2.tar.gz
(11.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tesseractpro-0.1.2.tar.gz.
File metadata
- Download URL: tesseractpro-0.1.2.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2901ae46ae3215a04d4b45dcefc55e70832ff881ca6e32672172b66ac3917e63
|
|
| MD5 |
f8be9d57d963c241f796c2bf391cb1b8
|
|
| BLAKE2b-256 |
fa3845cd96366bfd66fbcbc0e78313dd8275508bce1a420bdc5a773f73c0cd41
|
File details
Details for the file tesseractpro-0.1.2-py3-none-any.whl.
File metadata
- Download URL: tesseractpro-0.1.2-py3-none-any.whl
- Upload date:
- Size: 19.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e48855bea0a1ebf8ef2afe1d2b1e3137ca5730393dce438f67979917901c3d5f
|
|
| MD5 |
e75d554dad15f5def69ffaa75f08d245
|
|
| BLAKE2b-256 |
c9d9d431ebe811b1eef8ad19021107fce01e45353a7b05639d920bed1b563c14
|