Crypto backtesting
Loading...
Searching...
No Matches
summary.h
Go to the documentation of this file.
1#pragma once
2
3#include "backtest.h"
4#include <span>
5#include <string>
6
7std::string to_csv(std::span<const trade_t>);
8std::string to_markdown(std::span<const trade_t>);
std::string to_csv(std::span< const trade_t >)
Convert summary of trades to CSV string.
Definition summary.cxx:8
std::string to_markdown(std::span< const trade_t >)
Convert summary of trades to markdown string.
Definition summary.cxx:39