Mariner Backtesting - client.submission_list()
submission_list()
Return a dictionary where keys are submission group hashes and values are the name, description, submit time, and report readiness status.
Interface
client.submission_list(name=None, description=None, submit_time=None, simulation_time=None, submission_stats=None)
Parameters
Name |
Type |
Default |
Description |
name |
string |
None |
A SQL wildcard pattern (using %, *, and _) that can match a submission name. |
description |
string |
None |
A SQL wildcard pattern (using %, *, and _) that can match a submission description. |
submit_time |
str, list[str], tuple[str] |
None |
If a str, must have the form YYYY-MM-DD[,YYYY-MM-DD] to ask for submissions submitted on or after the date (for a single date), or between the two dates (inclusive) if submitted as comma-separated dates. If a list or tuple, each member must be a str of the form YYYY-MM-DD. Currently, at most two dates are allowed by the server (2017-06-02) |
simulation_time |
str, list[str], tuple[str] |
None |
If a str, must have the form YYYY-MM-DD[,YYYY-MM-DD[,...]] to ask for submissions that ran on at least one of the given dates. If a list or tuple, each member must be a str of the form YYYY-MM-DD. Any number of dates can be used. |
submission_stats |
dict |
None |
Will filter submissions by submission statistics (like pnl, sharpe, risk, etc.) If specified as a list (with at most 2 values), the returned statistic will be between the two values, inclusive. |
Returns
Type |
Description |
dictionary |
A dictionary of submissions. |