forked from ChipaDevTeam/PocketOptionAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
41 lines (41 loc) · 1.93 KB
/
faq.html
File metadata and controls
41 lines (41 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - PocketOptionAPI Async Docs</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>PocketOptionAPI Async</h1>
<nav>
<a href="index.html">Home</a>
<a href="quickstart.html">Quickstart</a>
<a href="api.html">API Reference</a>
<a href="examples.html">Examples</a>
<a href="faq.html">FAQ</a>
</nav>
</header>
<main>
<h2>Frequently Asked Questions</h2>
<div class="card">
<h3>How do I get my SSID?</h3>
<p>Log in to Pocket Option, open your browser's DevTools, go to the Application/Storage tab, and copy the value of the <b>SSID</b> cookie.</p>
<h3>Does this work with real accounts?</h3>
<p>Yes! Set <code>is_demo=False</code> when creating the client to use your real account.</p>
<h3>Is this library safe?</h3>
<p>This library uses your SSID to connect to Pocket Option. Keep your SSID private and never share it. The library is open source for transparency.</p>
<h3>Can I use this to build a trading bot?</h3>
<p>Absolutely! The async API is perfect for bot development. Or, <a href="https://shop.chipatrade.com/products/create-your-bot?variant=42924637487206" target="_blank">let us build a bot for you</a>.</p>
<h3>Where can I get help?</h3>
<p>Check the <a href="https://github.com/ChipaDevTeam/PocketOptionAPI" target="_blank">GitHub repo</a> for issues, or contact us via the shop link above.</p>
</div>
<div class="advert">
Want a custom trading bot? <a href="https://shop.chipatrade.com/products/create-your-bot?variant=42924637487206" target="_blank">Let us build it for you!</a>
</div>
</main>
</body>
<script src="codeblock.js"></script>
</html>