feat: add freqAI remaining parameters
This commit is contained in:
@@ -975,15 +975,56 @@ CONF_SCHEMA = {
|
|||||||
"freqai": {
|
"freqai": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"enabled": {"type": "boolean", "default": False},
|
"enabled": {
|
||||||
"keras": {"type": "boolean", "default": False},
|
"description": "Whether freqAI is enabled.",
|
||||||
"write_metrics_to_disk": {"type": "boolean", "default": False},
|
"type": "boolean",
|
||||||
"purge_old_models": {"type": ["boolean", "number"], "default": 2},
|
"default": False,
|
||||||
"conv_width": {"type": "integer", "default": 1},
|
},
|
||||||
"train_period_days": {"type": "integer", "default": 0},
|
"keras": {
|
||||||
"backtest_period_days": {"type": "number", "default": 7},
|
"description": "Use Keras for model training.",
|
||||||
"identifier": {"type": "string", "default": "example"},
|
"type": "boolean",
|
||||||
|
"default": False,
|
||||||
|
},
|
||||||
|
"write_metrics_to_disk": {
|
||||||
|
"description": "Write metrics to disk?",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": False,
|
||||||
|
},
|
||||||
|
"purge_old_models": {
|
||||||
|
"description": "Number of models to keep on disk.",
|
||||||
|
"type": ["boolean", "number"],
|
||||||
|
"default": 2,
|
||||||
|
},
|
||||||
|
"conv_width": {
|
||||||
|
"description": "The width of a neural network input tensor.",
|
||||||
|
"type": "integer",
|
||||||
|
"default": 1,
|
||||||
|
},
|
||||||
|
"train_period_days": {
|
||||||
|
"description": (
|
||||||
|
"Number of days to use for the training data (width of the sliding window)"
|
||||||
|
),
|
||||||
|
"type": "integer",
|
||||||
|
"default": 0,
|
||||||
|
},
|
||||||
|
"backtest_period_days": {
|
||||||
|
"description": (
|
||||||
|
"Number of days to inference from the trained model before sliding the "
|
||||||
|
"`train_period_days` window "
|
||||||
|
),
|
||||||
|
"type": "number",
|
||||||
|
"default": 7,
|
||||||
|
},
|
||||||
|
"identifier": {
|
||||||
|
"description": (
|
||||||
|
"A unique ID for the current model. "
|
||||||
|
"Must be changed when modifying features."
|
||||||
|
),
|
||||||
|
"type": "string",
|
||||||
|
"default": "example",
|
||||||
|
},
|
||||||
"feature_parameters": {
|
"feature_parameters": {
|
||||||
|
"description": "The parameters used to engineer the feature set",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"include_corr_pairlist": {
|
"include_corr_pairlist": {
|
||||||
|
|||||||
Reference in New Issue
Block a user