Overview of supported trading platforms and integration details.
PocketOptionAsyncPocketOptionfrom 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())