Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import threading
from logging import getLogger
class Bot(bfbase.BFBaseBot):
def __init__(self):
super().__init__()
threading.Thread(target=self.manage_position).start()
self.order_list = []
self.old_order_list = []
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import threading
from time import sleep
import sys
import configparser
from logging import getLogger, FileHandler, StreamHandler, Formatter, DEBUG
import traceback
logger = getLogger(name="delta_mm")
logger.setLevel(DEBUG)
handler1 = StreamHandler()
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.