9constexpr auto to_time(std::ranges::range
auto &&xs) {
14constexpr auto to_open(std::ranges::range
auto &&xs) {
20constexpr auto to_high(std::ranges::range
auto &&xs) {
26constexpr auto to_low(std::ranges::range
auto &&xs) {
32constexpr auto to_close(std::ranges::range
auto &&xs) {
38constexpr auto to_volume = [](std::ranges::range
auto &&xs) {
Core routines that don't depend on any other fx routines.
constexpr auto to_first(std::ranges::range auto &&xs)
Return the first entry in a series.
constexpr auto to_time(std::ranges::range auto &&xs)
Get time of a data point.
constexpr auto to_low(std::ranges::range auto &&xs)
Get low price for a data point.
constexpr auto to_close(std::ranges::range auto &&xs)
Get close price for a data point.
constexpr auto to_open(std::ranges::range auto &&xs)
Get open price for a data point.
constexpr auto to_volume
Get total volume for a data point.
constexpr auto to_high(std::ranges::range auto &&xs)
Get high price for a data point.
constexpr T to_size(std::ranges::range auto &&xs)
Calculate size of a series, return type depends on input param.