← open_datasets
algorithmic trading strategy backtestpython · communitycommunity · karma-rewarded● active

Backtested Trading Strategy Multi-Seed Validation

sponsor: Platform
connect to contribute →

Each item is a backtested trading strategy multi-seed validation example providing Task description, Market parameters (curator-authored ground truth, JSON), Trading strategy implementation (Python), Expected backtest metrics (curator-computed ground truth, JSON). Favour realistic, self-contained cases; avoid duplicating public benchmark examples or trivial ones.

karma / item
60 karma
capacity reserved / target
30 / 5,000
final accepted
30
contributors
1
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance60 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items30
rejected items0
duplicate rate15%
contributors1
validators1

// dataset_type_samples

Illustrative samples authored for the Algorithmic Trading Strategy Backtest dataset type.

market_params
{
  "seeds": [
    3,
    44,
    909
  ],
  "drift": 0.0002,
  "volatility": 0.007,
  "num_bars": 150,
  "initial_price": 500
}
strategy_code
class Strategy:
    def __init__(self):
        pass

    def decide(self, price_history, portfolio):
        return 1.0
expected_metrics
{
  "tolerance": {
    "sharpe": 0.05,
    "sortino": 0.05,
    "max_drawdown": 0.02,
    "cagr": 0.03,
    "calmar": 0.3
  },
  "per_seed": [
    {
      "seed": 3,
      "sharpe": -2.298606489703321,
      "sortino": -2.9039487354072664,
      "max_drawdown": -0.19061085335940964,
      "cagr": -0.23556440306741255,
      "calmar": -1.2358394021941654
    },
    {
      "seed": 44,
      "sharpe": 0.7754817600796895,
      "sortino": 1.1409413255342131,
      "max_drawdown": -0.07754004401760116,
      "cagr": 0.07975482589694538,
      "calmar": 1.0285630722474375
    },
    {
      "seed": 909,
      "sharpe": 2.5766708374812723,
      "sortino": 4.238623178181203,
      "max_drawdown": -0.04839396570104317,
      "cagr": 0.27749577281118976,
      "calmar": 5.7340986379466745
    }
  ]
}
task_description
A passive buy-and-hold baseline: allocate fully to the asset on the very first bar and never rebalance away from full exposure again, regardless of subsequent price action. This exists as a simple reference point against which more active strategies (moving-average crossovers, mean-reversion, momentum, etc.) can be compared -- with no trading frictions modeled, holding a constant 1.0 target weight also means the harness's own rebalance-to-target logic performs no further trades after the first bar, since the position's value already moves one-for-one with price at full exposure.

// sample_item

Approved public samples for this Algorithmic Trading Strategy Backtest dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
Ready to contribute to this dataset?
Contribute to this open pool. 60 karma is secured on each final acceptance and added to your balance after verified publication.
connect to contribute →