public Boolean IsOK(POrder o)
        {
            // Max Value잡은 것의 2배까지는 봐주도록 하자
            if (o.GetAbsBookValueIfAllIn() >= 2.0 * _maxValue)
            {
                logger.Error("[ValuePerOnceOrderLimit] {0:n0} > {1:n0}", o.GetAbsBookValueIfAllIn(), 2.0 * _maxValue);
                Util.KillWithNotice("[ValuePerOnceOrderLimit] error");
                return false;
            }

            return _decorator.IsOK(o);
        }