Initial import: grid-bot — grid trading bot for BTC-USDT on Cifra Markets

This commit is contained in:
Kolp
2026-09-24 13:22:23 +07:00
commit 642cc11a9f
18968 changed files with 5683248 additions and 0 deletions
@@ -0,0 +1,28 @@
import os
from datetime import datetime, timezone
from typing import List, Optional, Text, Union
def file_exists(path: Union[bytes, str, "os.PathLike[Text]"]) -> bool:
"""Validates file path as existing local file"""
return os.path.isfile(path)
def get_file_modtime(path: Union[bytes, str, "os.PathLike[Text]"]) -> Text:
"""Returns ISO formatted file modification time in local system timezone"""
return (
datetime.fromtimestamp(os.stat(path).st_mtime, timezone.utc)
.astimezone()
.isoformat()
)
def get_tables_argument_list(table_list: Optional[List[Text]]) -> Optional[List[Text]]:
"""Converts a list of OpenType table string into a Python list or
return None if the table_list was not defined (i.e., it was not included
in an option on the command line). Tables that are composed of three
characters must be right padded with a space."""
if table_list is None:
return None
else:
return [table.ljust(4) for table in table_list]