Skip to content

Instantly share code, notes, and snippets.

View Snufkin0866's full-sized avatar

Snufkin0866 Snufkin0866

View GitHub Profile
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 = []
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()
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.