This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h scroll left | |
j scroll down | |
k scroll up | |
l scroll right | |
gg scroll to top of the page | |
G scroll to bottom of the page | |
f activate link hints mode to open in current tab | |
F activate link hints mode to open in new tab | |
r reload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
a simple stop loss/start gain bot | |
adjust STOP_PRICE/START_PRICE and STOP_VOLUME/START_VOLUME to your needs. | |
to reset orders during runtime, press (s) for a new stop order and (g) for a new start gain | |
The file can be reloaded after editing without restarting goxtool by simply pressing the (l) key. | |
""" | |
# Using the global statement | |
# pylint: disable=W0603 | |
# No exception type(s) specified | |
# pylint: disable=W0702 |