├── .gitignore ├── README.md ├── assets ├── img1.png └── screenshot.png ├── content ├── about.md ├── explainer.md ├── futures_premiums1.md ├── futures_premiums2.md ├── intro.md ├── perpetuals_funding1.md ├── perpetuals_funding2.md └── risks.md ├── dashboard.py ├── data_downloader.py ├── poetry.lock └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/README.md -------------------------------------------------------------------------------- /assets/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/assets/img1.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/content/about.md -------------------------------------------------------------------------------- /content/explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/content/explainer.md -------------------------------------------------------------------------------- /content/futures_premiums1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/content/futures_premiums1.md -------------------------------------------------------------------------------- /content/futures_premiums2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/content/futures_premiums2.md -------------------------------------------------------------------------------- /content/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/content/intro.md -------------------------------------------------------------------------------- /content/perpetuals_funding1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/content/perpetuals_funding1.md -------------------------------------------------------------------------------- /content/perpetuals_funding2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/content/perpetuals_funding2.md -------------------------------------------------------------------------------- /content/risks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/content/risks.md -------------------------------------------------------------------------------- /dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/dashboard.py -------------------------------------------------------------------------------- /data_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/data_downloader.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/BinancePremiums/HEAD/poetry.lock -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit==0.88 2 | pandas 3 | numpy 4 | python-binance 5 | --------------------------------------------------------------------------------