├── .gitignore ├── DataAccess ├── DbContext.cs ├── Entities │ └── OrderResultEntity.cs └── EntityBuilders │ ├── OrderBuilder.cs │ └── PortfolioBuilder.cs ├── Dockerfile ├── Objects ├── BotConfig.cs ├── ExchangeNames.cs └── ListingAnnouncement.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Services ├── ExchangeService.cs └── ListingsGetterService.cs ├── Workers ├── BuyListingWorker.cs └── ExitStrategyWorker.cs ├── appsettings.Development.json ├── appsettings.example.json ├── docker-compose.development.yml ├── docker-compose.yml ├── new-listing-bot-cs.csproj ├── new-listing-bot-cs.sln └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /DataAccess/DbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/DataAccess/DbContext.cs -------------------------------------------------------------------------------- /DataAccess/Entities/OrderResultEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/DataAccess/Entities/OrderResultEntity.cs -------------------------------------------------------------------------------- /DataAccess/EntityBuilders/OrderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/DataAccess/EntityBuilders/OrderBuilder.cs -------------------------------------------------------------------------------- /DataAccess/EntityBuilders/PortfolioBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/DataAccess/EntityBuilders/PortfolioBuilder.cs -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Objects/BotConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Objects/BotConfig.cs -------------------------------------------------------------------------------- /Objects/ExchangeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Objects/ExchangeNames.cs -------------------------------------------------------------------------------- /Objects/ListingAnnouncement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Objects/ListingAnnouncement.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Services/ExchangeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Services/ExchangeService.cs -------------------------------------------------------------------------------- /Services/ListingsGetterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Services/ListingsGetterService.cs -------------------------------------------------------------------------------- /Workers/BuyListingWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Workers/BuyListingWorker.cs -------------------------------------------------------------------------------- /Workers/ExitStrategyWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/Workers/ExitStrategyWorker.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/appsettings.example.json -------------------------------------------------------------------------------- /docker-compose.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/docker-compose.development.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /new-listing-bot-cs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/new-listing-bot-cs.csproj -------------------------------------------------------------------------------- /new-listing-bot-cs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/new-listing-bot-cs.sln -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberPunkMetalHead/new-listings-trading-bot/HEAD/readme.md --------------------------------------------------------------------------------