@backtest-kit/cli 8.4.2 → 8.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.mjs CHANGED
@@ -2985,10 +2985,10 @@ init();
2985
2985
 
2986
2986
  const MODES = ["backtest", "walker", "paper", "live", "pine", "editor", "dump", "pnldebug", "brokerdebug", "flush", "init", "docker", "help", "version"];
2987
2987
  const ENTRY_PATH$1 = "./node_modules/@backtest-kit/cli/build/index.mjs";
2988
- const HELP_TEXT$1 = `
2989
- Example:
2990
-
2991
- node ${ENTRY_PATH$1} --help
2988
+ const HELP_TEXT$1 = `
2989
+ Example:
2990
+
2991
+ node ${ENTRY_PATH$1} --help
2992
2992
  `.trimStart();
2993
2993
  const main$f = async () => {
2994
2994
  if (!getEntry(import.meta.url)) {
@@ -2998,7 +2998,7 @@ const main$f = async () => {
2998
2998
  if (MODES.some((mode) => values[mode])) {
2999
2999
  return;
3000
3000
  }
3001
- process.stdout.write(`@backtest-kit/cli ${"8.4.2"}\n`);
3001
+ process.stdout.write(`@backtest-kit/cli ${"8.4.3"}\n`);
3002
3002
  process.stdout.write("\n");
3003
3003
  process.stdout.write(`Run with --help to see available commands.\n`);
3004
3004
  process.stdout.write("\n");
@@ -3686,190 +3686,190 @@ const main$2 = async () => {
3686
3686
  console.log(`Done! Docker workspace created at ${projectPath}`);
3687
3687
  console.log(`Next steps:`);
3688
3688
  console.log(` cd ${projectName}`);
3689
- console.log(` docker compose up -d`);
3689
+ console.log(` MODE=live SYMBOL=TRXUSDT UI=1 docker compose up -d`);
3690
3690
  console.log(` docker compose logs -f`);
3691
3691
  process.exit(0);
3692
3692
  };
3693
3693
  main$2();
3694
3694
 
3695
3695
  const ENTRY_PATH = "./node_modules/@backtest-kit/cli/build/index.mjs";
3696
- const HELP_TEXT = `
3697
- Usage:
3698
- node index.mjs --<mode> [flags] [entry-point]
3699
-
3700
- Modes:
3701
-
3702
- --backtest <entry> Run strategy against historical candle data
3703
- --walker <entry...> Run Walker A/B strategy comparison across multiple strategies
3704
- --paper <entry> Paper trading (live prices, no real orders)
3705
- --live <entry> Live trading with real orders
3706
- --pine <entry> Execute a local .pine indicator file
3707
- --editor Open the Pine Script visual editor in the browser
3708
- --dump Fetch and save raw OHLCV candles
3709
- --pnldebug Simulate PnL per minute for a given entry price and direction
3710
- --brokerdebug Fire a single broker commit against the live broker adapter
3711
- --flush <entry...> Delete report/log/markdown/agent folders from strategy dump dir
3712
- --init Scaffold a new project in the current directory
3713
- --docker Scaffold a Docker workspace for running strategies in a container
3714
- --help Print this help message
3715
-
3716
- Backtest flags:
3717
-
3718
- --symbol <string> Trading pair (default: BTCUSDT)
3719
- --strategy <string> Strategy name from addStrategySchema (default: first registered)
3720
- --exchange <string> Exchange name from addExchangeSchema (default: first registered)
3721
- --frame <string> Frame name from addFrameSchema (default: first registered)
3722
- --cacheInterval <string> Comma-separated intervals to pre-cache (default: "1m, 15m, 30m, 4h")
3723
- --noCache Skip candle cache warming before the run
3724
- --noFlush Skip removing report/log/markdown/agent folders before backtest run
3725
- --verbose Log every candle fetch to stdout
3726
- --ui Start web dashboard at http://localhost:60050
3727
- --telegram Send trade notifications to Telegram
3728
-
3729
- Walker flags (--walker):
3730
-
3731
- --symbol <string> Trading pair (default: BTCUSDT)
3732
- --cacheInterval <string> Comma-separated intervals to pre-cache (default: "1m, 15m, 30m, 4h")
3733
- --noCache Skip candle cache warming before the run
3734
- --noFlush Skip removing report/log/markdown/agent folders before walker run
3735
- --verbose Log every candle fetch to stdout
3736
- --output <string> Output file base name (default: walker_{SYMBOL}_{TIMESTAMP})
3737
- --json Save results as JSON to ./dump/<output>.json
3738
- --markdown Save report as Markdown to ./dump/<output>.md
3739
-
3740
- Each positional argument is a strategy entry point. All strategy files are loaded without
3741
- changing process.cwd() — .env is read from the working directory only.
3742
- addWalkerSchema is called automatically using the registered exchange and frame.
3743
- After comparison completes the report is printed to stdout (or saved if --json/--markdown).
3744
-
3745
- Module file ./modules/walker.module is loaded automatically if it exists.
3746
-
3747
- Paper / Live flags:
3748
-
3749
- --symbol <string> Trading pair (default: BTCUSDT)
3750
- --strategy <string> Strategy name (default: first registered)
3751
- --exchange <string> Exchange name (default: first registered)
3752
- --verbose Log every candle fetch to stdout
3753
- --ui Start web dashboard
3754
- --telegram Send Telegram notifications
3755
-
3756
- PineScript flags (--pine):
3757
-
3758
- --symbol <string> Trading pair (default: BTCUSDT)
3759
- --timeframe <string> Candle interval (default: 15m)
3760
- --limit <string> Number of candles to fetch (default: 250)
3761
- --when <string> End date — ISO 8601 or Unix ms (default: now)
3762
- --exchange <string> Exchange name (default: first registered)
3763
- --output <string> Output file base name without extension
3764
- --json Save output as JSON array to <pine-dir>/dump/<output>.json
3765
- --jsonl Save output as JSONL to <pine-dir>/dump/<output>.jsonl
3766
- --markdown Save output as Markdown table to <pine-dir>/dump/<output>.md
3767
-
3768
- Only plot() calls with display=display.data_window produce output columns.
3769
- Module file ./modules/pine.module is loaded automatically if it exists.
3770
-
3771
- Candle dump flags (--dump):
3772
-
3773
- --symbol <string> Trading pair (default: BTCUSDT)
3774
- --timeframe <string> Candle interval (default: 15m)
3775
- --limit <string> Number of candles (default: 250)
3776
- --when <string> End date — ISO 8601 or Unix ms (default: now)
3777
- --exchange <string> Exchange name (default: first registered)
3778
- --output <string> Output file base name (default: {SYMBOL}_{LIMIT}_{TIMEFRAME}_{TIMESTAMP})
3779
- --json Save as JSON array to ./dump/<output>.json
3780
- --jsonl Save as JSONL to ./dump/<output>.jsonl
3781
-
3782
- Module file ./modules/dump.module is loaded automatically if it exists.
3783
-
3784
- PnL debug flags (--pnldebug):
3785
-
3786
- --symbol <string> Trading pair (default: BTCUSDT)
3787
- --priceopen <number> Entry price (required)
3788
- --direction <string> Position direction: long or short (default: long)
3789
- --when <string> Start timestamp — ISO 8601 or Unix ms (default: now)
3790
- --minutes <string> Number of 1m candles to simulate (default: 60)
3791
- --exchange <string> Exchange name (default: first registered)
3792
- --output <string> Output file base name (default: {SYMBOL}_{DIRECTION}_{PRICEOPEN}_{TIMESTAMP})
3793
- --json Save as JSON array to ./dump/<output>.json
3794
- --jsonl Save as JSONL to ./dump/<output>.jsonl
3795
- --markdown Save as Markdown table to ./dump/<output>.md
3796
-
3797
- Module file ./modules/pnldebug.module is loaded automatically if it exists.
3798
-
3799
- Broker debug flags (--brokerdebug):
3800
-
3801
- --symbol <string> Trading pair (default: BTCUSDT)
3802
- --exchange <string> Exchange name (default: first registered)
3803
- --commit <string> Commit type to fire: signal-open, signal-close, partial-profit,
3804
- partial-loss, average-buy, trailing-stop, trailing-take, breakeven
3805
- (default: signal-open)
3806
-
3807
- Loads ./live.module, fetches the last candle for --symbol/--timeframe, and calls
3808
- the selected broker commit with synthetic payload values derived from current price.
3809
-
3810
- Flush flags (--flush):
3811
-
3812
- One or more positional entry points. For each entry point the following
3813
- subdirectories are removed from <entry-dir>/dump/:
3814
-
3815
- report log markdown agent
3816
-
3817
- Init flags (--init):
3818
-
3819
- --output <string> Target directory name (default: backtest-kit-project)
3820
-
3821
- Scaffolds a project and runs scripts/fetch_docs.mjs to download library docs.
3822
-
3823
- Docker flags (--docker):
3824
-
3825
- --output <string> Target directory name (default: backtest-kit-docker)
3826
-
3827
- Scaffolds a Docker workspace: docker-compose.yaml, .env.example, package.json,
3828
- tsconfig.json, and a sample strategy under content/. Run npm install then
3829
- docker compose up to start the container.
3830
-
3831
- Module hooks (loaded automatically by each mode):
3832
-
3833
- modules/backtest.module --backtest Broker adapter for backtest
3834
- modules/walker.module --walker Broker adapter for walker comparison
3835
- modules/paper.module --paper Broker adapter for paper trading
3836
- modules/live.module --live Broker adapter for live trading
3837
- modules/pine.module --pine Exchange schema for PineScript runs
3838
- modules/editor.module --editor Exchange schema for the visual Pine editor
3839
- modules/dump.module --dump Exchange schema for candle dumps
3840
- modules/pnldebug.module --pnldebug Exchange schema for PnL debug runs
3841
- modules/brokerdebug.module --brokerdebug Broker adapter used for broker commit testing
3842
-
3843
- --flush has no associated module. It only removes dump subdirectories.
3844
-
3845
- Extensions .ts, .mjs, .cjs are tried automatically. Missing module = soft warning.
3846
-
3847
- Environment variables:
3848
-
3849
- CC_TELEGRAM_TOKEN Telegram bot token (required for --telegram)
3850
- CC_TELEGRAM_CHANNEL Telegram channel or chat ID (required for --telegram)
3851
- CC_WWWROOT_HOST UI server bind address (default: 0.0.0.0)
3852
- CC_WWWROOT_PORT UI server port (default: 60050)
3853
-
3854
- Examples:
3855
-
3856
- node ${ENTRY_PATH} --backtest ./content/feb_2026.strategy.ts
3857
- node ${ENTRY_PATH} --backtest --symbol BTCUSDT --noCache --noFlush --ui ./content/feb_2026.strategy.ts
3858
- node ${ENTRY_PATH} --walker ./content/feb_2026_v1.strategy.ts ./content/feb_2026_v2.strategy.ts ./content/feb_2026_v3.strategy.ts
3859
- node ${ENTRY_PATH} --walker --symbol BTCUSDT --noCache --noFlush --markdown ./content/feb_2026_v1.ts ./content/feb_2026_v2.ts
3860
- node ${ENTRY_PATH} --paper --symbol ETHUSDT ./content/feb_2026.strategy.ts
3861
- node ${ENTRY_PATH} --live --ui --telegram ./content/feb_2026.strategy.ts
3862
- node ${ENTRY_PATH} --pine ./math/feb_2026.pine --timeframe 15m --limit 500 --jsonl
3863
- node ${ENTRY_PATH} --editor
3864
- node ${ENTRY_PATH} --dump --symbol BTCUSDT --timeframe 15m --limit 500 --jsonl
3865
- node ${ENTRY_PATH} --pnldebug --symbol BTCUSDT --priceopen 64069.50 --direction short --when "2025-02-25" --minutes 120
3866
- node ${ENTRY_PATH} --pnldebug --priceopen 67956.73 --direction long --when 1772064000000 --minutes 60 --markdown
3867
- node ${ENTRY_PATH} --brokerdebug --commit signal-open --symbol BTCUSDT
3868
- node ${ENTRY_PATH} --brokerdebug --commit partial-profit --symbol ETHUSDT
3869
- node ${ENTRY_PATH} --flush ./content/feb_2026.strategy/feb_2026.strategy.ts
3870
- node ${ENTRY_PATH} --flush ./content/feb_2026.strategy/feb_2026.strategy.ts ./content/feb_2026.strategy/feb_2026.test.ts
3871
- node ${ENTRY_PATH} --init --output my-trading-bot
3872
- node ${ENTRY_PATH} --docker --output my-docker-workspace
3696
+ const HELP_TEXT = `
3697
+ Usage:
3698
+ node index.mjs --<mode> [flags] [entry-point]
3699
+
3700
+ Modes:
3701
+
3702
+ --backtest <entry> Run strategy against historical candle data
3703
+ --walker <entry...> Run Walker A/B strategy comparison across multiple strategies
3704
+ --paper <entry> Paper trading (live prices, no real orders)
3705
+ --live <entry> Live trading with real orders
3706
+ --pine <entry> Execute a local .pine indicator file
3707
+ --editor Open the Pine Script visual editor in the browser
3708
+ --dump Fetch and save raw OHLCV candles
3709
+ --pnldebug Simulate PnL per minute for a given entry price and direction
3710
+ --brokerdebug Fire a single broker commit against the live broker adapter
3711
+ --flush <entry...> Delete report/log/markdown/agent folders from strategy dump dir
3712
+ --init Scaffold a new project in the current directory
3713
+ --docker Scaffold a Docker workspace for running strategies in a container
3714
+ --help Print this help message
3715
+
3716
+ Backtest flags:
3717
+
3718
+ --symbol <string> Trading pair (default: BTCUSDT)
3719
+ --strategy <string> Strategy name from addStrategySchema (default: first registered)
3720
+ --exchange <string> Exchange name from addExchangeSchema (default: first registered)
3721
+ --frame <string> Frame name from addFrameSchema (default: first registered)
3722
+ --cacheInterval <string> Comma-separated intervals to pre-cache (default: "1m, 15m, 30m, 4h")
3723
+ --noCache Skip candle cache warming before the run
3724
+ --noFlush Skip removing report/log/markdown/agent folders before backtest run
3725
+ --verbose Log every candle fetch to stdout
3726
+ --ui Start web dashboard at http://localhost:60050
3727
+ --telegram Send trade notifications to Telegram
3728
+
3729
+ Walker flags (--walker):
3730
+
3731
+ --symbol <string> Trading pair (default: BTCUSDT)
3732
+ --cacheInterval <string> Comma-separated intervals to pre-cache (default: "1m, 15m, 30m, 4h")
3733
+ --noCache Skip candle cache warming before the run
3734
+ --noFlush Skip removing report/log/markdown/agent folders before walker run
3735
+ --verbose Log every candle fetch to stdout
3736
+ --output <string> Output file base name (default: walker_{SYMBOL}_{TIMESTAMP})
3737
+ --json Save results as JSON to ./dump/<output>.json
3738
+ --markdown Save report as Markdown to ./dump/<output>.md
3739
+
3740
+ Each positional argument is a strategy entry point. All strategy files are loaded without
3741
+ changing process.cwd() — .env is read from the working directory only.
3742
+ addWalkerSchema is called automatically using the registered exchange and frame.
3743
+ After comparison completes the report is printed to stdout (or saved if --json/--markdown).
3744
+
3745
+ Module file ./modules/walker.module is loaded automatically if it exists.
3746
+
3747
+ Paper / Live flags:
3748
+
3749
+ --symbol <string> Trading pair (default: BTCUSDT)
3750
+ --strategy <string> Strategy name (default: first registered)
3751
+ --exchange <string> Exchange name (default: first registered)
3752
+ --verbose Log every candle fetch to stdout
3753
+ --ui Start web dashboard
3754
+ --telegram Send Telegram notifications
3755
+
3756
+ PineScript flags (--pine):
3757
+
3758
+ --symbol <string> Trading pair (default: BTCUSDT)
3759
+ --timeframe <string> Candle interval (default: 15m)
3760
+ --limit <string> Number of candles to fetch (default: 250)
3761
+ --when <string> End date — ISO 8601 or Unix ms (default: now)
3762
+ --exchange <string> Exchange name (default: first registered)
3763
+ --output <string> Output file base name without extension
3764
+ --json Save output as JSON array to <pine-dir>/dump/<output>.json
3765
+ --jsonl Save output as JSONL to <pine-dir>/dump/<output>.jsonl
3766
+ --markdown Save output as Markdown table to <pine-dir>/dump/<output>.md
3767
+
3768
+ Only plot() calls with display=display.data_window produce output columns.
3769
+ Module file ./modules/pine.module is loaded automatically if it exists.
3770
+
3771
+ Candle dump flags (--dump):
3772
+
3773
+ --symbol <string> Trading pair (default: BTCUSDT)
3774
+ --timeframe <string> Candle interval (default: 15m)
3775
+ --limit <string> Number of candles (default: 250)
3776
+ --when <string> End date — ISO 8601 or Unix ms (default: now)
3777
+ --exchange <string> Exchange name (default: first registered)
3778
+ --output <string> Output file base name (default: {SYMBOL}_{LIMIT}_{TIMEFRAME}_{TIMESTAMP})
3779
+ --json Save as JSON array to ./dump/<output>.json
3780
+ --jsonl Save as JSONL to ./dump/<output>.jsonl
3781
+
3782
+ Module file ./modules/dump.module is loaded automatically if it exists.
3783
+
3784
+ PnL debug flags (--pnldebug):
3785
+
3786
+ --symbol <string> Trading pair (default: BTCUSDT)
3787
+ --priceopen <number> Entry price (required)
3788
+ --direction <string> Position direction: long or short (default: long)
3789
+ --when <string> Start timestamp — ISO 8601 or Unix ms (default: now)
3790
+ --minutes <string> Number of 1m candles to simulate (default: 60)
3791
+ --exchange <string> Exchange name (default: first registered)
3792
+ --output <string> Output file base name (default: {SYMBOL}_{DIRECTION}_{PRICEOPEN}_{TIMESTAMP})
3793
+ --json Save as JSON array to ./dump/<output>.json
3794
+ --jsonl Save as JSONL to ./dump/<output>.jsonl
3795
+ --markdown Save as Markdown table to ./dump/<output>.md
3796
+
3797
+ Module file ./modules/pnldebug.module is loaded automatically if it exists.
3798
+
3799
+ Broker debug flags (--brokerdebug):
3800
+
3801
+ --symbol <string> Trading pair (default: BTCUSDT)
3802
+ --exchange <string> Exchange name (default: first registered)
3803
+ --commit <string> Commit type to fire: signal-open, signal-close, partial-profit,
3804
+ partial-loss, average-buy, trailing-stop, trailing-take, breakeven
3805
+ (default: signal-open)
3806
+
3807
+ Loads ./live.module, fetches the last candle for --symbol/--timeframe, and calls
3808
+ the selected broker commit with synthetic payload values derived from current price.
3809
+
3810
+ Flush flags (--flush):
3811
+
3812
+ One or more positional entry points. For each entry point the following
3813
+ subdirectories are removed from <entry-dir>/dump/:
3814
+
3815
+ report log markdown agent
3816
+
3817
+ Init flags (--init):
3818
+
3819
+ --output <string> Target directory name (default: backtest-kit-project)
3820
+
3821
+ Scaffolds a project and runs scripts/fetch_docs.mjs to download library docs.
3822
+
3823
+ Docker flags (--docker):
3824
+
3825
+ --output <string> Target directory name (default: backtest-kit-docker)
3826
+
3827
+ Scaffolds a Docker workspace: docker-compose.yaml, .env.example, package.json,
3828
+ tsconfig.json, and a sample strategy under content/. Run npm install then
3829
+ docker compose up to start the container.
3830
+
3831
+ Module hooks (loaded automatically by each mode):
3832
+
3833
+ modules/backtest.module --backtest Broker adapter for backtest
3834
+ modules/walker.module --walker Broker adapter for walker comparison
3835
+ modules/paper.module --paper Broker adapter for paper trading
3836
+ modules/live.module --live Broker adapter for live trading
3837
+ modules/pine.module --pine Exchange schema for PineScript runs
3838
+ modules/editor.module --editor Exchange schema for the visual Pine editor
3839
+ modules/dump.module --dump Exchange schema for candle dumps
3840
+ modules/pnldebug.module --pnldebug Exchange schema for PnL debug runs
3841
+ modules/brokerdebug.module --brokerdebug Broker adapter used for broker commit testing
3842
+
3843
+ --flush has no associated module. It only removes dump subdirectories.
3844
+
3845
+ Extensions .ts, .mjs, .cjs are tried automatically. Missing module = soft warning.
3846
+
3847
+ Environment variables:
3848
+
3849
+ CC_TELEGRAM_TOKEN Telegram bot token (required for --telegram)
3850
+ CC_TELEGRAM_CHANNEL Telegram channel or chat ID (required for --telegram)
3851
+ CC_WWWROOT_HOST UI server bind address (default: 0.0.0.0)
3852
+ CC_WWWROOT_PORT UI server port (default: 60050)
3853
+
3854
+ Examples:
3855
+
3856
+ node ${ENTRY_PATH} --backtest ./content/feb_2026.strategy.ts
3857
+ node ${ENTRY_PATH} --backtest --symbol BTCUSDT --noCache --noFlush --ui ./content/feb_2026.strategy.ts
3858
+ node ${ENTRY_PATH} --walker ./content/feb_2026_v1.strategy.ts ./content/feb_2026_v2.strategy.ts ./content/feb_2026_v3.strategy.ts
3859
+ node ${ENTRY_PATH} --walker --symbol BTCUSDT --noCache --noFlush --markdown ./content/feb_2026_v1.ts ./content/feb_2026_v2.ts
3860
+ node ${ENTRY_PATH} --paper --symbol ETHUSDT ./content/feb_2026.strategy.ts
3861
+ node ${ENTRY_PATH} --live --ui --telegram ./content/feb_2026.strategy.ts
3862
+ node ${ENTRY_PATH} --pine ./math/feb_2026.pine --timeframe 15m --limit 500 --jsonl
3863
+ node ${ENTRY_PATH} --editor
3864
+ node ${ENTRY_PATH} --dump --symbol BTCUSDT --timeframe 15m --limit 500 --jsonl
3865
+ node ${ENTRY_PATH} --pnldebug --symbol BTCUSDT --priceopen 64069.50 --direction short --when "2025-02-25" --minutes 120
3866
+ node ${ENTRY_PATH} --pnldebug --priceopen 67956.73 --direction long --when 1772064000000 --minutes 60 --markdown
3867
+ node ${ENTRY_PATH} --brokerdebug --commit signal-open --symbol BTCUSDT
3868
+ node ${ENTRY_PATH} --brokerdebug --commit partial-profit --symbol ETHUSDT
3869
+ node ${ENTRY_PATH} --flush ./content/feb_2026.strategy/feb_2026.strategy.ts
3870
+ node ${ENTRY_PATH} --flush ./content/feb_2026.strategy/feb_2026.strategy.ts ./content/feb_2026.strategy/feb_2026.test.ts
3871
+ node ${ENTRY_PATH} --init --output my-trading-bot
3872
+ node ${ENTRY_PATH} --docker --output my-docker-workspace
3873
3873
  `.trimStart();
3874
3874
  const main$1 = async () => {
3875
3875
  if (!getEntry(import.meta.url)) {
@@ -3879,7 +3879,7 @@ const main$1 = async () => {
3879
3879
  if (!values.help) {
3880
3880
  return;
3881
3881
  }
3882
- process.stdout.write(`@backtest-kit/cli ${"8.4.2"}\n\n`);
3882
+ process.stdout.write(`@backtest-kit/cli ${"8.4.3"}\n\n`);
3883
3883
  process.stdout.write(HELP_TEXT);
3884
3884
  process.exit(0);
3885
3885
  };
@@ -3893,7 +3893,7 @@ const main = async () => {
3893
3893
  if (!values.version) {
3894
3894
  return;
3895
3895
  }
3896
- process.stdout.write(`@backtest-kit/cli ${"8.4.2"}\n`);
3896
+ process.stdout.write(`@backtest-kit/cli ${"8.4.3"}\n`);
3897
3897
  process.exit(0);
3898
3898
  };
3899
3899
  main();
@@ -1,13 +1,13 @@
1
- export default {
2
- signal: true,
3
- risk: true,
4
- info: true,
5
- breakeven: true,
6
- common_error: true,
7
- critical_error: true,
8
- validation_error: true,
9
- partial_loss: false,
10
- partial_profit: false,
11
- signal_sync: false,
12
- strategy_commit: true,
13
- };
1
+ export default {
2
+ signal: true,
3
+ risk: true,
4
+ info: true,
5
+ breakeven: true,
6
+ common_error: true,
7
+ critical_error: true,
8
+ validation_error: true,
9
+ partial_loss: false,
10
+ partial_profit: false,
11
+ signal_sync: false,
12
+ strategy_commit: true,
13
+ };