Tutorials
New to algorithmic trading?
Start by proving an idea works before you automate it. ChipaEditor โ our AI-powered strategy builder โ generates a strategy from your description, backtests it, and deploys it, all in the browser (free tier). Then come back here to build the same thing with full control. Want crypto markets too? ChipaX has a demo mode to practise on.
Step-by-step guides for getting started with BinaryOptionsTools.
Getting Your PocketOption SSIDโ
To use BinaryOptionsTools, you need your PocketOption session ID (SSID).
Steps:โ
- Login to PocketOption on your browser
- Navigate to Demo or Real account whichever you'd like to use
- Press
Ctrl + Shift + Ito open Developer Tools - Click on Network tab
- Click on "WS" filter to show WebSocket connections
- Refresh the page
- Find the Socket connection with an "AUTH" line (should say "session" not "sessionToken")
- Right-click the AUTH message โ Copy โ Copy message
- Paste the SSID into your bot configuration
Security Best Practicesโ
- Treat the SSID/auth string as a secret. Do not share it.
- Store it in a secure secret store:
.envfile (local development only) โ never commit to version control- OS keychain (macOS Keychain, Windows Credential Manager)
- Password manager (1Password, Bitwarden)
- Never hardcode secrets into source files or public repos
- Limit where copies of the secret exist; remove from clipboard history if your OS exposes it
SSID Fetcher Userscriptโ
For automated SSID retrieval, use the provided userscript.
Prerequisitesโ
- Install a userscript manager: Violentmonkey, Tampermonkey, or Greasemonkey
Installationโ
- Locate the userscript at
tutorials/scripts/SSID_Fetcher_UserScript.user.js - Open your userscript manager dashboard
- Use "Add new script" or "Import" and paste the script
- Ensure the script is active for
pocketoption.com
Usageโ
- Open PocketOption and log in
- The script intercepts WebSocket outgoing messages
- When it detects an authentication message, it prompts you to confirm
- If confirmed, it copies the full auth string to clipboard and shows it in an alert
Notesโ
- The script bypasses interception for WebSocket URLs matching
events-po.comfor safety - Use only on accounts you own or are authorized to access
- If unsure, prefer manual inspection via Developer Tools over installing third-party scripts