gitextract_9sgs8461/ ├── .gitignore ├── LICENSE ├── README.md ├── cbpro-trader/ │ ├── daemon/ │ │ ├── Dockerfile │ │ ├── cbpro-trader.py │ │ ├── config.yml.sample │ │ ├── engine/ │ │ │ ├── OrderBookCustom.py │ │ │ ├── Product.py │ │ │ ├── TradeAndHeartbeatWebsocket.py │ │ │ ├── TradeEngine.py │ │ │ └── __init__.py │ │ ├── indicators/ │ │ │ ├── IndicatorSubsystem.py │ │ │ └── __init__.py │ │ ├── interface/ │ │ │ ├── __init__.py │ │ │ ├── cursesDisplay.py │ │ │ └── web.py │ │ ├── period/ │ │ │ ├── Candlestick.py │ │ │ ├── MetaPeriod.py │ │ │ ├── Period.py │ │ │ └── __init__.py │ │ ├── requirements.txt │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ └── test_period.py │ │ └── trade/ │ │ ├── Trade.py │ │ └── __init__.py │ └── web/ │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── actions/ │ │ └── index.js │ ├── components/ │ │ ├── Balances.jsx │ │ ├── Chart.jsx │ │ ├── CollapseButton.jsx │ │ ├── Config.jsx │ │ ├── Details.jsx │ │ ├── Flags.jsx │ │ ├── Orders.jsx │ │ ├── SelectAvailable.jsx │ │ ├── Sidebar.jsx │ │ └── Tooltip.jsx │ ├── containers/ │ │ ├── BalancesContainer.jsx │ │ ├── ChartContainer.jsx │ │ ├── ChartController.jsx │ │ ├── DetailsContainer.jsx │ │ ├── FlagsContainer.jsx │ │ ├── OrdersContainer.jsx │ │ └── SidebarContainer.jsx │ ├── index.css │ ├── index.js │ ├── reducers/ │ │ ├── chart.js │ │ ├── index.js │ │ └── sidebar.js │ └── serviceWorker.js ├── docker-compose.prod.yml └── docker-compose.yml