private void DoAfterGenerateKLinePeriod(List <int> opendates, KLinePeriod period) { if (AfterGeneratedPeriod != null && opendates.Count != 0) { UpdatedPeriodArgs args = new UpdatedPeriodArgs(); args.Description = "正在生成" + period + "kline数据:" + opendates[0] + "-" + opendates[opendates.Count - 1]; AfterGeneratedPeriod(args); } }
private void UpdateTick(UpdateInfo_Tick generate_Tick) { String code = generate_Tick.code; List <int> openDates = generate_Tick.dates; for (int i = 0; i < openDates.Count; i++) { if (IsCancel) { return; } int date = openDates[i]; update_Tick.DoUpdate(code, openDates[i]); int nextIndex = i + 1; if (nextIndex >= openDates.Count) { return; } if ((nextIndex) % PROGRESS_PERIOD == 0) { if (AfterGeneratedPeriod != null) { UpdatedPeriodArgs args = new UpdatedPeriodArgs(); args.nextStartDate = date; int endIndex = i + PROGRESS_PERIOD; endIndex = endIndex >= openDates.Count ? openDates.Count - 1 : endIndex; args.nextEndDate = openDates[endIndex]; args.code = generate_Tick.code; args.Description = "正在生成tick数据:" + args.nextStartDate + "-" + args.nextEndDate; AfterGeneratedPeriod(args); } } } }