├── .flake8 ├── .github └── workflows │ └── django.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── backend ├── .env.example ├── __init__.py ├── asgi.py ├── auth0login │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── auth0backend.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── nucleo-icons.css │ │ │ │ ├── nucleo-svg.css │ │ │ │ ├── soft-ui-dashboard.css │ │ │ │ ├── soft-ui-dashboard.css.map │ │ │ │ └── soft-ui-dashboard.min.css │ │ │ ├── fonts │ │ │ │ ├── nucleo-icons.eot │ │ │ │ ├── nucleo-icons.svg │ │ │ │ ├── nucleo-icons.ttf │ │ │ │ ├── nucleo-icons.woff │ │ │ │ ├── nucleo-icons.woff2 │ │ │ │ ├── nucleo.eot │ │ │ │ ├── nucleo.ttf │ │ │ │ ├── nucleo.woff │ │ │ │ └── nucleo.woff2 │ │ │ ├── gulpfile.js │ │ │ ├── img │ │ │ │ ├── apple-icon.png │ │ │ │ ├── bruce-mars.jpg │ │ │ │ ├── curved-images │ │ │ │ │ ├── curved0.jpg │ │ │ │ │ ├── curved1.jpg │ │ │ │ │ ├── curved14.jpg │ │ │ │ │ ├── curved6.jpg │ │ │ │ │ ├── curved8.jpg │ │ │ │ │ └── white-curved.jpeg │ │ │ │ ├── down-arrow-dark.svg │ │ │ │ ├── down-arrow.svg │ │ │ │ ├── favicon.png │ │ │ │ ├── home-decor-1.jpg │ │ │ │ ├── home-decor-2.jpg │ │ │ │ ├── home-decor-3.jpg │ │ │ │ ├── illustrations │ │ │ │ │ └── rocket-white.png │ │ │ │ ├── ivana-square.jpg │ │ │ │ ├── ivancik.jpg │ │ │ │ ├── kal-visuals-square.jpg │ │ │ │ ├── logo-ct.png │ │ │ │ ├── logos │ │ │ │ │ ├── mastercard.png │ │ │ │ │ └── visa.png │ │ │ │ ├── marie.jpg │ │ │ │ ├── shapes │ │ │ │ │ └── waves-white.svg │ │ │ │ ├── small-logos │ │ │ │ │ ├── icon-sun-cloud.png │ │ │ │ │ ├── logo-atlassian.svg │ │ │ │ │ ├── logo-invision.svg │ │ │ │ │ ├── logo-jira.svg │ │ │ │ │ ├── logo-slack.svg │ │ │ │ │ ├── logo-spotify.svg │ │ │ │ │ ├── logo-webdev.svg │ │ │ │ │ └── logo-xd.svg │ │ │ │ ├── team-1.jpg │ │ │ │ ├── team-2.jpg │ │ │ │ ├── team-3.jpg │ │ │ │ ├── team-4.jpg │ │ │ │ └── vr-bg.jpg │ │ │ ├── js │ │ │ │ ├── core │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ ├── plugins │ │ │ │ │ ├── Chart.extension.js │ │ │ │ │ ├── bootstrap-notify.js │ │ │ │ │ ├── chartjs.min.js │ │ │ │ │ ├── choices.min.js │ │ │ │ │ ├── fullcalendar.min.js │ │ │ │ │ ├── perfect-scrollbar.min.js │ │ │ │ │ └── smooth-scrollbar.min.js │ │ │ │ ├── soft-ui-dashboard.js │ │ │ │ ├── soft-ui-dashboard.js.map │ │ │ │ └── soft-ui-dashboard.min.js │ │ │ ├── package.json │ │ │ └── scss │ │ │ │ ├── soft-ui-dashboard.scss │ │ │ │ └── soft-ui-dashboard │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _avatars.scss │ │ │ │ ├── _backgrounds.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards-extend.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _components.scss │ │ │ │ ├── _dropdown-extend.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _dropup.scss │ │ │ │ ├── _fixed-plugin.scss │ │ │ │ ├── _floating-elements.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _info-areas.scss │ │ │ │ ├── _list-check.scss │ │ │ │ ├── _misc-extend.scss │ │ │ │ ├── _misc.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar-vertical-extend.scss │ │ │ │ ├── _navbar-vertical.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _rtl-extend.scss │ │ │ │ ├── _rtl.scss │ │ │ │ ├── _social-buttons.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tilt.scss │ │ │ │ ├── _timeline.scss │ │ │ │ ├── _tooltips.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── _utilities-extend.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── badges │ │ │ │ ├── _badge-circle.scss │ │ │ │ ├── _badge-dot.scss │ │ │ │ ├── _badge-floating.scss │ │ │ │ └── _badge.scss │ │ │ │ ├── bootstrap │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _containers.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _helpers.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _offcanvas.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _spinners.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _toasts.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap-utilities.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── forms │ │ │ │ │ ├── _floating-labels.scss │ │ │ │ │ ├── _form-check.scss │ │ │ │ │ ├── _form-control.scss │ │ │ │ │ ├── _form-range.scss │ │ │ │ │ ├── _form-select.scss │ │ │ │ │ ├── _form-text.scss │ │ │ │ │ ├── _input-group.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ └── _validation.scss │ │ │ │ ├── helpers │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _colored-links.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _ratio.scss │ │ │ │ │ ├── _stretched-link.scss │ │ │ │ │ ├── _text-truncation.scss │ │ │ │ │ └── _visually-hidden.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _caret.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _color-scheme.scss │ │ │ │ │ ├── _container.scss │ │ │ │ │ ├── _deprecate.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _table-variants.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ └── _visually-hidden.scss │ │ │ │ ├── utilities │ │ │ │ │ └── _api.scss │ │ │ │ └── vendor │ │ │ │ │ └── _rfs.scss │ │ │ │ ├── cards │ │ │ │ ├── card-background.scss │ │ │ │ ├── card-blog.scss │ │ │ │ ├── card-horizontal.scss │ │ │ │ ├── card-pricing.scss │ │ │ │ └── card-profile.scss │ │ │ │ ├── custom │ │ │ │ ├── _styles.scss │ │ │ │ └── _variables.scss │ │ │ │ ├── forms │ │ │ │ ├── _form-check.scss │ │ │ │ ├── _form-select.scss │ │ │ │ ├── _form-switch.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _inputs.scss │ │ │ │ └── _labels.scss │ │ │ │ ├── mixins │ │ │ │ ├── _badge.scss │ │ │ │ ├── _colored-shadows.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _social-buttons.scss │ │ │ │ └── mixins.scss │ │ │ │ ├── plugins │ │ │ │ ├── free │ │ │ │ │ ├── _flatpickr.scss │ │ │ │ │ ├── _nouislider.scss │ │ │ │ │ ├── _perfect-scrollbar.scss │ │ │ │ │ ├── _prism.scss │ │ │ │ │ └── plugins.scss │ │ │ │ └── pro │ │ │ │ │ ├── _carousel-slick.scss │ │ │ │ │ ├── _choices.scss │ │ │ │ │ ├── _datatable-extend.scss │ │ │ │ │ ├── _datatable.scss │ │ │ │ │ ├── _dragula.scss │ │ │ │ │ ├── _dropzone.scss │ │ │ │ │ ├── _fullcalendar-extend.scss │ │ │ │ │ ├── _fullcalendar.scss │ │ │ │ │ ├── _glidejs.scss │ │ │ │ │ ├── _highlight.scss │ │ │ │ │ ├── _kanban.scss │ │ │ │ │ ├── _leaflet.scss │ │ │ │ │ ├── _list-check.scss │ │ │ │ │ ├── _photoswipe.scss │ │ │ │ │ ├── _quill.scss │ │ │ │ │ ├── _rating-widget.scss │ │ │ │ │ ├── _sweetalert2-extend.scss │ │ │ │ │ ├── _sweetalert2.scss │ │ │ │ │ ├── multi-step.scss │ │ │ │ │ └── plugins-extend.scss │ │ │ │ ├── theme-pro.scss │ │ │ │ ├── theme.scss │ │ │ │ └── variables │ │ │ │ ├── _animations.scss │ │ │ │ ├── _avatars.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _cards-extend.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _choices.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _fixed-plugin.scss │ │ │ │ ├── _form-switch.scss │ │ │ │ ├── _full-calendar.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _info-areas.scss │ │ │ │ ├── _misc-extend.scss │ │ │ │ ├── _misc.scss │ │ │ │ ├── _navbar-vertical.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _rtl.scss │ │ │ │ ├── _social-buttons.scss │ │ │ │ ├── _table.scss │ │ │ │ ├── _timeline.scss │ │ │ │ ├── _utilities-extend.scss │ │ │ │ ├── _utilities.scss │ │ │ │ └── _virtual-reality.scss │ │ ├── dashboard │ │ │ └── style.css │ │ ├── favicon.ico │ │ ├── image │ │ │ ├── icon.jpg │ │ │ └── logo.jpg │ │ └── sitemap.xml │ ├── templates │ │ ├── accounts │ │ │ ├── login.html │ │ │ └── register.html │ │ ├── dashboard.html │ │ ├── home │ │ │ ├── index.html │ │ │ ├── machine-learning.html │ │ │ ├── orders.html │ │ │ ├── page-403.html │ │ │ ├── page-404.html │ │ │ ├── page-500.html │ │ │ ├── page-not-implemented.html │ │ │ ├── positions.html │ │ │ ├── rtl.html │ │ │ ├── sign-in.html │ │ │ ├── sign-up.html │ │ │ └── user-settings.html │ │ ├── includes │ │ │ ├── fixed-plugin.html │ │ │ ├── footer-fullscreen.html │ │ │ ├── footer.html │ │ │ ├── navigation-fullscreen.html │ │ │ ├── navigation-rtl.html │ │ │ ├── navigation.html │ │ │ ├── scripts.html │ │ │ ├── sidebar-rtl.html │ │ │ └── sidebar.html │ │ ├── layouts │ │ │ ├── base-fullscreen.html │ │ │ └── base.html │ │ └── login.html │ ├── templatetags │ │ ├── __init__.py │ │ └── poll_extras.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── home │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── settings.py ├── tradingbot │ ├── __init__.py │ ├── admin.py │ ├── apimanagers.py │ ├── apiutility.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_stockinstance_user.py │ │ ├── 0003_auto_20220108_1759.py │ │ ├── 0004_alter_order_status.py │ │ ├── 0005_auto_20220110_0101.py │ │ ├── 0006_auto_20220110_2318.py │ │ ├── 0007_alter_portfolio_optimization_strategy.py │ │ ├── 0008_alter_portfolio_optimization_strategy.py │ │ ├── 0009_alter_order_status.py │ │ ├── 0010_auto_20220519_1822.py │ │ └── __init__.py │ ├── models.py │ ├── synchronization.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── urls.py └── wsgi.py ├── docker-compose.yaml ├── dockerfile ├── docs └── web │ └── running_the_app.md ├── manage.py ├── ml ├── README.md ├── __init__.py ├── data_collection │ ├── collect_finviz_articles.py │ ├── collect_news.py │ ├── collect_rss.py │ ├── interface.py │ ├── save_all_data.py │ ├── scrape_finviz.py │ └── stock_list.txt ├── requirements.txt └── tradingbots │ ├── __init__.py │ ├── components │ ├── __init__.py │ ├── hiddenmarkov.py │ ├── metrics.py │ ├── montecarlo.py │ ├── naiveportfoliomanager.py │ ├── portfoliomanager.py │ ├── test_metrics.py │ ├── test_montecarlo.py │ ├── test_naivehmmportfolioupdate.py │ └── utils.py │ ├── pipelines │ ├── __init__.py │ ├── hiddenmarkov_pipeline.py │ ├── monte_carlo_w_ma.py │ ├── pipeline.py │ └── test_pipeline.py │ └── trader.py ├── requirements.txt ├── scripts ├── assets.py ├── bootstrap.sh ├── botmanagers.py ├── bots.py └── db_setup.sql ├── service.yaml └── setup.md /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/asgi.py -------------------------------------------------------------------------------- /backend/auth0login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/auth0login/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/admin.py -------------------------------------------------------------------------------- /backend/auth0login/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/apps.py -------------------------------------------------------------------------------- /backend/auth0login/auth0backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/auth0backend.py -------------------------------------------------------------------------------- /backend/auth0login/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/forms.py -------------------------------------------------------------------------------- /backend/auth0login/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/auth0login/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/auth0login/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/models.py -------------------------------------------------------------------------------- /backend/auth0login/static/assets/css/nucleo-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/css/nucleo-icons.css -------------------------------------------------------------------------------- /backend/auth0login/static/assets/css/nucleo-svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/css/nucleo-svg.css -------------------------------------------------------------------------------- /backend/auth0login/static/assets/css/soft-ui-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/css/soft-ui-dashboard.css -------------------------------------------------------------------------------- /backend/auth0login/static/assets/css/soft-ui-dashboard.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/css/soft-ui-dashboard.css.map -------------------------------------------------------------------------------- /backend/auth0login/static/assets/css/soft-ui-dashboard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/css/soft-ui-dashboard.min.css -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo.eot -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo.ttf -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo.woff -------------------------------------------------------------------------------- /backend/auth0login/static/assets/fonts/nucleo.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/fonts/nucleo.woff2 -------------------------------------------------------------------------------- /backend/auth0login/static/assets/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/gulpfile.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/apple-icon.png -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/bruce-mars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/bruce-mars.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/curved-images/curved0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/curved-images/curved0.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/curved-images/curved1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/curved-images/curved1.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/curved-images/curved14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/curved-images/curved14.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/curved-images/curved6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/curved-images/curved6.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/curved-images/curved8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/curved-images/curved8.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/curved-images/white-curved.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/curved-images/white-curved.jpeg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/down-arrow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/down-arrow-dark.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/down-arrow.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/favicon.png -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/home-decor-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/home-decor-1.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/home-decor-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/home-decor-2.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/home-decor-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/home-decor-3.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/illustrations/rocket-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/illustrations/rocket-white.png -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/ivana-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/ivana-square.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/ivancik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/ivancik.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/kal-visuals-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/kal-visuals-square.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/logo-ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/logo-ct.png -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/logos/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/logos/mastercard.png -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/logos/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/logos/visa.png -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/marie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/marie.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/shapes/waves-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/shapes/waves-white.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/small-logos/icon-sun-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/small-logos/icon-sun-cloud.png -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/small-logos/logo-atlassian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/small-logos/logo-atlassian.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/small-logos/logo-invision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/small-logos/logo-invision.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/small-logos/logo-jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/small-logos/logo-jira.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/small-logos/logo-slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/small-logos/logo-slack.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/small-logos/logo-spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/small-logos/logo-spotify.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/small-logos/logo-webdev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/small-logos/logo-webdev.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/small-logos/logo-xd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/small-logos/logo-xd.svg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/team-1.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/team-2.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/team-3.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/team-4.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/img/vr-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/img/vr-bg.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/core/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/core/bootstrap.min.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/core/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/core/popper.min.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/plugins/Chart.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/plugins/Chart.extension.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/plugins/bootstrap-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/plugins/bootstrap-notify.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/plugins/chartjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/plugins/chartjs.min.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/plugins/choices.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/plugins/choices.min.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/plugins/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/plugins/fullcalendar.min.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/plugins/perfect-scrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/plugins/perfect-scrollbar.min.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/plugins/smooth-scrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/plugins/smooth-scrollbar.min.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/soft-ui-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/soft-ui-dashboard.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/soft-ui-dashboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/soft-ui-dashboard.js.map -------------------------------------------------------------------------------- /backend/auth0login/static/assets/js/soft-ui-dashboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/js/soft-ui-dashboard.min.js -------------------------------------------------------------------------------- /backend/auth0login/static/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/package.json -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_accordion.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_alert.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_avatars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_avatars.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_backgrounds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_backgrounds.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_badge.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_breadcrumbs.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_buttons.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_cards-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_cards-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_cards.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_components.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_dropdown-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_dropdown-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_dropdown.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_dropup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_dropup.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_fixed-plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_fixed-plugin.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_floating-elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_floating-elements.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_footer.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_forms.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_gradients.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_header.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_info-areas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_info-areas.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_list-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_list-check.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_misc-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_misc-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_misc.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_nav.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_navbar-vertical-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_navbar-vertical-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_navbar-vertical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_navbar-vertical.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_navbar.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_pagination.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_popovers.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_progress.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_rtl-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_rtl-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_rtl.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_social-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_social-buttons.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_tables.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_tilt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_tilt.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_timeline.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_tooltips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_tooltips.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_typography.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_utilities-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_utilities-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_utilities.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/_variables.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/badges/_badge-circle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/badges/_badge-circle.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/badges/_badge-dot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/badges/_badge-dot.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/badges/_badge-floating.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/badges/_badge-floating.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/badges/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/badges/_badge.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_accordion.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_alert.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_badge.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_button-group.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_card.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_close.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_containers.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_forms.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_functions.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_grid.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_helpers.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_images.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_modal.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_nav.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_offcanvas.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_popover.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_progress.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_root.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_tables.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_type.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/_variables.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/bootstrap-grid.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/bootstrap-reboot.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/bootstrap-utilities.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_floating-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_floating-labels.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-check.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-control.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-range.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-select.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_form-text.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_input-group.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_labels.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/forms/_validation.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_clearfix.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_colored-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_colored-links.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_position.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_ratio.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_stretched-link.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_text-truncation.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_alert.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_caret.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_color-scheme.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_container.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_deprecate.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_lists.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_table-variants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_table-variants.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_transition.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_utilities.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/mixins/_visually-hidden.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/utilities/_api.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/bootstrap/vendor/_rfs.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-background.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-blog.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-horizontal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-horizontal.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-pricing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-pricing.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/cards/card-profile.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/custom/_styles.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/custom/_variables.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_form-check.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_form-select.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_form-switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_form-switch.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_forms.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_input-group.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_inputs.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/forms/_labels.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/_badge.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/_colored-shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/_colored-shadows.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/_hover.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/_social-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/_social-buttons.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/mixins/mixins.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/_flatpickr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/_flatpickr.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/_nouislider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/_nouislider.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/_perfect-scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/_perfect-scrollbar.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/_prism.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/_prism.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/plugins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/free/plugins.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_carousel-slick.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_carousel-slick.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_choices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_choices.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_datatable-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_datatable-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_datatable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_datatable.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_dragula.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_dragula.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_dropzone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_dropzone.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_fullcalendar-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_fullcalendar-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_fullcalendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_fullcalendar.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_glidejs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_glidejs.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_highlight.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_kanban.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_kanban.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_leaflet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_leaflet.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_list-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_list-check.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_photoswipe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_photoswipe.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_quill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_quill.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_rating-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_rating-widget.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_sweetalert2-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_sweetalert2-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_sweetalert2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/_sweetalert2.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/multi-step.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/multi-step.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/plugins-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/plugins/pro/plugins-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/theme-pro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/theme-pro.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/theme.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_animations.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_avatars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_avatars.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_badge.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_breadcrumb.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_cards-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_cards-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_cards.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_choices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_choices.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_dropdowns.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_fixed-plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_fixed-plugin.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_form-switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_form-switch.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_full-calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_full-calendar.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_header.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_info-areas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_info-areas.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_misc-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_misc-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_misc.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_navbar-vertical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_navbar-vertical.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_navbar.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_pagination.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_rtl.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_social-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_social-buttons.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_table.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_timeline.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_utilities-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_utilities-extend.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_utilities.scss -------------------------------------------------------------------------------- /backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_virtual-reality.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/assets/scss/soft-ui-dashboard/variables/_virtual-reality.scss -------------------------------------------------------------------------------- /backend/auth0login/static/dashboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/dashboard/style.css -------------------------------------------------------------------------------- /backend/auth0login/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/favicon.ico -------------------------------------------------------------------------------- /backend/auth0login/static/image/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/image/icon.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/image/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/image/logo.jpg -------------------------------------------------------------------------------- /backend/auth0login/static/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/static/sitemap.xml -------------------------------------------------------------------------------- /backend/auth0login/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/accounts/login.html -------------------------------------------------------------------------------- /backend/auth0login/templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/accounts/register.html -------------------------------------------------------------------------------- /backend/auth0login/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/dashboard.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/index.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/machine-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/machine-learning.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/orders.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/page-403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/page-403.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/page-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/page-404.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/page-500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/page-500.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/page-not-implemented.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/page-not-implemented.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/positions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/positions.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/rtl.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/sign-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/sign-in.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/sign-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/sign-up.html -------------------------------------------------------------------------------- /backend/auth0login/templates/home/user-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/home/user-settings.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/fixed-plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/fixed-plugin.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/footer-fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/footer-fullscreen.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/footer.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/navigation-fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/navigation-fullscreen.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/navigation-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/navigation-rtl.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/navigation.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/scripts.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/sidebar-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/sidebar-rtl.html -------------------------------------------------------------------------------- /backend/auth0login/templates/includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/includes/sidebar.html -------------------------------------------------------------------------------- /backend/auth0login/templates/layouts/base-fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/layouts/base-fullscreen.html -------------------------------------------------------------------------------- /backend/auth0login/templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/layouts/base.html -------------------------------------------------------------------------------- /backend/auth0login/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templates/login.html -------------------------------------------------------------------------------- /backend/auth0login/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/auth0login/templatetags/poll_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/templatetags/poll_extras.py -------------------------------------------------------------------------------- /backend/auth0login/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/auth0login/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/urls.py -------------------------------------------------------------------------------- /backend/auth0login/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/auth0login/views.py -------------------------------------------------------------------------------- /backend/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/home/admin.py -------------------------------------------------------------------------------- /backend/home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/home/apps.py -------------------------------------------------------------------------------- /backend/home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/home/models.py -------------------------------------------------------------------------------- /backend/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/home/tests.py -------------------------------------------------------------------------------- /backend/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/home/urls.py -------------------------------------------------------------------------------- /backend/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/home/views.py -------------------------------------------------------------------------------- /backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/settings.py -------------------------------------------------------------------------------- /backend/tradingbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tradingbot/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/admin.py -------------------------------------------------------------------------------- /backend/tradingbot/apimanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/apimanagers.py -------------------------------------------------------------------------------- /backend/tradingbot/apiutility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/apiutility.py -------------------------------------------------------------------------------- /backend/tradingbot/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/apps.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0002_alter_stockinstance_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0002_alter_stockinstance_user.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0003_auto_20220108_1759.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0003_auto_20220108_1759.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0004_alter_order_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0004_alter_order_status.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0005_auto_20220110_0101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0005_auto_20220110_0101.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0006_auto_20220110_2318.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0006_auto_20220110_2318.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0007_alter_portfolio_optimization_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0007_alter_portfolio_optimization_strategy.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0008_alter_portfolio_optimization_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0008_alter_portfolio_optimization_strategy.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0009_alter_order_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0009_alter_order_status.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/0010_auto_20220519_1822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/migrations/0010_auto_20220519_1822.py -------------------------------------------------------------------------------- /backend/tradingbot/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tradingbot/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/models.py -------------------------------------------------------------------------------- /backend/tradingbot/synchronization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/synchronization.py -------------------------------------------------------------------------------- /backend/tradingbot/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/tests.py -------------------------------------------------------------------------------- /backend/tradingbot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/urls.py -------------------------------------------------------------------------------- /backend/tradingbot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/tradingbot/views.py -------------------------------------------------------------------------------- /backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/urls.py -------------------------------------------------------------------------------- /backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/backend/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/dockerfile -------------------------------------------------------------------------------- /docs/web/running_the_app.md: -------------------------------------------------------------------------------- 1 | # Locally 2 | Need to have python 3 | 4 | 5 | # Deployment -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/manage.py -------------------------------------------------------------------------------- /ml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/README.md -------------------------------------------------------------------------------- /ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ml/data_collection/collect_finviz_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/data_collection/collect_finviz_articles.py -------------------------------------------------------------------------------- /ml/data_collection/collect_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/data_collection/collect_news.py -------------------------------------------------------------------------------- /ml/data_collection/collect_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/data_collection/collect_rss.py -------------------------------------------------------------------------------- /ml/data_collection/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/data_collection/interface.py -------------------------------------------------------------------------------- /ml/data_collection/save_all_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/data_collection/save_all_data.py -------------------------------------------------------------------------------- /ml/data_collection/scrape_finviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/data_collection/scrape_finviz.py -------------------------------------------------------------------------------- /ml/data_collection/stock_list.txt: -------------------------------------------------------------------------------- 1 | AAPL 2 | AMZN 3 | GOOG 4 | MSFT -------------------------------------------------------------------------------- /ml/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ml/tradingbots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ml/tradingbots/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ml/tradingbots/components/hiddenmarkov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/hiddenmarkov.py -------------------------------------------------------------------------------- /ml/tradingbots/components/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/metrics.py -------------------------------------------------------------------------------- /ml/tradingbots/components/montecarlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/montecarlo.py -------------------------------------------------------------------------------- /ml/tradingbots/components/naiveportfoliomanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/naiveportfoliomanager.py -------------------------------------------------------------------------------- /ml/tradingbots/components/portfoliomanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/portfoliomanager.py -------------------------------------------------------------------------------- /ml/tradingbots/components/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/test_metrics.py -------------------------------------------------------------------------------- /ml/tradingbots/components/test_montecarlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/test_montecarlo.py -------------------------------------------------------------------------------- /ml/tradingbots/components/test_naivehmmportfolioupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/test_naivehmmportfolioupdate.py -------------------------------------------------------------------------------- /ml/tradingbots/components/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/components/utils.py -------------------------------------------------------------------------------- /ml/tradingbots/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ml/tradingbots/pipelines/hiddenmarkov_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/pipelines/hiddenmarkov_pipeline.py -------------------------------------------------------------------------------- /ml/tradingbots/pipelines/monte_carlo_w_ma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/pipelines/monte_carlo_w_ma.py -------------------------------------------------------------------------------- /ml/tradingbots/pipelines/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/pipelines/pipeline.py -------------------------------------------------------------------------------- /ml/tradingbots/pipelines/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/pipelines/test_pipeline.py -------------------------------------------------------------------------------- /ml/tradingbots/trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/ml/tradingbots/trader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/scripts/assets.py -------------------------------------------------------------------------------- /scripts/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/scripts/bootstrap.sh -------------------------------------------------------------------------------- /scripts/botmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/scripts/botmanagers.py -------------------------------------------------------------------------------- /scripts/bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/scripts/bots.py -------------------------------------------------------------------------------- /scripts/db_setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/scripts/db_setup.sql -------------------------------------------------------------------------------- /service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/service.yaml -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UTMIST/WallStreetBots/HEAD/setup.md --------------------------------------------------------------------------------