import pyupbitimport uuidimport jsonimport asyncioimport websocketsimport timedef get_all_ticker(): krw_ticker = pyupbit.get_tickers(fiat="KRW") print('krw_ticker :',krw_ticker) return krw_tickerasync def upbit_ticker(): All_ticker = get_all_ticker() price_dict = {} start_prices = {} historical_prices = {} t = time.strftime("%M") while True: try: asyn..