Daniel Hanson
Daniel Hanson
### Description Ran a simple optimization of an MACD example using `apply.paramset(.)`, with three paramsets: Fast MA, Slow MA, and Signal MA. When finished, I tried using `tradeGraphs(.)` on pairs...
In your [documentation on date algorithms](https://howardhinnant.github.io/date_algorithms.html#last_day_of_month), there is discussion of an efficient `last_day_of_month` algorithm. Are there any plans to add this as a member function on the `year_month_day` class? I...
I'm noticing a one-day discrepancy when adding years to a date, depending on whether a `year_month_day` is converted to `sys_days` with the `+` operator defined (incorrect result), or if `+=`...
Quick question: Might you tell me the reasoning behind `day` and `month` types being cast to `unsigned`, while `year` types are cast to `int`? Thanks in advance.
Putting `#include ` in a source file in Visual Studio 2022, using the VS compiler, results in a compiler error. There is no error when I switch to the LLVM...