Hello QuantConnect team,

I have a strategy that is currently working as expected, but now I want to add a benchmark to evaluate its performance.

The benchmark I am thinking of is a simple "buy and hold" based on the first day’s cash amount in the portfolio. The idea is to take 100% of the initial cash on day one and hold a single position throughout the entire trading period, without any further trades. I would then compare the buy-and-hold return with my strategy's actual returns at the end of the period.

The "buy and hold" is purely a conceptual benchmark, so no real trades are associated with it. I am looking for the best way to implement this in QuantConnect, preferably utilizing existing features and avoiding custom code where possible.

Could you please guide me on how to best achieve this with QuantConnect's built-in features?

Thank you!