Replies: 1 comment 3 replies
-
Sadly, yes, it's needed. In the current v2 code the utility method is this: public static IEnumerable<BollingerBandsResult> RemoveWarmupPeriods(
this IEnumerable<BollingerBandsResult> results)
{
int removePeriods = results
.ToList()
.FindIndex(x => x.Width != null);
return results.Remove(removePeriods);
} It has an I'll take a look at this for v3 to see if there's some better way to do this. In v3 we are working with |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Just noticed, RemoveWarmupPeriods for Bollinger Bands uses a ToList, which looks unnecessary, to me... Any reason for it or just mistake?
Beta Was this translation helpful? Give feedback.
All reactions