-
Notifications
You must be signed in to change notification settings - Fork 2k
FAQ.md #250
FAQ.md #250
Changes from 6 commits
80e2570
3132d14
a659719
fca4c36
bc71d15
933fa29
6c119d2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
## Frequently Asked Questions | ||
|
||
Here are a few questions that have been asked often as well as answers from the community. | ||
|
||
If you have a question that is not answered here, feel free to ask in the Discord chat and suggest it to be placed here. | ||
|
||
Thanks! | ||
|
||
|
||
### Contents | ||
|
||
* [Will I make money with Zenbot?](#money) | ||
* [Is Docker necessary when installing Zenbot?](#docker) | ||
* [Why do simulations, paper trading, and live trading all yield different results?](#sim-live-differences) | ||
* [Why should I use simulations or paper trading if they do not reflect live trading?](#why-sim) | ||
* [Does Zenbot use Limit orders or Market orders?](#limit-market-orders) | ||
* [Why does Zenbot use Limit orders by default?](#limit-orders) | ||
* [Is there a community to get involved with Zenbot?](#community) | ||
* [Why do I keep getting a this "Nonce" error?](#error-1) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this one is also often popping up: docker: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm curious; what is the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, the paper mode uses live data to simulate trades. Sim uses history data. |
||
|
||
|
||
**Will I make money with Zenbot?** <a name="money"></a> | ||
|
||
That depends… a lot. Different configurations and strategies will yield different results. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
The current default config and parameters will likely lose you money, so proceed with caution. Try running simulations and paper trading first to see how the bot acts (see warning below). | ||
|
||
|
||
|
||
**Is Docker necessary when installing Zenbot?** <a name="docker"></a> | ||
|
||
No, Docker is often not necessary to run Zenbot. It is often simpler to run Zenbot on a Linux machine (Ubuntu, CentOS, etc.) without Docker. | ||
|
||
If running Zenbot on Windows, Docker may be needed. | ||
|
||
|
||
|
||
**Why do simulations, paper trading, and live trading all yield different results?** <a name="sim-live-differences"></a> | ||
|
||
Simulations and paper trading almost always give overly optimistic results compared to live trading. This is because simulations and paper trading both make assumptions about when/if an order is filled. | ||
|
||
Because Zenbot defaults to using Limit orders (which often lessen fees), there tends to be much more slippage (the difference between when the bot decides to buy and when it actually buys) in live trading. Due to this, live trading is almost always worse than sims and paper trading. | ||
|
||
Also, remember that past results do not guarantee future returns. | ||
|
||
|
||
|
||
**Why should I use simulations or paper trading if they do not reflect live trading?** <a name="why-sim"></a> | ||
|
||
Simulations are more optimistic than paper trading. | ||
Paper trading is more optimistic than live trading. | ||
Therefore, if a simulation does not yield good results, odds are that neither will paper trading or (by extension) live trading. | ||
|
||
|
||
|
||
**Does Zenbot use Limit orders or Market orders?** <a name="limit-market-orders"></a> | ||
|
||
By default, Zenbot will use Limit orders, but support for Market orders has been added. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if FAQ-worthy: perhaps give a bit more info about the difference between limit order (maker) and market order (taker)? |
||
|
||
|
||
|
||
**Why does Zenbot use Limit orders by default?** <a name="limit-orders"></a> | ||
|
||
On most exchanges, Limit orders result in lower fees than Market orders. For instance, on GDAX there no fee for a Limit order trade compared to a 0.25% (BTC) or 0.3% (ETH & LTC) trade fee on a Market order. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
Check your exchange for fees. | ||
|
||
|
||
|
||
**Is there a community to get involved with Zenbot?** <a name="community"></a> | ||
|
||
Of course! Check out our Discord channel: | ||
|
||
[![zenbot logo](https://rawgit.com/carlos8f/zenbot/master/assets/discord.png)](https://discord.gg/ZdAd2gP) | ||
|
||
There is also a shared Google Doc spreadsheet containing community sim results and variable descriptions: | ||
[Click here for the Google Sheet](https://docs.google.com/spreadsheets/d/1WjFKRUY4KpkdIJiA3RVvKqiyNkMe9xtgLSfYESFXk1g/edit#gid=70204991). | ||
|
||
### Errors | ||
|
||
**Why do I keep getting this "Nonce" error? How do I solve it?** <a name="error-1"></a> | ||
|
||
This error may occur when multiple instances of Zenbot are used with the same API key. To avoid this, use a different API key for each concurrent instance of Zenbot. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is also possible that the server's time is not current, you could install NTP to solve this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe link
discord
here to#community
?