Add multifeature direct horizon Torch forecaster
This commit is contained in:
@@ -4,6 +4,8 @@ param(
|
||||
[int]$EveryHours = 6,
|
||||
[string]$Symbols = "BTCUSDT,ETHUSDT,SOLUSDT",
|
||||
[int]$Limit = 1000,
|
||||
[int]$Horizon = 0,
|
||||
[string]$Features = "",
|
||||
[int]$FirstRunMinutes = 0
|
||||
)
|
||||
|
||||
@@ -30,6 +32,12 @@ if ($Symbols) {
|
||||
if ($Limit -gt 0) {
|
||||
$actionArgs += " -Limit $Limit"
|
||||
}
|
||||
if ($Horizon -gt 0) {
|
||||
$actionArgs += " -Horizon $Horizon"
|
||||
}
|
||||
if ($Features) {
|
||||
$actionArgs += " -Features `"$Features`""
|
||||
}
|
||||
$action = New-ScheduledTaskAction -Execute "powershell.exe" -Argument $actionArgs -WorkingDirectory $RepoRoot
|
||||
$trigger = New-ScheduledTaskTrigger `
|
||||
-Once `
|
||||
|
||||
Reference in New Issue
Block a user