Disable some worker + funding rate top 6 for long and short

This commit is contained in:
2024-07-22 07:33:21 +07:00
parent 2d80ee8f00
commit b4087753c7
4 changed files with 11 additions and 5 deletions

View File

@@ -50,7 +50,7 @@ public static class DiscordHelpers
fields.Add(new EmbedFieldBuilder
{
Name = $"{fundingRate.Direction} - Previous Rate",
Name = $"{fundingRate.Direction} {fundingRate.Ticker} - Previous Rate",
Value =
$"Hour: {oldRatePerHour:#.##}% / Day: {oldRatePerDay:#.##}% / Month: {oldRatePerMonth:#.##}% / Year: {oldRatePerYear:#.##}%",
});
@@ -58,7 +58,7 @@ public static class DiscordHelpers
fields.Add(new EmbedFieldBuilder
{
Name = $"{fundingRate.Direction} - Current rate",
Name = $"{fundingRate.Direction} {fundingRate.Ticker} - Current rate",
Value =
$"Hour: {ratePerHour:#.##}% / Day: {ratePerDay:#.##}% / Month: {ratePerMonth:#.##}% / Year: {ratePerYear:#.##}%",
});