16 lines
636 B
C#
16 lines
636 B
C#
namespace KLHZ.Trader.Core.Exchange
|
|
{
|
|
internal static class Constants
|
|
{
|
|
internal const decimal ForceExecuteCoefficient = 500000m;
|
|
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 = 0.01m;
|
|
|
|
internal const string PriceIsInSupportLevel = "PriceIsInSupportLevel";
|
|
internal const string PriceIsNotInSupportLevel = "PriceIsNotInSupportLevel";
|
|
}
|
|
}
|