Add funding rate watcher (#2)
* Add FundingRate interfaces and worker * Add build on PR * Remove zip * Specify the solution path * Add build for worker too * Set up StatisticService.cs for funding rate * Add Fundingrate alerts * Send alert when big funding rate change + add SlashCommands.cs for fundingrate * Remove fixtures * Refact names * Renames
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Managing.Common;
|
||||
using Managing.Infrastructure.Databases.MongoDb.Attributes;
|
||||
using Managing.Infrastructure.Databases.MongoDb.Configurations;
|
||||
|
||||
namespace Managing.Infrastructure.Databases.MongoDb.Collections;
|
||||
|
||||
[BsonCollection("FundingRates")]
|
||||
public class FundingRateDto : Document
|
||||
{
|
||||
public Enums.Ticker Ticker { get; set; }
|
||||
public decimal Rate { get; set; }
|
||||
public Enums.TradingExchanges Exchange { get; set; }
|
||||
public DateTime Date { get; set; }
|
||||
public Enums.TradeDirection Direction { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user