public static async Task <string> GetTickerBtcJpyNextWeek()
        {
            var productCode = await ProductCode.GetBtcJpyNextWeek();

            if (productCode != null)
            {
                return(TickerPrefix + productCode);
            }
            return(null);
        }
Ejemplo n.º 2
0
        public static async Task <string> GetExecutionBtcJpyNextWeek()
        {
            var productCode = await ProductCode.GetBtcJpyNextWeek().ConfigureAwait(false);

            if (productCode != null)
            {
                return(ExecutionPrefix + productCode);
            }
            return(null);
        }
        public static async Task <string> GetBoardSnapshotBtcJpyNextWeek()
        {
            var productCode = await ProductCode.GetBtcJpyNextWeek();

            if (productCode != null)
            {
                return(BoardSnapshotPrefix + productCode);
            }
            return(null);
        }