Supported Platforms

Overview of supported trading platforms and integration details.

PocketOption

Example: Connect and Get Balance

from BinaryOptionsToolsAsync.pocketoption import PocketOptionAsync
import asyncio

async def main():
    api = PocketOptionAsync(ssid, demo=True)
    balance = await api.balance()
    print(balance)
    await api.close()

asyncio.run(main())