17 lines
350 B
C#
17 lines
350 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KLHZ.Trader.Core.Math.Declisions.Dtos.FFT.Enums
|
|
{
|
|
public enum ValueAmplitudePosition
|
|
{
|
|
None = 0,
|
|
Middle = 1,
|
|
UpperThen30Decil = 10,
|
|
LowerThenMediana = -50,
|
|
}
|
|
}
|