查找集合一部分中最小属性的索引

发布于 2024-12-09 05:48:04 字数 503 浏览 0 评论 0 原文

我有一个类 Bar:

public class Bar
{
    public string Symbol { get; set; }
    public DateTime DateTime { get; set; }
    public double Open { get; set; }
    public double High { get; set; }
    public double Low { get; set; }
    public double Close { get; set; }
    public int Volume { get; set; }
}

和一个集合,

minDataCollection<Bar>

我试图找到具有最低 bar.Low 的条形索引,该索引位于从当前条形开始 n 条形的条形“宽度”内。 问题是,如果我创建另一个大小为“宽度”的集合并找到最小值,我将失去与主集合索引的连接。

I have a class Bar:

public class Bar
{
    public string Symbol { get; set; }
    public DateTime DateTime { get; set; }
    public double Open { get; set; }
    public double High { get; set; }
    public double Low { get; set; }
    public double Close { get; set; }
    public int Volume { get; set; }
}

and a collection

minDataCollection<Bar>

I am trying to find an index of a bar with lowest bar.Low within a "width" of bars starting n-bars back from the current bar.
The problem is if I create another collection of size "width" and find the minimum I will loose connection to indexes of main collection.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花伊自在美 2024-12-16 05:48:04

您可以使用 LINQ 的 Select-with-an-index,然后 MinBy 来自 MoreLINQ

var index = collection.Select((value, index) => new { value, index })
                      .MinBy(pair => pair.value.Low).index;

You can use LINQ's Select-with-an-index, then MinBy from MoreLINQ:

var index = collection.Select((value, index) => new { value, index })
                      .MinBy(pair => pair.value.Low).index;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文