MeanSquaredError

Results 9 issues of MeanSquaredError

Right now backtesting only supports candlesticks. Are there plans to add support for backtesting with trades data instead of candlesticks? Ideally the backtester would provide some kind of simulated LOB...

Right now it is not possible to tell if the updates manager failed to load user or channel state from the state storage. It would be possible to do that...

enhancement

I want to use the min_id and max_id parameters in calls to messages.getHistory(). However after looking into the code it seems that the high-level API in telegram/messages.GetHistory() does not support...

enhancement

@rbock Thank you for merging the connection pools into the main branch. I made a list of things that may be improved in future versions of sqlpp. **BUGS:** - [DONE]...

Attempting to build sqlpp17 with gcc 13.1.1 on Linux results a failure. As far as I can see instead of choosing `sqlpp::result_t::iterator::operator!=(const T&)` it chooses `constexpr auto sqlpp::operator!=(L, R)` and...

Thank you for the useful library. Not really an issue, just an observation that with C++11 and templates the library can be expanded to allow thunks to arbitrary std::function objects.

It seems that figcone has trouble handling a map of maps, e.g the following config structure ``` struct config_struct { using auth_map = std::unordered_map; using servers_map = std::unordered_map; servers_map servers;...

enhancement

This fixes https://github.com/jinja2cpp/Jinja2Cpp/issues/271 Jinja2Cpp's `%` operator differs from `%` of the original Jinja library. For example the expression {{ 11 % 7 }} in Jinja2Cpp shows `-3`, while the original...

Jinja2Cpp's `%` operator differs from `%` of the original Jinja library. For example the expression {{ 11 % 7 }} in Jinja shows `-3`, while the original Jinja shows `4`....