23 lines
1.0 KiB
C#
23 lines
1.0 KiB
C#
namespace KLHZ.Trader.Core.Exchange
|
|
{
|
|
internal static class Constants
|
|
{
|
|
internal const string _1minCacheKey = "1min";
|
|
internal const string _5minSellCacheKey = "5min_sell";
|
|
internal const string _5minBuyCacheKey = "5min_buy";
|
|
internal const string _1minSellCacheKey = "1min_sell";
|
|
internal const string _1minBuyCacheKey = "1min_buy";
|
|
|
|
internal const string BigWindowCrossingAverageProcessor = "Trader_big";
|
|
internal const string SmallWindowCrossingAverageProcessor = "Trader_small";
|
|
internal const string AreasRelationProcessor = "balancescalc30min";
|
|
internal readonly static TimeSpan AreasRelationWindow = TimeSpan.FromMinutes(15);
|
|
|
|
internal const decimal PowerUppingCoefficient = 1.69m;
|
|
internal const decimal UppingCoefficient = 1.3m;
|
|
internal const decimal LowingCoefficient = .76m;
|
|
internal const decimal PowerLowingCoefficient = .59m;
|
|
internal const decimal BlockingCoefficient = 0m;
|
|
}
|
|
}
|