├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── lib ├── __init__.py ├── _cryptonews.py ├── _models.py ├── _shared.py └── _storage.py ├── poetry.lock ├── pyproject.toml ├── template.env └── trade.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/README.md -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/_cryptonews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/lib/_cryptonews.py -------------------------------------------------------------------------------- /lib/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/lib/_models.py -------------------------------------------------------------------------------- /lib/_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/lib/_shared.py -------------------------------------------------------------------------------- /lib/_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/lib/_storage.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/pyproject.toml -------------------------------------------------------------------------------- /template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/template.env -------------------------------------------------------------------------------- /trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuco23/GCT/HEAD/trade.py --------------------------------------------------------------------------------