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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
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.3-py3-none-any.whl.
File metadata
- Download URL: tesseractpro-0.1.3-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 |
34c6e20e8a8ba832843a9efa695701968b81c7709a03adf70a9ac4c4b11ff859
|
|
| MD5 |
ada6dca7a52dd97011b7f624cd7973a0
|
|
| BLAKE2b-256 |
ed857b305e9ff8005fb136c66e68ef3e332f3eacd589ee01b77983b8e275e4e2
|