Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/api/design.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Experimental design: factors, grids, and screening.

::: trade_study.Factor

::: trade_study.FactorConstraint

::: trade_study.build_grid

::: trade_study.reduce_factors
Expand Down
10 changes: 9 additions & 1 deletion src/trade_study/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@
from ._pareto import extract_front, hypervolume, igd_plus, pareto_rank
from ._scoring import coverage_curve, score
from ._version import __version__
from .design import Factor, FactorType, build_grid, reduce_factors, screen
from .design import (
Factor,
FactorConstraint,
FactorType,
build_grid,
reduce_factors,
screen,
)
from .io import load_results, save_results
from .protocols import (
Annotation,
Expand Down Expand Up @@ -34,6 +41,7 @@
"Constraint",
"Direction",
"Factor",
"FactorConstraint",
"FactorType",
"Observable",
"Phase",
Expand Down
Loading
Loading