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.0.tar.gz
(10.9 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.0.tar.gz.
File metadata
- Download URL: tesseractpro-0.1.0.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29bbb4da6eba2376f4688ca39ca82b836c554da6ecc6a8f3bf908fd93db4a93e
|
|
| MD5 |
66d460b492853a8614a8038916a6b94f
|
|
| BLAKE2b-256 |
74a983e74307af77ff0bfbc325c6cc4f7d16aa82259ad4df881f7e42d411099f
|
File details
Details for the file tesseractpro-0.1.0-py3-none-any.whl.
File metadata
- Download URL: tesseractpro-0.1.0-py3-none-any.whl
- Upload date:
- Size: 21.6 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 |
764f1af703f3ff0ca96a5df2e0ece335702a25df3ac196b96e34d9cb72992aa6
|
|
| MD5 |
37db31bdacc5ad43a5404543d7448a6f
|
|
| BLAKE2b-256 |
e0b990275a9c8e9eb8505d4b2b72fbaad9ec9da31a87251209a5984515177074
|