Python Tinkoff API client for asyncio and humans
Project description
tinkoff-api
Python Tinkoff API client for asyncio and humans.
Table of contens
Covered APIs
- Tinkoff Investments (official docs)
Features
- Clients for both REST and Streaming protocols in Tinkoff Investments
- Presence of data classes for all interaction with API
- Automatic reconnection and keep-alive connections
- Internal exclusive rate limiter for every resource in REST protocol
- Friendly exceptions for API errors
Installation
Use pip to install:
$ pip install tinkoff-api
Usage examples
REST API client:
import asyncio
from datetime import datetime
from tinkoff.investments import (
TinkoffInvestmentsRESTClient, Environment,CandleResolution
)
from tinkoff.investments.client.exceptions import TinkoffInvestmentsError
async def show_apple_year_candles():
try:
async with TinkoffInvestmentsRESTClient(
token='TOKEN',
environment=Environment.SANDBOX) as client:
candles = await client.market.candles.get(
figi='BBG000B9XRY4',
dt_from=datetime(2019, 1, 1),
dt_to=datetime(2019, 12, 31),
interval=CandleResolution.DAY
)
for candle in candles:
print(f'{candle.time}: {candle.h}')
except TinkoffInvestmentsError as e:
print(e)
async def jackpot():
try:
async with TinkoffInvestmentsRESTClient(
token='TOKEN',
environment=Environment.SANDBOX) as client:
instruments = await client.market.instruments.search('AAPL')
apple = instruments[0]
account = await client.sandbox.accounts.register()
await client.sandbox.accounts.positions.set_balance(
broker_account_id=account.brokerAccountId,
figi=apple.figi,
balance=100,
)
print('We created the following portfolio:')
positions = await client.portfolio.get_positions()
for position in positions:
print(f'{position.name}: {position.lots} lots')
except TinkoffInvestmentsError as e:
print(e)
asyncio.run(jackpot())
Streaming Client:
import asyncio
from datetime import datetime
from tinkoff.investments import (
TinkoffInvestmentsStreamingClient, CandleEvent, CandleResolution
)
client = TinkoffInvestmentsStreamingClient(token='TOKEN')
@client.events.candles('BBG009S39JX6', CandleResolution.MIN_1)
@client.events.candles('BBG000B9XRY4', CandleResolution.MIN_1)
async def on_candle(candle: CandleEvent, server_time: datetime):
print(candle, server_time)
asyncio.run(client.run())
Dynamic subscriptions in runtime:
import asyncio
from datetime import datetime
from tinkoff.investments import (
TinkoffInvestmentsStreamingClient, CandleEvent, CandleResolution
)
client = TinkoffInvestmentsStreamingClient(token='TOKEN')
@client.events.candles('BBG000B9XRY4', CandleResolution.HOUR)
async def on_candle(candle: CandleEvent, server_time: datetime):
if candle.h > 1000:
await client.events.candles.subscribe(
callback=on_candle,
figi=candle.figi,
interval=CandleResolution.MIN_1
)
elif candle.h < 1000:
await client.events.candles.unsubscribe(
candle.figi, CandleResolution.MIN_1
)
asyncio.run(client.run())
Complete simple bot:
import asyncio
from datetime import datetime
from tinkoff.investments import (
TinkoffInvestmentsStreamingClient, TinkoffInvestmentsRESTClient,
CandleEvent, CandleResolution, OperationType
)
streaming = TinkoffInvestmentsStreamingClient('TOKEN')
rest = TinkoffInvestmentsRESTClient('TOKEN')
@streaming.events.candles('BBG000B9XRY4', CandleResolution.MIN_1)
async def buy_apple(candle: CandleEvent, server_time: datetime):
if candle.c > 350:
await rest.orders.create_market_order(
figi='BBG000B9XRY4',
lots=1,
operation=OperationType.BUY,
broker_account_id=123,
)
asyncio.run(streaming.run())
Historical data:
import asyncio
from datetime import datetime
from tinkoff.investments import (
CandleResolution, TinkoffInvestmentsRESTClient, Environment
)
from tinkoff.investments.utils.historical_data import HistoricalData
async def get_minute_candles():
# show 1 minute candles for AAPL in 1 year period of time
async with TinkoffInvestmentsRESTClient(
token='TOKEN', environment=Environment.SANDBOX
) as client:
historical_data = HistoricalData(client)
async for candle in historical_data.iter_candles(
figi='BBG000B9XRY4',
dt_from=datetime(2019, 1, 1),
dt_to=datetime(2020, 1, 1),
interval=CandleResolution.MIN_1,
):
print(candle)
asyncio.run(get_minute_candles())
TODO
- allow to provide str constants along with specific enum objects
- add ability to unsubscribe by pattern
- rename some fields
- make some fields in snake case
- generate documentation
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
tinkoff-api-1.12.1.tar.gz
(16.8 kB
view details)
File details
Details for the file tinkoff-api-1.12.1.tar.gz
.
File metadata
- Download URL: tinkoff-api-1.12.1.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54bb698f743c4e9f570a6c431aa563f6bd9a9952a1e1e1c6aa9be1854651db3a |
|
MD5 | f0d03aefccff84224f4e51877358aca7 |
|
BLAKE2b-256 | fe71b119097b04b1e77cce3cced6e0190722d70ae08b059f8ca682a8a03b8452 |