主要内容: - Phase 8 PROMOTE: finalist #1 (trial #324) registry 条目,自动生成 - Optuna objective warmup bug 修复 (shared/optimizer/objective.py) - studies/ 目录按用途重组为 optuna/ + finalists/ + features/ 三层 - reports/ 加入 Optuna 中文 dashboard (5 主图 + 18 slice + 15 contour) - 新增 PROJECT_GUIDE.md 项目说明文档 - 新增 build_registry_entry.py / build_optuna_dashboard.py / build_feature_datasets.py - .gitignore: 允许提交 studies/*.db (Optuna DB) 和 reports/*.html (MT5 + dashboard)
100 lines
2.3 MiB
Plaintext
100 lines
2.3 MiB
Plaintext
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>Optuna Dashboard — gold_scalper_pro_is2025</title>
|
||
<!-- plotly.js loaded via CDN, SYNCHRONOUSLY in <head> (no async/defer).
|
||
Browser blocks parsing until this <script> finishes, so by the time
|
||
the body's chart <script>Plotly.newPlot(...)</script> tags execute,
|
||
window.Plotly is defined. -->
|
||
<script src="https://cdn.plot.ly/plotly-3.6.0.min.js"></script>
|
||
<style>
|
||
:root {
|
||
--bg:#f5f5f7; --fg:#222; --card:#fff; --border:#ddd;
|
||
--accent:#2563eb; --muted:#666;
|
||
}
|
||
* { box-sizing: border-box; }
|
||
body {
|
||
margin: 0; padding: 2rem; background: var(--bg); color: var(--fg);
|
||
font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif; line-height: 1.6;
|
||
}
|
||
header { margin-bottom: 2rem; border-bottom: 2px solid var(--accent); padding-bottom: 1rem; }
|
||
h1 { margin: 0 0 .25rem; font-size: 1.75rem; }
|
||
h2 { margin: 0 0 .75rem; font-size: 1.25rem; color: var(--accent); }
|
||
.meta { display: flex; gap: 1.5rem; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
|
||
.meta b { color: var(--fg); }
|
||
.grid { display: flex; flex-direction: column; gap: 2rem; }
|
||
.chart {
|
||
background: var(--card); border: 1px solid var(--border); border-radius: 8px;
|
||
padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,.04);
|
||
overflow-x: auto;
|
||
}
|
||
.chart-error { color: #b00; padding: 1rem; background: #fff0f0; border-radius: 6px; }
|
||
.section-title {
|
||
margin: 3rem 0 0.5rem; padding-top: 1.5rem; border-top: 2px dashed var(--accent);
|
||
font-size: 1.4rem; color: var(--accent);
|
||
}
|
||
.section-desc { margin: 0 0 1.5rem; color: var(--muted); font-size: .9rem; }
|
||
footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--border);
|
||
color: var(--muted); font-size: .85rem; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<h1>Optuna 优化仪表盘</h1>
|
||
<div class="meta">
|
||
<span>研究名称:<b>gold_scalper_pro_is2025</b></span>
|
||
<span>试验总数:<b>500</b></span>
|
||
<span>完成:<b>500</b></span>
|
||
<span>剪枝:<b>0</b></span>
|
||
<span>失败:<b>0</b></span>
|
||
<span>最佳:<b>trial #324, score=858.4740</b></span>
|
||
</div>
|
||
</header>
|
||
<main class="grid">
|
||
<section class="chart"><h2>优化历史</h2><div style="height:520px; width:1100px;"> <div id="chart-plot_optimization_history" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("chart-plot_optimization_history")) { Plotly.newPlot( "chart-plot_optimization_history", [{"mode":"markers","name":"Objective Value","x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"},{"mode":"lines","name":"Best Value","x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"y":[-999913.25192,131.69807999999412,131.69807999999412,131.69807999999412,131.69807999999412,131.69807999999412,131.69807999999412,131.69807999999412,131.69807999999412,131.69807999999412,131.69807999999412,131.69807999999412,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,462.65808000000914,476.2100000000073,476.2100000000073,476.2100000000073,476.2100000000073,485.5256200000035,485.5256200000035,485.5256200000035,485.5256200000035,485.5256200000035,485.5256200000035,485.5256200000035,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,554.1156200000019,564.6900000000023,564.6900000000023,564.6900000000023,564.6900000000023,564.6900000000023,564.6900000000023,564.6900000000023,564.6900000000023,564.6900000000023,564.6900000000023,610.1099999999901,631.0999999999949,631.0999999999949,631.0999999999949,631.0999999999949,631.0999999999949,631.0999999999949,631.0999999999949,631.0999999999949,631.0999999999949,631.0999999999949,654.6299999999928,654.6299999999928,654.6299999999928,654.6299999999928,654.6299999999928,654.6299999999928,654.6299999999928,654.6299999999928,654.6299999999928,654.6299999999928,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,668.929999999998,701.2840399999986,711.4940399999987,711.4940399999987,711.4940399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,714.7440399999987,718.594039999974,718.594039999974,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,725.5140399999773,732.3640399999781,734.2940399999784,734.2940399999784,734.2940399999784,734.2940399999784,734.2940399999784,734.2940399999784,734.2940399999784,739.3940400000006,739.3940400000006,739.3940400000006,739.3940400000006,739.3940400000006,739.3940400000006,739.3940400000006,739.3940400000006,739.3940400000006,739.3940400000006,739.3940400000006,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,750.6080800000158,763.2380800000154,763.2380800000154,763.2380800000154,763.2380800000154,763.2380800000154,763.2380800000154,763.2380800000154,845.3240400000091,845.3240400000091,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092,858.4740400000092],"type":"scatter"},{"marker":{"color":"#cccccc"},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"优化历史"},"xaxis":{"title":{"text":"试验序号 Trial"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"height":520,"width":1100}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>参数重要性 (fANOVA)</h2><div style="height:520px; width:1100px;"> <div id="chart-plot_param_importances" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("chart-plot_param_importances")) { Plotly.newPlot( "chart-plot_param_importances", [{"cliponaxis":false,"hovertemplate":["InpAtrTPMult (FloatDistribution): 0.0006686226160838482\u003cextra\u003e\u003c\u002fextra\u003e","InpAtrPeriod (IntDistribution): 0.0008976999677063969\u003cextra\u003e\u003c\u002fextra\u003e","InpBreakEvenLock (IntDistribution): 0.0012541871277194552\u003cextra\u003e\u003c\u002fextra\u003e","InpMinSecondsBetween (IntDistribution): 0.0022608600357996514\u003cextra\u003e\u003c\u002fextra\u003e","InpRiskPercent (FloatDistribution): 0.0023244929968633016\u003cextra\u003e\u003c\u002fextra\u003e","InpMaxSpreadAtrPct (FloatDistribution): 0.006638879679910279\u003cextra\u003e\u003c\u002fextra\u003e","InpPullbackAtrMult (FloatDistribution): 0.006670486595620767\u003cextra\u003e\u003c\u002fextra\u003e","InpSlowEmaPeriod (IntDistribution): 0.011403540344319306\u003cextra\u003e\u003c\u002fextra\u003e","InpMaxTradesPerDay (IntDistribution): 0.012439561754508803\u003cextra\u003e\u003c\u002fextra\u003e","InpTrailStepPoints (FloatDistribution): 0.015230446198302524\u003cextra\u003e\u003c\u002fextra\u003e","InpRsiBuyLevel (FloatDistribution): 0.03008554552672682\u003cextra\u003e\u003c\u002fextra\u003e","InpFastEmaPeriod (IntDistribution): 0.033583097114873166\u003cextra\u003e\u003c\u002fextra\u003e","InpAtrSLMult (FloatDistribution): 0.04602034566999683\u003cextra\u003e\u003c\u002fextra\u003e","InpTrailStartPoints (FloatDistribution): 0.05892417782989737\u003cextra\u003e\u003c\u002fextra\u003e","InpRsiPeriod (IntDistribution): 0.10812819735864793\u003cextra\u003e\u003c\u002fextra\u003e","InpBreakEvenPoints (FloatDistribution): 0.15009393390594264\u003cextra\u003e\u003c\u002fextra\u003e","InpRsiSellLevel (FloatDistribution): 0.2036299027889203\u003cextra\u003e\u003c\u002fextra\u003e","InpDailyLossLimit (FloatDistribution): 0.3097460224881604\u003cextra\u003e\u003c\u002fextra\u003e"],"name":"Objective Value","orientation":"h","text":["\u003c0.01","\u003c0.01","\u003c0.01","\u003c0.01","\u003c0.01","\u003c0.01","\u003c0.01","0.01","0.01","0.02","0.03","0.03","0.05","0.06","0.11","0.15","0.20","0.31"],"textposition":"outside","x":[0.0006686226160838482,0.0008976999677063969,0.0012541871277194552,0.0022608600357996514,0.0023244929968633016,0.006638879679910279,0.006670486595620767,0.011403540344319306,0.012439561754508803,0.015230446198302524,0.03008554552672682,0.033583097114873166,0.04602034566999683,0.05892417782989737,0.10812819735864793,0.15009393390594264,0.2036299027889203,0.3097460224881604],"y":["InpAtrTPMult","InpAtrPeriod","InpBreakEvenLock","InpMinSecondsBetween","InpRiskPercent","InpMaxSpreadAtrPct","InpPullbackAtrMult","InpSlowEmaPeriod","InpMaxTradesPerDay","InpTrailStepPoints","InpRsiBuyLevel","InpFastEmaPeriod","InpAtrSLMult","InpTrailStartPoints","InpRsiPeriod","InpBreakEvenPoints","InpRsiSellLevel","InpDailyLossLimit"],"type":"bar"}], {"title":{"text":"参数重要性 (fANOVA)"},"xaxis":{"title":{"text":"超参数 Hyperparameter"}},"yaxis":{"title":{"text":"重要性 Importance"}},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"height":520,"width":1100}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>平行坐标图 — 参数 ↔ score</h2><div style="height:520px; width:1100px;"> <div id="chart-plot_parallel_coordinate" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("chart-plot_parallel_coordinate")) { Plotly.newPlot( "chart-plot_parallel_coordinate", [{"dimensions":[{"label":"Objective Value","range":[-2000013.0,858.4740400000092],"values":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019]},{"label":"InpAtrPeriod","range":[7,28],"values":[8,17,7,15,14,18,20,9,26,7,28,15,21,22,24,18,12,21,18,24,13,21,20,23,17,20,11,11,11,9,10,16,12,15,16,13,10,8,7,9,8,11,14,11,13,8,26,7,16,10,19,11,12,14,9,11,8,16,10,28,26,11,12,12,14,15,13,14,17,17,18,17,19,19,19,21,22,22,22,23,23,23,22,22,22,24,25,22,24,24,21,25,25,27,24,22,20,24,25,25,24,21,22,23,23,23,22,21,21,23,25,22,20,21,21,20,23,27,20,20,21,23,21,22,24,26,23,25,21,22,20,22,23,22,21,23,21,22,22,20,22,22,21,22,22,21,21,21,22,21,22,22,21,22,22,22,23,23,23,23,23,22,22,21,20,20,24,24,24,24,24,24,24,24,25,25,24,24,24,23,24,26,25,24,23,23,23,24,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,23,22,23,24,24,24,24,24,24,24,24,24,25,25,25,25,25,25,26,25,25,25,25,26,25,26,25,26,26,27,27,28,27,27,27,28,28,28,28,27,27,28,28,28,28,27,28,28,28,28,28,28,28,28,28,28,28,27,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,27,28,27,28,28,27,27,27,28,27,28,28,28,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26,27,27,27,26,27,27,27,26,26,26,26,27,26,27,27,27,26,27,26,27,27,27,26,27,27,26,27,26,26,26,27,27,26,27,27,27,26,26,26,27,26,26,26,26,27,26,27,26,27,27,26,27,27,27,26,27,27,26,26,27,27,27,26,26,26,26,27,26,27,27,26,27,27,27,27,27,27,27,26,26,26,26,26,26,26,26,26,25,27,26,27,27,25,27,26,27,26,27,27,27,27,27,27,27,27,27,27,27,27,27,26,27,27,27,28,27,27,28,27,27,28,27,28,28,28,28,28,28,28,28,28,28,27,27,26,28,26,28,27,27,26,27,26,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25]},{"label":"InpAtrSLMult","range":[1.0,3.0],"values":[2.4000000000000004,2.0,2.3,1.7000000000000002,2.3,1.2,1.3,1.6,2.0,1.0,3.0,1.7000000000000002,1.8,2.0,2.8,1.9,2.5,1.5,2.1,1.4,2.6,1.5,1.7000000000000002,1.8,2.2,1.1,1.4,1.9,1.3,1.5,1.8,2.0,1.9,2.2,2.1,1.9,2.4000000000000004,1.6,1.6,1.2,1.4,1.8,1.6,1.8,1.7000000000000002,2.0,1.4,1.6,2.1,1.3,1.0,1.8,1.8,1.7000000000000002,1.6,2.0,1.8,2.2,1.5,1.9,1.7000000000000002,2.0,1.9,1.8,1.7000000000000002,1.7000000000000002,1.4,2.0,2.3,2.6,2.7,2.4000000000000004,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.7,2.7,2.8,2.7,2.6,2.8,2.8,2.7,2.6,2.8,2.5,2.5,2.7,2.8,2.6,2.8,2.8,2.7,2.7,2.7,2.7,2.9000000000000004,2.7,2.6,2.7,2.5,2.8,2.8,2.8,2.7,2.6,2.8,2.7,2.9000000000000004,3.0,2.9000000000000004,2.9000000000000004,2.8,2.7,2.7,2.5,2.7,2.6,2.9000000000000004,2.7,2.7,2.8,2.8,2.9000000000000004,2.8,2.8,2.8,2.7,2.6,2.6,2.6,2.7,2.7,2.7,2.7,2.5,2.6,2.5,2.4000000000000004,2.4000000000000004,2.3,2.3,2.3,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.5,2.5,2.4000000000000004,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.6,2.4000000000000004,2.5,2.5,2.3,2.4000000000000004,2.6,2.4000000000000004,2.5,2.6,2.6,2.5,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.6,2.6,2.6,2.7,2.7,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.2,2.3,2.2,2.2,2.2,2.3,2.2,2.2,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2.1,2.2,2.1,2.0,2.0,2.1,2.2,2.2,2.1,2.1,2.1,2.2,2.0,2.0,2.1,2.1,2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.0,1.9,2.0,2.0,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,2.0,1.9,1.8,2.0,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.8,1.9,2.0,2.0,2.0,2.0,1.9,2.0,1.8,1.9,2.0,1.9,1.9,1.9,2.0,1.8,1.9,1.9,1.8,1.9,2.0,1.9,2.0,1.7000000000000002,1.9,1.8,2.0,1.9,2.0,2.0,1.9,2.0,2.0,1.8,1.9,2.0,1.9,1.9,1.8,1.9,2.0,2.0,1.9,1.9,1.8,1.9,2.0,2.0,2.0,1.1,2.0,1.9,1.9,1.9,1.8,1.9,1.8,1.7000000000000002,1.8,1.8,1.8,1.7000000000000002,1.8,1.9,1.7000000000000002,1.8,1.9,1.8,1.9,1.8,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.9,1.9,1.9,2.0,2.0,2.0,1.9,2.0,1.9,2.0,1.9,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,2.0,1.9,1.9,2.0,1.9,1.8,1.9,1.8,1.9,1.9,1.8,1.8,1.9,1.9,1.9,2.0,1.8,2.0,1.9,1.9,2.0,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.7000000000000002,1.7000000000000002,1.8,1.7000000000000002,1.8,1.6,1.8,1.7000000000000002,1.8,1.8,1.8,1.8,1.8,1.8]},{"label":"InpAtrTPMult","range":[1.0,4.0],"values":[1.0,2.8,1.9,1.8,2.0,1.0,3.7,2.6,4.0,2.5,3.2,1.7000000000000002,2.9000000000000004,3.1,2.9000000000000004,2.5,3.3000000000000003,3.6,2.2,2.8,1.4,3.6,3.5,4.0,2.9000000000000004,2.3,3.3000000000000003,3.1,3.3000000000000003,3.1,3.8000000000000003,2.7,2.7,3.0,3.3000000000000003,2.3,3.4000000000000004,2.7,2.6,2.1,2.4000000000000004,2.8,2.8,2.7,2.9000000000000004,2.6,3.0,2.5,1.9,3.2,2.7,3.1,3.0,2.8,3.2,2.9000000000000004,3.4000000000000004,2.4000000000000004,3.1,1.1,2.6,3.2,3.0,2.9000000000000004,3.5,3.8000000000000003,3.5,3.6,3.3000000000000003,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.7,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.9000000000000004,4.0,4.0,4.0,3.9000000000000004,3.9000000000000004,4.0,4.0,4.0,3.9000000000000004,4.0,3.7,3.7,3.7,3.6,4.0,3.7,3.9000000000000004,4.0,3.7,3.8000000000000003,3.9000000000000004,4.0,3.8000000000000003,3.6,4.0,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.8000000000000003,3.7,3.9000000000000004,4.0,1.7000000000000002,3.8000000000000003,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.6,3.7,3.5,3.6,3.7,3.8000000000000003,4.0,3.9000000000000004,4.0,3.8000000000000003,3.9000000000000004,3.7,4.0,3.9000000000000004,4.0,4.0,4.0,3.8000000000000003,3.8000000000000003,3.7,4.0,4.0,4.0,4.0,3.9000000000000004,3.8000000000000003,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.8000000000000003,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.6,3.6,3.9000000000000004,3.7,3.7,3.5,3.5,3.5,3.5,3.5,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.5,3.4000000000000004,3.3000000000000003,3.5,3.5,3.3000000000000003,3.4000000000000004,3.5,3.6,3.4000000000000004,3.5,3.5,3.6,3.3000000000000003,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.7,3.7,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.7,3.6,3.6,3.7,3.7,3.7,3.7,3.7,3.7,3.6,3.7,3.6,3.6,3.7,3.6,3.7,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.2,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.2,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.2,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.2,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.1,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.2,3.2,3.1,3.1,3.2,3.2,3.2,3.2,3.1,3.0,3.1,3.2,3.0,3.0,3.1,3.1,3.2,3.2,3.2,3.1,3.1,3.1,3.0,3.2,3.2,3.2,3.2,3.2,3.1,3.1,2.9000000000000004,3.1,3.0,3.1,3.1,3.2,3.1,2.9000000000000004,3.2,3.2,3.0,3.1,3.2,3.1,3.1,3.0,3.1,3.2,3.1,3.1,3.1,3.0,3.0,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,3.0,3.0,3.1,2.8,3.1,3.1,3.1,2.9000000000000004,3.1,3.0,3.1,3.1,3.0,2.9000000000000004,3.1,3.1,3.0,3.1,1.2,2.9000000000000004,3.0,3.1,2.8,3.2,3.1,3.0,3.0,3.1,3.1,3.1,2.9000000000000004,3.1,3.0,3.1,2.9000000000000004,3.1,3.0,3.1,3.1,3.0,3.1,2.9000000000000004,3.0,3.1,3.1,3.0,2.9000000000000004,2.8,3.0,3.0,3.1,3.0,3.1,1.7000000000000002,3.0,3.1,3.0,2.9000000000000004,3.0,2.7,2.8,2.6,2.7,2.4000000000000004,2.4000000000000004,2.1,2.3,2.5,2.9000000000000004,2.9000000000000004,2.8,2.8,2.3,2.7,2.6,2.7,2.9000000000000004,2.2,2.9000000000000004,2.7,2.9000000000000004,2.5,2.9000000000000004,2.8,2.7,2.6,2.9000000000000004,2.9000000000000004,2.8,2.8,2.7,2.7,2.8,2.7,2.8,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.8,2.7,3.0,3.0,2.9000000000000004,2.8,3.0,2.9000000000000004,2.6,2.6,2.7,2.7,2.5,2.6,2.5,2.6,2.5,2.5,2.4000000000000004,2.5,2.6,2.5,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.5,2.6,2.3,2.5,2.6,2.5,2.4000000000000004,2.5,2.7,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.4000000000000004,2.4000000000000004,2.2,2.5,2.3,2.3,2.3,2.4000000000000004,2.5,2.2,2.6,2.4000000000000004]},{"label":"InpBreakEvenLock","range":[10,50],"values":[45,35,30,15,20,20,45,25,40,35,10,10,50,50,50,35,40,30,45,35,50,30,25,30,40,25,35,40,45,40,45,35,40,35,35,45,30,40,50,45,20,40,40,35,35,30,40,45,25,40,50,40,35,35,45,40,35,30,40,45,50,40,40,35,40,45,35,30,40,40,35,40,40,45,45,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,45,50,45,50,50,45,50,50,50,50,50,50,50,50,45,50,50,50,50,50,50,45,50,50,45,50,50,50,50,50,50,50,45,10,50,50,50,50,50,50,50,50,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,40,40,45,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,30,35,35,35,35,35,35,35,35,35,35,35,35,30,35,35,35,35,35,35,35,30,30,30,30,30,30,30,30,30,30,30,30,30,30,25,25,20,15,30,30,25,30,30,30,30,30,30,25,25,30,30,25,25,25,25,25,25,25,25,25,25,25,25,25,25,20,25,25,25,25,25,30,30,25,30,30,30,25,30,25,25,30,30,30,25,30,20,30,30,30,30,30,30,30,25,30,25,30,30,25,30,25,25,25,25,25,25,25,30,30,25,30,30,25,25,30,30,25,30,25,20,20,20,25,25,15,20,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,15,20,25,25,25,25,25,25,20,25,25,25,25,25,25,25,25,20,20,20,20,20,20,20,20,20,20,20,15,25,25,25,25,25,25,25,25,25,25,25,25,25,20,25,25,25,25,25,25,25,25,20,20,20,20,20,20,25,25,20,15,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,10,25,25,25,25,25,25,25,25,25]},{"label":"InpBreakEvenPoints","range":[50.0,300.0],"values":[300.0,60.0,180.0,190.0,60.0,210.0,190.0,230.0,110.0,100.0,290.0,140.0,50.0,50.0,80.0,120.0,80.0,50.0,150.0,80.0,140.0,50.0,70.0,100.0,50.0,90.0,70.0,120.0,120.0,160.0,120.0,70.0,70.0,100.0,70.0,90.0,130.0,60.0,60.0,70.0,90.0,60.0,60.0,60.0,80.0,280.0,100.0,50.0,250.0,70.0,90.0,110.0,110.0,60.0,80.0,170.0,50.0,80.0,110.0,60.0,190.0,140.0,130.0,130.0,70.0,90.0,100.0,150.0,70.0,110.0,130.0,110.0,70.0,80.0,80.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,210.0,60.0,50.0,60.0,50.0,60.0,70.0,50.0,60.0,50.0,70.0,60.0,50.0,50.0,60.0,60.0,60.0,80.0,50.0,60.0,70.0,50.0,50.0,60.0,50.0,70.0,60.0,50.0,80.0,60.0,70.0,70.0,50.0,60.0,50.0,50.0,60.0,70.0,50.0,60.0,50.0,60.0,50.0,50.0,60.0,50.0,50.0,70.0,50.0,50.0,50.0,60.0,50.0,50.0,50.0,60.0,60.0,60.0,70.0,50.0,70.0,50.0,50.0,60.0,50.0,60.0,60.0,60.0,80.0,60.0,300.0,70.0,60.0,60.0,60.0,60.0,80.0,60.0,70.0,80.0,90.0,70.0,70.0,80.0,70.0,90.0,70.0,70.0,70.0,80.0,70.0,90.0,70.0,80.0,270.0,60.0,60.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,180.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,210.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,60.0,50.0,50.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,60.0,260.0,60.0,60.0,60.0,60.0,60.0,230.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,80.0,60.0,80.0,70.0,60.0,70.0,160.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,60.0,290.0,60.0,70.0,70.0,70.0,60.0,60.0,80.0,60.0,70.0,60.0,60.0,70.0,60.0,200.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,60.0,80.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,230.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0]},{"label":"InpDailyLossLimit","range":[2.0,8.0],"values":[3.5,8.0,8.0,7.0,7.5,4.5,3.0,5.0,4.0,8.0,2.0,6.5,6.5,5.5,6.0,7.0,6.5,6.0,7.5,5.5,8.0,6.0,7.0,6.0,5.0,6.5,7.5,7.5,7.0,7.5,7.5,8.0,7.5,8.0,7.0,8.0,6.5,7.5,7.0,7.5,8.0,7.5,8.0,7.0,7.5,6.5,2.5,8.0,7.0,7.5,5.5,7.5,7.5,4.0,6.5,8.0,7.0,8.0,7.0,6.0,7.5,7.5,7.5,7.5,7.0,6.5,7.0,8.0,7.0,6.5,6.0,6.5,7.0,6.5,6.5,6.0,5.5,5.5,5.0,5.0,5.0,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.0,4.5,4.0,4.0,3.5,4.5,4.0,4.5,4.5,3.5,3.5,4.0,3.0,4.5,3.5,3.5,3.0,3.5,3.5,3.5,3.5,3.0,4.0,4.0,3.5,3.5,3.5,2.5,3.0,4.0,4.0,3.5,4.0,4.5,3.5,3.5,3.0,3.5,4.0,3.5,4.0,2.5,4.0,4.0,4.0,3.5,3.5,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.0,5.0,5.0,5.0,5.0,5.0,5.5,5.5,5.0,5.0,5.0,5.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,5.5,6.0,5.5,5.0,5.5,5.0,6.0,5.5,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,4.5,5.5,5.5,5.5,5.5,2.0,5.5,5.5,2.5,2.0,2.5,2.0,2.0,2.5,2.5,5.5,5.5,2.0,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,6.5,6.0,6.0,5.5,6.0,5.5,5.5,6.0,5.5,5.5,2.5,6.5,6.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.5,7.0,7.0,6.5,6.5,6.5,6.0,6.0,5.5,6.5,6.5,6.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.5,6.5,7.0,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.0,7.0,7.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,7.0,6.5,6.5,7.0,6.5]},{"label":"InpFastEmaPeriod","range":[8,34],"values":[18,19,16,24,8,11,14,30,15,25,33,23,22,20,27,21,27,19,12,17,22,19,20,26,29,22,18,13,13,10,8,17,17,15,17,18,15,10,8,24,21,10,10,10,12,14,9,16,11,24,33,13,13,11,12,9,18,14,16,20,22,13,12,9,11,12,15,11,16,18,19,18,17,17,16,17,19,21,21,23,23,23,21,21,21,23,25,20,22,21,20,23,22,24,20,22,26,20,21,22,21,21,23,23,24,25,24,23,23,26,28,25,24,23,23,23,24,22,23,31,25,23,24,22,22,26,23,22,24,22,25,22,22,22,23,23,20,22,22,22,24,20,22,19,21,19,19,19,19,19,20,20,19,18,18,18,18,19,18,18,18,18,18,18,18,18,17,17,17,17,17,17,17,17,16,16,17,17,15,16,18,18,17,17,18,18,16,17,18,19,19,19,18,18,18,19,19,18,19,19,19,19,19,19,19,19,19,19,19,19,20,19,19,20,20,20,20,20,20,19,20,19,19,19,19,20,19,20,19,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,21,21,22,22,22,21,22,21,21,22,22,22,22,22,22,22,22,22,22,22,22,22,23,22,22,22,23,22,22,23,22,22,23,23,23,23,23,23,23,23,24,23,23,24,23,22,23,22,24,24,24,24,25,24,24,24,24,25,25,25,25,25,26,25,25,26,24,25,24,24,27,25,24,24,24,25,24,26,25,25,25,24,25,26,24,25,25,24,24,26,27,25,26,26,27,24,26,26,26,25,27,25,26,25,25,26,28,26,25,24,26,24,27,25,25,25,34,25,26,24,26,24,25,24,25,26,24,25,25,25,27,24,26,24,24,25,26,25,25,25,25,27,27,28,28,28,28,29,29,30,26,29,26,24,26,28,24,25,25,27,25,31,26,25,25,25,26,25,25,25,26,24,26,25,24,24,25,25,25,25,25,26,26,26,25,26,26,27,27,27,26,27,27,27,27,26,26,27,27,27,26,26,27,26,27,25,26,25,25,26,27,28,27,28,28,28,29,29,30,30,29,30,30,31,29,31,30,31,29,32,28,30,29]},{"label":"InpMaxSpreadAtrPct","range":[10.0,50.0],"values":[45.0,42.5,47.5,20.0,12.5,27.5,45.0,22.5,20.0,35.0,35.0,10.0,35.0,40.0,32.5,40.0,50.0,40.0,30.0,25.0,37.5,42.5,42.5,50.0,45.0,35.0,30.0,30.0,30.0,27.5,17.5,32.5,32.5,27.5,32.5,30.0,25.0,37.5,37.5,37.5,35.0,32.5,32.5,37.5,22.5,35.0,25.0,27.5,32.5,40.0,35.0,30.0,30.0,32.5,27.5,37.5,22.5,30.0,40.0,45.0,35.0,30.0,32.5,32.5,32.5,37.5,30.0,35.0,27.5,25.0,25.0,20.0,27.5,27.5,22.5,25.0,25.0,20.0,15.0,15.0,15.0,15.0,12.5,10.0,10.0,10.0,10.0,10.0,10.0,10.0,12.5,12.5,12.5,10.0,12.5,12.5,10.0,10.0,12.5,17.5,15.0,12.5,12.5,10.0,10.0,10.0,12.5,10.0,10.0,10.0,12.5,15.0,12.5,10.0,10.0,10.0,12.5,10.0,10.0,17.5,12.5,10.0,10.0,10.0,12.5,47.5,12.5,10.0,10.0,12.5,15.0,12.5,12.5,12.5,15.0,15.0,12.5,15.0,17.5,17.5,15.0,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,20.0,20.0,20.0,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,20.0,20.0,20.0,22.5,22.5,20.0,20.0,20.0,22.5,22.5,22.5,22.5,20.0,20.0,20.0,22.5,20.0,20.0,22.5,22.5,20.0,20.0,22.5,20.0,20.0,20.0,20.0,22.5,22.5,22.5,22.5,22.5,25.0,22.5,25.0,25.0,22.5,22.5,22.5,25.0,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,25.0,22.5,22.5,22.5,25.0,25.0,25.0,25.0,25.0,25.0,25.0,27.5,25.0,22.5,25.0,22.5,22.5,22.5,25.0,27.5,22.5,22.5,22.5,25.0,22.5,22.5,25.0,25.0,25.0,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,32.5,30.0,30.0,32.5,32.5,30.0,30.0,30.0,30.0,30.0,32.5,30.0,30.0,30.0,30.0,30.0,30.0,30.0,32.5,32.5,32.5,32.5,32.5,32.5,35.0,35.0,32.5,35.0,32.5,35.0,35.0,35.0,35.0,37.5,35.0,35.0,35.0,35.0,35.0,32.5,35.0,37.5,32.5,32.5,32.5,35.0,35.0,35.0,37.5,40.0,40.0,37.5,40.0,40.0,40.0,40.0,40.0,42.5,42.5,40.0,40.0,40.0,42.5,37.5,37.5,42.5,40.0,42.5,42.5,40.0,40.0,40.0,40.0,40.0,40.0,40.0,45.0,40.0,42.5,37.5,37.5,42.5,40.0,40.0,40.0,40.0,42.5,42.5,45.0,40.0,42.5,42.5,42.5,37.5,40.0,37.5,37.5,40.0,37.5,42.5,45.0,42.5,40.0,40.0,42.5,42.5,40.0,42.5,45.0,42.5,42.5,37.5,40.0,40.0,42.5,40.0,37.5,40.0,45.0,47.5,47.5,45.0,45.0,45.0,45.0,42.5,42.5,42.5,42.5,45.0,42.5,37.5,37.5,37.5,37.5,45.0,45.0,45.0,47.5,47.5,42.5,50.0,42.5,47.5,47.5,42.5,45.0,45.0,42.5,37.5,40.0,40.0,37.5,37.5,40.0,40.0,37.5,40.0,50.0,40.0,40.0,37.5,37.5,37.5,37.5,40.0,40.0,37.5,37.5,40.0,40.0,40.0,40.0,40.0,37.5,40.0,40.0,40.0,40.0,42.5,42.5,42.5,42.5,40.0,42.5,37.5,37.5,37.5,40.0,37.5,40.0,37.5,37.5,37.5,37.5,37.5,40.0,40.0,37.5,37.5,40.0,40.0,37.5,42.5,40.0,40.0,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,35.0,35.0,37.5,37.5]},{"label":"InpMaxTradesPerDay","range":[3,12],"values":[4,12,10,12,9,5,4,5,10,6,7,12,12,12,10,11,8,11,11,9,12,11,11,9,11,12,10,8,8,8,7,10,10,9,7,10,8,9,10,3,9,9,10,9,10,9,10,7,11,8,6,8,9,8,12,6,10,9,11,7,10,8,8,9,8,7,8,8,7,5,5,3,4,4,4,4,5,5,6,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,5,6,7,7,6,5,6,6,6,6,7,6,7,6,7,6,6,6,7,6,6,6,7,7,7,6,6,6,5,7,6,5,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,8,8,8,8,8,8,8,9,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,3,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,12]},{"label":"InpMinSecondsBetw...","range":[30,180],"values":[105,150,165,60,105,150,90,75,120,45,30,180,135,135,150,180,135,150,120,165,120,150,135,165,150,135,105,90,90,90,105,75,75,75,60,105,60,105,105,120,75,90,90,105,45,75,90,120,105,60,45,90,90,105,120,75,90,60,105,135,75,90,90,105,75,75,75,60,120,135,135,120,135,135,135,150,150,165,165,165,180,180,165,165,165,165,165,165,165,165,180,165,165,165,150,180,165,150,165,165,180,165,165,150,150,150,150,150,150,150,150,165,180,165,150,165,180,165,150,150,150,165,165,165,150,165,150,135,180,150,150,150,150,150,135,135,150,150,135,135,135,150,150,150,150,150,150,150,150,150,150,150,150,150,135,135,135,135,135,135,135,135,135,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,105,120,120,120,105,120,120,120,120,120,120,120,120,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,90,105,105,90,105,105,105,105,105,105,105,105,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,75,75,75,90,90,90,75,75,90,75,75,75,75,75,75,75,75,75,75,75,75,60,60,60,60,60,60,60,60,60,75,75,45,75,75,75,75,75,75,75,75,75,75,75,75,60,75,75,75,75,75,75,75,60,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,60,30,60,60,45,60,60,60,60,60,60,60,60,60,60,60,60,60,45,60,60,60,60,60,45,60,60,75,60,60,60,45,60,60,60,60,60,60,60,75,45,45,30,45,75,45,75,75,75,75,60,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,45,45,30,45,45,45,45,45,45,45,45,30,45,45,45,45,45,45,45,45,45,30,45,45,45,45,45,45,45,45,45,45,45,45,30,30,45,30,45,30,30,45,30,45,45,45,45,45,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30]},{"label":"InpPullbackAtrMult","range":[1.0,4.0],"values":[1.4,2.1,2.5,2.0,1.2,2.5,3.5,1.6,1.8,1.5,3.8000000000000003,2.3,3.0,3.0,3.0,3.1,4.0,1.0,2.2,2.7,3.5,1.0,1.8,1.1,3.3000000000000003,2.0,2.7,2.7,2.7,2.8,2.5,3.2,3.2,3.4000000000000004,2.9000000000000004,2.6,3.7,2.4000000000000004,2.3,2.4000000000000004,3.2,2.9000000000000004,2.9000000000000004,2.9000000000000004,3.1,2.5,3.7,2.1,3.4000000000000004,3.1,2.6,2.8,2.8,3.0,2.4000000000000004,2.8,3.2,2.6,2.3,3.4000000000000004,1.8,3.0,2.7,2.7,2.9000000000000004,2.4000000000000004,2.8,3.3000000000000003,2.5,2.6,2.6,2.7,3.0,3.1,3.0,3.1,3.3000000000000003,3.6,3.6,3.6,3.9000000000000004,4.0,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.7,3.8000000000000003,3.7,4.0,3.6,3.9000000000000004,3.8000000000000003,3.7,3.5,3.7,4.0,3.8000000000000003,3.8000000000000003,3.8000000000000003,3.5,3.7,3.6,3.8000000000000003,3.9000000000000004,3.7,3.6,3.6,4.0,4.0,3.8000000000000003,3.9000000000000004,3.7,4.0,4.0,3.5,3.8000000000000003,3.9000000000000004,4.0,4.0,3.8000000000000003,3.7,4.0,3.9000000000000004,1.4,1.1,3.8000000000000003,3.8000000000000003,3.8000000000000003,3.7,1.6,3.7,3.6,3.4000000000000004,1.3,3.5,3.6,3.6,3.6,3.4000000000000004,3.5,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.2,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.5,3.2,3.5,3.5,3.5,3.5,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.2,3.3000000000000003,3.5,3.4000000000000004,3.4000000000000004,3.2,3.5,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.6,3.2,3.5,3.3000000000000003,3.5,3.1,3.1,3.6,3.6,3.1,3.1,3.1,3.1,3.0,3.0,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.8,2.8,2.8,3.0,3.1,3.0,2.8,2.9000000000000004,3.0,3.0,2.9000000000000004,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.5,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.5,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.6,3.6,3.6,3.5,3.5,3.5,3.6,3.5,3.4000000000000004,3.6,3.5,3.6,3.5,3.5,3.6,3.5,3.5,3.4000000000000004,3.4000000000000004,3.6,3.5,3.4000000000000004,3.4000000000000004,2.0,3.5,3.5,3.4000000000000004,3.4000000000000004,3.6,3.4000000000000004,3.5,3.4000000000000004,3.5,3.7,3.4000000000000004,3.4000000000000004,3.6,3.5,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.5,3.6,3.4000000000000004,3.5,3.4000000000000004,3.5,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.5,3.5,3.4000000000000004,3.6,3.4000000000000004,3.4000000000000004,3.5,3.5,3.5,3.6,3.5,3.6,3.5,3.5,3.5,3.6,3.5,3.6,3.7,3.5,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.6,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.7,1.9,2.1,3.5,1.2,3.4000000000000004,1.5,3.4000000000000004,3.4000000000000004,2.5,3.4000000000000004,1.9,3.4000000000000004,1.0,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.4000000000000004,1.6,1.4,1.1,1.2,1.5,1.6,3.5,1.0,1.7000000000000002,2.2,1.3,2.3,1.9,1.8,1.7000000000000002,1.9,1.9,1.7000000000000002,2.0,1.6,1.3,2.1,2.2,1.9,2.0,1.8,1.9,1.8,1.9,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.9,2.0,1.8,1.9,1.9,1.7000000000000002,1.8,2.1,1.9,2.0,1.8]},{"label":"InpRiskPercent","range":[0.25,3.0],"values":[2.0,0.75,1.0,2.5,2.75,0.25,2.5,3.0,0.5,2.25,1.5,1.5,1.0,0.75,1.25,0.75,1.75,0.25,1.0,1.25,0.75,0.25,0.5,0.5,0.25,1.0,1.25,1.25,1.5,2.0,1.75,1.25,1.25,1.25,1.75,1.0,1.5,1.0,1.0,0.75,1.0,1.25,1.25,1.5,1.0,0.75,1.5,1.25,2.0,0.5,1.75,1.25,1.25,1.0,1.5,0.75,3.0,1.0,1.25,2.75,1.5,1.25,1.25,1.0,1.25,0.75,1.5,1.25,1.0,1.75,2.0,1.75,2.25,2.25,2.25,2.25,2.5,2.5,2.5,2.5,2.5,2.5,2.75,2.5,2.75,2.75,2.75,2.75,2.75,2.75,3.0,2.75,2.75,2.75,3.0,2.75,3.0,2.75,2.75,3.0,2.5,2.75,2.75,2.75,2.75,3.0,2.75,2.5,3.0,2.5,2.75,2.5,2.75,2.5,2.75,2.75,2.5,3.0,2.75,2.5,2.25,2.75,2.75,2.75,3.0,2.5,2.75,2.75,2.5,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.25,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.25,2.5,2.5,2.5,2.5,2.25,2.5,2.5,2.5,2.5,2.5,2.5,2.25,2.25,2.5,2.5,2.5,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.0,2.0,2.25,2.25,2.0,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.0,2.25,2.25,2.25,2.0,2.0,2.0,2.25,2.25,2.0,2.25,2.25,2.25,2.25,1.75,1.75,1.75,2.0,2.0,2.0,2.25,2.25,2.25,2.25,2.0,1.75,2.25,2.0,2.25,2.25,2.25,2.25,2.0,2.25,2.25,2.25,2.25,2.0,2.25,2.25,2.25,2.25,2.25,2.0,1.75,2.25,2.25,2.25,2.25,1.5,1.5,1.75,2.25,2.25,2.25,1.5,2.25,2.25,2.25,2.25,2.25,2.25,2.25,1.5,2.25,2.25,2.25,2.25,2.25,2.0,2.0,2.0,2.0,1.75,2.25,2.0,1.75,2.25,2.0,0.25,2.25,2.25,2.0,2.25,2.25,2.25,2.25,2.25,2.25,1.5,2.0,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,1.25,0.75,1.25,1.0,2.25,2.25,1.5,1.25,1.25,1.0,2.25,2.25,2.25,2.25,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.25]},{"label":"InpRsiBuyLevel","range":[30.0,50.0],"values":[42.0,32.0,39.0,34.0,45.0,41.0,33.0,40.0,40.0,47.0,30.0,35.0,35.0,30.0,37.0,32.0,36.0,37.0,32.0,49.0,43.0,38.0,37.0,38.0,34.0,32.0,35.0,35.0,35.0,43.0,35.0,31.0,31.0,34.0,33.0,36.0,33.0,31.0,31.0,30.0,31.0,33.0,33.0,34.0,32.0,31.0,30.0,36.0,33.0,34.0,40.0,35.0,38.0,36.0,32.0,35.0,33.0,37.0,39.0,34.0,30.0,35.0,35.0,32.0,36.0,37.0,36.0,39.0,41.0,44.0,46.0,41.0,45.0,44.0,43.0,44.0,44.0,44.0,47.0,48.0,48.0,49.0,48.0,48.0,48.0,48.0,50.0,47.0,47.0,47.0,47.0,48.0,48.0,49.0,47.0,46.0,50.0,46.0,48.0,49.0,47.0,48.0,48.0,46.0,46.0,46.0,45.0,49.0,50.0,49.0,48.0,48.0,49.0,48.0,46.0,50.0,49.0,48.0,47.0,47.0,45.0,48.0,46.0,47.0,47.0,47.0,49.0,46.0,48.0,45.0,45.0,47.0,47.0,47.0,46.0,45.0,46.0,46.0,47.0,45.0,46.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,49.0,47.0,47.0,47.0,48.0,48.0,48.0,48.0,49.0,48.0,48.0,49.0,48.0,48.0,48.0,48.0,48.0,48.0,48.0,48.0,49.0,48.0,48.0,48.0,48.0,49.0,48.0,48.0,48.0,49.0,48.0,50.0,48.0,48.0,49.0,48.0,49.0,48.0,47.0,48.0,47.0,49.0,49.0,49.0,50.0,49.0,49.0,50.0,49.0,49.0,49.0,50.0,49.0,49.0,49.0,49.0,49.0,49.0,49.0,49.0,50.0,49.0,49.0,49.0,49.0,49.0,50.0,49.0,49.0,50.0,49.0,49.0,49.0,49.0,50.0,49.0,49.0,50.0,49.0,49.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,49.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,49.0,42.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,38.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,49.0,39.0,50.0,50.0,50.0,50.0,49.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,49.0,49.0,50.0,40.0,50.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,49.0,49.0,49.0,49.0,49.0,48.0,49.0,49.0,48.0,48.0,49.0,49.0,48.0,49.0,49.0,49.0,48.0,49.0,49.0]},{"label":"InpRsiPeriod","range":[7,28],"values":[23,20,22,8,22,23,13,7,20,8,28,14,14,17,12,17,27,17,11,20,15,17,19,15,25,10,18,20,18,15,24,21,22,21,19,25,21,23,24,23,13,19,22,19,16,18,24,21,27,9,13,20,21,23,18,16,20,19,16,14,22,20,20,18,21,23,21,25,20,20,20,20,21,17,18,17,17,17,11,12,11,11,12,12,12,12,12,10,10,10,7,12,10,9,14,12,9,13,11,11,10,11,12,13,13,14,13,13,15,13,14,12,12,13,13,14,12,13,15,15,13,11,15,12,14,13,11,14,12,13,14,13,15,16,15,15,13,13,16,16,15,14,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,18,16,17,17,16,16,17,17,17,17,18,18,18,18,18,18,19,18,19,17,18,18,17,17,18,18,17,18,18,19,17,19,17,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,21,20,20,19,20,20,19,20,21,19,20,21,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,17,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,15,16,15,15,16,16,16,15,15,15,15,15,15,16,16,16,15,16,15,14,15,16,16,15,16,15,15,15,16,16,15,14,15,15,14,14,14,15,15,14,16,16,15,15,14,15,16,15,28,16,16,15,16,14,14,16,14,15,14,14,15,14,26,15,14,15,15,15,15,15,15,15,15,16,16,16,16,16,15,16,15,14,15,16,16,14,14,16,14,16,15,13,16,16,16,16,16,14,16,15,14,16,15,16,15,16,16,14,15,16,14,13,14,14,15,15,15,13,14,15,14,14,13,14,14,15,15,14,15,13,14,15,15,14,15,15,14,14,13,14,14,14,13,14,13,13,13,13,12,13,13,13,12,13,13,13,13,12,13,13,12,13]},{"label":"InpRsiSellLevel","range":[50.0,70.0],"values":[53.0,56.0,52.0,50.0,66.0,66.0,69.0,58.0,51.0,56.0,61.0,57.0,50.0,61.0,54.0,60.0,55.0,59.0,63.0,50.0,53.0,59.0,64.0,56.0,58.0,63.0,54.0,54.0,52.0,54.0,52.0,53.0,54.0,51.0,53.0,50.0,55.0,52.0,52.0,51.0,53.0,55.0,55.0,50.0,57.0,51.0,69.0,56.0,52.0,53.0,57.0,54.0,55.0,54.0,53.0,51.0,56.0,52.0,55.0,70.0,54.0,54.0,53.0,50.0,53.0,52.0,53.0,51.0,52.0,53.0,53.0,51.0,53.0,56.0,57.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,51.0,51.0,51.0,51.0,51.0,50.0,51.0,50.0,52.0,50.0,51.0,52.0,51.0,51.0,52.0,50.0,50.0,51.0,51.0,51.0,50.0,51.0,51.0,52.0,67.0,50.0,51.0,50.0,51.0,52.0,50.0,52.0,51.0,51.0,52.0,50.0,51.0,50.0,50.0,51.0,50.0,51.0,50.0,51.0,52.0,51.0,51.0,51.0,51.0,52.0,51.0,52.0,52.0,52.0,52.0,52.0,53.0,53.0,53.0,53.0,53.0,53.0,54.0,54.0,54.0,54.0,53.0,55.0,55.0,55.0,54.0,55.0,54.0,55.0,55.0,54.0,54.0,54.0,56.0,56.0,55.0,56.0,55.0,56.0,57.0,57.0,57.0,55.0,58.0,57.0,58.0,56.0,56.0,56.0,55.0,57.0,56.0,55.0,55.0,56.0,55.0,57.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,55.0,54.0,53.0,55.0,54.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,55.0,55.0,61.0,56.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,65.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,54.0,62.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,54.0,56.0,55.0,54.0,55.0,55.0,56.0,54.0,54.0,68.0,55.0,55.0,56.0,55.0,55.0,56.0,56.0,56.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,59.0,58.0,58.0,60.0,59.0,60.0,58.0,57.0,58.0,59.0,59.0,57.0,57.0,57.0,57.0,57.0,57.0,58.0,57.0,58.0,57.0,59.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,58.0,57.0,58.0,58.0,57.0,58.0,59.0,57.0,58.0,57.0,58.0,57.0,57.0,58.0,57.0,56.0,57.0,60.0,57.0,59.0,57.0,58.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,57.0,57.0,57.0,56.0,57.0,58.0,57.0,56.0,58.0,57.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,58.0,70.0,57.0,56.0,56.0,56.0,56.0,56.0,58.0,56.0,56.0,57.0,57.0,57.0,56.0,57.0,57.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,56.0,57.0,57.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0]},{"label":"InpSlowEmaPeriod","range":[50,200],"values":[195,95,65,190,175,160,60,180,55,130,105,105,135,135,90,140,85,115,155,80,120,110,95,145,120,75,105,95,125,70,150,95,100,90,50,110,170,80,75,65,165,85,85,65,185,100,85,130,75,200,60,95,105,80,90,100,115,90,110,95,135,80,95,100,85,105,70,120,95,115,115,95,125,125,125,140,145,145,155,155,150,150,160,160,160,160,160,170,175,175,165,160,175,165,160,180,170,155,190,195,180,170,160,185,185,190,185,185,190,200,185,195,195,190,190,185,165,170,190,180,195,185,180,200,200,190,190,195,175,185,185,200,200,195,200,200,200,190,195,190,200,195,195,195,195,195,195,195,195,195,190,190,195,190,190,195,195,195,195,195,195,195,200,200,200,200,200,200,200,200,200,200,200,200,200,200,190,200,200,200,200,190,200,195,190,195,200,190,195,195,190,190,190,190,190,180,180,185,185,180,180,185,185,185,185,185,185,180,180,180,175,185,185,185,185,185,185,185,185,185,180,185,185,185,175,180,185,185,180,185,185,185,180,185,175,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,180,180,180,180,175,175,170,175,175,180,170,170,170,170,165,170,165,165,165,170,170,170,170,170,165,170,170,170,170,170,170,165,165,165,165,165,165,170,170,165,165,160,155,160,160,165,160,160,160,165,155,155,155,150,165,160,155,155,155,165,160,150,160,160,165,165,165,165,165,165,165,160,160,160,160,160,155,160,160,160,160,160,155,165,150,160,165,160,155,160,150,150,155,155,160,155,160,155,145,145,150,160,155,160,155,160,160,160,150,160,155,150,155,155,160,165,165,165,150,160,155,165,160,165,160,155,155,165,160,165,150,155,145,140,160,165,160,155,165,165,165,165,50,160,165,160,160,165,160,160,165,165,165,165,165,170,170,170,170,170,170,165,165,175,160,170,165,165,160,160,170,170,175,175,175,175,170,170,175,170,165,165,165,160,165,160,165,160,165,170,165,165,165,170,165,170,175,170,175,170,170,170,175,170,175,170,170,175,170,175,170,170,170,175,170,170,175,165,170,170,165,175,175,175,175,175,175,175,175,175,180,180,180,180,180,180,180,180,180,180,180,175,180,175,180,175,175]},{"label":"InpTrailStartPoints","range":[100.0,400.0],"values":[160.0,150.0,150.0,340.0,200.0,250.0,370.0,400.0,330.0,150.0,260.0,100.0,300.0,260.0,220.0,310.0,110.0,290.0,210.0,180.0,370.0,300.0,290.0,230.0,280.0,330.0,120.0,120.0,120.0,180.0,180.0,140.0,130.0,130.0,150.0,100.0,170.0,130.0,160.0,140.0,200.0,120.0,140.0,100.0,120.0,160.0,240.0,360.0,140.0,200.0,110.0,120.0,130.0,400.0,110.0,170.0,100.0,150.0,120.0,270.0,140.0,120.0,130.0,110.0,130.0,170.0,130.0,380.0,190.0,190.0,190.0,220.0,320.0,310.0,330.0,300.0,310.0,300.0,310.0,340.0,340.0,340.0,350.0,350.0,350.0,350.0,350.0,370.0,380.0,380.0,360.0,390.0,390.0,360.0,370.0,350.0,390.0,370.0,350.0,330.0,380.0,350.0,390.0,400.0,390.0,400.0,390.0,390.0,400.0,390.0,360.0,390.0,370.0,390.0,400.0,370.0,380.0,400.0,390.0,390.0,380.0,370.0,390.0,400.0,400.0,380.0,400.0,390.0,370.0,360.0,380.0,360.0,360.0,360.0,390.0,390.0,370.0,380.0,360.0,360.0,380.0,360.0,360.0,360.0,340.0,330.0,330.0,330.0,340.0,340.0,320.0,340.0,320.0,340.0,340.0,340.0,340.0,340.0,330.0,330.0,330.0,340.0,320.0,320.0,320.0,320.0,320.0,320.0,310.0,300.0,310.0,310.0,310.0,320.0,310.0,300.0,320.0,290.0,280.0,290.0,310.0,320.0,330.0,280.0,350.0,300.0,310.0,320.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,360.0,360.0,340.0,360.0,360.0,350.0,340.0,360.0,350.0,340.0,360.0,350.0,370.0,350.0,340.0,340.0,340.0,340.0,340.0,360.0,360.0,360.0,360.0,360.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,400.0,390.0,400.0,390.0,240.0,390.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,380.0,390.0,390.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,380.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,210.0,390.0,380.0,370.0,370.0,380.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,360.0,360.0,360.0,360.0,370.0,360.0,370.0,360.0]},{"label":"InpTrailStepPoints","range":[60.0,240.0],"values":[90.0,70.0,240.0,70.0,190.0,230.0,120.0,240.0,100.0,190.0,140.0,60.0,60.0,60.0,90.0,130.0,80.0,110.0,150.0,160.0,80.0,110.0,110.0,60.0,80.0,100.0,70.0,70.0,70.0,90.0,90.0,70.0,60.0,80.0,70.0,70.0,100.0,70.0,60.0,80.0,90.0,70.0,70.0,60.0,210.0,80.0,100.0,70.0,90.0,60.0,120.0,70.0,80.0,60.0,70.0,90.0,80.0,70.0,60.0,170.0,100.0,70.0,70.0,80.0,60.0,60.0,60.0,80.0,90.0,110.0,130.0,110.0,90.0,100.0,120.0,100.0,110.0,120.0,130.0,140.0,140.0,140.0,130.0,140.0,150.0,150.0,160.0,150.0,150.0,150.0,170.0,150.0,150.0,130.0,150.0,160.0,130.0,170.0,140.0,160.0,150.0,140.0,130.0,150.0,180.0,210.0,200.0,140.0,140.0,190.0,180.0,140.0,160.0,230.0,230.0,160.0,230.0,240.0,150.0,170.0,220.0,150.0,140.0,150.0,140.0,150.0,160.0,180.0,130.0,150.0,150.0,140.0,150.0,160.0,140.0,120.0,140.0,130.0,130.0,130.0,120.0,130.0,130.0,130.0,130.0,130.0,130.0,130.0,120.0,120.0,130.0,130.0,120.0,130.0,130.0,130.0,130.0,120.0,130.0,120.0,130.0,130.0,130.0,120.0,130.0,130.0,120.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,120.0,120.0,100.0,110.0,100.0,100.0,120.0,110.0,100.0,120.0,120.0,120.0,110.0,110.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,110.0,120.0,120.0,110.0,120.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,90.0,100.0,100.0,100.0,100.0,90.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,90.0,100.0,90.0,90.0,90.0,90.0,100.0,100.0,100.0,90.0,100.0,90.0,90.0,90.0,90.0,90.0,90.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,80.0,80.0,80.0,70.0,60.0,70.0,80.0,80.0,70.0,70.0,60.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,60.0,70.0,70.0,60.0,70.0,70.0,70.0,60.0,70.0,70.0,70.0,70.0,70.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,70.0,70.0,70.0,60.0,70.0,60.0,70.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,60.0,70.0,70.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,60.0,70.0,60.0,70.0,80.0,60.0,70.0,70.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,70.0,80.0,60.0,60.0,70.0,80.0,70.0,80.0,60.0,70.0,70.0,60.0,70.0,70.0,60.0,80.0,80.0,80.0,80.0,70.0,80.0,70.0,80.0,70.0,70.0,70.0,80.0,70.0,70.0,70.0,80.0,70.0,70.0,80.0,80.0,80.0,80.0,80.0,70.0,70.0,80.0,70.0,70.0,70.0,80.0,70.0,70.0,80.0,60.0,70.0,70.0,80.0,70.0,60.0,70.0,80.0,70.0,60.0,60.0,80.0,80.0,80.0,80.0,80.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0]}],"labelangle":30,"labelside":"bottom","line":{"color":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"reversescale":false,"showscale":true},"type":"parcoords"}], {"title":{"text":"平行坐标图 — 参数 ↔ score"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"height":520,"width":1100}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>经验分布函数 (EDF)</h2><div style="height:520px; width:1100px;"> <div id="chart-plot_edf" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("chart-plot_edf")) { Plotly.newPlot( "chart-plot_edf", [{"mode":"lines","name":"gold_scalper_pro_is2025","x":{"dtype":"f8","bdata":"AAAAAI2EPsHb1FEtmjU+wbWpo1qn5j3BkH71h7SXPcFqU0e1wUg9wUUomeLO+TzBIP3qD9yqPMH60Tw96Vs8wdWmjmr2DDzBr3vglwO+O8GKUDLFEG87wWQlhPIdIDvBP\u002frVHyvROsEazydNOII6wfSjeXpFMzrBz3jLp1LkOcGpTR3VX5U5wYQibwJtRjnBXvfAL3r3OME5zBJdh6g4wRShZIqUWTjB7nW2t6EKOMHJSgjlrrs3waMfWhK8bDfBfvSrP8kdN8FYyf1s1s42wTOeT5rjfzbBDnOhx\u002fAwNsHoR\u002fP0\u002feE1wcMcRSILkzXBnvGWTxhENcF4xuh8JfU0wVKbOqoypjTBLXCM1z9XNMEIRd4ETQg0weIZMDJauTPBve6BX2dqM8GYw9OMdBszwXKYJbqBzDLBTG135459MsEnQskUnC4ywQIXG0Kp3zHB3Otsb7aQMcG3wL6cw0ExwZKVEMrQ8jDBbGpi992jMMFGP7Qk61QwwSEUBlL4BTDB+NGv\u002fgpuL8Gte1NZJdAuwWIl97M\u002fMi7BF8+aDlqULcHMeD5pdPYswYIi4sOOWCzBNsyFHqm6K8HsdSl5wxwrwaAfzdPdfirBVslwLvjgKcEMcxSJEkMpwcAcuOMspSjBdsZbPkcHKMEqcP+YYWknweAZo\u002fN7yybBlMNGTpYtJsFKbeqosI8lwQAXjgPL8STBtMAxXuVTJMFqatW4\u002f7UjwR4UeRMaGCPB1L0cbjR6IsGIZ8DITtwhwT4RZCNpPiHB9LoHfoOgIMGoZKvYnQIgwbwcnmZwyR7BJHDlG6WNHcGQwyzR2VEcwfwWdIYOFhvBZGq7O0PaGcHQvQLxd54YwTgRSqasYhfBpGSRW+EmFsEMuNgQFusUwXgLIMZKrxPB5F5ne39zEsFMsq4wtDcRwXAL7MvR9w\u002fBQLJ6NjuADcEYWQmhpAgLwej\u002flwsOkQjBwKYmdncZBsGYTbXg4KEDwWj0Q0tKKgHBgDala2dl\u002fcAghMJAOnb4wNDR3xUNh\u002fPAAD\u002f61b8v7cBA2jSAZVHjwEDr3lQW5tLASMh71crTikA="},"y":{"dtype":"f8","bdata":"\u002fKnx0k1iYD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P\u002fp+arx0k3g\u002f+n5qvHSTeD\u002f6fmq8dJN4P4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fj8L1KFyP0j+PwvUoXI\u002fSP4\u002fC9Shcj9I\u002fAAAAAAAA8D8="},"type":"scatter"}], {"title":{"text":"经验分布函数 (EDF)"},"xaxis":{"title":{"text":"目标值 Objective"}},"yaxis":{"title":{"text":"累积分布 CDF"},"range":[0,1]},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"height":520,"width":1100}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>时间线 — 试验耗时与状态</h2><div style="height:520px; width:1100px;"> <div id="chart-plot_timeline" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("chart-plot_timeline")) { Plotly.newPlot( "chart-plot_timeline", [{"base":["2026-06-26T20:57:53.268905","2026-06-26T20:57:55.093451","2026-06-26T20:57:56.974767","2026-06-26T20:57:59.279110","2026-06-26T20:58:01.268484","2026-06-26T20:58:03.049740","2026-06-26T20:58:04.845603","2026-06-26T20:58:06.682444","2026-06-26T20:58:08.576079","2026-06-26T20:58:10.184216","2026-06-26T20:58:12.131822","2026-06-26T20:58:13.742228","2026-06-26T20:58:15.528383","2026-06-26T20:58:17.279874","2026-06-26T20:58:19.123013","2026-06-26T20:58:20.854048","2026-06-26T20:58:22.688021","2026-06-26T20:58:24.689559","2026-06-26T20:58:27.040589","2026-06-26T20:58:29.375892","2026-06-26T20:58:31.854688","2026-06-26T20:58:34.315619","2026-06-26T20:58:36.886194","2026-06-26T20:58:39.210724","2026-06-26T20:58:41.459606","2026-06-26T20:58:43.701941","2026-06-26T20:58:46.542772","2026-06-26T20:58:48.830210","2026-06-26T20:58:50.991205","2026-06-26T20:58:53.397080","2026-06-26T20:58:55.743499","2026-06-26T20:58:58.316580","2026-06-26T20:59:00.621506","2026-06-26T20:59:02.839724","2026-06-26T20:59:05.287718","2026-06-26T20:59:07.654069","2026-06-26T20:59:10.236099","2026-06-26T20:59:12.676173","2026-06-26T20:59:15.051620","2026-06-26T20:59:17.216346","2026-06-26T20:59:19.479494","2026-06-26T20:59:21.544994","2026-06-26T20:59:23.632650","2026-06-26T20:59:25.685482","2026-06-26T20:59:27.746894","2026-06-26T20:59:29.806895","2026-06-26T20:59:31.802836","2026-06-26T20:59:33.739839","2026-06-26T20:59:35.757857","2026-06-26T20:59:37.845404","2026-06-26T20:59:39.870014","2026-06-26T20:59:41.967967","2026-06-26T20:59:44.016955","2026-06-26T20:59:46.055075","2026-06-26T20:59:48.174262","2026-06-26T20:59:50.333674","2026-06-26T20:59:52.400393","2026-06-26T20:59:55.359847","2026-06-26T20:59:58.245639","2026-06-26T21:00:01.046140","2026-06-26T21:00:03.161060","2026-06-26T21:00:05.302335","2026-06-26T21:00:07.446360","2026-06-26T21:00:09.614040","2026-06-26T21:00:11.803092","2026-06-26T21:00:13.884821","2026-06-26T21:00:16.074955","2026-06-26T21:00:18.137342","2026-06-26T21:00:20.321484","2026-06-26T21:00:22.377454","2026-06-26T21:00:24.507131","2026-06-26T21:00:26.696906","2026-06-26T21:00:28.798930","2026-06-26T21:00:30.910859","2026-06-26T21:00:33.021067","2026-06-26T21:00:35.175868","2026-06-26T21:00:37.263544","2026-06-26T21:00:39.422689","2026-06-26T21:00:41.534047","2026-06-26T21:00:43.762618","2026-06-26T21:00:45.904339","2026-06-26T21:00:48.123376","2026-06-26T21:00:50.360780","2026-06-26T21:00:52.585094","2026-06-26T21:00:54.809001","2026-06-26T21:00:57.009091","2026-06-26T21:00:59.135684","2026-06-26T21:01:01.253414","2026-06-26T21:01:03.609159","2026-06-26T21:01:05.881016","2026-06-26T21:01:08.164354","2026-06-26T21:01:10.381917","2026-06-26T21:01:12.585649","2026-06-26T21:01:14.760732","2026-06-26T21:01:16.913883","2026-06-26T21:01:19.141465","2026-06-26T21:01:21.339371","2026-06-26T21:01:23.436837","2026-06-26T21:01:25.626089","2026-06-26T21:01:27.801826","2026-06-26T21:01:30.039320","2026-06-26T21:01:32.241448","2026-06-26T21:01:34.396653","2026-06-26T21:01:36.521687","2026-06-26T21:01:38.917848","2026-06-26T21:01:41.183275","2026-06-26T21:01:43.523224","2026-06-26T21:01:45.800163","2026-06-26T21:01:48.043588","2026-06-26T21:01:50.405806","2026-06-26T21:01:52.617613","2026-06-26T21:01:54.706397","2026-06-26T21:01:56.779437","2026-06-26T21:01:58.948420","2026-06-26T21:02:01.377765","2026-06-26T21:02:03.646586","2026-06-26T21:02:05.648173","2026-06-26T21:02:07.667369","2026-06-26T21:02:09.680975","2026-06-26T21:02:11.708991","2026-06-26T21:02:13.757535","2026-06-26T21:02:15.828756","2026-06-26T21:02:17.764744","2026-06-26T21:02:19.967643","2026-06-26T21:02:22.017170","2026-06-26T21:02:24.060524","2026-06-26T21:02:26.120722","2026-06-26T21:02:28.153724","2026-06-26T21:02:30.089669","2026-06-26T21:02:32.074717","2026-06-26T21:02:34.102934","2026-06-26T21:02:36.427208","2026-06-26T21:02:38.563687","2026-06-26T21:02:40.773774","2026-06-26T21:02:42.928789","2026-06-26T21:02:44.992579","2026-06-26T21:02:47.104867","2026-06-26T21:02:49.278384","2026-06-26T21:02:51.521800","2026-06-26T21:02:53.639052","2026-06-26T21:02:55.689470","2026-06-26T21:02:57.787345","2026-06-26T21:02:59.849093","2026-06-26T21:03:01.837901","2026-06-26T21:03:03.854460","2026-06-26T21:03:05.868292","2026-06-26T21:03:07.937883","2026-06-26T21:03:09.918903","2026-06-26T21:03:12.026045","2026-06-26T21:03:14.011088","2026-06-26T21:03:16.101791","2026-06-26T21:03:18.073602","2026-06-26T21:03:20.099827","2026-06-26T21:03:22.128146","2026-06-26T21:03:24.227953","2026-06-26T21:03:26.280645","2026-06-26T21:03:28.311125","2026-06-26T21:03:30.340475","2026-06-26T21:03:32.409797","2026-06-26T21:03:34.425761","2026-06-26T21:03:36.473105","2026-06-26T21:03:38.569370","2026-06-26T21:03:40.605737","2026-06-26T21:03:42.637138","2026-06-26T21:03:44.693375","2026-06-26T21:03:46.780828","2026-06-26T21:03:48.839284","2026-06-26T21:03:50.910889","2026-06-26T21:03:52.981568","2026-06-26T21:03:55.049489","2026-06-26T21:03:57.086402","2026-06-26T21:03:59.136350","2026-06-26T21:04:01.645734","2026-06-26T21:04:04.578761","2026-06-26T21:04:06.511521","2026-06-26T21:04:08.455168","2026-06-26T21:04:10.354452","2026-06-26T21:04:12.323834","2026-06-26T21:04:14.292555","2026-06-26T21:04:16.321085","2026-06-26T21:04:18.351387","2026-06-26T21:04:20.452080","2026-06-26T21:04:22.418981","2026-06-26T21:04:24.473482","2026-06-26T21:04:26.455054","2026-06-26T21:04:28.458169","2026-06-26T21:04:30.441520","2026-06-26T21:04:32.386463","2026-06-26T21:04:34.380554","2026-06-26T21:04:36.325294","2026-06-26T21:04:38.269532","2026-06-26T21:04:40.230761","2026-06-26T21:04:42.237621","2026-06-26T21:04:44.214006","2026-06-26T21:04:46.231083","2026-06-26T21:04:48.199250","2026-06-26T21:04:50.196479","2026-06-26T21:04:52.115870","2026-06-26T21:04:54.106181","2026-06-26T21:04:56.027820","2026-06-26T21:04:58.014550","2026-06-26T21:04:59.915665","2026-06-26T21:05:01.866980","2026-06-26T21:05:03.989670","2026-06-26T21:05:06.048172","2026-06-26T21:05:07.988007","2026-06-26T21:05:10.019156","2026-06-26T21:05:11.973355","2026-06-26T21:05:14.009225","2026-06-26T21:05:15.959680","2026-06-26T21:05:17.953402","2026-06-26T21:05:19.914336","2026-06-26T21:05:21.992114","2026-06-26T21:05:24.002964","2026-06-26T21:05:26.018833","2026-06-26T21:05:27.984239","2026-06-26T21:05:30.051857","2026-06-26T21:05:32.004962","2026-06-26T21:05:34.039544","2026-06-26T21:05:35.997635","2026-06-26T21:05:38.020585","2026-06-26T21:05:40.004778","2026-06-26T21:05:42.032313","2026-06-26T21:05:44.016406","2026-06-26T21:05:46.014514","2026-06-26T21:05:47.997387","2026-06-26T21:05:50.018662","2026-06-26T21:05:52.019835","2026-06-26T21:05:54.023339","2026-06-26T21:05:56.050099","2026-06-26T21:05:58.019051","2026-06-26T21:06:00.017729","2026-06-26T21:06:01.959931","2026-06-26T21:06:03.938784","2026-06-26T21:06:05.854119","2026-06-26T21:06:07.810015","2026-06-26T21:06:09.740120","2026-06-26T21:06:11.750713","2026-06-26T21:06:13.634372","2026-06-26T21:06:15.650735","2026-06-26T21:06:17.567312","2026-06-26T21:06:19.665227","2026-06-26T21:06:21.596360","2026-06-26T21:06:23.611224","2026-06-26T21:06:25.512016","2026-06-26T21:06:27.505495","2026-06-26T21:06:29.479606","2026-06-26T21:06:31.502685","2026-06-26T21:06:33.427224","2026-06-26T21:06:35.384718","2026-06-26T21:06:37.367169","2026-06-26T21:06:39.371657","2026-06-26T21:06:41.368953","2026-06-26T21:06:43.375368","2026-06-26T21:06:45.329100","2026-06-26T21:06:47.299714","2026-06-26T21:06:49.253076","2026-06-26T21:06:51.243902","2026-06-26T21:06:53.180928","2026-06-26T21:06:55.153455","2026-06-26T21:06:57.107862","2026-06-26T21:06:59.059590","2026-06-26T21:07:00.976193","2026-06-26T21:07:02.930086","2026-06-26T21:07:04.866603","2026-06-26T21:07:06.883249","2026-06-26T21:07:08.876045","2026-06-26T21:07:10.977944","2026-06-26T21:07:12.994697","2026-06-26T21:07:14.991555","2026-06-26T21:07:16.948769","2026-06-26T21:07:18.877933","2026-06-26T21:07:20.899319","2026-06-26T21:07:22.950875","2026-06-26T21:07:25.038208","2026-06-26T21:07:27.005218","2026-06-26T21:07:28.991173","2026-06-26T21:07:31.001039","2026-06-26T21:07:33.061371","2026-06-26T21:07:35.065697","2026-06-26T21:07:37.138635","2026-06-26T21:07:39.131566","2026-06-26T21:07:41.176569","2026-06-26T21:07:43.155619","2026-06-26T21:07:45.179798","2026-06-26T21:07:47.163858","2026-06-26T21:07:49.223353","2026-06-26T21:07:51.190447","2026-06-26T21:07:53.244460","2026-06-26T21:07:55.205688","2026-06-26T21:07:57.171446","2026-06-26T21:07:59.163057","2026-06-26T21:08:01.236694","2026-06-26T21:08:03.226465","2026-06-26T21:08:05.284171","2026-06-26T21:08:07.289517","2026-06-26T21:08:09.307112","2026-06-26T21:08:11.354235","2026-06-26T21:08:13.378842","2026-06-26T21:08:15.279921","2026-06-26T21:08:17.309024","2026-06-26T21:08:19.260245","2026-06-26T21:08:21.374587","2026-06-26T21:08:23.326486","2026-06-26T21:08:25.358178","2026-06-26T21:08:27.374494","2026-06-26T21:08:29.416418","2026-06-26T21:08:31.398662","2026-06-26T21:08:33.441321","2026-06-26T21:08:35.417739","2026-06-26T21:08:37.463093","2026-06-26T21:08:39.515604","2026-06-26T21:08:41.561538","2026-06-26T21:08:43.530143","2026-06-26T21:08:45.564911","2026-06-26T21:08:47.558175","2026-06-26T21:08:49.603614","2026-06-26T21:08:51.531581","2026-06-26T21:08:53.518039","2026-06-26T21:08:55.449056","2026-06-26T21:08:57.441705","2026-06-26T21:08:59.385413","2026-06-26T21:09:01.401495","2026-06-26T21:09:03.379026","2026-06-26T21:09:05.386159","2026-06-26T21:09:07.387190","2026-06-26T21:09:09.388693","2026-06-26T21:09:11.410202","2026-06-26T21:09:13.402646","2026-06-26T21:09:15.438074","2026-06-26T21:09:17.356448","2026-06-26T21:09:19.367937","2026-06-26T21:09:21.425661","2026-06-26T21:09:23.442588","2026-06-26T21:09:25.525044","2026-06-26T21:09:27.650305","2026-06-26T21:09:29.629336","2026-06-26T21:09:31.683982","2026-06-26T21:09:33.654708","2026-06-26T21:09:35.657937","2026-06-26T21:09:37.734758","2026-06-26T21:09:39.757210","2026-06-26T21:09:41.827824","2026-06-26T21:09:43.875985","2026-06-26T21:09:45.825869","2026-06-26T21:09:47.847965","2026-06-26T21:09:49.846399","2026-06-26T21:09:51.892427","2026-06-26T21:09:53.948751","2026-06-26T21:09:55.990594","2026-06-26T21:09:57.989918","2026-06-26T21:10:00.008193","2026-06-26T21:10:02.007822","2026-06-26T21:10:04.078653","2026-06-26T21:10:06.057936","2026-06-26T21:10:08.134439","2026-06-26T21:10:10.121566","2026-06-26T21:10:12.178835","2026-06-26T21:10:14.229693","2026-06-26T21:10:16.299220","2026-06-26T21:10:18.348789","2026-06-26T21:10:20.422540","2026-06-26T21:10:22.406339","2026-06-26T21:10:24.459874","2026-06-26T21:10:26.548838","2026-06-26T21:10:28.564769","2026-06-26T21:10:30.576799","2026-06-26T21:10:32.608089","2026-06-26T21:10:34.566484","2026-06-26T21:10:36.701114","2026-06-26T21:10:38.771872","2026-06-26T21:10:40.901135","2026-06-26T21:10:42.903551","2026-06-26T21:10:45.051357","2026-06-26T21:10:47.050180","2026-06-26T21:10:49.209920","2026-06-26T21:10:51.218557","2026-06-26T21:10:53.273455","2026-06-26T21:10:55.308257","2026-06-26T21:10:57.426632","2026-06-26T21:10:59.426221","2026-06-26T21:11:01.493049","2026-06-26T21:11:03.463290","2026-06-26T21:11:05.610984","2026-06-26T21:11:07.576286","2026-06-26T21:11:09.609157","2026-06-26T21:11:11.611719","2026-06-26T21:11:13.549063","2026-06-26T21:11:15.568127","2026-06-26T21:11:17.571124","2026-06-26T21:11:19.616009","2026-06-26T21:11:21.642490","2026-06-26T21:11:23.679453","2026-06-26T21:11:25.768122","2026-06-26T21:11:27.933709","2026-06-26T21:11:30.229804","2026-06-26T21:11:32.413395","2026-06-26T21:11:34.596424","2026-06-26T21:11:36.665105","2026-06-26T21:11:38.709908","2026-06-26T21:11:40.845954","2026-06-26T21:11:45.908248","2026-06-26T21:11:51.292681","2026-06-26T21:11:56.966203","2026-06-26T21:12:02.396688","2026-06-26T21:12:08.689479","2026-06-26T21:12:14.782486","2026-06-26T21:12:20.320638","2026-06-26T21:12:25.652142","2026-06-26T21:12:31.076906","2026-06-26T21:12:36.508939","2026-06-26T21:12:42.715489","2026-06-26T21:12:45.408737","2026-06-26T21:12:47.770588","2026-06-26T21:12:53.226005","2026-06-26T21:12:58.367701","2026-06-26T21:13:03.093483","2026-06-26T21:13:09.453128","2026-06-26T21:13:15.518398","2026-06-26T21:13:21.694678","2026-06-26T21:13:28.193102","2026-06-26T21:13:33.934466","2026-06-26T21:13:39.961705","2026-06-26T21:13:45.868115","2026-06-26T21:13:51.456235","2026-06-26T21:13:57.626318","2026-06-26T21:14:03.319366","2026-06-26T21:14:08.980483","2026-06-26T21:14:13.831679","2026-06-26T21:14:19.851964","2026-06-26T21:14:26.391596","2026-06-26T21:14:31.105158","2026-06-26T21:14:36.930683","2026-06-26T21:14:42.738195","2026-06-26T21:14:48.876800","2026-06-26T21:14:54.489333","2026-06-26T21:15:00.902988","2026-06-26T21:15:07.318117","2026-06-26T21:15:13.046982","2026-06-26T21:15:19.635684","2026-06-26T21:15:26.109467","2026-06-26T21:15:32.176253","2026-06-26T21:15:35.482837","2026-06-26T21:15:40.712560","2026-06-26T21:15:46.348021","2026-06-26T21:15:52.675303","2026-06-26T21:15:59.259662","2026-06-26T21:16:05.273466","2026-06-26T21:16:10.271767","2026-06-26T21:16:16.065725","2026-06-26T21:16:22.144452","2026-06-26T21:16:28.055764","2026-06-26T21:16:33.975911","2026-06-26T21:16:40.073141","2026-06-26T21:16:46.524963","2026-06-26T21:16:51.554750","2026-06-26T21:16:57.788319","2026-06-26T21:17:04.293403","2026-06-26T21:17:06.863922","2026-06-26T21:17:09.080505","2026-06-26T21:17:11.488202","2026-06-26T21:17:13.826733","2026-06-26T21:17:16.154563","2026-06-26T21:17:18.433667","2026-06-26T21:17:20.679483","2026-06-26T21:17:23.006314","2026-06-26T21:17:25.310918","2026-06-26T21:17:27.542441","2026-06-26T21:17:29.817127","2026-06-26T21:17:32.039560","2026-06-26T21:17:34.295704","2026-06-26T21:17:36.499249","2026-06-26T21:17:38.759192","2026-06-26T21:17:40.932645","2026-06-26T21:17:44.990960","2026-06-26T21:17:49.942442","2026-06-26T21:17:54.996217","2026-06-26T21:18:00.838223","2026-06-26T21:18:06.145931","2026-06-26T21:18:11.910777","2026-06-26T21:18:18.028715","2026-06-26T21:18:23.316975","2026-06-26T21:18:28.181500","2026-06-26T21:18:33.188363","2026-06-26T21:18:37.858402","2026-06-26T21:18:43.410578","2026-06-26T21:18:48.722435","2026-06-26T21:18:53.900344","2026-06-26T21:18:58.646175","2026-06-26T21:19:03.440375","2026-06-26T21:19:08.476775","2026-06-26T21:19:13.338434","2026-06-26T21:19:18.984981","2026-06-26T21:19:24.241018","2026-06-26T21:19:29.652712","2026-06-26T21:19:34.428503","2026-06-26T21:19:39.107579","2026-06-26T21:19:44.305576","2026-06-26T21:19:49.111447","2026-06-26T21:19:54.671354"],"hovertemplate":"%{text}\u003cextra\u003eCOMPLETE\u003c\u002fextra\u003e","marker":{"color":"blue"},"name":"COMPLETE","orientation":"h","text":["{\u003cbr\u003e \"number\": 0,\u003cbr\u003e \"values\": [\u003cbr\u003e -999913.25192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 42.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.4,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 1.0,\u003cbr\u003e \"InpBreakEvenPoints\": 300.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 160.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 75.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.06512729486731807,\u003cbr\u003e \"net_profit\": 162.55808000000607,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 42.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.4,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 1.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 300.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 160.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.193997279041466,\u003cbr\u003e \"sharpe\": 0.10604606920464812,\u003cbr\u003e \"total_trades\": 712,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.19 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8202247191011236\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 1,\u003cbr\u003e \"values\": [\u003cbr\u003e 131.69807999999412\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 18.160000000002128,\u003cbr\u003e \"max_equity_dd_pct\": 0.015649936700489194,\u003cbr\u003e \"net_profit\": 149.85807999999625,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.935233764006505,\u003cbr\u003e \"sharpe\": 0.19978627764213283,\u003cbr\u003e \"total_trades\": 308,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8928571428571429\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 2,\u003cbr\u003e \"values\": [\u003cbr\u003e -999903.8878799999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 65,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 39.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 7,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 1.9,\u003cbr\u003e \"InpBreakEvenPoints\": 180.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 240.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.3299999999972,\u003cbr\u003e \"max_equity_dd_pct\": 0.05094881235595912,\u003cbr\u003e \"net_profit\": 155.44212000001232,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 65,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 39.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 7,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 1.9,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 180.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 240.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2830440292800405,\u003cbr\u003e \"sharpe\": 0.10964086994385229,\u003cbr\u003e \"total_trades\": 515,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.28 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7242718446601941\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 3,\u003cbr\u003e \"values\": [\u003cbr\u003e -999496.29226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 8,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 15,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 1.8,\u003cbr\u003e \"InpBreakEvenPoints\": 190.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 131.00595999999587,\u003cbr\u003e \"max_equity_dd_pct\": 0.07920296662677688,\u003cbr\u003e \"net_profit\": 634.7136999999906,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 8,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 15,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 1.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 190.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.216688257186548,\u003cbr\u003e \"sharpe\": 0.2063588394781333,\u003cbr\u003e \"total_trades\": 2197,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.22 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7073281747837961\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 4,\u003cbr\u003e \"values\": [\u003cbr\u003e -999847.21438\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 8,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 66.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.2,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 2.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 200.0,\u003cbr\u003e \"InpTrailStepPoints\": 190.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.61999999999989,\u003cbr\u003e \"max_equity_dd_pct\": 0.02833769448934335,\u003cbr\u003e \"net_profit\": 186.40561999999684,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 8,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 66.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.2,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 2.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 200.0,\u003cbr\u003e \"InpTrailStepPoints\": 190.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.470882528001121,\u003cbr\u003e \"sharpe\": 0.16812890249915946,\u003cbr\u003e \"total_trades\": 689,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8911465892597968\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 5,\u003cbr\u003e \"values\": [\u003cbr\u003e -1000090.73\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 41.0,\u003cbr\u003e \"InpRsiSellLevel\": 66.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 18,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpAtrSLMult\": 1.2,\u003cbr\u003e \"InpAtrTPMult\": 1.0,\u003cbr\u003e \"InpBreakEvenPoints\": 210.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 250.0,\u003cbr\u003e \"InpTrailStepPoints\": 230.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 60.099999999999454,\u003cbr\u003e \"max_equity_dd_pct\": 0.059941753770046645,\u003cbr\u003e \"net_profit\": -30.630000000002383,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 41.0,\u003cbr\u003e \"InpRsiSellLevel\": 66.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 18,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.2,\u003cbr\u003e \"InpAtrTPMult\": 1.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 210.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 250.0,\u003cbr\u003e \"InpTrailStepPoints\": 230.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 0.9011776092918138,\u003cbr\u003e \"sharpe\": -0.04019337119482629,\u003cbr\u003e \"total_trades\": 238,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (0.90 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.592436974789916\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 6,\u003cbr\u003e \"values\": [\u003cbr\u003e -2000004.88\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 14,\u003cbr\u003e \"InpSlowEmaPeriod\": 60,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 69.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 1.3,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 190.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 9.44000000000051,\u003cbr\u003e \"max_equity_dd_pct\": 0.009309664694280581,\u003cbr\u003e \"net_profit\": 4.559999999999491,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 14,\u003cbr\u003e \"InpSlowEmaPeriod\": 60,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 69.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.3,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 190.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3857868020304085,\u003cbr\u003e \"sharpe\": 0.025470874656886095,\u003cbr\u003e \"total_trades\": 9,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"too few trades (9 \u003c 40)\",\u003cbr\u003e \"PF too low (1.39 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.6666666666666666\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 7,\u003cbr\u003e \"values\": [\u003cbr\u003e -1000003.92\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 7,\u003cbr\u003e \"InpRsiBuyLevel\": 40.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 9,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 230.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 240.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 122.17000000000053,\u003cbr\u003e \"max_equity_dd_pct\": 0.10221207101383842,\u003cbr\u003e \"net_profit\": 118.25000000000045,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 7,\u003cbr\u003e \"InpRsiBuyLevel\": 40.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 9,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 230.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 240.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.0663211795915852,\u003cbr\u003e \"sharpe\": 0.05630799229441728,\u003cbr\u003e \"total_trades\": 1229,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.07 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.6200162733930025\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 8,\u003cbr\u003e \"values\": [\u003cbr\u003e -999911.17576\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 55,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 40.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 0.5,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 56.85000000000082,\u003cbr\u003e \"max_equity_dd_pct\": 0.049106230329003554,\u003cbr\u003e \"net_profit\": 145.6742400000023,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 55,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 40.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.189474755418587,\u003cbr\u003e \"sharpe\": 0.0933763414710417,\u003cbr\u003e \"total_trades\": 760,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.19 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8184210526315789\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 9,\u003cbr\u003e \"values\": [\u003cbr\u003e -999834.1\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 130,\u003cbr\u003e \"InpRsiPeriod\": 8,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.5,\u003cbr\u003e \"InpAtrPeriod\": 7,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 190.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 53.70000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.04316477368637055,\u003cbr\u003e \"net_profit\": 219.59999999998809,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 130,\u003cbr\u003e \"InpRsiPeriod\": 8,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.5,\u003cbr\u003e \"InpAtrPeriod\": 7,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 190.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.194786187565961,\u003cbr\u003e \"sharpe\": 0.14962123988569,\u003cbr\u003e \"total_trades\": 1476,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.19 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.6734417344173442\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 10,\u003cbr\u003e \"values\": [\u003cbr\u003e -2000013.0\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 33,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 28,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 61.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 290.0,\u003cbr\u003e \"InpBreakEvenLock\": 10,\u003cbr\u003e \"InpTrailStartPoints\": 260.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 9.039999999999964,\u003cbr\u003e \"max_equity_dd_pct\": 0.008994308910733443,\u003cbr\u003e \"net_profit\": -3.960000000000491,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 33,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 28,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 61.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 290.0,\u003cbr\u003e \"InpBreakEvenLock\": 10,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 260.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 0.46195652173907303,\u003cbr\u003e \"sharpe\": -0.027966495848517944,\u003cbr\u003e \"total_trades\": 2,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"too few trades (2 \u003c 40)\",\u003cbr\u003e \"PF too low (0.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.5\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 11,\u003cbr\u003e \"values\": [\u003cbr\u003e -999827.48596\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.3,\u003cbr\u003e \"InpAtrPeriod\": 15,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 1.7000000000000002,\u003cbr\u003e \"InpBreakEvenPoints\": 140.0,\u003cbr\u003e \"InpBreakEvenLock\": 10,\u003cbr\u003e \"InpTrailStartPoints\": 100.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.43999999999869,\u003cbr\u003e \"max_equity_dd_pct\": 0.028253963159784356,\u003cbr\u003e \"net_profit\": 206.95404000000138,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.3,\u003cbr\u003e \"InpAtrPeriod\": 15,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 1.7000000000000002,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 140.0,\u003cbr\u003e \"InpBreakEvenLock\": 10,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 100.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3562399559334906,\u003cbr\u003e \"sharpe\": 0.17886521433115532,\u003cbr\u003e \"total_trades\": 713,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.36 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.820476858345021\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 12,\u003cbr\u003e \"values\": [\u003cbr\u003e 462.65808000000914\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 135,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.39000000000033,\u003cbr\u003e \"max_equity_dd_pct\": 0.024152471906938536,\u003cbr\u003e \"net_profit\": 499.04808000000946,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 135,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.597765487593826,\u003cbr\u003e \"sharpe\": 0.2937385508934857,\u003cbr\u003e \"total_trades\": 1502,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8848202396804261\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 13,\u003cbr\u003e \"values\": [\u003cbr\u003e 54.38808000000054\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 135,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 61.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 260.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 31.730000000000018,\u003cbr\u003e \"max_equity_dd_pct\": 0.029214134801991327,\u003cbr\u003e \"net_profit\": 86.11808000000056,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 135,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 61.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 260.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.9618907628727842,\u003cbr\u003e \"sharpe\": 0.14134431322073032,\u003cbr\u003e \"total_trades\": 200,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.905\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 14,\u003cbr\u003e \"values\": [\u003cbr\u003e -999669.44294\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 90,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 220.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 93.79437999999982,\u003cbr\u003e \"max_equity_dd_pct\": 0.06585058811047312,\u003cbr\u003e \"net_profit\": 424.35144000000844,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 90,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 220.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.459655401841997,\u003cbr\u003e \"sharpe\": 0.21895321953166047,\u003cbr\u003e \"total_trades\": 1266,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8965244865718799\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 15,\u003cbr\u003e \"values\": [\u003cbr\u003e -1000100.61384\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 140,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 60.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 18,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 120.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 68.18192000000363,\u003cbr\u003e \"max_equity_dd_pct\": 0.06798340844733743,\u003cbr\u003e \"net_profit\": -32.431920000004624,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 140,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 60.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 18,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 120.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 0.9029379537598867,\u003cbr\u003e \"sharpe\": -0.03446503926034721,\u003cbr\u003e \"total_trades\": 274,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (0.90 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7554744525547445\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 16,\u003cbr\u003e \"values\": [\u003cbr\u003e 17.1599999999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 27,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 50.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 110.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 10.220000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.009898688569048922,\u003cbr\u003e \"net_profit\": 27.379999999999654,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 27,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 50.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 110.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6719018404907815,\u003cbr\u003e \"sharpe\": 0.08571882033649099,\u003cbr\u003e \"total_trades\": 75,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8933333333333333\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 17,\u003cbr\u003e \"values\": [\u003cbr\u003e 63.71808000000502\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 115,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpAtrSLMult\": 1.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 290.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 24.049999999997908,\u003cbr\u003e \"max_equity_dd_pct\": 0.02210949231016031,\u003cbr\u003e \"net_profit\": 87.76808000000293,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 115,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 290.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.792774636437569,\u003cbr\u003e \"sharpe\": 0.15381776868049163,\u003cbr\u003e \"total_trades\": 249,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8594377510040161\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 18,\u003cbr\u003e \"values\": [\u003cbr\u003e -1000048.76452\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 63.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.2,\u003cbr\u003e \"InpAtrPeriod\": 18,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 2.2,\u003cbr\u003e \"InpBreakEvenPoints\": 150.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 210.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 90.41034000000082,\u003cbr\u003e \"max_equity_dd_pct\": 0.08410766328356396,\u003cbr\u003e \"net_profit\": 41.645819999987715,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 63.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.2,\u003cbr\u003e \"InpAtrPeriod\": 18,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 2.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 150.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 210.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.0465901378076448,\u003cbr\u003e \"sharpe\": 0.02886967413035379,\u003cbr\u003e \"total_trades\": 708,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.05 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.769774011299435\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 19,\u003cbr\u003e \"values\": [\u003cbr\u003e -999695.30192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 80,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 180.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 82.63999999999987,\u003cbr\u003e \"max_equity_dd_pct\": 0.05872120451117638,\u003cbr\u003e \"net_profit\": 387.3380799999758,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 80,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 180.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2767934358397688,\u003cbr\u003e \"sharpe\": 0.21722570029396357,\u003cbr\u003e \"total_trades\": 1951,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.28 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7975397232188621\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 20,\u003cbr\u003e \"values\": [\u003cbr\u003e -999712.12554\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 120,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 43.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 13,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 1.4,\u003cbr\u003e \"InpBreakEvenPoints\": 140.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 101.03033999999934,\u003cbr\u003e \"max_equity_dd_pct\": 0.07274101147897244,\u003cbr\u003e \"net_profit\": 388.9047999999918,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 120,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 43.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 13,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 1.4,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 140.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.21948949169073,\u003cbr\u003e \"sharpe\": 0.1511747425418676,\u003cbr\u003e \"total_trades\": 1586,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.22 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.830390920554855\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 21,\u003cbr\u003e \"values\": [\u003cbr\u003e 78.96808000000229\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 110,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 38.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpAtrSLMult\": 1.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 19.28999999999951,\u003cbr\u003e \"max_equity_dd_pct\": 0.017564177629359645,\u003cbr\u003e \"net_profit\": 98.2580800000018,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 110,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 38.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.9379350897289194,\u003cbr\u003e \"sharpe\": 0.16647404323926174,\u003cbr\u003e \"total_trades\": 255,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8705882352941177\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 22,\u003cbr\u003e \"values\": [\u003cbr\u003e -1000002.35\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 64.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 0.5,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 290.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 16.700000000000273,\u003cbr\u003e \"max_equity_dd_pct\": 0.016417616987809944,\u003cbr\u003e \"net_profit\": 14.349999999999909,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 64.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 290.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4355083459787432,\u003cbr\u003e \"sharpe\": 0.05326440653660322,\u003cbr\u003e \"total_trades\": 42,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.44 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7857142857142857\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 23,\u003cbr\u003e \"values\": [\u003cbr\u003e -999755.77226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 38.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 50.0,\u003cbr\u003e \"InpRiskPercent\": 0.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 230.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.090000000000146,\u003cbr\u003e \"max_equity_dd_pct\": 0.028946762260545867,\u003cbr\u003e \"net_profit\": 281.3177400000076,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 38.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 50.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 230.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3987808932576764,\u003cbr\u003e \"sharpe\": 0.20362833071930228,\u003cbr\u003e \"total_trades\": 901,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.40 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.832408435072142\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 24,\u003cbr\u003e \"values\": [\u003cbr\u003e -1000016.54\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 120,\u003cbr\u003e \"InpRsiPeriod\": 25,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 280.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.85000000000082,\u003cbr\u003e \"max_equity_dd_pct\": 0.03295462289591873,\u003cbr\u003e \"net_profit\": 17.309999999998126,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 120,\u003cbr\u003e \"InpRsiPeriod\": 25,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 280.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3903043968432425,\u003cbr\u003e \"sharpe\": 0.033937152964300395,\u003cbr\u003e \"total_trades\": 73,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.39 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9178082191780822\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 25,\u003cbr\u003e \"values\": [\u003cbr\u003e -999889.74418\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 75,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 63.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.1,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 20.535959999999704,\u003cbr\u003e \"max_equity_dd_pct\": 0.018045313684593663,\u003cbr\u003e \"net_profit\": 130.79178000000397,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 75,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 63.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.1,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3959663509171527,\u003cbr\u003e \"sharpe\": 0.14629607567669914,\u003cbr\u003e \"total_trades\": 477,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.40 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7442348008385744\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 26,\u003cbr\u003e \"values\": [\u003cbr\u003e 239.84404000000126\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.63999999999987,\u003cbr\u003e \"max_equity_dd_pct\": 0.03324797710543036,\u003cbr\u003e \"net_profit\": 282.48404000000113,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7181858490326263,\u003cbr\u003e \"sharpe\": 0.2709683951296399,\u003cbr\u003e \"total_trades\": 702,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8461538461538461\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 27,\u003cbr\u003e \"values\": [\u003cbr\u003e 194.0200000000027\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 120.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.54000000000087,\u003cbr\u003e \"max_equity_dd_pct\": 0.03440188911172992,\u003cbr\u003e \"net_profit\": 236.56000000000358,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 120.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6215449290593902,\u003cbr\u003e \"sharpe\": 0.20883002383811294,\u003cbr\u003e \"total_trades\": 454,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8325991189427313\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 28,\u003cbr\u003e \"values\": [\u003cbr\u003e -999874.81596\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 125,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 120.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.72000000000344,\u003cbr\u003e \"max_equity_dd_pct\": 0.03948867440814037,\u003cbr\u003e \"net_profit\": 171.90403999999165,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 125,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 120.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.188595504032724,\u003cbr\u003e \"sharpe\": 0.12875563327193457,\u003cbr\u003e \"total_trades\": 919,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.19 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7138193688792165\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 29,\u003cbr\u003e \"values\": [\u003cbr\u003e -999648.89068\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 70,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 43.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 9,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.5,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 160.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 180.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.639999999998054,\u003cbr\u003e \"max_equity_dd_pct\": 0.036126288258158674,\u003cbr\u003e \"net_profit\": 401.749320000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 70,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 43.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 9,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.5,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 160.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 180.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3717043324301978,\u003cbr\u003e \"sharpe\": 0.2521148014240056,\u003cbr\u003e \"total_trades\": 1049,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.37 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7292659675881792\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 30,\u003cbr\u003e \"values\": [\u003cbr\u003e -999851.03788\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 8,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 24,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 10,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 120.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 180.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.590000000000146,\u003cbr\u003e \"max_equity_dd_pct\": 0.03168002430436851,\u003cbr\u003e \"net_profit\": 186.55212000000517,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 8,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 24,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 10,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 120.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 180.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.299802523101655,\u003cbr\u003e \"sharpe\": 0.1320483624524398,\u003cbr\u003e \"total_trades\": 615,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.30 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7967479674796748\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 31,\u003cbr\u003e \"values\": [\u003cbr\u003e 257.29807999999855\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 16,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 26.41000000000122,\u003cbr\u003e \"max_equity_dd_pct\": 0.020573213187223393,\u003cbr\u003e \"net_profit\": 283.70807999999977,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 16,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.841888720733554,\u003cbr\u003e \"sharpe\": 0.2591532259340743,\u003cbr\u003e \"total_trades\": 594,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8905723905723906\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 32,\u003cbr\u003e \"values\": [\u003cbr\u003e 180.56999999999744\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 100,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 27.449999999999363,\u003cbr\u003e \"max_equity_dd_pct\": 0.022707344109325622,\u003cbr\u003e \"net_profit\": 208.0199999999968,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 100,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.8583807873235747,\u003cbr\u003e \"sharpe\": 0.24189114253472999,\u003cbr\u003e \"total_trades\": 440,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8909090909090909\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 33,\u003cbr\u003e \"values\": [\u003cbr\u003e -999810.48192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 90,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 15,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.13999999999987,\u003cbr\u003e \"max_equity_dd_pct\": 0.040420225887634095,\u003cbr\u003e \"net_profit\": 239.65808000000143,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 90,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 15,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3273677775186086,\u003cbr\u003e \"sharpe\": 0.1626828628166489,\u003cbr\u003e \"total_trades\": 800,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.33 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8425\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 34,\u003cbr\u003e \"values\": [\u003cbr\u003e -999926.02192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 50,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 16,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.20999999999913,\u003cbr\u003e \"max_equity_dd_pct\": 0.03602149027238717,\u003cbr\u003e \"net_profit\": 114.18808000000072,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 50,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 16,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4843198031980358,\u003cbr\u003e \"sharpe\": 0.13973902240738295,\u003cbr\u003e \"total_trades\": 352,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.48 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8806818181818182\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 35,\u003cbr\u003e \"values\": [\u003cbr\u003e -999837.18788\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 110,\u003cbr\u003e \"InpRsiPeriod\": 25,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 13,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 100.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.03999999999951,\u003cbr\u003e \"max_equity_dd_pct\": 0.04622320889360418,\u003cbr\u003e \"net_profit\": 219.85212000000172,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 110,\u003cbr\u003e \"InpRsiPeriod\": 25,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 13,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 100.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3071203743801112,\u003cbr\u003e \"sharpe\": 0.16327811855640154,\u003cbr\u003e \"total_trades\": 886,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.31 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8318284424379232\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 36,\u003cbr\u003e \"values\": [\u003cbr\u003e -1000040.78384\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 10,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 130.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 170.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 89.71595999999636,\u003cbr\u003e \"max_equity_dd_pct\": 0.08119766849745232,\u003cbr\u003e \"net_profit\": 48.93211999999981,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 10,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 130.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 170.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.0788774883375019,\u003cbr\u003e \"sharpe\": 0.03890256860515704,\u003cbr\u003e \"total_trades\": 513,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.08 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8265107212475633\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 37,\u003cbr\u003e \"values\": [\u003cbr\u003e 207.46000000000458\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 80,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 24.150000000001,\u003cbr\u003e \"max_equity_dd_pct\": 0.01960847995713001,\u003cbr\u003e \"net_profit\": 231.61000000000558,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 80,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7736580151652026,\u003cbr\u003e \"sharpe\": 0.23697554590418157,\u003cbr\u003e \"total_trades\": 551,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8711433756805808\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 38,\u003cbr\u003e \"values\": [\u003cbr\u003e 191.83000000000675\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 8,\u003cbr\u003e \"InpSlowEmaPeriod\": 75,\u003cbr\u003e \"InpRsiPeriod\": 24,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.3,\u003cbr\u003e \"InpAtrPeriod\": 7,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 160.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 22.039999999999054,\u003cbr\u003e \"max_equity_dd_pct\": 0.01815680427063767,\u003cbr\u003e \"net_profit\": 213.8700000000058,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 8,\u003cbr\u003e \"InpSlowEmaPeriod\": 75,\u003cbr\u003e \"InpRsiPeriod\": 24,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.3,\u003cbr\u003e \"InpAtrPeriod\": 7,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 160.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.9043511353545892,\u003cbr\u003e \"sharpe\": 0.2442199232512432,\u003cbr\u003e \"total_trades\": 449,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8730512249443207\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 39,\u003cbr\u003e \"values\": [\u003cbr\u003e 159.38404000000259\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 65,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 9,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 1.2,\u003cbr\u003e \"InpAtrTPMult\": 2.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 3,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 31.499999999999545,\u003cbr\u003e \"max_equity_dd_pct\": 0.026450938077900086,\u003cbr\u003e \"net_profit\": 190.88404000000213,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 65,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 9,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.2,\u003cbr\u003e \"InpAtrTPMult\": 2.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 3,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6326529232401024,\u003cbr\u003e \"sharpe\": 0.22899064656785126,\u003cbr\u003e \"total_trades\": 529,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8241965973534972\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 40,\u003cbr\u003e \"values\": [\u003cbr\u003e -999745.35788\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 200.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.52999999999929,\u003cbr\u003e \"max_equity_dd_pct\": 0.030544623384407103,\u003cbr\u003e \"net_profit\": 294.17211999998597,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 200.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3281610898461553,\u003cbr\u003e \"sharpe\": 0.2024938565918597,\u003cbr\u003e \"total_trades\": 1176,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.33 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7950680272108843\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 41,\u003cbr\u003e \"values\": [\u003cbr\u003e 204.93000000000893\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 23.069999999998345,\u003cbr\u003e \"max_equity_dd_pct\": 0.018786644951138607,\u003cbr\u003e \"net_profit\": 228.00000000000728,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 2.640759930915429,\u003cbr\u003e \"sharpe\": 0.2963334568788378,\u003cbr\u003e \"total_trades\": 363,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9090909090909091\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 42,\u003cbr\u003e \"values\": [\u003cbr\u003e 95.72403999999865\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 17.5300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.015746630481574733,\u003cbr\u003e \"net_profit\": 113.25403999999885,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 2.076456990780337,\u003cbr\u003e \"sharpe\": 0.2011377188880557,\u003cbr\u003e \"total_trades\": 224,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.875\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 43,\u003cbr\u003e \"values\": [\u003cbr\u003e -999751.76192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 65,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 100.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 48.40999999999849,\u003cbr\u003e \"max_equity_dd_pct\": 0.03672326018680811,\u003cbr\u003e \"net_profit\": 296.6480800000021,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 10,\u003cbr\u003e \"InpSlowEmaPeriod\": 65,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 100.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4460202676289309,\u003cbr\u003e \"sharpe\": 0.21284954866448813,\u003cbr\u003e \"total_trades\": 1012,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.866600790513834\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 44,\u003cbr\u003e \"values\": [\u003cbr\u003e 171.25211999999996\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 13,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 210.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.8100000000004,\u003cbr\u003e \"max_equity_dd_pct\": 0.03828593767078823,\u003cbr\u003e \"net_profit\": 218.06212000000036,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 13,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 210.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5118637339314727,\u003cbr\u003e \"sharpe\": 0.18351573044731218,\u003cbr\u003e \"total_trades\": 690,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8594202898550725\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 45,\u003cbr\u003e \"values\": [\u003cbr\u003e -999773.21384\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 14,\u003cbr\u003e \"InpSlowEmaPeriod\": 100,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 280.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 160.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 60.37000000000353,\u003cbr\u003e \"max_equity_dd_pct\": 0.046766685969321195,\u003cbr\u003e \"net_profit\": 287.1561600000053,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 14,\u003cbr\u003e \"InpSlowEmaPeriod\": 100,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 31.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 280.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 160.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2728630685711575,\u003cbr\u003e \"sharpe\": 0.1676352812608313,\u003cbr\u003e \"total_trades\": 865,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.27 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7676300578034682\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 46,\u003cbr\u003e \"values\": [\u003cbr\u003e -2000000.0\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 9,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 24,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 69.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 240.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 0.0,\u003cbr\u003e \"max_equity_dd_pct\": 0.0,\u003cbr\u003e \"net_profit\": 0.0,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 9,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 24,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 69.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 240.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 0.0,\u003cbr\u003e \"sharpe\": 0.0,\u003cbr\u003e \"total_trades\": 0,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"too few trades (0 \u003c 40)\",\u003cbr\u003e \"PF too low (0.00 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.0\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 47,\u003cbr\u003e \"values\": [\u003cbr\u003e 119.69403999999207\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 130,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 7,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 26.830000000000382,\u003cbr\u003e \"max_equity_dd_pct\": 0.02329692691391989,\u003cbr\u003e \"net_profit\": 146.52403999999245,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 130,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 7,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6865846961247952,\u003cbr\u003e \"sharpe\": 0.18357242141039948,\u003cbr\u003e \"total_trades\": 437,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8810068649885584\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 48,\u003cbr\u003e \"values\": [\u003cbr\u003e 139.58808000000263\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 75,\u003cbr\u003e \"InpRsiPeriod\": 27,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 16,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 1.9,\u003cbr\u003e \"InpBreakEvenPoints\": 250.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 30.789999999998145,\u003cbr\u003e \"max_equity_dd_pct\": 0.02623309877869985,\u003cbr\u003e \"net_profit\": 170.37808000000078,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 75,\u003cbr\u003e \"InpRsiPeriod\": 27,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 16,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 1.9,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 250.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5284843822699203,\u003cbr\u003e \"sharpe\": 0.17043231311057908,\u003cbr\u003e \"total_trades\": 335,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 49,\u003cbr\u003e \"values\": [\u003cbr\u003e -999553.4238400001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 9,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 10,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 0.5,\u003cbr\u003e \"InpAtrSLMult\": 1.3,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 200.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.93191999999999,\u003cbr\u003e \"max_equity_dd_pct\": 0.03794440046454543,\u003cbr\u003e \"net_profit\": 504.50807999998403,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 9,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 10,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.3,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 200.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4636699077516455,\u003cbr\u003e \"sharpe\": 0.32846684550465083,\u003cbr\u003e \"total_trades\": 1767,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8064516129032258\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 50,\u003cbr\u003e \"values\": [\u003cbr\u003e -999798.47192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 33,\u003cbr\u003e \"InpSlowEmaPeriod\": 60,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 40.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 19,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 1.0,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 110.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 18.7199999999998,\u003cbr\u003e \"max_equity_dd_pct\": 0.015341142761724125,\u003cbr\u003e \"net_profit\": 220.2480800000025,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 33,\u003cbr\u003e \"InpSlowEmaPeriod\": 60,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 40.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 19,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.0,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 110.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4685073126918098,\u003cbr\u003e \"sharpe\": 0.22646407096002782,\u003cbr\u003e \"total_trades\": 713,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7475455820476858\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 51,\u003cbr\u003e \"values\": [\u003cbr\u003e 223.71000000000458\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 28.800000000000637,\u003cbr\u003e \"max_equity_dd_pct\": 0.022993828392588095,\u003cbr\u003e \"net_profit\": 252.51000000000522,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7409548402242023,\u003cbr\u003e \"sharpe\": 0.2318463473839453,\u003cbr\u003e \"total_trades\": 459,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.840958605664488\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 52,\u003cbr\u003e \"values\": [\u003cbr\u003e -999938.63192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 38.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.78999999999951,\u003cbr\u003e \"max_equity_dd_pct\": 0.030159192696872898,\u003cbr\u003e \"net_profit\": 95.15808000000234,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 38.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.246398434618536,\u003cbr\u003e \"sharpe\": 0.09424210849956756,\u003cbr\u003e \"total_trades\": 411,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.25 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8126520681265207\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 53,\u003cbr\u003e \"values\": [\u003cbr\u003e 115.90403999999802\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 80,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 19.39999999999918,\u003cbr\u003e \"max_equity_dd_pct\": 0.017086880020613485,\u003cbr\u003e \"net_profit\": 135.3040399999972,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 80,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 2.113063836788395,\u003cbr\u003e \"sharpe\": 0.19686981736090514,\u003cbr\u003e \"total_trades\": 270,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8851851851851852\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 54,\u003cbr\u003e \"values\": [\u003cbr\u003e -999813.07192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 90,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 9,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 110.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.249999999999545,\u003cbr\u003e \"max_equity_dd_pct\": 0.037504721134841726,\u003cbr\u003e \"net_profit\": 233.17808000000005,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 90,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 9,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 110.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4862983204279783,\u003cbr\u003e \"sharpe\": 0.20975825448764251,\u003cbr\u003e \"total_trades\": 712,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.49 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8356741573033708\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 55,\u003cbr\u003e \"values\": [\u003cbr\u003e -999766.9898\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 9,\u003cbr\u003e \"InpSlowEmaPeriod\": 100,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 170.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 170.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 61.870000000000346,\u003cbr\u003e \"max_equity_dd_pct\": 0.04735806015506991,\u003cbr\u003e \"net_profit\": 294.88020000000483,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 9,\u003cbr\u003e \"InpSlowEmaPeriod\": 100,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 170.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 170.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2662623252790168,\u003cbr\u003e \"sharpe\": 0.1575948694387805,\u003cbr\u003e \"total_trades\": 858,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.27 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7610722610722611\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 56,\u003cbr\u003e \"values\": [\u003cbr\u003e 185.3821200000015\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 115,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 100.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 15.365960000000086,\u003cbr\u003e \"max_equity_dd_pct\": 0.012784425504061834,\u003cbr\u003e \"net_profit\": 200.74808000000158,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 115,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 33.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 8,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 100.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 2.0847380036826033,\u003cbr\u003e \"sharpe\": 0.2566758182883463,\u003cbr\u003e \"total_trades\": 427,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8969555035128806\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 57,\u003cbr\u003e \"values\": [\u003cbr\u003e -999821.37596\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 14,\u003cbr\u003e \"InpSlowEmaPeriod\": 90,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 16,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 51.00999999999931,\u003cbr\u003e \"max_equity_dd_pct\": 0.04148388735236984,\u003cbr\u003e \"net_profit\": 229.63403999999713,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 14,\u003cbr\u003e \"InpSlowEmaPeriod\": 90,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 16,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 150.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.40160136843219,\u003cbr\u003e \"sharpe\": 0.17055014912299238,\u003cbr\u003e \"total_trades\": 771,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.40 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8690012970168612\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 58,\u003cbr\u003e \"values\": [\u003cbr\u003e -999790.6363\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 110,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 39.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.3,\u003cbr\u003e \"InpAtrPeriod\": 10,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.5,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 25.66000000000031,\u003cbr\u003e \"max_equity_dd_pct\": 0.02077692922006288,\u003cbr\u003e \"net_profit\": 235.0237000000065,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 110,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 39.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.3,\u003cbr\u003e \"InpAtrPeriod\": 10,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.5,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2824789215653,\u003cbr\u003e \"sharpe\": 0.17471845819569096,\u003cbr\u003e \"total_trades\": 948,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.28 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7784810126582279\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 59,\u003cbr\u003e \"values\": [\u003cbr\u003e 18.31999999999516\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 70.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 1.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 270.0,\u003cbr\u003e \"InpTrailStepPoints\": 170.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 11.88000000000011,\u003cbr\u003e \"max_equity_dd_pct\": 0.01153174140943522,\u003cbr\u003e \"net_profit\": 30.19999999999527,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 34.0,\u003cbr\u003e \"InpRsiSellLevel\": 70.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 1.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 270.0,\u003cbr\u003e \"InpTrailStepPoints\": 170.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.829442460862274,\u003cbr\u003e \"sharpe\": 0.09183995204427259,\u003cbr\u003e \"total_trades\": 87,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8850574712643678\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 60,\u003cbr\u003e \"values\": [\u003cbr\u003e -999891.59192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 135,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 190.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.349999999999,\u003cbr\u003e \"max_equity_dd_pct\": 0.0460625198657849,\u003cbr\u003e \"net_profit\": 162.75808000000043,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 135,\u003cbr\u003e \"InpRsiPeriod\": 22,\u003cbr\u003e \"InpRsiBuyLevel\": 30.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 190.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 140.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3010637613066705,\u003cbr\u003e \"sharpe\": 0.1328100475563679,\u003cbr\u003e \"total_trades\": 510,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.30 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7784313725490196\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 61,\u003cbr\u003e \"values\": [\u003cbr\u003e 186.02000000000362\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 80,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 140.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.370000000001255,\u003cbr\u003e \"max_equity_dd_pct\": 0.029753188425953345,\u003cbr\u003e \"net_profit\": 222.39000000000487,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 13,\u003cbr\u003e \"InpSlowEmaPeriod\": 80,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 11,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 140.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 120.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7065383149066125,\u003cbr\u003e \"sharpe\": 0.20631548239062422,\u003cbr\u003e \"total_trades\": 387,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8397932816537468\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 62,\u003cbr\u003e \"values\": [\u003cbr\u003e 253.54808000000855\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 130.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 23.109999999999218,\u003cbr\u003e \"max_equity_dd_pct\": 0.01807900828589588,\u003cbr\u003e \"net_profit\": 276.65808000000777,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 35.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 130.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5177081906472978,\u003cbr\u003e \"sharpe\": 0.21658202617248543,\u003cbr\u003e \"total_trades\": 566,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.803886925795053\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 63,\u003cbr\u003e \"values\": [\u003cbr\u003e -999802.14788\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 9,\u003cbr\u003e \"InpSlowEmaPeriod\": 100,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 130.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 110.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 71.55999999999904,\u003cbr\u003e \"max_equity_dd_pct\": 0.05549600790134021,\u003cbr\u003e \"net_profit\": 269.41212000000303,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 9,\u003cbr\u003e \"InpSlowEmaPeriod\": 100,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 32.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 12,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 130.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 110.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2971479054993094,\u003cbr\u003e \"sharpe\": 0.1644813747634095,\u003cbr\u003e \"total_trades\": 986,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.30 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8032454361054767\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 64,\u003cbr\u003e \"values\": [\u003cbr\u003e 218.99404000000953\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 21.71999999999889,\u003cbr\u003e \"max_equity_dd_pct\": 0.017506048371950994,\u003cbr\u003e \"net_profit\": 240.71404000000842,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 85,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.8246173135555799,\u003cbr\u003e \"sharpe\": 0.24313796469953594,\u003cbr\u003e \"total_trades\": 514,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8715953307392996\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 65,\u003cbr\u003e \"values\": [\u003cbr\u003e -999807.05596\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 15,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 170.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 26.839999999997872,\u003cbr\u003e \"max_equity_dd_pct\": 0.022003895050141706,\u003cbr\u003e \"net_profit\": 219.78404000000086,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 12,\u003cbr\u003e \"InpSlowEmaPeriod\": 105,\u003cbr\u003e \"InpRsiPeriod\": 23,\u003cbr\u003e \"InpRsiBuyLevel\": 37.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 15,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 170.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4539210640451095,\u003cbr\u003e \"sharpe\": 0.18478698223364118,\u003cbr\u003e \"total_trades\": 625,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8288\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 66,\u003cbr\u003e \"values\": [\u003cbr\u003e -999924.8359599999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 70,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 13,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 27.509999999999764,\u003cbr\u003e \"max_equity_dd_pct\": 0.024948442605939654,\u003cbr\u003e \"net_profit\": 102.6740400000062,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 70,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 36.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 13,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.4,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 100.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 130.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2719842119205476,\u003cbr\u003e \"sharpe\": 0.11463103800296467,\u003cbr\u003e \"total_trades\": 441,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.27 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7913832199546486\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 67,\u003cbr\u003e \"values\": [\u003cbr\u003e -999778.4138399999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 120,\u003cbr\u003e \"InpRsiPeriod\": 25,\u003cbr\u003e \"InpRsiBuyLevel\": 39.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 150.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 49.23000000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.0382361163053957,\u003cbr\u003e \"net_profit\": 270.81616000001105,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 11,\u003cbr\u003e \"InpSlowEmaPeriod\": 120,\u003cbr\u003e \"InpRsiPeriod\": 25,\u003cbr\u003e \"InpRsiBuyLevel\": 39.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 14,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 150.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 8.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3472269148909033,\u003cbr\u003e \"sharpe\": 0.16117826255664155,\u003cbr\u003e \"total_trades\": 704,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.35 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7855113636363636\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 68,\u003cbr\u003e \"values\": [\u003cbr\u003e 286.37000000001217\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 41.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 190.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.259999999997035,\u003cbr\u003e \"max_equity_dd_pct\": 0.03034757242034083,\u003cbr\u003e \"net_profit\": 326.6300000000092,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 41.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 190.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6494541983974127,\u003cbr\u003e \"sharpe\": 0.2458899314281657,\u003cbr\u003e \"total_trades\": 829,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8986731001206273\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 69,\u003cbr\u003e \"values\": [\u003cbr\u003e 399.920900000001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 115,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 190.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.54438000000118,\u003cbr\u003e \"max_equity_dd_pct\": 0.025440489588443884,\u003cbr\u003e \"net_profit\": 436.46528000000217,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 115,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 190.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5246930704086186,\u003cbr\u003e \"sharpe\": 0.24873054703622094,\u003cbr\u003e \"total_trades\": 979,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8610827374872319\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 70,\u003cbr\u003e \"values\": [\u003cbr\u003e -999658.74102\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 115,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 18,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 130.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 190.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 52.90437999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.037936432923583986,\u003cbr\u003e \"net_profit\": 394.16335999999717,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 115,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.6,\u003cbr\u003e \"InpAtrPeriod\": 18,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 130.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 190.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3529466839072015,\u003cbr\u003e \"sharpe\": 0.19551028947390992,\u003cbr\u003e \"total_trades\": 1074,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.35 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8361266294227188\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 71,\u003cbr\u003e \"values\": [\u003cbr\u003e -999910.01576\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 41.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 220.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 3,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 68.08787999999686,\u003cbr\u003e \"max_equity_dd_pct\": 0.058752054056124214,\u003cbr\u003e \"net_profit\": 158.07211999999834,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 95,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 41.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.7,\u003cbr\u003e \"InpAtrPeriod\": 17,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 110.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 220.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 3,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.262608808333192,\u003cbr\u003e \"sharpe\": 0.11775813566669881,\u003cbr\u003e \"total_trades\": 600,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.26 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.835\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 72,\u003cbr\u003e \"values\": [\u003cbr\u003e 235.77966000000742\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 125,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 19,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 74.25999999999794,\u003cbr\u003e \"max_equity_dd_pct\": 0.05668530676391709,\u003cbr\u003e \"net_profit\": 310.03966000000537,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 125,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 19,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5075757781639363,\u003cbr\u003e \"sharpe\": 0.2040183666501753,\u003cbr\u003e \"total_trades\": 877,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9019384264538198\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 73,\u003cbr\u003e \"values\": [\u003cbr\u003e 284.4796600000018\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 125,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 19,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 71.48999999999887,\u003cbr\u003e \"max_equity_dd_pct\": 0.05272241858272761,\u003cbr\u003e \"net_profit\": 355.96966000000066,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 125,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 19,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5627494983119077,\u003cbr\u003e \"sharpe\": 0.23751240058293188,\u003cbr\u003e \"total_trades\": 892,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.899103139013453\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 74,\u003cbr\u003e \"values\": [\u003cbr\u003e -999835.8463\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 125,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 43.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 19,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 73.6299999999992,\u003cbr\u003e \"max_equity_dd_pct\": 0.059070640640071205,\u003cbr\u003e \"net_profit\": 237.7836999999899,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 125,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 43.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 19,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3836208853395855,\u003cbr\u003e \"sharpe\": 0.17109220746410006,\u003cbr\u003e \"total_trades\": 786,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.38 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8867684478371501\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 75,\u003cbr\u003e \"values\": [\u003cbr\u003e 241.72000000000526\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 140,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.19999999999936,\u003cbr\u003e \"max_equity_dd_pct\": 0.041823569356132455,\u003cbr\u003e \"net_profit\": 295.9200000000046,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 140,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 4,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5786921151439388,\u003cbr\u003e \"sharpe\": 0.21822093561717917,\u003cbr\u003e \"total_trades\": 955,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9172774869109948\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 76,\u003cbr\u003e \"values\": [\u003cbr\u003e 313.370000000004\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 48.19000000000051,\u003cbr\u003e \"max_equity_dd_pct\": 0.035393225417903254,\u003cbr\u003e \"net_profit\": 361.5600000000045,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.57450662598914,\u003cbr\u003e \"sharpe\": 0.24024102907945222,\u003cbr\u003e \"total_trades\": 1169,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9178785286569717\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 77,\u003cbr\u003e \"values\": [\u003cbr\u003e 309.9500000000053\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 49.4399999999996,\u003cbr\u003e \"max_equity_dd_pct\": 0.03636925385650874,\u003cbr\u003e \"net_profit\": 359.3900000000049,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 44.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5753830390163552,\u003cbr\u003e \"sharpe\": 0.24027077851778816,\u003cbr\u003e \"total_trades\": 1170,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9188034188034188\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 78,\u003cbr\u003e \"values\": [\u003cbr\u003e 406.21562000000586\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.86000000000058,\u003cbr\u003e \"max_equity_dd_pct\": 0.032782042936640596,\u003cbr\u003e \"net_profit\": 454.07562000000644,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5831275860740575,\u003cbr\u003e \"sharpe\": 0.28008341135400644,\u003cbr\u003e \"total_trades\": 1473,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9192124915139172\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 79,\u003cbr\u003e \"values\": [\u003cbr\u003e 392.5900000000047\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.66000000000031,\u003cbr\u003e \"max_equity_dd_pct\": 0.030398607484769476,\u003cbr\u003e \"net_profit\": 436.250000000005,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6807896379525684,\u003cbr\u003e \"sharpe\": 0.30136312066623544,\u003cbr\u003e \"total_trades\": 1229,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9186330349877949\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 80,\u003cbr\u003e \"values\": [\u003cbr\u003e 311.77000000000635\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.35999999999967,\u003cbr\u003e \"max_equity_dd_pct\": 0.034845820488105965,\u003cbr\u003e \"net_profit\": 359.130000000006,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5232004195743176,\u003cbr\u003e \"sharpe\": 0.23748811898661112,\u003cbr\u003e \"total_trades\": 1229,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9161920260374288\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 81,\u003cbr\u003e \"values\": [\u003cbr\u003e -999714.27\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.409999999999854,\u003cbr\u003e \"max_equity_dd_pct\": 0.035562656585204626,\u003cbr\u003e \"net_profit\": 333.1400000000044,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4757511710270832,\u003cbr\u003e \"sharpe\": 0.21909097089959298,\u003cbr\u003e \"total_trades\": 1229,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.48 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9153783563873068\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 82,\u003cbr\u003e \"values\": [\u003cbr\u003e 394.4600000000032\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.50999999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.0302579330584085,\u003cbr\u003e \"net_profit\": 437.970000000003,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6887620305718136,\u003cbr\u003e \"sharpe\": 0.30174986986942326,\u003cbr\u003e \"total_trades\": 1229,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.919446704637917\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 83,\u003cbr\u003e \"values\": [\u003cbr\u003e 452.8156200000067\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 45.95000000000027,\u003cbr\u003e \"max_equity_dd_pct\": 0.03054504552647638,\u003cbr\u003e \"net_profit\": 498.76562000000695,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6583147933055404,\u003cbr\u003e \"sharpe\": 0.31447331483401364,\u003cbr\u003e \"total_trades\": 1470,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9217687074829932\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 84,\u003cbr\u003e \"values\": [\u003cbr\u003e 446.3756200000071\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.05000000000018,\u003cbr\u003e \"max_equity_dd_pct\": 0.030741077867771048,\u003cbr\u003e \"net_profit\": 492.42562000000726,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6499467029196055,\u003cbr\u003e \"sharpe\": 0.3102057189171196,\u003cbr\u003e \"total_trades\": 1470,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9217687074829932\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 85,\u003cbr\u003e \"values\": [\u003cbr\u003e 457.3756200000048\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.55999999999949,\u003cbr\u003e \"max_equity_dd_pct\": 0.028919778168570574,\u003cbr\u003e \"net_profit\": 500.9356200000043,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6661023615765185,\u003cbr\u003e \"sharpe\": 0.32211088304831326,\u003cbr\u003e \"total_trades\": 1472,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9198369565217391\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 86,\u003cbr\u003e \"values\": [\u003cbr\u003e -999621.58\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.9399999999996,\u003cbr\u003e \"max_equity_dd_pct\": 0.030210502617211372,\u003cbr\u003e \"net_profit\": 421.3600000000015,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.473172375070187,\u003cbr\u003e \"sharpe\": 0.24745216865677602,\u003cbr\u003e \"total_trades\": 1472,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9055706521739131\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 87,\u003cbr\u003e \"values\": [\u003cbr\u003e 476.2100000000073\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.00999999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.028310580429430604,\u003cbr\u003e \"net_profit\": 519.2200000000071,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7029881260239241,\u003cbr\u003e \"sharpe\": 0.3275498928242469,\u003cbr\u003e \"total_trades\": 1472,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9225543478260869\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 88,\u003cbr\u003e \"values\": [\u003cbr\u003e 400.9100000000035\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 53.35999999999922,\u003cbr\u003e \"max_equity_dd_pct\": 0.03669194853775373,\u003cbr\u003e \"net_profit\": 454.2700000000027,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5170561252945154,\u003cbr\u003e \"sharpe\": 0.2657125827872516,\u003cbr\u003e \"total_trades\": 1472,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.904891304347826\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 89,\u003cbr\u003e \"values\": [\u003cbr\u003e -999938.21438\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 210.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 137.59000000000196,\u003cbr\u003e \"max_equity_dd_pct\": 0.11181582413252332,\u003cbr\u003e \"net_profit\": 199.37562000000256,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 210.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.0851918108540626,\u003cbr\u003e \"sharpe\": 0.07194065303031767,\u003cbr\u003e \"total_trades\": 1458,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.09 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7503429355281207\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 90,\u003cbr\u003e \"values\": [\u003cbr\u003e -999708.52\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 7,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 170.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 77.96999999999935,\u003cbr\u003e \"max_equity_dd_pct\": 0.05693526598269312,\u003cbr\u003e \"net_profit\": 369.45000000000437,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 7,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 170.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3962312716508898,\u003cbr\u003e \"sharpe\": 0.19606727638183957,\u003cbr\u003e \"total_trades\": 1474,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.40 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8975576662143826\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 91,\u003cbr\u003e \"values\": [\u003cbr\u003e 485.5256200000035\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 45.31999999999971,\u003cbr\u003e \"max_equity_dd_pct\": 0.029496074919821775,\u003cbr\u003e \"net_profit\": 530.8456200000032,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7128123590074167,\u003cbr\u003e \"sharpe\": 0.33646610512263553,\u003cbr\u003e \"total_trades\": 1473,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.921928038017651\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 92,\u003cbr\u003e \"values\": [\u003cbr\u003e -999648.42\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.95999999999958,\u003cbr\u003e \"max_equity_dd_pct\": 0.030110366404982682,\u003cbr\u003e \"net_profit\": 393.5400000000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4275424511390917,\u003cbr\u003e \"sharpe\": 0.22984974554700185,\u003cbr\u003e \"total_trades\": 1471,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.43 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9000679809653297\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 93,\u003cbr\u003e \"values\": [\u003cbr\u003e -999657.9\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 9,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.75999999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.029475145712508647,\u003cbr\u003e \"net_profit\": 382.86000000000195,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 9,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4731573483612665,\u003cbr\u003e \"sharpe\": 0.23605047426081177,\u003cbr\u003e \"total_trades\": 1473,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9103869653767821\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 94,\u003cbr\u003e \"values\": [\u003cbr\u003e -999691.71\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 82.96000000000186,\u003cbr\u003e \"max_equity_dd_pct\": 0.059509633731691464,\u003cbr\u003e \"net_profit\": 391.25000000000045,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4196835612764824,\u003cbr\u003e \"sharpe\": 0.22378349637972386,\u003cbr\u003e \"total_trades\": 1462,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.42 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9028727770177839\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 95,\u003cbr\u003e \"values\": [\u003cbr\u003e -999758.06\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 52.09999999999991,\u003cbr\u003e \"max_equity_dd_pct\": 0.040057510591021465,\u003cbr\u003e \"net_profit\": 294.0399999999895,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2826601042047083,\u003cbr\u003e \"sharpe\": 0.16839519114843854,\u003cbr\u003e \"total_trades\": 1469,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.28 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8781484002722941\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 96,\u003cbr\u003e \"values\": [\u003cbr\u003e -999721.67\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 9,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.41000000000031,\u003cbr\u003e \"max_equity_dd_pct\": 0.027693688485936594,\u003cbr\u003e \"net_profit\": 314.74000000000115,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 9,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.455550730930673,\u003cbr\u003e \"sharpe\": 0.2166682823675746,\u003cbr\u003e \"total_trades\": 1230,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9040650406504065\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 97,\u003cbr\u003e \"values\": [\u003cbr\u003e -999756.77\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 170.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 113.57999999999856,\u003cbr\u003e \"max_equity_dd_pct\": 0.08313448785700651,\u003cbr\u003e \"net_profit\": 356.8099999999895,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 170.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3663384634339053,\u003cbr\u003e \"sharpe\": 0.19814163509752847,\u003cbr\u003e \"total_trades\": 1462,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.37 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8974008207934336\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 98,\u003cbr\u003e \"values\": [\u003cbr\u003e 554.1156200000019\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 51.26000000000022,\u003cbr\u003e \"max_equity_dd_pct\": 0.03182851358196449,\u003cbr\u003e \"net_profit\": 605.3756200000021,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6933316764780018,\u003cbr\u003e \"sharpe\": 0.3538456371967244,\u003cbr\u003e \"total_trades\": 1714,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9235705950991832\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 99,\u003cbr\u003e \"values\": [\u003cbr\u003e -999682.78\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.18999999999869,\u003cbr\u003e \"max_equity_dd_pct\": 0.031023655629332778,\u003cbr\u003e \"net_profit\": 359.41000000000577,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2975913490598119,\u003cbr\u003e \"sharpe\": 0.18430413351857214,\u003cbr\u003e \"total_trades\": 1708,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.30 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8858313817330211\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 100,\u003cbr\u003e \"values\": [\u003cbr\u003e -999651.76\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.58999999999969,\u003cbr\u003e \"max_equity_dd_pct\": 0.0409651238058651,\u003cbr\u003e \"net_profit\": 405.83000000000857,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 10,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4478371220481228,\u003cbr\u003e \"sharpe\": 0.2364844650182565,\u003cbr\u003e \"total_trades\": 1473,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.902919212491514\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 101,\u003cbr\u003e \"values\": [\u003cbr\u003e 330.4600000000023\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.39000000000124,\u003cbr\u003e \"max_equity_dd_pct\": 0.033692849620511396,\u003cbr\u003e \"net_profit\": 376.85000000000355,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.559506488107617,\u003cbr\u003e \"sharpe\": 0.2537555124008654,\u003cbr\u003e \"total_trades\": 1229,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9161920260374288\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 102,\u003cbr\u003e \"values\": [\u003cbr\u003e 508.83562000000074\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.88000000000011,\u003cbr\u003e \"max_equity_dd_pct\": 0.028164573174943728,\u003cbr\u003e \"net_profit\": 552.7156200000009,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7628082751387033,\u003cbr\u003e \"sharpe\": 0.3562924596935152,\u003cbr\u003e \"total_trades\": 1473,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9205702647657841\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 103,\u003cbr\u003e \"values\": [\u003cbr\u003e 469.63999999999487\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 55.73000000000047,\u003cbr\u003e \"max_equity_dd_pct\": 0.036409368568909056,\u003cbr\u003e \"net_profit\": 525.3699999999953,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6346274642442917,\u003cbr\u003e \"sharpe\": 0.3018283584542877,\u003cbr\u003e \"total_trades\": 1462,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9090287277701778\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 104,\u003cbr\u003e \"values\": [\u003cbr\u003e 488.3900000000008\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 180.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 53.96000000000049,\u003cbr\u003e \"max_equity_dd_pct\": 0.03486621479294176,\u003cbr\u003e \"net_profit\": 542.3500000000013,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 180.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6551386741399308,\u003cbr\u003e \"sharpe\": 0.30717649767065885,\u003cbr\u003e \"total_trades\": 1462,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9090287277701778\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 105,\u003cbr\u003e \"values\": [\u003cbr\u003e 384.47999999999774\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 210.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 64.79000000000042,\u003cbr\u003e \"max_equity_dd_pct\": 0.044140590403390426,\u003cbr\u003e \"net_profit\": 449.26999999999816,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 210.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5264718290053407,\u003cbr\u003e \"sharpe\": 0.2564362914061711,\u003cbr\u003e \"total_trades\": 1448,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9060773480662984\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 106,\u003cbr\u003e \"values\": [\u003cbr\u003e -999663.16\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 200.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 69.68000000000211,\u003cbr\u003e \"max_equity_dd_pct\": 0.0488615565855828,\u003cbr\u003e \"net_profit\": 406.5200000000009,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 200.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.319654020051111,\u003cbr\u003e \"sharpe\": 0.19075859641649634,\u003cbr\u003e \"total_trades\": 1660,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.32 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8903614457831325\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 107,\u003cbr\u003e \"values\": [\u003cbr\u003e 533.640000000004\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.7800000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.029599726654939873,\u003cbr\u003e \"net_profit\": 580.4200000000042,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.8531573377234285,\u003cbr\u003e \"sharpe\": 0.36711531607069997,\u003cbr\u003e \"total_trades\": 1470,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9285714285714286\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 108,\u003cbr\u003e \"values\": [\u003cbr\u003e -999594.45\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 52.220000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.035282353418104685,\u003cbr\u003e \"net_profit\": 457.7700000000059,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4550442847344471,\u003cbr\u003e \"sharpe\": 0.2555639303393717,\u003cbr\u003e \"total_trades\": 1698,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9063604240282686\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 109,\u003cbr\u003e \"values\": [\u003cbr\u003e -999747.8\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 190.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 83.79999999999609,\u003cbr\u003e \"max_equity_dd_pct\": 0.06181490934304757,\u003cbr\u003e \"net_profit\": 336.0000000000018,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 190.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.328571009475755,\u003cbr\u003e \"sharpe\": 0.18453901346683735,\u003cbr\u003e \"total_trades\": 1468,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.33 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8957765667574932\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 110,\u003cbr\u003e \"values\": [\u003cbr\u003e 375.78000000000156\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 67.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 180.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.720000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.03825235931492498,\u003cbr\u003e \"net_profit\": 430.5000000000018,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 67.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 180.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.60607340456984,\u003cbr\u003e \"sharpe\": 0.2839925502747245,\u003cbr\u003e \"total_trades\": 1349,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.916234247590808\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 111,\u003cbr\u003e \"values\": [\u003cbr\u003e 426.9456200000059\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 45.970000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.0310926257098125,\u003cbr\u003e \"net_profit\": 472.91562000000613,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6044268040183125,\u003cbr\u003e \"sharpe\": 0.2999751164618944,\u003cbr\u003e \"total_trades\": 1471,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9177430319510537\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 112,\u003cbr\u003e \"values\": [\u003cbr\u003e -999656.84\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 1.7000000000000002,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.16999999999916,\u003cbr\u003e \"max_equity_dd_pct\": 0.03876679095131358,\u003cbr\u003e \"net_profit\": 397.330000000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 1.7000000000000002,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4536507392818434,\u003cbr\u003e \"sharpe\": 0.24360834318184224,\u003cbr\u003e \"total_trades\": 1472,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.907608695652174\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 113,\u003cbr\u003e \"values\": [\u003cbr\u003e 491.63000000000056\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 230.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.3400000000006,\u003cbr\u003e \"max_equity_dd_pct\": 0.0281397508067295,\u003cbr\u003e \"net_profit\": 534.9700000000012,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 230.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7300354803493467,\u003cbr\u003e \"sharpe\": 0.3371144865927234,\u003cbr\u003e \"total_trades\": 1471,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9265805574439157\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 114,\u003cbr\u003e \"values\": [\u003cbr\u003e -999600.14\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 230.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 56.560000000000855,\u003cbr\u003e \"max_equity_dd_pct\": 0.03841190932181582,\u003cbr\u003e \"net_profit\": 456.41999999999825,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 230.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3905899669673247,\u003cbr\u003e \"sharpe\": 0.22338355704126953,\u003cbr\u003e \"total_trades\": 1680,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.39 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8952380952380953\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 115,\u003cbr\u003e \"values\": [\u003cbr\u003e 371.21000000000595\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 80.99999999999818,\u003cbr\u003e \"max_equity_dd_pct\": 0.055666277231803986,\u003cbr\u003e \"net_profit\": 452.21000000000413,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5492384677047222,\u003cbr\u003e \"sharpe\": 0.2720892726887757,\u003cbr\u003e \"total_trades\": 1468,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9066757493188011\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 116,\u003cbr\u003e \"values\": [\u003cbr\u003e 398.65000000001237\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 230.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.759999999996126,\u003cbr\u003e \"max_equity_dd_pct\": 0.03301968321568286,\u003cbr\u003e \"net_profit\": 446.4100000000085,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 230.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5842833396594498,\u003cbr\u003e \"sharpe\": 0.27602798411184976,\u003cbr\u003e \"total_trades\": 1473,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9212491513917176\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 117,\u003cbr\u003e \"values\": [\u003cbr\u003e -999839.76\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 240.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 73.46000000000004,\u003cbr\u003e \"max_equity_dd_pct\": 0.05786666876728083,\u003cbr\u003e \"net_profit\": 233.70000000000118,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 240.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.1946964584739208,\u003cbr\u003e \"sharpe\": 0.12729737908786556,\u003cbr\u003e \"total_trades\": 1468,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.19 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8801089918256131\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 118,\u003cbr\u003e \"values\": [\u003cbr\u003e 488.51000000000204\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 56.82999999999993,\u003cbr\u003e \"max_equity_dd_pct\": 0.03656825903428386,\u003cbr\u003e \"net_profit\": 545.340000000002,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5457930081968063,\u003cbr\u003e \"sharpe\": 0.27789916567766604,\u003cbr\u003e \"total_trades\": 1665,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9153153153153153\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 119,\u003cbr\u003e \"values\": [\u003cbr\u003e -999679.43\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 170.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 87.98999999999796,\u003cbr\u003e \"max_equity_dd_pct\": 0.06205131098291871,\u003cbr\u003e \"net_profit\": 408.5599999999931,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 3.0,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 170.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3358846403643578,\u003cbr\u003e \"sharpe\": 0.19345893436681233,\u003cbr\u003e \"total_trades\": 1665,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.34 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9009009009009009\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 120,\u003cbr\u003e \"values\": [\u003cbr\u003e -999600.59\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 220.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 85.82999999999856,\u003cbr\u003e \"max_equity_dd_pct\": 0.057041270685185504,\u003cbr\u003e \"net_profit\": 485.2399999999989,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 220.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4264309128138413,\u003cbr\u003e \"sharpe\": 0.22833414736551516,\u003cbr\u003e \"total_trades\": 1656,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.43 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9009661835748792\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 121,\u003cbr\u003e \"values\": [\u003cbr\u003e 394.77000000000544\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.679999999999836,\u003cbr\u003e \"max_equity_dd_pct\": 0.031039633193233298,\u003cbr\u003e \"net_profit\": 439.4500000000053,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5546440155999628,\u003cbr\u003e \"sharpe\": 0.2679516666628968,\u003cbr\u003e \"total_trades\": 1471,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9218218898708361\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 122,\u003cbr\u003e \"values\": [\u003cbr\u003e -999690.24\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 66.48999999999933,\u003cbr\u003e \"max_equity_dd_pct\": 0.04762552825728754,\u003cbr\u003e \"net_profit\": 376.25000000000364,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4130076838638896,\u003cbr\u003e \"sharpe\": 0.2091942427689989,\u003cbr\u003e \"total_trades\": 1433,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.41 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9057920446615492\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 123,\u003cbr\u003e \"values\": [\u003cbr\u003e 489.3300000000004\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.679999999999836,\u003cbr\u003e \"max_equity_dd_pct\": 0.027130471007889068,\u003cbr\u003e \"net_profit\": 531.0100000000002,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7491253315275672,\u003cbr\u003e \"sharpe\": 0.3321184594089717,\u003cbr\u003e \"total_trades\": 1466,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9229195088676672\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 124,\u003cbr\u003e \"values\": [\u003cbr\u003e 406.23999999999796\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.25999999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.025036249395843275,\u003cbr\u003e \"net_profit\": 442.4999999999977,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7275208391562364,\u003cbr\u003e \"sharpe\": 0.3044823278950454,\u003cbr\u003e \"total_trades\": 1225,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.92\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 125,\u003cbr\u003e \"values\": [\u003cbr\u003e -999638.09\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 51.98999999999978,\u003cbr\u003e \"max_equity_dd_pct\": 0.03643052343914208,\u003cbr\u003e \"net_profit\": 413.9000000000033,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 165,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3752867466383807,\u003cbr\u003e \"sharpe\": 0.23110398461138934,\u003cbr\u003e \"total_trades\": 1703,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.38 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8919553728714034\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 126,\u003cbr\u003e \"values\": [\u003cbr\u003e -999724.47\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 58.86000000000104,\u003cbr\u003e \"max_equity_dd_pct\": 0.04411004279108874,\u003cbr\u003e \"net_profit\": 334.39000000000306,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 11,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3318414576055924,\u003cbr\u003e \"sharpe\": 0.18432712974529022,\u003cbr\u003e \"total_trades\": 1471,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.33 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8891910265125765\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 127,\u003cbr\u003e \"values\": [\u003cbr\u003e 339.5899999999956\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 180.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.91000000000122,\u003cbr\u003e \"max_equity_dd_pct\": 0.04121590844388868,\u003cbr\u003e \"net_profit\": 397.4999999999968,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 4.0,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 180.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 5,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6325588796944597,\u003cbr\u003e \"sharpe\": 0.2621287432051863,\u003cbr\u003e \"total_trades\": 1220,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9163934426229509\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 128,\u003cbr\u003e \"values\": [\u003cbr\u003e -999759.44438\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 10,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 180\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 83.30999999999767,\u003cbr\u003e \"max_equity_dd_pct\": 0.06253914702128384,\u003cbr\u003e \"net_profit\": 323.8656199999814,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 50.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 10.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 10,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 6,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 180,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3544201840685293,\u003cbr\u003e \"sharpe\": 0.18143782498401217,\u003cbr\u003e \"total_trades\": 1468,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.35 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9073569482288828\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 129,\u003cbr\u003e \"values\": [\u003cbr\u003e 499.74000000000024\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.4,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.83000000000038,\u003cbr\u003e \"max_equity_dd_pct\": 0.026901705553983715,\u003cbr\u003e \"net_profit\": 541.5700000000006,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.4,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6266140602582502,\u003cbr\u003e \"sharpe\": 0.3052173463606272,\u003cbr\u003e \"total_trades\": 1668,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9190647482014388\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 130,\u003cbr\u003e \"values\": [\u003cbr\u003e -999633.77\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.1,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 82.48000000000093,\u003cbr\u003e \"max_equity_dd_pct\": 0.0569200510679417,\u003cbr\u003e \"net_profit\": 448.71000000000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.1,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4348344332354563,\u003cbr\u003e \"sharpe\": 0.2240543285416689,\u003cbr\u003e \"total_trades\": 1642,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.43 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9037758830694276\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 131,\u003cbr\u003e \"values\": [\u003cbr\u003e 485.3500000000008\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.430000000000746,\u003cbr\u003e \"max_equity_dd_pct\": 0.030773522961733052,\u003cbr\u003e \"net_profit\": 532.7800000000016,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5845731841123563,\u003cbr\u003e \"sharpe\": 0.3075737713149808,\u003cbr\u003e \"total_trades\": 1699,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9199529134785168\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 132,\u003cbr\u003e \"values\": [\u003cbr\u003e 564.6900000000023\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.64000000000033,\u003cbr\u003e \"max_equity_dd_pct\": 0.024645304087241054,\u003cbr\u003e \"net_profit\": 604.3300000000027,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 150.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.702921813571549,\u003cbr\u003e \"sharpe\": 0.33226684963832975,\u003cbr\u003e \"total_trades\": 1672,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9234449760765551\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 133,\u003cbr\u003e \"values\": [\u003cbr\u003e -999587.39\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 70.16000000000122,\u003cbr\u003e \"max_equity_dd_pct\": 0.04674777788142554,\u003cbr\u003e \"net_profit\": 482.7700000000027,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.8000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 160.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4629643836667399,\u003cbr\u003e \"sharpe\": 0.247422649407387,\u003cbr\u003e \"total_trades\": 1653,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.9086509376890503\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 134,\u003cbr\u003e \"values\": [\u003cbr\u003e 480.030000000002\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.76999999999907,\u003cbr\u003e \"max_equity_dd_pct\": 0.032878078474798456,\u003cbr\u003e \"net_profit\": 530.8000000000011,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.609785518168347,\u003cbr\u003e \"sharpe\": 0.2941279367090679,\u003cbr\u003e \"total_trades\": 1653,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9225650332728372\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 135,\u003cbr\u003e \"values\": [\u003cbr\u003e 463.7200000000021\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 60.67999999999893,\u003cbr\u003e \"max_equity_dd_pct\": 0.03979694898802345,\u003cbr\u003e \"net_profit\": 524.400000000001,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6060956299626679,\u003cbr\u003e \"sharpe\": 0.29286114869581137,\u003cbr\u003e \"total_trades\": 1633,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9210042865890998\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 136,\u003cbr\u003e \"values\": [\u003cbr\u003e -999579.69\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.09999999999991,\u003cbr\u003e \"max_equity_dd_pct\": 0.03937584947898621,\u003cbr\u003e \"net_profit\": 479.40999999999804,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 51.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 12.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.8,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 50,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 140.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4060938214715284,\u003cbr\u003e \"sharpe\": 0.23282769309980542,\u003cbr\u003e \"total_trades\": 1683,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.41 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8954248366013072\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 137,\u003cbr\u003e \"values\": [\u003cbr\u003e 498.72999999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.220000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.03480951708375635,\u003cbr\u003e \"net_profit\": 552.9499999999903,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6246117003851825,\u003cbr\u003e \"sharpe\": 0.30269316103371957,\u003cbr\u003e \"total_trades\": 1690,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9207100591715977\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 138,\u003cbr\u003e \"values\": [\u003cbr\u003e 529.0199999999872\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 76.65000000000009,\u003cbr\u003e \"max_equity_dd_pct\": 0.04754549852990477,\u003cbr\u003e \"net_profit\": 605.6699999999873,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.682091535654747,\u003cbr\u003e \"sharpe\": 0.3313015037064247,\u003cbr\u003e \"total_trades\": 1657,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9155099577549789\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 139,\u003cbr\u003e \"values\": [\u003cbr\u003e 470.95999999998\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.3,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 55.33000000000084,\u003cbr\u003e \"max_equity_dd_pct\": 0.03623966779758806,\u003cbr\u003e \"net_profit\": 526.2899999999809,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 45.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.3,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6294506703663136,\u003cbr\u003e \"sharpe\": 0.2874528425017057,\u003cbr\u003e \"total_trades\": 1597,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.915466499686913\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 140,\u003cbr\u003e \"values\": [\u003cbr\u003e 475.2799999999834\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 75.64000000000124,\u003cbr\u003e \"max_equity_dd_pct\": 0.0485625136429602,\u003cbr\u003e \"net_profit\": 550.9199999999846,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 46.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 15.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 4.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 3.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5582498201384005,\u003cbr\u003e \"sharpe\": 0.28030357222111,\u003cbr\u003e \"total_trades\": 1646,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9034021871202916\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 141,\u003cbr\u003e \"values\": [\u003cbr\u003e 546.0199999999859\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 48.21000000000049,\u003cbr\u003e \"max_equity_dd_pct\": 0.030240304096649104,\u003cbr\u003e \"net_profit\": 594.2299999999864,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 52.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6918419857726497,\u003cbr\u003e \"sharpe\": 0.33672651473660714,\u003cbr\u003e \"total_trades\": 1692,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9231678486997635\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 142,\u003cbr\u003e \"values\": [\u003cbr\u003e 610.1099999999901\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.400000000001,\u003cbr\u003e \"max_equity_dd_pct\": 0.025554022046371642,\u003cbr\u003e \"net_profit\": 652.5099999999911,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.826056132977162,\u003cbr\u003e \"sharpe\": 0.36461006239593885,\u003cbr\u003e \"total_trades\": 1640,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9225609756097561\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 143,\u003cbr\u003e \"values\": [\u003cbr\u003e 631.0999999999949\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.809999999999945,\u003cbr\u003e \"max_equity_dd_pct\": 0.022563839373631187,\u003cbr\u003e \"net_profit\": 668.9099999999949,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.8625643141755486,\u003cbr\u003e \"sharpe\": 0.37325057484732593,\u003cbr\u003e \"total_trades\": 1634,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9241126070991432\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 144,\u003cbr\u003e \"values\": [\u003cbr\u003e 560.2999999999929\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.89000000000033,\u003cbr\u003e \"max_equity_dd_pct\": 0.02604257329719275,\u003cbr\u003e \"net_profit\": 602.1899999999932,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6360266159695749,\u003cbr\u003e \"sharpe\": 0.3121720004124801,\u003cbr\u003e \"total_trades\": 1631,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9086450030656039\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 145,\u003cbr\u003e \"values\": [\u003cbr\u003e 551.9199999999955\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.27000000000089,\u003cbr\u003e \"max_equity_dd_pct\": 0.023284872642305728,\u003cbr\u003e \"net_profit\": 589.1899999999964,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.619189743050809,\u003cbr\u003e \"sharpe\": 0.3114948087195637,\u003cbr\u003e \"total_trades\": 1633,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.900796080832823\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 146,\u003cbr\u003e \"values\": [\u003cbr\u003e 562.6699999999933\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.5300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.023973966499913096,\u003cbr\u003e \"net_profit\": 601.1999999999935,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6389898603405328,\u003cbr\u003e \"sharpe\": 0.3154679220450983,\u003cbr\u003e \"total_trades\": 1632,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9056372549019608\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 147,\u003cbr\u003e \"values\": [\u003cbr\u003e -999488.15\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.4300000000012,\u003cbr\u003e \"max_equity_dd_pct\": 0.02834901898229475,\u003cbr\u003e \"net_profit\": 556.2799999999911,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4479265641355914,\u003cbr\u003e \"sharpe\": 0.26194932274115434,\u003cbr\u003e \"total_trades\": 1803,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8879645036051026\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 148,\u003cbr\u003e \"values\": [\u003cbr\u003e 532.0299999999947\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.86000000000104,\u003cbr\u003e \"max_equity_dd_pct\": 0.028248125082648214,\u003cbr\u003e \"net_profit\": 576.8899999999958,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6870355373475572,\u003cbr\u003e \"sharpe\": 0.3412028374795733,\u003cbr\u003e \"total_trades\": 1623,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9081947011706716\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 149,\u003cbr\u003e \"values\": [\u003cbr\u003e -999629.75596\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 73.7199999999998,\u003cbr\u003e \"max_equity_dd_pct\": 0.05105390297669693,\u003cbr\u003e \"net_profit\": 443.96404000000933,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3860791874288096,\u003cbr\u003e \"sharpe\": 0.24430837777922948,\u003cbr\u003e \"total_trades\": 1654,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.39 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8821039903264812\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 150,\u003cbr\u003e \"values\": [\u003cbr\u003e 490.94403999999395\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.75000000000182,\u003cbr\u003e \"max_equity_dd_pct\": 0.032801103595878636,\u003cbr\u003e \"net_profit\": 541.6940399999958,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6263039741337868,\u003cbr\u003e \"sharpe\": 0.3166375955532262,\u003cbr\u003e \"total_trades\": 1625,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9015384615384615\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 151,\u003cbr\u003e \"values\": [\u003cbr\u003e 513.3040399999959\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 53.82000000000153,\u003cbr\u003e \"max_equity_dd_pct\": 0.03422283801004435,\u003cbr\u003e \"net_profit\": 567.1240399999974,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6557060145590854,\u003cbr\u003e \"sharpe\": 0.3288783725238105,\u003cbr\u003e \"total_trades\": 1625,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9015384615384615\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 152,\u003cbr\u003e \"values\": [\u003cbr\u003e -999615.42596\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.42000000000144,\u003cbr\u003e \"max_equity_dd_pct\": 0.03968199010695374,\u003cbr\u003e \"net_profit\": 441.99403999998225,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4387577801638027,\u003cbr\u003e \"sharpe\": 0.24973244008486672,\u003cbr\u003e \"total_trades\": 1617,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.44 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8843537414965986\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 153,\u003cbr\u003e \"values\": [\u003cbr\u003e 654.6299999999928\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.63000000000011,\u003cbr\u003e \"max_equity_dd_pct\": 0.020500100635781497,\u003cbr\u003e \"net_profit\": 689.2599999999929,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 7,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 150,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.912600791769823,\u003cbr\u003e \"sharpe\": 0.4042806724199889,\u003cbr\u003e \"total_trades\": 1608,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9210199004975125\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 154,\u003cbr\u003e \"values\": [\u003cbr\u003e 610.1199999999985\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.3899999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.02506191303715854,\u003cbr\u003e \"net_profit\": 651.5099999999961,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6230371999617448,\u003cbr\u003e \"sharpe\": 0.3375895691195681,\u003cbr\u003e \"total_trades\": 1761,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9085746734809768\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 155,\u003cbr\u003e \"values\": [\u003cbr\u003e 588.3399999999983\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.73000000000184,\u003cbr\u003e \"max_equity_dd_pct\": 0.024954508415178458,\u003cbr\u003e \"net_profit\": 629.0700000000002,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5898895369554222,\u003cbr\u003e \"sharpe\": 0.3325759343781531,\u003cbr\u003e \"total_trades\": 1771,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8983625070581592\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 156,\u003cbr\u003e \"values\": [\u003cbr\u003e 612.4199999999964\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 65.050000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.03870641437581936,\u003cbr\u003e \"net_profit\": 677.4699999999984,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6457876575219694,\u003cbr\u003e \"sharpe\": 0.3468285222893029,\u003cbr\u003e \"total_trades\": 1791,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9000558347292016\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 157,\u003cbr\u003e \"values\": [\u003cbr\u003e -999702.18034\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 115.77000000000317,\u003cbr\u003e \"max_equity_dd_pct\": 0.0816909952757554,\u003cbr\u003e \"net_profit\": 413.58965999999054,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.8000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2984796685014557,\u003cbr\u003e \"sharpe\": 0.20844057729713475,\u003cbr\u003e \"total_trades\": 1743,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.30 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8691910499139415\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 158,\u003cbr\u003e \"values\": [\u003cbr\u003e 536.174039999988\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 70.05999999999813,\u003cbr\u003e \"max_equity_dd_pct\": 0.04353272364653971,\u003cbr\u003e \"net_profit\": 606.2340399999862,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5437340120053746,\u003cbr\u003e \"sharpe\": 0.3126491547734482,\u003cbr\u003e \"total_trades\": 1829,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8983050847457628\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 159,\u003cbr\u003e \"values\": [\u003cbr\u003e -999599.18834\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 300.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 103.72630000000572,\u003cbr\u003e \"max_equity_dd_pct\": 0.06864300180777552,\u003cbr\u003e \"net_profit\": 504.5379599999977,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 300.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.1702521363550795,\u003cbr\u003e \"sharpe\": 0.15605517300694183,\u003cbr\u003e \"total_trades\": 1473,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.17 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7012898845892735\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 160,\u003cbr\u003e \"values\": [\u003cbr\u003e -999516.58596\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.96000000000049,\u003cbr\u003e \"max_equity_dd_pct\": 0.02623124652957895,\u003cbr\u003e \"net_profit\": 523.3740399999933,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 17.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4091576750185622,\u003cbr\u003e \"sharpe\": 0.2697614455119891,\u003cbr\u003e \"total_trades\": 1793,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.41 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8817624093697713\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 161,\u003cbr\u003e \"values\": [\u003cbr\u003e 546.9640399999944\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 67.36999999999762,\u003cbr\u003e \"max_equity_dd_pct\": 0.04165239405991353,\u003cbr\u003e \"net_profit\": 614.334039999992,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5498646332093176,\u003cbr\u003e \"sharpe\": 0.3143425977792501,\u003cbr\u003e \"total_trades\": 1831,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8973238667394866\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 162,\u003cbr\u003e \"values\": [\u003cbr\u003e 597.9340399999928\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 55.069999999997435,\u003cbr\u003e \"max_equity_dd_pct\": 0.03324691991767716,\u003cbr\u003e \"net_profit\": 653.0040399999903,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 135,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6097792523117858,\u003cbr\u003e \"sharpe\": 0.3326351921852728,\u003cbr\u003e \"total_trades\": 1822,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9045005488474204\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 163,\u003cbr\u003e \"values\": [\u003cbr\u003e 668.929999999998\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 56.51000000000249,\u003cbr\u003e \"max_equity_dd_pct\": 0.03268741323461503,\u003cbr\u003e \"net_profit\": 725.4400000000005,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 21,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7354718358408692,\u003cbr\u003e \"sharpe\": 0.3782700451150446,\u003cbr\u003e \"total_trades\": 1789,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.907769703745109\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 164,\u003cbr\u003e \"values\": [\u003cbr\u003e 615.7199999999839\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.47000000000253,\u003cbr\u003e \"max_equity_dd_pct\": 0.02025379266942372,\u003cbr\u003e \"net_profit\": 649.1899999999864,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6680009054988347,\u003cbr\u003e \"sharpe\": 0.3576048221863868,\u003cbr\u003e \"total_trades\": 1739,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108683151236343\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 165,\u003cbr\u003e \"values\": [\u003cbr\u003e -999582.52034\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.50000000000637,\u003cbr\u003e \"max_equity_dd_pct\": 0.04023533519070927,\u003cbr\u003e \"net_profit\": 476.97965999998496,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 20,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 130.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3581212348084126,\u003cbr\u003e \"sharpe\": 0.2381928925195306,\u003cbr\u003e \"total_trades\": 1712,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.36 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8802570093457944\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 166,\u003cbr\u003e \"values\": [\u003cbr\u003e 602.5000000000014\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.26000000000067,\u003cbr\u003e \"max_equity_dd_pct\": 0.021488076737908,\u003cbr\u003e \"net_profit\": 637.760000000002,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.610413476263403,\u003cbr\u003e \"sharpe\": 0.34770443644317506,\u003cbr\u003e \"total_trades\": 1774,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9013528748590756\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 167,\u003cbr\u003e \"values\": [\u003cbr\u003e 556.589659999976\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 58.2800000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.03601288519775692,\u003cbr\u003e \"net_profit\": 614.8696599999762,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5844188767657985,\u003cbr\u003e \"sharpe\": 0.3183238802085501,\u003cbr\u003e \"total_trades\": 1673,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8977884040645547\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 168,\u003cbr\u003e \"values\": [\u003cbr\u003e 567.1596599999821\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 70.04000000000133,\u003cbr\u003e \"max_equity_dd_pct\": 0.04273546880266357,\u003cbr\u003e \"net_profit\": 637.1996599999834,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5193513666373228,\u003cbr\u003e \"sharpe\": 0.29453719953710544,\u003cbr\u003e \"total_trades\": 1697,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.882734236888627\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 169,\u003cbr\u003e \"values\": [\u003cbr\u003e -999729.42068\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 89.29000000000815,\u003cbr\u003e \"max_equity_dd_pct\": 0.06517949669837209,\u003cbr\u003e \"net_profit\": 359.8693199999811,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.245577742948261,\u003cbr\u003e \"sharpe\": 0.1736220140150533,\u003cbr\u003e \"total_trades\": 1699,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.25 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8616833431430253\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 170,\u003cbr\u003e \"values\": [\u003cbr\u003e 586.3077399999759\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.20000000000164,\u003cbr\u003e \"max_equity_dd_pct\": 0.024674418288621252,\u003cbr\u003e \"net_profit\": 626.5077399999775,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6236201665977725,\u003cbr\u003e \"sharpe\": 0.3337409673170451,\u003cbr\u003e \"total_trades\": 1636,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8985330073349633\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 171,\u003cbr\u003e \"values\": [\u003cbr\u003e 586.3077399999759\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.20000000000164,\u003cbr\u003e \"max_equity_dd_pct\": 0.024674418288621252,\u003cbr\u003e \"net_profit\": 626.5077399999775,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6236201665977725,\u003cbr\u003e \"sharpe\": 0.3337409673170451,\u003cbr\u003e \"total_trades\": 1636,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8985330073349633\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 172,\u003cbr\u003e \"values\": [\u003cbr\u003e -999508.07226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.37000000000171,\u003cbr\u003e \"max_equity_dd_pct\": 0.032638113227026894,\u003cbr\u003e \"net_profit\": 542.2977399999767,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.45443297062284,\u003cbr\u003e \"sharpe\": 0.27081247227643623,\u003cbr\u003e \"total_trades\": 1629,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8809085328422345\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 173,\u003cbr\u003e \"values\": [\u003cbr\u003e 511.20561999998245\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 62.469999999999345,\u003cbr\u003e \"max_equity_dd_pct\": 0.039391984498563605,\u003cbr\u003e \"net_profit\": 573.6756199999818,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.526972967480283,\u003cbr\u003e \"sharpe\": 0.3024945696525056,\u003cbr\u003e \"total_trades\": 1665,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8954954954954955\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 174,\u003cbr\u003e \"values\": [\u003cbr\u003e -999760.2326\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 69.95000000000391,\u003cbr\u003e \"max_equity_dd_pct\": 0.05314552361219087,\u003cbr\u003e \"net_profit\": 309.7173999999899,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.219040266858512,\u003cbr\u003e \"sharpe\": 0.15185288361486574,\u003cbr\u003e \"total_trades\": 1594,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.22 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8557089084065245\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 175,\u003cbr\u003e \"values\": [\u003cbr\u003e 531.5417799999748\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.88000000000102,\u003cbr\u003e \"max_equity_dd_pct\": 0.024076141930205127,\u003cbr\u003e \"net_profit\": 569.4217799999758,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5441252138074923,\u003cbr\u003e \"sharpe\": 0.29530041384424777,\u003cbr\u003e \"total_trades\": 1635,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8972477064220183\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 176,\u003cbr\u003e \"values\": [\u003cbr\u003e -999579.7778800001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 45.06596000000172,\u003cbr\u003e \"max_equity_dd_pct\": 0.030755699589122602,\u003cbr\u003e \"net_profit\": 465.28807999998287,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4158382726080543,\u003cbr\u003e \"sharpe\": 0.24943555047288493,\u003cbr\u003e \"total_trades\": 1634,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.42 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8861689106487148\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 177,\u003cbr\u003e \"values\": [\u003cbr\u003e 567.2296599999781\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 290.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 58.07999999999947,\u003cbr\u003e \"max_equity_dd_pct\": 0.0356592553333213,\u003cbr\u003e \"net_profit\": 625.3096599999776,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 290.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5943418465760766,\u003cbr\u003e \"sharpe\": 0.32592462700566865,\u003cbr\u003e \"total_trades\": 1673,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8977884040645547\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 178,\u003cbr\u003e \"values\": [\u003cbr\u003e -999691.1463\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 280.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 74.40000000000464,\u003cbr\u003e \"max_equity_dd_pct\": 0.05333739768127539,\u003cbr\u003e \"net_profit\": 383.2536999999778,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 15,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 280.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2826908468604135,\u003cbr\u003e \"sharpe\": 0.19750491705963485,\u003cbr\u003e \"total_trades\": 1702,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.28 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8742655699177438\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 179,\u003cbr\u003e \"values\": [\u003cbr\u003e -999564.7000000001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 290.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.409999999998945,\u003cbr\u003e \"max_equity_dd_pct\": 0.03113720228111343,\u003cbr\u003e \"net_profit\": 481.7099999999773,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 290.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4088039105860597,\u003cbr\u003e \"sharpe\": 0.2658124691995387,\u003cbr\u003e \"total_trades\": 1723,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.41 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8827626233313988\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 180,\u003cbr\u003e \"values\": [\u003cbr\u003e -999464.14472\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.33999999999742,\u003cbr\u003e \"max_equity_dd_pct\": 0.024974681234441843,\u003cbr\u003e \"net_profit\": 575.1952800000022,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 90.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4115626115939877,\u003cbr\u003e \"sharpe\": 0.28002449079478775,\u003cbr\u003e \"total_trades\": 1803,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.41 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8713255684969495\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 181,\u003cbr\u003e \"values\": [\u003cbr\u003e 516.5177399999724\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.20000000000209,\u003cbr\u003e \"max_equity_dd_pct\": 0.02769731913160313,\u003cbr\u003e \"net_profit\": 559.7177399999745,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5415381211500052,\u003cbr\u003e \"sharpe\": 0.29021087303605814,\u003cbr\u003e \"total_trades\": 1625,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8996923076923077\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 182,\u003cbr\u003e \"values\": [\u003cbr\u003e -999511.0263\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 65.44000000000051,\u003cbr\u003e \"max_equity_dd_pct\": 0.042009208516084036,\u003cbr\u003e \"net_profit\": 554.4136999999754,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 330.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4599667189448091,\u003cbr\u003e \"sharpe\": 0.27495675629189104,\u003cbr\u003e \"total_trades\": 1668,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8782973621103117\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 183,\u003cbr\u003e \"values\": [\u003cbr\u003e -999675.52396\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 270.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 280.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 112.98630000000139,\u003cbr\u003e \"max_equity_dd_pct\": 0.0783303984989698,\u003cbr\u003e \"net_profit\": 437.4623399999989,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 270.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 280.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.1441980387193889,\u003cbr\u003e \"sharpe\": 0.13719764595031553,\u003cbr\u003e \"total_trades\": 1601,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.14 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7158026233603998\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 184,\u003cbr\u003e \"values\": [\u003cbr\u003e 665.9199999999846\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 48.46000000000049,\u003cbr\u003e \"max_equity_dd_pct\": 0.028266778660507537,\u003cbr\u003e \"net_profit\": 714.3799999999851,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7724363133082313,\u003cbr\u003e \"sharpe\": 0.3773971234327652,\u003cbr\u003e \"total_trades\": 1715,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9119533527696793\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 185,\u003cbr\u003e \"values\": [\u003cbr\u003e 531.2340399999862\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.46000000000049,\u003cbr\u003e \"max_equity_dd_pct\": 0.020758536625234414,\u003cbr\u003e \"net_profit\": 563.6940399999867,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 300.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5596366741126708,\u003cbr\u003e \"sharpe\": 0.3136666388108305,\u003cbr\u003e \"total_trades\": 1731,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9093009820912767\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 186,\u003cbr\u003e \"values\": [\u003cbr\u003e -999558.20034\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 83.89000000000306,\u003cbr\u003e \"max_equity_dd_pct\": 0.05460132293102351,\u003cbr\u003e \"net_profit\": 525.68965999998,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 16,\u003cbr\u003e \"InpSlowEmaPeriod\": 200,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 310.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4294694445637504,\u003cbr\u003e \"sharpe\": 0.2552491289131132,\u003cbr\u003e \"total_trades\": 1650,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.43 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8812121212121212\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 187,\u003cbr\u003e \"values\": [\u003cbr\u003e -999556.31034\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.36000000000104,\u003cbr\u003e \"max_equity_dd_pct\": 0.024455704860160604,\u003cbr\u003e \"net_profit\": 480.04965999998603,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 17,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 20.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 320.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4481150208690647,\u003cbr\u003e \"sharpe\": 0.2461862969162894,\u003cbr\u003e \"total_trades\": 1622,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8964241676942046\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 188,\u003cbr\u003e \"values\": [\u003cbr\u003e 616.4556199999834\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.7800000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.020906397274613995,\u003cbr\u003e \"net_profit\": 651.2356199999836,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7062493510767003,\u003cbr\u003e \"sharpe\": 0.3573803118170366,\u003cbr\u003e \"total_trades\": 1681,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.91017251635931\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 189,\u003cbr\u003e \"values\": [\u003cbr\u003e 621.3096599999922\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.77999999999838,\u003cbr\u003e \"max_equity_dd_pct\": 0.024452697599652084,\u003cbr\u003e \"net_profit\": 662.0896599999905,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 195,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 47.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 45,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 8,\u003cbr\u003e \"InpDailyLossLimit\": 4.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6802353599731985,\u003cbr\u003e \"sharpe\": 0.3441073196454752,\u003cbr\u003e \"total_trades\": 1718,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9086146682188592\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 190,\u003cbr\u003e \"values\": [\u003cbr\u003e 659.0840399999915\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.95999999999776,\u003cbr\u003e \"max_equity_dd_pct\": 0.0206370077604346,\u003cbr\u003e \"net_profit\": 694.0440399999893,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6710861817232385,\u003cbr\u003e \"sharpe\": 0.3557614993366742,\u003cbr\u003e \"total_trades\": 1844,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9126898047722343\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 191,\u003cbr\u003e \"values\": [\u003cbr\u003e 659.0840399999915\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.95999999999776,\u003cbr\u003e \"max_equity_dd_pct\": 0.0206370077604346,\u003cbr\u003e \"net_profit\": 694.0440399999893,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6710861817232385,\u003cbr\u003e \"sharpe\": 0.3557614993366742,\u003cbr\u003e \"total_trades\": 1844,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9126898047722343\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 192,\u003cbr\u003e \"values\": [\u003cbr\u003e 646.774039999987\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.690000000001874,\u003cbr\u003e \"max_equity_dd_pct\": 0.02469107959207834,\u003cbr\u003e \"net_profit\": 688.4640399999889,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6637781312970528,\u003cbr\u003e \"sharpe\": 0.35555036543480306,\u003cbr\u003e \"total_trades\": 1840,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9130434782608695\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 193,\u003cbr\u003e \"values\": [\u003cbr\u003e 554.464039999993\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.85999999999967,\u003cbr\u003e \"max_equity_dd_pct\": 0.021318068068780113,\u003cbr\u003e \"net_profit\": 588.3240399999927,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5341844463612788,\u003cbr\u003e \"sharpe\": 0.31145525382034306,\u003cbr\u003e \"total_trades\": 1877,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9099627064464572\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 194,\u003cbr\u003e \"values\": [\u003cbr\u003e 647.6940399999876\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.89000000000124,\u003cbr\u003e \"max_equity_dd_pct\": 0.02305844184319537,\u003cbr\u003e \"net_profit\": 686.5840399999888,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 120,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6607678404727204,\u003cbr\u003e \"sharpe\": 0.3589403036206419,\u003cbr\u003e \"total_trades\": 1847,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9095831077422848\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 195,\u003cbr\u003e \"values\": [\u003cbr\u003e 663.8340399999865\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.690000000001874,\u003cbr\u003e \"max_equity_dd_pct\": 0.024444099890847715,\u003cbr\u003e \"net_profit\": 705.5240399999884,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6928041557013132,\u003cbr\u003e \"sharpe\": 0.36586483732520925,\u003cbr\u003e \"total_trades\": 1833,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9138025095471904\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 196,\u003cbr\u003e \"values\": [\u003cbr\u003e 580.004039999993\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.85999999999967,\u003cbr\u003e \"max_equity_dd_pct\": 0.020980701695292637,\u003cbr\u003e \"net_profit\": 613.8640399999927,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5684610554974157,\u003cbr\u003e \"sharpe\": 0.3262867254720367,\u003cbr\u003e \"total_trades\": 1877,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9115610015982951\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 197,\u003cbr\u003e \"values\": [\u003cbr\u003e 701.2840399999986\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.09999999999991,\u003cbr\u003e \"max_equity_dd_pct\": 0.025266645614566263,\u003cbr\u003e \"net_profit\": 745.3840399999985,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 18,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7110679030011633,\u003cbr\u003e \"sharpe\": 0.37447566652567105,\u003cbr\u003e \"total_trades\": 1886,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9135737009544008\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 198,\u003cbr\u003e \"values\": [\u003cbr\u003e 711.4940399999987\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.190000000000055,\u003cbr\u003e \"max_equity_dd_pct\": 0.02405792550863386,\u003cbr\u003e \"net_profit\": 753.6840399999987,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7189857859691293,\u003cbr\u003e \"sharpe\": 0.377722922566942,\u003cbr\u003e \"total_trades\": 1888,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9136652542372882\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 199,\u003cbr\u003e \"values\": [\u003cbr\u003e 702.3440399999977\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.09999999999991,\u003cbr\u003e \"max_equity_dd_pct\": 0.025251310084919737,\u003cbr\u003e \"net_profit\": 746.4440399999976,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7095610562938441,\u003cbr\u003e \"sharpe\": 0.3743671655377701,\u003cbr\u003e \"total_trades\": 1883,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9129049389272438\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 200,\u003cbr\u003e \"values\": [\u003cbr\u003e 564.0340400000018\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 45.25999999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.028124133237950547,\u003cbr\u003e \"net_profit\": 609.2940400000016,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5309150510181875,\u003cbr\u003e \"sharpe\": 0.3145530668782391,\u003cbr\u003e \"total_trades\": 1927,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.909704203425013\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 201,\u003cbr\u003e \"values\": [\u003cbr\u003e 714.7440399999987\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.190000000000055,\u003cbr\u003e \"max_equity_dd_pct\": 0.024013422837433376,\u003cbr\u003e \"net_profit\": 756.9340399999987,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.72208616183008,\u003cbr\u003e \"sharpe\": 0.3793541593075854,\u003cbr\u003e \"total_trades\": 1888,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9136652542372882\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 202,\u003cbr\u003e \"values\": [\u003cbr\u003e 643.8240399999945\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.03397322728687234,\u003cbr\u003e \"net_profit\": 701.6340399999931,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6683565665513993,\u003cbr\u003e \"sharpe\": 0.3531017577644858,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 203,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.094039999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.034027819487673264,\u003cbr\u003e \"net_profit\": 698.9040399999926,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.665756046447378,\u003cbr\u003e \"sharpe\": 0.3516656279942476,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 204,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.094039999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.034027819487673264,\u003cbr\u003e \"net_profit\": 698.9040399999926,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.665756046447378,\u003cbr\u003e \"sharpe\": 0.3516656279942476,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 205,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.094039999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.034027819487673264,\u003cbr\u003e \"net_profit\": 698.9040399999926,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.665756046447378,\u003cbr\u003e \"sharpe\": 0.3516656279942476,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 206,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.094039999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.034027819487673264,\u003cbr\u003e \"net_profit\": 698.9040399999926,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.665756046447378,\u003cbr\u003e \"sharpe\": 0.3516656279942476,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 207,\u003cbr\u003e \"values\": [\u003cbr\u003e 632.7099999999928\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 58.60999999999876,\u003cbr\u003e \"max_equity_dd_pct\": 0.03465340680651743,\u003cbr\u003e \"net_profit\": 691.3199999999915,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.656206395762728,\u003cbr\u003e \"sharpe\": 0.34788003651504595,\u003cbr\u003e \"total_trades\": 1824,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9100877192982456\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 208,\u003cbr\u003e \"values\": [\u003cbr\u003e 632.7099999999928\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 58.60999999999876,\u003cbr\u003e \"max_equity_dd_pct\": 0.03465340680651743,\u003cbr\u003e \"net_profit\": 691.3199999999915,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.656206395762728,\u003cbr\u003e \"sharpe\": 0.34788003651504595,\u003cbr\u003e \"total_trades\": 1824,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9100877192982456\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 209,\u003cbr\u003e \"values\": [\u003cbr\u003e 555.5840400000034\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.68000000000029,\u003cbr\u003e \"max_equity_dd_pct\": 0.03395716394436789,\u003cbr\u003e \"net_profit\": 610.2640400000037,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5492925652565297,\u003cbr\u003e \"sharpe\": 0.31476143749935304,\u003cbr\u003e \"total_trades\": 1875,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9077333333333333\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 210,\u003cbr\u003e \"values\": [\u003cbr\u003e 552.9540399999937\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 67.37999999999874,\u003cbr\u003e \"max_equity_dd_pct\": 0.04158401807074241,\u003cbr\u003e \"net_profit\": 620.3340399999925,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5086748284146851,\u003cbr\u003e \"sharpe\": 0.29903357693458293,\u003cbr\u003e \"total_trades\": 1794,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8968784838350056\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 211,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.094039999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.034027819487673264,\u003cbr\u003e \"net_profit\": 698.9040399999926,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.665756046447378,\u003cbr\u003e \"sharpe\": 0.3516656279942476,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 212,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.094039999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.034027819487673264,\u003cbr\u003e \"net_profit\": 698.9040399999926,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.665756046447378,\u003cbr\u003e \"sharpe\": 0.3516656279942476,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 213,\u003cbr\u003e \"values\": [\u003cbr\u003e 660.3340399999947\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.03364677154774451,\u003cbr\u003e \"net_profit\": 718.1440399999933,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6944762881014948,\u003cbr\u003e \"sharpe\": 0.3608429310158045,\u003cbr\u003e \"total_trades\": 1829,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9114270092946966\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 214,\u003cbr\u003e \"values\": [\u003cbr\u003e 660.3340399999947\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.03364677154774451,\u003cbr\u003e \"net_profit\": 718.1440399999933,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6944762881014948,\u003cbr\u003e \"sharpe\": 0.3608429310158045,\u003cbr\u003e \"total_trades\": 1829,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9114270092946966\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 215,\u003cbr\u003e \"values\": [\u003cbr\u003e -999501.53034\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 63.26999999999862,\u003cbr\u003e \"max_equity_dd_pct\": 0.04051251410238161,\u003cbr\u003e \"net_profit\": 561.7396599999988,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4559669982747527,\u003cbr\u003e \"sharpe\": 0.27859045799251597,\u003cbr\u003e \"total_trades\": 1795,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8935933147632312\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 216,\u003cbr\u003e \"values\": [\u003cbr\u003e 665.7140399999939\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.7899999999986,\u003cbr\u003e \"max_equity_dd_pct\": 0.034650744718047057,\u003cbr\u003e \"net_profit\": 725.5040399999925,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.701593725823914,\u003cbr\u003e \"sharpe\": 0.364396348011819,\u003cbr\u003e \"total_trades\": 1829,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9114270092946966\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 217,\u003cbr\u003e \"values\": [\u003cbr\u003e 550.4340399999924\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 70.57999999999765,\u003cbr\u003e \"max_equity_dd_pct\": 0.04354064693973785,\u003cbr\u003e \"net_profit\": 621.01403999999,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5534933822939503,\u003cbr\u003e \"sharpe\": 0.3051519407921731,\u003cbr\u003e \"total_trades\": 1725,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9008695652173913\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 218,\u003cbr\u003e \"values\": [\u003cbr\u003e 562.6940400000049\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.68000000000029,\u003cbr\u003e \"max_equity_dd_pct\": 0.033807887753657846,\u003cbr\u003e \"net_profit\": 617.3740400000052,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5617853769507313,\u003cbr\u003e \"sharpe\": 0.3191925822730189,\u003cbr\u003e \"total_trades\": 1872,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9086538461538461\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 219,\u003cbr\u003e \"values\": [\u003cbr\u003e 646.4740399999932\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.7899999999986,\u003cbr\u003e \"max_equity_dd_pct\": 0.035041469900519547,\u003cbr\u003e \"net_profit\": 706.2640399999918,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6727669724421,\u003cbr\u003e \"sharpe\": 0.3552318587874484,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 220,\u003cbr\u003e \"values\": [\u003cbr\u003e 578.1996599999961\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 74.97000000000071,\u003cbr\u003e \"max_equity_dd_pct\": 0.04534924745715503,\u003cbr\u003e \"net_profit\": 653.1696599999968,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.521695014397516,\u003cbr\u003e \"sharpe\": 0.3192511648478602,\u003cbr\u003e \"total_trades\": 1864,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8986051502145923\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 221,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.094039999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.80999999999858,\u003cbr\u003e \"max_equity_dd_pct\": 0.034027819487673264,\u003cbr\u003e \"net_profit\": 698.9040399999926,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.665756046447378,\u003cbr\u003e \"sharpe\": 0.35166038176464837,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 222,\u003cbr\u003e \"values\": [\u003cbr\u003e 626.1840399999946\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.009999999998854,\u003cbr\u003e \"max_equity_dd_pct\": 0.03501673908127463,\u003cbr\u003e \"net_profit\": 685.1940399999935,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6526962916392745,\u003cbr\u003e \"sharpe\": 0.3466039466530174,\u003cbr\u003e \"total_trades\": 1828,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9108315098468271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 223,\u003cbr\u003e \"values\": [\u003cbr\u003e 589.6580800000019\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 45.00999999999931,\u003cbr\u003e \"max_equity_dd_pct\": 0.02753464177265838,\u003cbr\u003e \"net_profit\": 634.6680800000012,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5552505883485144,\u003cbr\u003e \"sharpe\": 0.3262085019611222,\u003cbr\u003e \"total_trades\": 1923,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9100364014560582\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 224,\u003cbr\u003e \"values\": [\u003cbr\u003e 496.0380799999833\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 51.220000000001164,\u003cbr\u003e \"max_equity_dd_pct\": 0.033103721132289494,\u003cbr\u003e \"net_profit\": 547.2580799999845,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.8,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5072135687473798,\u003cbr\u003e \"sharpe\": 0.28607990391991495,\u003cbr\u003e \"total_trades\": 1763,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9052750992626205\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 225,\u003cbr\u003e \"values\": [\u003cbr\u003e 503.3040399999836\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 71.23999999999933,\u003cbr\u003e \"max_equity_dd_pct\": 0.045244844342365996,\u003cbr\u003e \"net_profit\": 574.5440399999829,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5003039385574428,\u003cbr\u003e \"sharpe\": 0.28402369536998273,\u003cbr\u003e \"total_trades\": 1724,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8990719257540604\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 226,\u003cbr\u003e \"values\": [\u003cbr\u003e 638.4199999999928\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 45.44999999999936,\u003cbr\u003e \"max_equity_dd_pct\": 0.02699139482264045,\u003cbr\u003e \"net_profit\": 683.8699999999922,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 53.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5726067771349088,\u003cbr\u003e \"sharpe\": 0.3329397296212084,\u003cbr\u003e \"total_trades\": 2071,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9116368903911154\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 227,\u003cbr\u003e \"values\": [\u003cbr\u003e -999555.46192\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.6800000000012,\u003cbr\u003e \"max_equity_dd_pct\": 0.0396750981745957,\u003cbr\u003e \"net_profit\": 504.2180799999836,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 20,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.0,\u003cbr\u003e \"InpAtrPeriod\": 22,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4091915308018659,\u003cbr\u003e \"sharpe\": 0.2549629150342197,\u003cbr\u003e \"total_trades\": 1744,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.41 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.893348623853211\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 228,\u003cbr\u003e \"values\": [\u003cbr\u003e 632.0640399999847\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.91999999999689,\u003cbr\u003e \"max_equity_dd_pct\": 0.034272513011423186,\u003cbr\u003e \"net_profit\": 689.9840399999816,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 19,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 21,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.9000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 23,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7184190666583168,\u003cbr\u003e \"sharpe\": 0.3543809108262284,\u003cbr\u003e \"total_trades\": 1739,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9166187464059804\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 229,\u003cbr\u003e \"values\": [\u003cbr\u003e 646.809999999994\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.95000000000027,\u003cbr\u003e \"max_equity_dd_pct\": 0.02019919560198981,\u003cbr\u003e \"net_profit\": 680.7599999999943,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 3.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 350.0,\u003cbr\u003e \"InpTrailStepPoints\": 120.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 9,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.73225983413469,\u003cbr\u003e \"sharpe\": 0.387063173406479,\u003cbr\u003e \"total_trades\": 1893,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9249867934495509\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 230,\u003cbr\u003e \"values\": [\u003cbr\u003e 659.7399999999898\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.95000000000027,\u003cbr\u003e \"max_equity_dd_pct\": 0.020044990523649824,\u003cbr\u003e \"net_profit\": 693.68999999999,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7083746055735323,\u003cbr\u003e \"sharpe\": 0.38576342116060386,\u003cbr\u003e \"total_trades\": 1995,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.924812030075188\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 231,\u003cbr\u003e \"values\": [\u003cbr\u003e 659.7399999999898\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.95000000000027,\u003cbr\u003e \"max_equity_dd_pct\": 0.020044990523649824,\u003cbr\u003e \"net_profit\": 693.68999999999,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7083746055735323,\u003cbr\u003e \"sharpe\": 0.38576342116060386,\u003cbr\u003e \"total_trades\": 1995,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.924812030075188\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 232,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.03999999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.95000000000027,\u003cbr\u003e \"max_equity_dd_pct\": 0.020268777724046394,\u003cbr\u003e \"net_profit\": 674.9899999999902,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.6,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6772520217526465,\u003cbr\u003e \"sharpe\": 0.3745935190735758,\u003cbr\u003e \"total_trades\": 2003,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9236145781328008\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 233,\u003cbr\u003e \"values\": [\u003cbr\u003e 674.989999999988\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.000000000000455,\u003cbr\u003e \"max_equity_dd_pct\": 0.020467955952959194,\u003cbr\u003e \"net_profit\": 709.9899999999884,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 185,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7352380755131112,\u003cbr\u003e \"sharpe\": 0.38972726272747066,\u003cbr\u003e \"total_trades\": 1987,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9285354806240563\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 234,\u003cbr\u003e \"values\": [\u003cbr\u003e 631.2699999999859\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.000000000000455,\u003cbr\u003e \"max_equity_dd_pct\": 0.02100499918980762,\u003cbr\u003e \"net_profit\": 666.2699999999863,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 22.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.7,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 340.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6644891690269958,\u003cbr\u003e \"sharpe\": 0.36434196355672027,\u003cbr\u003e \"total_trades\": 1986,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9259818731117825\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 235,\u003cbr\u003e \"values\": [\u003cbr\u003e 657.4999999999909\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.909999999999854,\u003cbr\u003e \"max_equity_dd_pct\": 0.019468649617548427,\u003cbr\u003e \"net_profit\": 690.4099999999908,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 20,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 105,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.69036857788532,\u003cbr\u003e \"sharpe\": 0.3816364704771256,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9203980099502488\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 236,\u003cbr\u003e \"values\": [\u003cbr\u003e 662.0799999999908\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.909999999999854,\u003cbr\u003e \"max_equity_dd_pct\": 0.019416043752470538,\u003cbr\u003e \"net_profit\": 694.9899999999907,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6973050527752067,\u003cbr\u003e \"sharpe\": 0.38428039220805366,\u003cbr\u003e \"total_trades\": 2012,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9209741550695825\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 237,\u003cbr\u003e \"values\": [\u003cbr\u003e 662.0799999999908\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.909999999999854,\u003cbr\u003e \"max_equity_dd_pct\": 0.019416043752470538,\u003cbr\u003e \"net_profit\": 694.9899999999907,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 24,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 25.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 40,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6973050527752067,\u003cbr\u003e \"sharpe\": 0.38428039220805366,\u003cbr\u003e \"total_trades\": 2012,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9209741550695825\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 238,\u003cbr\u003e \"values\": [\u003cbr\u003e 662.1999999999862\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.0194840818060089,\u003cbr\u003e \"net_profit\": 695.2299999999864,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6971681273941461,\u003cbr\u003e \"sharpe\": 0.38389773013154105,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 239,\u003cbr\u003e \"values\": [\u003cbr\u003e 660.6599999999853\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.019501797849665808,\u003cbr\u003e \"net_profit\": 693.6899999999855,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 110.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.69562383425923,\u003cbr\u003e \"sharpe\": 0.38321546496388,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 240,\u003cbr\u003e \"values\": [\u003cbr\u003e 671.0999999999863\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.01938232411846541,\u003cbr\u003e \"net_profit\": 704.1299999999865,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7060929383686554,\u003cbr\u003e \"sharpe\": 0.3880456419827778,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 241,\u003cbr\u003e \"values\": [\u003cbr\u003e 671.0999999999863\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.01938232411846541,\u003cbr\u003e \"net_profit\": 704.1299999999865,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7060929383686554,\u003cbr\u003e \"sharpe\": 0.3880456419827778,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 242,\u003cbr\u003e \"values\": [\u003cbr\u003e 673.3499999999872\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.019356766956950062,\u003cbr\u003e \"net_profit\": 706.3799999999874,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.708349210806032,\u003cbr\u003e \"sharpe\": 0.38903702815830793,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 243,\u003cbr\u003e \"values\": [\u003cbr\u003e 671.0999999999863\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.01938232411846541,\u003cbr\u003e \"net_profit\": 704.1299999999865,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7060929383686554,\u003cbr\u003e \"sharpe\": 0.3880456419827778,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 244,\u003cbr\u003e \"values\": [\u003cbr\u003e 637.621779999978\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.100000000000364,\u003cbr\u003e \"max_equity_dd_pct\": 0.01981179655178781,\u003cbr\u003e \"net_profit\": 670.7217799999784,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.1,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7107856540792632,\u003cbr\u003e \"sharpe\": 0.3721307440067888,\u003cbr\u003e \"total_trades\": 1944,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9202674897119342\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 245,\u003cbr\u003e \"values\": [\u003cbr\u003e 671.0999999999863\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.01938232411846541,\u003cbr\u003e \"net_profit\": 704.1299999999865,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7060929383686554,\u003cbr\u003e \"sharpe\": 0.3880456419827778,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 246,\u003cbr\u003e \"values\": [\u003cbr\u003e 672.2899999999868\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.01936879881781745,\u003cbr\u003e \"net_profit\": 705.319999999987,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7072862557910902,\u003cbr\u003e \"sharpe\": 0.38883109533179583,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 247,\u003cbr\u003e \"values\": [\u003cbr\u003e 635.2161599999797\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.01979923634291512,\u003cbr\u003e \"net_profit\": 668.2461599999799,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.708067898618276,\u003cbr\u003e \"sharpe\": 0.37149547712664543,\u003cbr\u003e \"total_trades\": 1946,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.920349434737924\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 248,\u003cbr\u003e \"values\": [\u003cbr\u003e 672.2899999999868\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.01936879881781745,\u003cbr\u003e \"net_profit\": 705.319999999987,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7072862557910902,\u003cbr\u003e \"sharpe\": 0.38883109533179583,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 249,\u003cbr\u003e \"values\": [\u003cbr\u003e 674.4556199999847\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.100000000000364,\u003cbr\u003e \"max_equity_dd_pct\": 0.0193844344584223,\u003cbr\u003e \"net_profit\": 707.5556199999851,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7093613845276685,\u003cbr\u003e \"sharpe\": 0.3897382677481275,\u003cbr\u003e \"total_trades\": 2009,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208561473369836\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 250,\u003cbr\u003e \"values\": [\u003cbr\u003e 672.2899999999868\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.01936879881781745,\u003cbr\u003e \"net_profit\": 705.319999999987,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7072862557910902,\u003cbr\u003e \"sharpe\": 0.38883109533179583,\u003cbr\u003e \"total_trades\": 2010,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9208955223880597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 251,\u003cbr\u003e \"values\": [\u003cbr\u003e 639.6717799999777\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.100000000000364,\u003cbr\u003e \"max_equity_dd_pct\": 0.01978751697975249,\u003cbr\u003e \"net_profit\": 672.7717799999781,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7129581056595031,\u003cbr\u003e \"sharpe\": 0.3736984094416922,\u003cbr\u003e \"total_trades\": 1944,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9202674897119342\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 252,\u003cbr\u003e \"values\": [\u003cbr\u003e 651.9099999999821\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0300000000002,\u003cbr\u003e \"max_equity_dd_pct\": 0.0196030719194752,\u003cbr\u003e \"net_profit\": 684.9399999999823,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 190,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.635138769113775,\u003cbr\u003e \"sharpe\": 0.36366788330757166,\u003cbr\u003e \"total_trades\": 2089,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9181426519865965\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 253,\u003cbr\u003e \"values\": [\u003cbr\u003e 692.2156199999881\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.05000000000018,\u003cbr\u003e \"max_equity_dd_pct\": 0.01858762340804568,\u003cbr\u003e \"net_profit\": 724.2656199999883,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7431990772770554,\u003cbr\u003e \"sharpe\": 0.40345851437618385,\u003cbr\u003e \"total_trades\": 2011,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9179512680258578\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 254,\u003cbr\u003e \"values\": [\u003cbr\u003e 619.8617799999832\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.32999999999947,\u003cbr\u003e \"max_equity_dd_pct\": 0.02134495858842402,\u003cbr\u003e \"net_profit\": 655.1917799999827,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 19,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 27.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 10,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6952194721447977,\u003cbr\u003e \"sharpe\": 0.3684182960763705,\u003cbr\u003e \"total_trades\": 1949,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9158542842483325\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 255,\u003cbr\u003e \"values\": [\u003cbr\u003e 684.2640399999837\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.00999999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.026591163559270763,\u003cbr\u003e \"net_profit\": 730.2740399999834,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6762735935546467,\u003cbr\u003e \"sharpe\": 0.3803812834153004,\u003cbr\u003e \"total_trades\": 2144,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.917910447761194\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 256,\u003cbr\u003e \"values\": [\u003cbr\u003e 684.2640399999837\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.00999999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.026591163559270763,\u003cbr\u003e \"net_profit\": 730.2740399999834,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.5,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6762735935546467,\u003cbr\u003e \"sharpe\": 0.3803812834153004,\u003cbr\u003e \"total_trades\": 2144,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.917910447761194\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 257,\u003cbr\u003e \"values\": [\u003cbr\u003e 674.2240399999814\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.29999999999973,\u003cbr\u003e \"max_equity_dd_pct\": 0.024074276452576076,\u003cbr\u003e \"net_profit\": 715.5240399999811,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6605467352270367,\u003cbr\u003e \"sharpe\": 0.37608842170407786,\u003cbr\u003e \"total_trades\": 2135,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9147540983606557\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 258,\u003cbr\u003e \"values\": [\u003cbr\u003e 671.3340399999838\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.23999999999978,\u003cbr\u003e \"max_equity_dd_pct\": 0.02408071069441189,\u003cbr\u003e \"net_profit\": 712.5740399999836,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6551742260552837,\u003cbr\u003e \"sharpe\": 0.37470621423767114,\u003cbr\u003e \"total_trades\": 2136,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9138576779026217\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 259,\u003cbr\u003e \"values\": [\u003cbr\u003e 686.5540399999836\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.58999999999969,\u003cbr\u003e \"max_equity_dd_pct\": 0.02406628095653421,\u003cbr\u003e \"net_profit\": 728.1440399999833,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.678561547708898,\u003cbr\u003e \"sharpe\": 0.3818617658404983,\u003cbr\u003e \"total_trades\": 2133,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9146741678387248\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 260,\u003cbr\u003e \"values\": [\u003cbr\u003e 612.5421199999785\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.499999999999545,\u003cbr\u003e \"max_equity_dd_pct\": 0.024461512714925162,\u003cbr\u003e \"net_profit\": 653.042119999978,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.628166717968432,\u003cbr\u003e \"sharpe\": 0.3529837078389122,\u003cbr\u003e \"total_trades\": 2089,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9143130684538057\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 261,\u003cbr\u003e \"values\": [\u003cbr\u003e 681.9840399999734\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.69000000000051,\u003cbr\u003e \"max_equity_dd_pct\": 0.024186707598149556,\u003cbr\u003e \"net_profit\": 723.674039999974,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.4000000000000004,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.668070529804359,\u003cbr\u003e \"sharpe\": 0.38003521492716474,\u003cbr\u003e \"total_trades\": 2135,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9147540983606557\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 262,\u003cbr\u003e \"values\": [\u003cbr\u003e 703.26403999998\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.50000000000091,\u003cbr\u003e \"max_equity_dd_pct\": 0.025461102861460288,\u003cbr\u003e \"net_profit\": 747.7640399999809,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.707138909641102,\u003cbr\u003e \"sharpe\": 0.39760903316896834,\u003cbr\u003e \"total_trades\": 2152,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.912639405204461\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 263,\u003cbr\u003e \"values\": [\u003cbr\u003e 708.6240399999729\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.08999999999969,\u003cbr\u003e \"max_equity_dd_pct\": 0.02115108866461105,\u003cbr\u003e \"net_profit\": 745.7140399999726,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.705353701216374,\u003cbr\u003e \"sharpe\": 0.40087716469392387,\u003cbr\u003e \"total_trades\": 2143,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9080727951469902\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 264,\u003cbr\u003e \"values\": [\u003cbr\u003e 640.4321199999697\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.93999999999869,\u003cbr\u003e \"max_equity_dd_pct\": 0.025508323138914463,\u003cbr\u003e \"net_profit\": 683.3721199999684,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6704064590813388,\u003cbr\u003e \"sharpe\": 0.3711808463609977,\u003cbr\u003e \"total_trades\": 2090,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9119617224880383\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 265,\u003cbr\u003e \"values\": [\u003cbr\u003e 718.594039999974\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.54999999999927,\u003cbr\u003e \"max_equity_dd_pct\": 0.02073213019137915,\u003cbr\u003e \"net_profit\": 755.1440399999733,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7195891405646744,\u003cbr\u003e \"sharpe\": 0.40616355055511794,\u003cbr\u003e \"total_trades\": 2147,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9091755938518864\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 266,\u003cbr\u003e \"values\": [\u003cbr\u003e 658.0821199999702\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.76999999999998,\u003cbr\u003e \"max_equity_dd_pct\": 0.023405102625460826,\u003cbr\u003e \"net_profit\": 697.8521199999702,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6969669719456022,\u003cbr\u003e \"sharpe\": 0.3860614205868306,\u003cbr\u003e \"total_trades\": 2098,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9099142040038132\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 267,\u003cbr\u003e \"values\": [\u003cbr\u003e 725.5140399999773\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.95999999999958,\u003cbr\u003e \"max_equity_dd_pct\": 0.021503987040868058,\u003cbr\u003e \"net_profit\": 763.4740399999769,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7381767236794827,\u003cbr\u003e \"sharpe\": 0.41357765723997136,\u003cbr\u003e \"total_trades\": 2133,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9095171120487576\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 268,\u003cbr\u003e \"values\": [\u003cbr\u003e 693.6940399999799\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.44000000000051,\u003cbr\u003e \"max_equity_dd_pct\": 0.024445117152360533,\u003cbr\u003e \"net_profit\": 736.1340399999804,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.3,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6937853803814964,\u003cbr\u003e \"sharpe\": 0.3904534239567018,\u003cbr\u003e \"total_trades\": 2136,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9119850187265918\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 269,\u003cbr\u003e \"values\": [\u003cbr\u003e 723.0140399999782\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.25999999999976,\u003cbr\u003e \"max_equity_dd_pct\": 0.021145775983124865,\u003cbr\u003e \"net_profit\": 760.274039999978,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7318278899188346,\u003cbr\u003e \"sharpe\": 0.4111398606290364,\u003cbr\u003e \"total_trades\": 2138,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9092609915809168\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 270,\u003cbr\u003e \"values\": [\u003cbr\u003e 426.5599999999931\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 61.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.68000000000029,\u003cbr\u003e \"max_equity_dd_pct\": 0.02639840572192983,\u003cbr\u003e \"net_profit\": 465.2399999999934,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 61.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5463962323980818,\u003cbr\u003e \"sharpe\": 0.2873800707462657,\u003cbr\u003e \"total_trades\": 1722,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9065040650406504\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 271,\u003cbr\u003e \"values\": [\u003cbr\u003e 620.7721199999799\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.26999999999998,\u003cbr\u003e \"max_equity_dd_pct\": 0.023051826698547554,\u003cbr\u003e \"net_profit\": 659.0421199999798,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 100.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6403876283851264,\u003cbr\u003e \"sharpe\": 0.36986698390667655,\u003cbr\u003e \"total_trades\": 2095,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9040572792362769\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 272,\u003cbr\u003e \"values\": [\u003cbr\u003e 708.6240399999729\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.08999999999969,\u003cbr\u003e \"max_equity_dd_pct\": 0.02115108866461105,\u003cbr\u003e \"net_profit\": 745.7140399999726,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.705353701216374,\u003cbr\u003e \"sharpe\": 0.40087716469392387,\u003cbr\u003e \"total_trades\": 2143,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9080727951469902\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 273,\u003cbr\u003e \"values\": [\u003cbr\u003e 649.5421199999707\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.36000000000013,\u003cbr\u003e \"max_equity_dd_pct\": 0.022651419246049173,\u003cbr\u003e \"net_profit\": 687.9021199999709,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.3000000000000003,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6766893770227096,\u003cbr\u003e \"sharpe\": 0.3838607337958217,\u003cbr\u003e \"total_trades\": 2107,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9055529188419554\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 274,\u003cbr\u003e \"values\": [\u003cbr\u003e 707.554039999975\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.08999999999969,\u003cbr\u003e \"max_equity_dd_pct\": 0.021164002566293746,\u003cbr\u003e \"net_profit\": 744.6440399999747,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7043416129093065,\u003cbr\u003e \"sharpe\": 0.4006987142870508,\u003cbr\u003e \"total_trades\": 2143,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9080727951469902\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 275,\u003cbr\u003e \"values\": [\u003cbr\u003e 707.554039999975\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.08999999999969,\u003cbr\u003e \"max_equity_dd_pct\": 0.021164002566293746,\u003cbr\u003e \"net_profit\": 744.6440399999747,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 21,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7043416129093065,\u003cbr\u003e \"sharpe\": 0.4006987142870508,\u003cbr\u003e \"total_trades\": 2143,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9080727951469902\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 276,\u003cbr\u003e \"values\": [\u003cbr\u003e 715.2240399999746\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.73999999999978,\u003cbr\u003e \"max_equity_dd_pct\": 0.02087708723424431,\u003cbr\u003e \"net_profit\": 751.9640399999744,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7160948490129193,\u003cbr\u003e \"sharpe\": 0.40482159071174206,\u003cbr\u003e \"total_trades\": 2149,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9092601209865053\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 277,\u003cbr\u003e \"values\": [\u003cbr\u003e 638.4621199999694\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.36999999999989,\u003cbr\u003e \"max_equity_dd_pct\": 0.02344649659553566,\u003cbr\u003e \"net_profit\": 677.8321199999693,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 90,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.669001302802973,\u003cbr\u003e \"sharpe\": 0.37579792785468386,\u003cbr\u003e \"total_trades\": 2090,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9090909090909091\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 278,\u003cbr\u003e \"values\": [\u003cbr\u003e 725.4440399999771\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.24000000000024,\u003cbr\u003e \"max_equity_dd_pct\": 0.020484482428011142,\u003cbr\u003e \"net_profit\": 761.6840399999774,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7253511984686831,\u003cbr\u003e \"sharpe\": 0.40920597286345023,\u003cbr\u003e \"total_trades\": 2147,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9091755938518864\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 279,\u003cbr\u003e \"values\": [\u003cbr\u003e 725.4440399999771\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.24000000000024,\u003cbr\u003e \"max_equity_dd_pct\": 0.020484482428011142,\u003cbr\u003e \"net_profit\": 761.6840399999774,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7253511984686831,\u003cbr\u003e \"sharpe\": 0.40920597286345023,\u003cbr\u003e \"total_trades\": 2147,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9091755938518864\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 280,\u003cbr\u003e \"values\": [\u003cbr\u003e 665.792119999973\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.320000000000164,\u003cbr\u003e \"max_equity_dd_pct\": 0.023047766813246665,\u003cbr\u003e \"net_profit\": 705.1121199999732,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7039295184090495,\u003cbr\u003e \"sharpe\": 0.3892852613929353,\u003cbr\u003e \"total_trades\": 2098,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9099142040038132\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 281,\u003cbr\u003e \"values\": [\u003cbr\u003e 715.504039999973\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.470000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.023521550584175512,\u003cbr\u003e \"net_profit\": 756.9740399999732,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6812711858304905,\u003cbr\u003e \"sharpe\": 0.40012361111169664,\u003cbr\u003e \"total_trades\": 2208,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.907608695652174\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 282,\u003cbr\u003e \"values\": [\u003cbr\u003e 713.5540399999722\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.470000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.02354759490759659,\u003cbr\u003e \"net_profit\": 755.0240399999725,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6795161998703774,\u003cbr\u003e \"sharpe\": 0.39891444528068365,\u003cbr\u003e \"total_trades\": 2208,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.907608695652174\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 283,\u003cbr\u003e \"values\": [\u003cbr\u003e 648.8361599999919\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.759999999998854,\u003cbr\u003e \"max_equity_dd_pct\": 0.023516383537925314,\u003cbr\u003e \"net_profit\": 688.5961599999907,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.653974737401934,\u003cbr\u003e \"sharpe\": 0.3710726381708653,\u003cbr\u003e \"total_trades\": 2151,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9088795908879591\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 284,\u003cbr\u003e \"values\": [\u003cbr\u003e 732.3640399999781\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.36000000000013,\u003cbr\u003e \"max_equity_dd_pct\": 0.021663454684898612,\u003cbr\u003e \"net_profit\": 770.7240399999782,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6973679095901906,\u003cbr\u003e \"sharpe\": 0.4113083150210808,\u003cbr\u003e \"total_trades\": 2207,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9039420027186226\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 285,\u003cbr\u003e \"values\": [\u003cbr\u003e 734.2940399999784\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.36000000000013,\u003cbr\u003e \"max_equity_dd_pct\": 0.021639868318580988,\u003cbr\u003e \"net_profit\": 772.6540399999785,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6991142156552113,\u003cbr\u003e \"sharpe\": 0.41250496102408196,\u003cbr\u003e \"total_trades\": 2207,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9039420027186226\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 286,\u003cbr\u003e \"values\": [\u003cbr\u003e 728.5440399999788\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.36000000000013,\u003cbr\u003e \"max_equity_dd_pct\": 0.02171029050338273,\u003cbr\u003e \"net_profit\": 766.904039999979,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.693911490331964,\u003cbr\u003e \"sharpe\": 0.40949783720094607,\u003cbr\u003e \"total_trades\": 2207,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9039420027186226\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 287,\u003cbr\u003e \"values\": [\u003cbr\u003e -999784.53046\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 180.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 107.07000000000426,\u003cbr\u003e \"max_equity_dd_pct\": 0.07876561314759842,\u003cbr\u003e \"net_profit\": 322.5395399999747,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 180.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.1289913220958196,\u003cbr\u003e \"sharpe\": 0.12431505242255064,\u003cbr\u003e \"total_trades\": 1781,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.13 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.751263335204941\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 288,\u003cbr\u003e \"values\": [\u003cbr\u003e 733.7140399999726\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.14000000000078,\u003cbr\u003e \"max_equity_dd_pct\": 0.02097293123040301,\u003cbr\u003e \"net_profit\": 770.8540399999733,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.700228948276779,\u003cbr\u003e \"sharpe\": 0.4077250294775756,\u003cbr\u003e \"total_trades\": 2198,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9076433121019108\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 289,\u003cbr\u003e \"values\": [\u003cbr\u003e 405.93999999996913\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 65.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.3100000000004,\u003cbr\u003e \"max_equity_dd_pct\": 0.025851377100295298,\u003cbr\u003e \"net_profit\": 443.24999999996953,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 65.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5272015795232534,\u003cbr\u003e \"sharpe\": 0.27574131532189683,\u003cbr\u003e \"total_trades\": 1638,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9047619047619048\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 290,\u003cbr\u003e \"values\": [\u003cbr\u003e 718.8040399999772\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.36000000000013,\u003cbr\u003e \"max_equity_dd_pct\": 0.021777092002491585,\u003cbr\u003e \"net_profit\": 757.1640399999774,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 30.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 35,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6790769782688466,\u003cbr\u003e \"sharpe\": 0.40383697794405915,\u003cbr\u003e \"total_trades\": 2217,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9039242219215156\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 291,\u003cbr\u003e \"values\": [\u003cbr\u003e 716.6440400000024\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.82999999999993,\u003cbr\u003e \"max_equity_dd_pct\": 0.02315972843252978,\u003cbr\u003e \"net_profit\": 757.4740400000023,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6793550076682358,\u003cbr\u003e \"sharpe\": 0.39850496016831977,\u003cbr\u003e \"total_trades\": 2216,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9038808664259927\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 292,\u003cbr\u003e \"values\": [\u003cbr\u003e 739.3940400000006\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.340000000000146,\u003cbr\u003e \"max_equity_dd_pct\": 0.019336739257258925,\u003cbr\u003e \"net_profit\": 773.7340400000007,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7028450847519232,\u003cbr\u003e \"sharpe\": 0.4039176369218729,\u003cbr\u003e \"total_trades\": 2197,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9076012744651798\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 293,\u003cbr\u003e \"values\": [\u003cbr\u003e 660.7540400000048\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.80000000000109,\u003cbr\u003e \"max_equity_dd_pct\": 0.023156443934491226,\u003cbr\u003e \"net_profit\": 700.5540400000059,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6379924958563366,\u003cbr\u003e \"sharpe\": 0.3895760405740098,\u003cbr\u003e \"total_trades\": 2214,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9060523938572719\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 294,\u003cbr\u003e \"values\": [\u003cbr\u003e 708.3840400000058\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.99999999999818,\u003cbr\u003e \"max_equity_dd_pct\": 0.023436820653741693,\u003cbr\u003e \"net_profit\": 749.384040000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.668490058072639,\u003cbr\u003e \"sharpe\": 0.396269985623567,\u003cbr\u003e \"total_trades\": 2210,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8986425339366516\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 295,\u003cbr\u003e \"values\": [\u003cbr\u003e 601.4561599999963\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.79999999999973,\u003cbr\u003e \"max_equity_dd_pct\": 0.022453589650496077,\u003cbr\u003e \"net_profit\": 638.256159999996,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5887559392055894,\u003cbr\u003e \"sharpe\": 0.34701537381264647,\u003cbr\u003e \"total_trades\": 2145,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8979020979020979\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 296,\u003cbr\u003e \"values\": [\u003cbr\u003e 682.6236999999973\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.36000000000058,\u003cbr\u003e \"max_equity_dd_pct\": 0.02399094608609155,\u003cbr\u003e \"net_profit\": 723.9836999999978,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6132262254843954,\u003cbr\u003e \"sharpe\": 0.3674569174286764,\u003cbr\u003e \"total_trades\": 2237,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8980777827447475\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 297,\u003cbr\u003e \"values\": [\u003cbr\u003e 735.6040400000088\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.95999999999867,\u003cbr\u003e \"max_equity_dd_pct\": 0.023055740788268178,\u003cbr\u003e \"net_profit\": 776.5640400000075,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6644796180306065,\u003cbr\u003e \"sharpe\": 0.4028182218439981,\u003cbr\u003e \"total_trades\": 2275,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9081318681318681\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 298,\u003cbr\u003e \"values\": [\u003cbr\u003e 418.36403999999715\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 62.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.99999999999909,\u003cbr\u003e \"max_equity_dd_pct\": 0.024753087266926085,\u003cbr\u003e \"net_profit\": 454.36403999999624,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 18,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 62.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5343824712440868,\u003cbr\u003e \"sharpe\": 0.2782856098014545,\u003cbr\u003e \"total_trades\": 1715,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9072886297376094\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 299,\u003cbr\u003e \"values\": [\u003cbr\u003e 737.9280800000155\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.61999999999898,\u003cbr\u003e \"max_equity_dd_pct\": 0.02499120547045423,\u003cbr\u003e \"net_profit\": 782.5480800000145,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6634405907437848,\u003cbr\u003e \"sharpe\": 0.4167308549268992,\u003cbr\u003e \"total_trades\": 2288,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.902972027972028\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 300,\u003cbr\u003e \"values\": [\u003cbr\u003e 738.2280800000152\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.61999999999898,\u003cbr\u003e \"max_equity_dd_pct\": 0.024987006980367692,\u003cbr\u003e \"net_profit\": 782.8480800000142,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6636949293362748,\u003cbr\u003e \"sharpe\": 0.4168057151539455,\u003cbr\u003e \"total_trades\": 2289,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9030144167758847\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 301,\u003cbr\u003e \"values\": [\u003cbr\u003e -1000003.25866\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 210.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 175.62977999998975,\u003cbr\u003e \"max_equity_dd_pct\": 0.14072722903900098,\u003cbr\u003e \"net_profit\": 172.3711199999866,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 210.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.0602273208975037,\u003cbr\u003e \"sharpe\": 0.06533269025069673,\u003cbr\u003e \"total_trades\": 1776,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.06 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7212837837837838\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 302,\u003cbr\u003e \"values\": [\u003cbr\u003e 728.9380800000102\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.529999999998836,\u003cbr\u003e \"max_equity_dd_pct\": 0.019554786497521674,\u003cbr\u003e \"net_profit\": 763.4680800000091,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6421310052482923,\u003cbr\u003e \"sharpe\": 0.4029293136506475,\u003cbr\u003e \"total_trades\": 2286,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9068241469816273\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 303,\u003cbr\u003e \"values\": [\u003cbr\u003e 750.6080800000158\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.24999999999909,\u003cbr\u003e \"max_equity_dd_pct\": 0.02355127495509745,\u003cbr\u003e \"net_profit\": 792.8580800000149,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.677720195915871,\u003cbr\u003e \"sharpe\": 0.4243644442140266,\u003cbr\u003e \"total_trades\": 2294,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9001743679163035\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 304,\u003cbr\u003e \"values\": [\u003cbr\u003e 683.5340400000086\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.61000000000058,\u003cbr\u003e \"max_equity_dd_pct\": 0.021654966382579376,\u003cbr\u003e \"net_profit\": 721.1440400000092,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6685616650442805,\u003cbr\u003e \"sharpe\": 0.4024110700286253,\u003cbr\u003e \"total_trades\": 2211,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9032112166440525\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 305,\u003cbr\u003e \"values\": [\u003cbr\u003e 723.8180800000044\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.819999999999254,\u003cbr\u003e \"max_equity_dd_pct\": 0.02526325643443031,\u003cbr\u003e \"net_profit\": 768.6380800000037,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.658548523351359,\u003cbr\u003e \"sharpe\": 0.4070488836130032,\u003cbr\u003e \"total_trades\": 2286,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9041994750656168\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 306,\u003cbr\u003e \"values\": [\u003cbr\u003e 683.188080000008\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.66999999999916,\u003cbr\u003e \"max_equity_dd_pct\": 0.025764840271140343,\u003cbr\u003e \"net_profit\": 727.8580800000071,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6234971303260377,\u003cbr\u003e \"sharpe\": 0.39048728604442623,\u003cbr\u003e \"total_trades\": 2253,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.902352418996893\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 307,\u003cbr\u003e \"values\": [\u003cbr\u003e 706.1680799999843\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 51.0900000000006,\u003cbr\u003e \"max_equity_dd_pct\": 0.028955558222583305,\u003cbr\u003e \"net_profit\": 757.258079999985,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6066509220835299,\u003cbr\u003e \"sharpe\": 0.3846033176212734,\u003cbr\u003e \"total_trades\": 2361,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9038542990258365\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 308,\u003cbr\u003e \"values\": [\u003cbr\u003e -999520.71068\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.08000000000402,\u003cbr\u003e \"max_equity_dd_pct\": 0.03696677339883705,\u003cbr\u003e \"net_profit\": 536.3693199999842,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4233017219453081,\u003cbr\u003e \"sharpe\": 0.2582854109758908,\u003cbr\u003e \"total_trades\": 2105,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.42 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8907363420427553\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 309,\u003cbr\u003e \"values\": [\u003cbr\u003e 733.3280800000106\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.569999999999254,\u003cbr\u003e \"max_equity_dd_pct\": 0.025022483743076446,\u003cbr\u003e \"net_profit\": 777.8980800000098,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6655755501557317,\u003cbr\u003e \"sharpe\": 0.415066567582767,\u003cbr\u003e \"total_trades\": 2286,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9037620297462817\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 310,\u003cbr\u003e \"values\": [\u003cbr\u003e 680.2137000000157\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 52.39999999999782,\u003cbr\u003e \"max_equity_dd_pct\": 0.030243325445249224,\u003cbr\u003e \"net_profit\": 732.6137000000135,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.530800880373974,\u003cbr\u003e \"sharpe\": 0.3575725310980902,\u003cbr\u003e \"total_trades\": 2311,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8896581566421462\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 311,\u003cbr\u003e \"values\": [\u003cbr\u003e -999412.09226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.69999999999936,\u003cbr\u003e \"max_equity_dd_pct\": 0.03094090108472166,\u003cbr\u003e \"net_profit\": 638.6077400000016,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.476610507165501,\u003cbr\u003e \"sharpe\": 0.30859361180263534,\u003cbr\u003e \"total_trades\": 2195,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.48 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8838268792710706\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 312,\u003cbr\u003e \"values\": [\u003cbr\u003e 744.8380800000126\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.529999999998836,\u003cbr\u003e \"max_equity_dd_pct\": 0.019380279175698987,\u003cbr\u003e \"net_profit\": 779.3680800000114,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.2,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6608566558978504,\u003cbr\u003e \"sharpe\": 0.4122663327992482,\u003cbr\u003e \"total_trades\": 2281,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9070583077597545\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 313,\u003cbr\u003e \"values\": [\u003cbr\u003e 673.1040400000065\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.720000000001164,\u003cbr\u003e \"max_equity_dd_pct\": 0.022957360736731623,\u003cbr\u003e \"net_profit\": 712.8240400000077,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 23,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6442966484688637,\u003cbr\u003e \"sharpe\": 0.3935337619199954,\u003cbr\u003e \"total_trades\": 2209,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9049343594386601\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 314,\u003cbr\u003e \"values\": [\u003cbr\u003e 642.3837000000134\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.83999999999651,\u003cbr\u003e \"max_equity_dd_pct\": 0.03515401647856046,\u003cbr\u003e \"net_profit\": 702.2237000000099,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 22,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.1,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5198251681613273,\u003cbr\u003e \"sharpe\": 0.33110750422485097,\u003cbr\u003e \"total_trades\": 2230,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.885201793721973\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 315,\u003cbr\u003e \"values\": [\u003cbr\u003e 763.2380800000154\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 49.779999999999745,\u003cbr\u003e \"max_equity_dd_pct\": 0.027456979358969947,\u003cbr\u003e \"net_profit\": 813.0180800000152,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 54.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6601476814147942,\u003cbr\u003e \"sharpe\": 0.42601301949699905,\u003cbr\u003e \"total_trades\": 2366,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9010989010989011\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 316,\u003cbr\u003e \"values\": [\u003cbr\u003e 438.7140400000025\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 68.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.12999999999647,\u003cbr\u003e \"max_equity_dd_pct\": 0.02822791841768191,\u003cbr\u003e \"net_profit\": 480.844039999999,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 68.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.58926243550937,\u003cbr\u003e \"sharpe\": 0.3155558659100974,\u003cbr\u003e \"total_trades\": 1645,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.894224924012158\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 317,\u003cbr\u003e \"values\": [\u003cbr\u003e 751.108080000013\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.10999999999922,\u003cbr\u003e \"max_equity_dd_pct\": 0.023432351740933537,\u003cbr\u003e \"net_profit\": 793.2180800000123,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 32.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.674109646550931,\u003cbr\u003e \"sharpe\": 0.42603041908782036,\u003cbr\u003e \"total_trades\": 2308,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8999133448873483\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 318,\u003cbr\u003e \"values\": [\u003cbr\u003e 728.858080000004\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.30999999999949,\u003cbr\u003e \"max_equity_dd_pct\": 0.023801245301855484,\u003cbr\u003e \"net_profit\": 771.1680800000034,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6553706413753888,\u003cbr\u003e \"sharpe\": 0.41246371955775135,\u003cbr\u003e \"total_trades\": 2307,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8998699609882965\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 319,\u003cbr\u003e \"values\": [\u003cbr\u003e 680.4540400000046\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.80999999999949,\u003cbr\u003e \"max_equity_dd_pct\": 0.0223456412503505,\u003cbr\u003e \"net_profit\": 719.2640400000041,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6612219750317234,\u003cbr\u003e \"sharpe\": 0.39753924748527086,\u003cbr\u003e \"total_trades\": 2226,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.9025157232704403\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 320,\u003cbr\u003e \"values\": [\u003cbr\u003e 758.1380800000155\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.75999999999931,\u003cbr\u003e \"max_equity_dd_pct\": 0.022088053469621546,\u003cbr\u003e \"net_profit\": 797.8980800000148,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6799533686704438,\u003cbr\u003e \"sharpe\": 0.430308055942394,\u003cbr\u003e \"total_trades\": 2321,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8944420508401552\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 321,\u003cbr\u003e \"values\": [\u003cbr\u003e 762.7380800000163\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.75999999999931,\u003cbr\u003e \"max_equity_dd_pct\": 0.022031752232243716,\u003cbr\u003e \"net_profit\": 802.4980800000156,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 17,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 55.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6838734000306954,\u003cbr\u003e \"sharpe\": 0.43298248059587474,\u003cbr\u003e \"total_trades\": 2324,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8945783132530121\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 322,\u003cbr\u003e \"values\": [\u003cbr\u003e 845.3240400000091\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.33999999999833,\u003cbr\u003e \"max_equity_dd_pct\": 0.017121492352049725,\u003cbr\u003e \"net_profit\": 877.6640400000074,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7908735739903154,\u003cbr\u003e \"sharpe\": 0.46030336180428405,\u003cbr\u003e \"total_trades\": 2319,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8978007761966365\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 323,\u003cbr\u003e \"values\": [\u003cbr\u003e 845.3240400000091\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.33999999999833,\u003cbr\u003e \"max_equity_dd_pct\": 0.017121492352049725,\u003cbr\u003e \"net_profit\": 877.6640400000074,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7908735739903154,\u003cbr\u003e \"sharpe\": 0.46030336180428405,\u003cbr\u003e \"total_trades\": 2319,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8978007761966365\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 324,\u003cbr\u003e \"values\": [\u003cbr\u003e 858.4740400000092\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.33999999999833,\u003cbr\u003e \"max_equity_dd_pct\": 0.017003118458149134,\u003cbr\u003e \"net_profit\": 890.8140400000075,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.8074306742683233,\u003cbr\u003e \"sharpe\": 0.4668672820258996,\u003cbr\u003e \"total_trades\": 2321,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8987505385609651\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 325,\u003cbr\u003e \"values\": [\u003cbr\u003e 806.9021200000104\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.33999999999833,\u003cbr\u003e \"max_equity_dd_pct\": 0.017476998832033998,\u003cbr\u003e \"net_profit\": 839.2421200000088,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7941608187303986,\u003cbr\u003e \"sharpe\": 0.44412789233084954,\u003cbr\u003e \"total_trades\": 2256,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8993794326241135\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 326,\u003cbr\u003e \"values\": [\u003cbr\u003e 764.9033600000083\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.13999999999942,\u003cbr\u003e \"max_equity_dd_pct\": 0.021525324296553752,\u003cbr\u003e \"net_profit\": 804.0433600000077,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6694031457187515,\u003cbr\u003e \"sharpe\": 0.40196153907079535,\u003cbr\u003e \"total_trades\": 2214,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8848238482384824\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 327,\u003cbr\u003e \"values\": [\u003cbr\u003e 764.9033600000083\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.13999999999942,\u003cbr\u003e \"max_equity_dd_pct\": 0.021525324296553752,\u003cbr\u003e \"net_profit\": 804.0433600000077,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6694031457187515,\u003cbr\u003e \"sharpe\": 0.40196153907079535,\u003cbr\u003e \"total_trades\": 2214,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8848238482384824\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 328,\u003cbr\u003e \"values\": [\u003cbr\u003e -999931.59496\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 260.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 139.82977999999866,\u003cbr\u003e \"max_equity_dd_pct\": 0.11106109043116043,\u003cbr\u003e \"net_profit\": 208.2348199999887,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 260.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.0685125146531196,\u003cbr\u003e \"sharpe\": 0.07534159695618309,\u003cbr\u003e \"total_trades\": 1688,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.07 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.659952606635071\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 329,\u003cbr\u003e \"values\": [\u003cbr\u003e 407.9721200000048\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 42.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.379999999999654,\u003cbr\u003e \"max_equity_dd_pct\": 0.0224751526012883,\u003cbr\u003e \"net_profit\": 440.35212000000445,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 42.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5878682833218127,\u003cbr\u003e \"sharpe\": 0.28179559991935377,\u003cbr\u003e \"total_trades\": 1368,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8830409356725146\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 330,\u003cbr\u003e \"values\": [\u003cbr\u003e 764.0833600000068\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.13999999999942,\u003cbr\u003e \"max_equity_dd_pct\": 0.021535035841694007,\u003cbr\u003e \"net_profit\": 803.2233600000062,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6687204579349852,\u003cbr\u003e \"sharpe\": 0.4018375305264162,\u003cbr\u003e \"total_trades\": 2214,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8848238482384824\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 331,\u003cbr\u003e \"values\": [\u003cbr\u003e 682.4277399999991\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.49000000000024,\u003cbr\u003e \"max_equity_dd_pct\": 0.027048150731774787,\u003cbr\u003e \"net_profit\": 729.9177399999993,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6225468697144185,\u003cbr\u003e \"sharpe\": 0.3793550515441227,\u003cbr\u003e \"total_trades\": 2151,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8754067875406788\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 332,\u003cbr\u003e \"values\": [\u003cbr\u003e -999443.25226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.66000000000031,\u003cbr\u003e \"max_equity_dd_pct\": 0.02530640700093984,\u003cbr\u003e \"net_profit\": 597.4077400000026,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.453626219298301,\u003cbr\u003e \"sharpe\": 0.3020207816804473,\u003cbr\u003e \"total_trades\": 2182,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8767186067827681\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 333,\u003cbr\u003e \"values\": [\u003cbr\u003e 761.8333600000068\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.13999999999942,\u003cbr\u003e \"max_equity_dd_pct\": 0.02156172844103662,\u003cbr\u003e \"net_profit\": 800.9733600000062,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6668472292600203,\u003cbr\u003e \"sharpe\": 0.40068654730336656,\u003cbr\u003e \"total_trades\": 2205,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8843537414965986\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 334,\u003cbr\u003e \"values\": [\u003cbr\u003e -999925.70182\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 230.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 198.40539999999874,\u003cbr\u003e \"max_equity_dd_pct\": 0.15269429053875694,\u003cbr\u003e \"net_profit\": 272.7035799999943,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 230.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.0868893742196608,\u003cbr\u003e \"sharpe\": 0.09451036055144169,\u003cbr\u003e \"total_trades\": 1918,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.09 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.6819603753910324\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 335,\u003cbr\u003e \"values\": [\u003cbr\u003e -999479.00226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.02999999999929,\u003cbr\u003e \"max_equity_dd_pct\": 0.027336121223823777,\u003cbr\u003e \"net_profit\": 564.0277400000003,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4335172303940225,\u003cbr\u003e \"sharpe\": 0.2830612677257347,\u003cbr\u003e \"total_trades\": 2149,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.43 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8818054909260121\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 336,\u003cbr\u003e \"values\": [\u003cbr\u003e 723.0573999999837\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.08033999999634,\u003cbr\u003e \"max_equity_dd_pct\": 0.02374284485980459,\u003cbr\u003e \"net_profit\": 765.13773999998,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.672022125766283,\u003cbr\u003e \"sharpe\": 0.38530321461504247,\u003cbr\u003e \"total_trades\": 2136,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8848314606741573\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 337,\u003cbr\u003e \"values\": [\u003cbr\u003e 679.3533600000086\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.58999999999878,\u003cbr\u003e \"max_equity_dd_pct\": 0.024339460530115032,\u003cbr\u003e \"net_profit\": 721.9433600000074,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5819285936619774,\u003cbr\u003e \"sharpe\": 0.36436582412569773,\u003cbr\u003e \"total_trades\": 2202,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8742052679382379\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 338,\u003cbr\u003e \"values\": [\u003cbr\u003e -999391.85472\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.969999999999345,\u003cbr\u003e \"max_equity_dd_pct\": 0.022805006420236473,\u003cbr\u003e \"net_profit\": 646.1152800000054,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 4.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4848244748794583,\u003cbr\u003e \"sharpe\": 0.32599818289477434,\u003cbr\u003e \"total_trades\": 2261,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.48 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8827952233524989\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 339,\u003cbr\u003e \"values\": [\u003cbr\u003e 772.503360000005\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 30.73999999999978,\u003cbr\u003e \"max_equity_dd_pct\": 0.01691312512208906,\u003cbr\u003e \"net_profit\": 803.2433600000048,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6721675208111375,\u003cbr\u003e \"sharpe\": 0.40326605609709415,\u003cbr\u003e \"total_trades\": 2209,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8845631507469444\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 340,\u003cbr\u003e \"values\": [\u003cbr\u003e 781.3752800000093\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.04000000000042,\u003cbr\u003e \"max_equity_dd_pct\": 0.01858144246231245,\u003cbr\u003e \"net_profit\": 815.4152800000097,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.649278661261866,\u003cbr\u003e \"sharpe\": 0.3977598738852071,\u003cbr\u003e \"total_trades\": 2291,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8825840244434745\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 341,\u003cbr\u003e \"values\": [\u003cbr\u003e 611.8633600000029\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 51.07999999999856,\u003cbr\u003e \"max_equity_dd_pct\": 0.030535385011510516,\u003cbr\u003e \"net_profit\": 662.9433600000015,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.527642722597819,\u003cbr\u003e \"sharpe\": 0.33502552881358394,\u003cbr\u003e \"total_trades\": 2194,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8787602552415679\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 342,\u003cbr\u003e \"values\": [\u003cbr\u003e 649.5230200000182\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.6003399999945,\u003cbr\u003e \"max_equity_dd_pct\": 0.03314434340798462,\u003cbr\u003e \"net_profit\": 707.1233600000127,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5125401849832858,\u003cbr\u003e \"sharpe\": 0.34881255019867957,\u003cbr\u003e \"total_trades\": 2203,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.861552428506582\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 343,\u003cbr\u003e \"values\": [\u003cbr\u003e 744.9833600000128\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.63999999999942,\u003cbr\u003e \"max_equity_dd_pct\": 0.021524383583766623,\u003cbr\u003e \"net_profit\": 783.6233600000122,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.647882449913479,\u003cbr\u003e \"sharpe\": 0.3935855373590688,\u003cbr\u003e \"total_trades\": 2185,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8832951945080092\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 344,\u003cbr\u003e \"values\": [\u003cbr\u003e -999577.32226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 55.73999999999842,\u003cbr\u003e \"max_equity_dd_pct\": 0.03716550693704679,\u003cbr\u003e \"net_profit\": 478.4177400000002,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3273133983603778,\u003cbr\u003e \"sharpe\": 0.2344943498283603,\u003cbr\u003e \"total_trades\": 2103,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.33 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8611507370423205\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 345,\u003cbr\u003e \"values\": [\u003cbr\u003e 751.7117799999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.2199999999998,\u003cbr\u003e \"max_equity_dd_pct\": 0.01906989108394977,\u003cbr\u003e \"net_profit\": 785.9317799999997,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.683977814428789,\u003cbr\u003e \"sharpe\": 0.39260028604981995,\u003cbr\u003e \"total_trades\": 2153,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8834184858337204\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 346,\u003cbr\u003e \"values\": [\u003cbr\u003e 741.057400000011\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 52.62033999999676,\u003cbr\u003e \"max_equity_dd_pct\": 0.029205164980529705,\u003cbr\u003e \"net_profit\": 793.6777400000077,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5967410543511014,\u003cbr\u003e \"sharpe\": 0.37470547367149515,\u003cbr\u003e \"total_trades\": 2195,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8715261958997722\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 347,\u003cbr\u003e \"values\": [\u003cbr\u003e -999415.30698\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 70.72033999999576,\u003cbr\u003e \"max_equity_dd_pct\": 0.04239413338990708,\u003cbr\u003e \"net_profit\": 655.413360000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4673896468043994,\u003cbr\u003e \"sharpe\": 0.31872202000263566,\u003cbr\u003e \"total_trades\": 2169,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8658367911479945\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 348,\u003cbr\u003e \"values\": [\u003cbr\u003e -999489.6426\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 60.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 75.12033999999903,\u003cbr\u003e \"max_equity_dd_pct\": 0.04679031420463099,\u003cbr\u003e \"net_profit\": 585.4777400000029,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 60.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.442008639721392,\u003cbr\u003e \"sharpe\": 0.29618179331999833,\u003cbr\u003e \"total_trades\": 2059,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.44 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8542982030111704\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 349,\u003cbr\u003e \"values\": [\u003cbr\u003e -999461.86294\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 77.71033999999509,\u003cbr\u003e \"max_equity_dd_pct\": 0.0476774712632647,\u003cbr\u003e \"net_profit\": 615.8473999999994,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4504440416164812,\u003cbr\u003e \"sharpe\": 0.30599139698802846,\u003cbr\u003e \"total_trades\": 2098,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8636796949475691\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 350,\u003cbr\u003e \"values\": [\u003cbr\u003e 640.9114400000065\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 60.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.28033999999889,\u003cbr\u003e \"max_equity_dd_pct\": 0.027891837412191468,\u003cbr\u003e \"net_profit\": 688.1917800000053,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 60.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6133701968293062,\u003cbr\u003e \"sharpe\": 0.35272646470650326,\u003cbr\u003e \"total_trades\": 2077,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8810784785748677\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 351,\u003cbr\u003e \"values\": [\u003cbr\u003e -999502.39226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 52.05000000000018,\u003cbr\u003e \"max_equity_dd_pct\": 0.03344411248494494,\u003cbr\u003e \"net_profit\": 549.6577400000009,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4424943160829626,\u003cbr\u003e \"sharpe\": 0.283428587342046,\u003cbr\u003e \"total_trades\": 2050,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.44 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8736585365853659\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 352,\u003cbr\u003e \"values\": [\u003cbr\u003e -999418.05698\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 64.09033999999338,\u003cbr\u003e \"max_equity_dd_pct\": 0.038208067020917724,\u003cbr\u003e \"net_profit\": 646.0333600000189,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.462706758361354,\u003cbr\u003e \"sharpe\": 0.3181489983034084,\u003cbr\u003e \"total_trades\": 2161,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8583988894030541\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 353,\u003cbr\u003e \"values\": [\u003cbr\u003e 590.1437000000041\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 1.2,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.28999999999769,\u003cbr\u003e \"max_equity_dd_pct\": 0.02453201482734562,\u003cbr\u003e \"net_profit\": 630.4337000000017,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 1.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.548498767605511,\u003cbr\u003e \"sharpe\": 0.34375968427921216,\u003cbr\u003e \"total_trades\": 2114,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8826868495742668\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 354,\u003cbr\u003e \"values\": [\u003cbr\u003e 684.7914400000125\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 49.95033999999578,\u003cbr\u003e \"max_equity_dd_pct\": 0.02860628308362584,\u003cbr\u003e \"net_profit\": 734.7417800000082,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5602573148234589,\u003cbr\u003e \"sharpe\": 0.35266467337252605,\u003cbr\u003e \"total_trades\": 2116,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8747637051039697\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 355,\u003cbr\u003e \"values\": [\u003cbr\u003e -999556.87418\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 62.505959999996776,\u003cbr\u003e \"max_equity_dd_pct\": 0.04131527956824589,\u003cbr\u003e \"net_profit\": 505.63177999999766,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4193002209695997,\u003cbr\u003e \"sharpe\": 0.26598293636861703,\u003cbr\u003e \"total_trades\": 1997,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.42 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8788182273410116\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 356,\u003cbr\u003e \"values\": [\u003cbr\u003e 783.6452800000143\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.0,\u003cbr\u003e \"max_equity_dd_pct\": 0.018005284256297143,\u003cbr\u003e \"net_profit\": 816.6452800000143,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6425224836568826,\u003cbr\u003e \"sharpe\": 0.3981461123526927,\u003cbr\u003e \"total_trades\": 2292,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8878708551483421\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 357,\u003cbr\u003e \"values\": [\u003cbr\u003e -999333.11664\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.02999999999702,\u003cbr\u003e \"max_equity_dd_pct\": 0.0268532198684919,\u003cbr\u003e \"net_profit\": 712.9133600000013,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.484010754192893,\u003cbr\u003e \"sharpe\": 0.3239586186476466,\u003cbr\u003e \"total_trades\": 2353,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.48 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8750531236719082\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 358,\u003cbr\u003e \"values\": [\u003cbr\u003e 641.6652800000047\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.82000000000062,\u003cbr\u003e \"max_equity_dd_pct\": 0.020607875754845108,\u003cbr\u003e \"net_profit\": 676.4852800000053,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5082806084977889,\u003cbr\u003e \"sharpe\": 0.3443881338998008,\u003cbr\u003e \"total_trades\": 2272,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8776408450704225\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 359,\u003cbr\u003e \"values\": [\u003cbr\u003e 760.6433600000195\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.779999999999745,\u003cbr\u003e \"max_equity_dd_pct\": 0.02245541097653049,\u003cbr\u003e \"net_profit\": 801.4233600000192,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6678056529209224,\u003cbr\u003e \"sharpe\": 0.4012794130667133,\u003cbr\u003e \"total_trades\": 2206,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8902991840435177\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 360,\u003cbr\u003e \"values\": [\u003cbr\u003e 646.2730200000191\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 60.12033999999312,\u003cbr\u003e \"max_equity_dd_pct\": 0.03460893756596362,\u003cbr\u003e \"net_profit\": 706.3933600000122,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5120110632540333,\u003cbr\u003e \"sharpe\": 0.34800980552778676,\u003cbr\u003e \"total_trades\": 2203,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.861552428506582\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 361,\u003cbr\u003e \"values\": [\u003cbr\u003e -999413.05472\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.310000000000855,\u003cbr\u003e \"max_equity_dd_pct\": 0.025746733152752492,\u003cbr\u003e \"net_profit\": 629.2552800000049,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4719147637818175,\u003cbr\u003e \"sharpe\": 0.3206077150591516,\u003cbr\u003e \"total_trades\": 2249,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8759448643841707\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 362,\u003cbr\u003e \"values\": [\u003cbr\u003e 723.0374000000078\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 53.13033999999561,\u003cbr\u003e \"max_equity_dd_pct\": 0.02975226639644607,\u003cbr\u003e \"net_profit\": 776.1677400000034,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6721927386414204,\u003cbr\u003e \"sharpe\": 0.39589628398357013,\u003cbr\u003e \"total_trades\": 2120,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8886792452830189\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 363,\u003cbr\u003e \"values\": [\u003cbr\u003e 782.9052800000186\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 31.179999999998927,\u003cbr\u003e \"max_equity_dd_pct\": 0.017054231274015754,\u003cbr\u003e \"net_profit\": 814.0852800000175,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6463052408848196,\u003cbr\u003e \"sharpe\": 0.39964761390221604,\u003cbr\u003e \"total_trades\": 2295,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8823529411764706\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 364,\u003cbr\u003e \"values\": [\u003cbr\u003e 715.3974000000197\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 49.82033999999567,\u003cbr\u003e \"max_equity_dd_pct\": 0.028082546611210728,\u003cbr\u003e \"net_profit\": 765.2177400000154,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5726218966045868,\u003cbr\u003e \"sharpe\": 0.36021961243254674,\u003cbr\u003e \"total_trades\": 2181,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8707015130674003\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 365,\u003cbr\u003e \"values\": [\u003cbr\u003e -999602.55472\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 70.2700000000018,\u003cbr\u003e \"max_equity_dd_pct\": 0.04727894499500241,\u003cbr\u003e \"net_profit\": 467.71528000000035,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2779273649360523,\u003cbr\u003e \"sharpe\": 0.21674306860680234,\u003cbr\u003e \"total_trades\": 2198,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.28 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8444040036396724\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 366,\u003cbr\u003e \"values\": [\u003cbr\u003e 679.9114400000083\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 49.72033999999576,\u003cbr\u003e \"max_equity_dd_pct\": 0.028580134925592873,\u003cbr\u003e \"net_profit\": 729.631780000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6617468859843703,\u003cbr\u003e \"sharpe\": 0.38244202428844853,\u003cbr\u003e \"total_trades\": 2049,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8887262079062958\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 367,\u003cbr\u003e \"values\": [\u003cbr\u003e 651.1830200000062\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 56.32033999999885,\u003cbr\u003e \"max_equity_dd_pct\": 0.032367576950230494,\u003cbr\u003e \"net_profit\": 707.503360000005,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5125147168898148,\u003cbr\u003e \"sharpe\": 0.34657509294691846,\u003cbr\u003e \"total_trades\": 2202,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8614895549500454\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 368,\u003cbr\u003e \"values\": [\u003cbr\u003e 790.1952800000172\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 31.359999999999218,\u003cbr\u003e \"max_equity_dd_pct\": 0.017086423872941646,\u003cbr\u003e \"net_profit\": 821.5552800000164,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6565095845228572,\u003cbr\u003e \"sharpe\": 0.4017590878977682,\u003cbr\u003e \"total_trades\": 2298,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8825065274151436\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 369,\u003cbr\u003e \"values\": [\u003cbr\u003e -999349.24102\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.57033999999885,\u003cbr\u003e \"max_equity_dd_pct\": 0.03345188684843111,\u003cbr\u003e \"net_profit\": 708.3293200000162,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4701263061543508,\u003cbr\u003e \"sharpe\": 0.3315786029078608,\u003cbr\u003e \"total_trades\": 2330,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8639484978540772\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 370,\u003cbr\u003e \"values\": [\u003cbr\u003e 732.7352799999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.42000000000098,\u003cbr\u003e \"max_equity_dd_pct\": 0.02031974553474481,\u003cbr\u003e \"net_profit\": 769.1552800000009,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.592862439993083,\u003cbr\u003e \"sharpe\": 0.38443666378748054,\u003cbr\u003e \"total_trades\": 2311,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8736477715274773\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 371,\u003cbr\u003e \"values\": [\u003cbr\u003e 598.4233600000115\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.55999999999676,\u003cbr\u003e \"max_equity_dd_pct\": 0.030509599130899172,\u003cbr\u003e \"net_profit\": 648.9833600000082,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5169432700034853,\u003cbr\u003e \"sharpe\": 0.3282111202114088,\u003cbr\u003e \"total_trades\": 2177,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8778135048231511\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 372,\u003cbr\u003e \"values\": [\u003cbr\u003e 746.2033600000058\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.49999999999909,\u003cbr\u003e \"max_equity_dd_pct\": 0.019897281154792324,\u003cbr\u003e \"net_profit\": 781.7033600000049,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.53286617455866,\u003cbr\u003e \"sharpe\": 0.35993078317699034,\u003cbr\u003e \"total_trades\": 2357,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8756894357233772\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 373,\u003cbr\u003e \"values\": [\u003cbr\u003e 727.2833600000057\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.19999999999982,\u003cbr\u003e \"max_equity_dd_pct\": 0.02604425981807694,\u003cbr\u003e \"net_profit\": 773.4833600000055,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5235724211611632,\u003cbr\u003e \"sharpe\": 0.3562724016136422,\u003cbr\u003e \"total_trades\": 2369,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.86787674124103\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 374,\u003cbr\u003e \"values\": [\u003cbr\u003e 695.2030200000044\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 62.110339999997905,\u003cbr\u003e \"max_equity_dd_pct\": 0.03489926545960885,\u003cbr\u003e \"net_profit\": 757.3133600000023,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5374734376555186,\u003cbr\u003e \"sharpe\": 0.34504759208992836,\u003cbr\u003e \"total_trades\": 2258,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8737821080602303\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 375,\u003cbr\u003e \"values\": [\u003cbr\u003e 702.755280000003\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.0900000000006,\u003cbr\u003e \"max_equity_dd_pct\": 0.01989990184907942,\u003cbr\u003e \"net_profit\": 737.8452800000036,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5165288178930874,\u003cbr\u003e \"sharpe\": 0.35762911064506114,\u003cbr\u003e \"total_trades\": 2292,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8542757417102966\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 376,\u003cbr\u003e \"values\": [\u003cbr\u003e -999416.80472\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 56.210000000000946,\u003cbr\u003e \"max_equity_dd_pct\": 0.03381611426340511,\u003cbr\u003e \"net_profit\": 639.4052800000109,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4061782388902488,\u003cbr\u003e \"sharpe\": 0.2914125605297735,\u003cbr\u003e \"total_trades\": 2236,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.41 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8519677996422182\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 377,\u003cbr\u003e \"values\": [\u003cbr\u003e 729.0152799999983\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.690000000000055,\u003cbr\u003e \"max_equity_dd_pct\": 0.02399008324474595,\u003cbr\u003e \"net_profit\": 771.7052799999983,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5730050346579152,\u003cbr\u003e \"sharpe\": 0.3821111834837834,\u003cbr\u003e \"total_trades\": 2415,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.874120082815735\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 378,\u003cbr\u003e \"values\": [\u003cbr\u003e -999639.90226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 59.61000000000058,\u003cbr\u003e \"max_equity_dd_pct\": 0.041488960491276504,\u003cbr\u003e \"net_profit\": 419.70773999999653,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2676689874379252,\u003cbr\u003e \"sharpe\": 0.19896364601435054,\u003cbr\u003e \"total_trades\": 2004,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.27 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8488023952095808\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 379,\u003cbr\u003e \"values\": [\u003cbr\u003e 701.9830200000168\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 53.490339999997104,\u003cbr\u003e \"max_equity_dd_pct\": 0.03017257270669298,\u003cbr\u003e \"net_profit\": 755.4733600000139,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.556516193917924,\u003cbr\u003e \"sharpe\": 0.3653431359093628,\u003cbr\u003e \"total_trades\": 2178,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8700642791551882\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 380,\u003cbr\u003e \"values\": [\u003cbr\u003e 764.2577400000172\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.189999999998236,\u003cbr\u003e \"max_equity_dd_pct\": 0.021655310733704754,\u003cbr\u003e \"net_profit\": 803.4477400000154,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.671913687988698,\u003cbr\u003e \"sharpe\": 0.39187292653504285,\u003cbr\u003e \"total_trades\": 2225,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8898876404494382\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 381,\u003cbr\u003e \"values\": [\u003cbr\u003e -999467.41698\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 67.10033999999723,\u003cbr\u003e \"max_equity_dd_pct\": 0.04149569619456409,\u003cbr\u003e \"net_profit\": 599.6833600000008,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4201450108704083,\u003cbr\u003e \"sharpe\": 0.28779470981728544,\u003cbr\u003e \"total_trades\": 2159,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.42 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8698471514590088\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 382,\u003cbr\u003e \"values\": [\u003cbr\u003e -999653.748\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 160.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 76.48067999999193,\u003cbr\u003e \"max_equity_dd_pct\": 0.05324533709915777,\u003cbr\u003e \"net_profit\": 422.7326800000054,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 160.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.1616439522785955,\u003cbr\u003e \"sharpe\": 0.15990826465328087,\u003cbr\u003e \"total_trades\": 2134,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.16 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7549203373945642\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 383,\u003cbr\u003e \"values\": [\u003cbr\u003e 614.9130200000199\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 34,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 56.10033999999223,\u003cbr\u003e \"max_equity_dd_pct\": 0.033447145150233774,\u003cbr\u003e \"net_profit\": 671.0133600000121,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 34,\u003cbr\u003e \"InpSlowEmaPeriod\": 150,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5360110795358257,\u003cbr\u003e \"sharpe\": 0.33314140290563077,\u003cbr\u003e \"total_trades\": 2189,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8835084513476473\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 384,\u003cbr\u003e \"values\": [\u003cbr\u003e 667.7614400000045\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.69033999999829,\u003cbr\u003e \"max_equity_dd_pct\": 0.03152632015169236,\u003cbr\u003e \"net_profit\": 722.4517800000028,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6518767480373286,\u003cbr\u003e \"sharpe\": 0.3764519825137012,\u003cbr\u003e \"total_trades\": 2045,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8880195599022005\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 385,\u003cbr\u003e \"values\": [\u003cbr\u003e 661.6152800000114\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.66999999999916,\u003cbr\u003e \"max_equity_dd_pct\": 0.02241563339890591,\u003cbr\u003e \"net_profit\": 700.2852800000105,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 145,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5324356131687311,\u003cbr\u003e \"sharpe\": 0.3491032625609114,\u003cbr\u003e \"total_trades\": 2278,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8713784021071115\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 386,\u003cbr\u003e \"values\": [\u003cbr\u003e 428.25123999999687\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 140,\u003cbr\u003e \"InpRsiPeriod\": 28,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.20999999999822,\u003cbr\u003e \"max_equity_dd_pct\": 0.026719615435974547,\u003cbr\u003e \"net_profit\": 467.4612399999951,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 140,\u003cbr\u003e \"InpRsiPeriod\": 28,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6673209380932008,\u003cbr\u003e \"sharpe\": 0.3048915683738275,\u003cbr\u003e \"total_trades\": 1211,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8728323699421965\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 387,\u003cbr\u003e \"values\": [\u003cbr\u003e -999609.62226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 66.60999999999785,\u003cbr\u003e \"max_equity_dd_pct\": 0.0451208472580116,\u003cbr\u003e \"net_profit\": 456.9877400000049,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.2782607595392728,\u003cbr\u003e \"sharpe\": 0.21117515808527007,\u003cbr\u003e \"total_trades\": 2096,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.28 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8506679389312977\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 388,\u003cbr\u003e \"values\": [\u003cbr\u003e 642.8393200000022\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 1.7000000000000002,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.104379999998855,\u003cbr\u003e \"max_equity_dd_pct\": 0.027703509673006537,\u003cbr\u003e \"net_profit\": 689.9437000000011,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 1.7000000000000002,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6030921888345895,\u003cbr\u003e \"sharpe\": 0.36312552100175494,\u003cbr\u003e \"total_trades\": 2140,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8841121495327103\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 389,\u003cbr\u003e \"values\": [\u003cbr\u003e 714.5149400000155\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.230339999997796,\u003cbr\u003e \"max_equity_dd_pct\": 0.022114740765846793,\u003cbr\u003e \"net_profit\": 753.7452800000133,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 30,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5319570759506755,\u003cbr\u003e \"sharpe\": 0.357095993527377,\u003cbr\u003e \"total_trades\": 2267,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8689898544331716\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 390,\u003cbr\u003e \"values\": [\u003cbr\u003e -999500.63226\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 60\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.42000000000098,\u003cbr\u003e \"max_equity_dd_pct\": 0.02854704891058114,\u003cbr\u003e \"net_profit\": 543.7877399999974,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 155,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 3.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 60,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4112313022228422,\u003cbr\u003e \"sharpe\": 0.28080867229337697,\u003cbr\u003e \"total_trades\": 2177,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.41 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.868626550298576\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 391,\u003cbr\u003e \"values\": [\u003cbr\u003e 794.9877400000004\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.589999999999236,\u003cbr\u003e \"max_equity_dd_pct\": 0.02264044854457477,\u003cbr\u003e \"net_profit\": 836.5777399999996,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 2.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7019563185611895,\u003cbr\u003e \"sharpe\": 0.3964929510055184,\u003cbr\u003e \"total_trades\": 2334,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8868894601542416\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 392,\u003cbr\u003e \"values\": [\u003cbr\u003e 733.6452800000047\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 31.15000000000009,\u003cbr\u003e \"max_equity_dd_pct\": 0.01763218911614715,\u003cbr\u003e \"net_profit\": 764.7952800000048,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5823334592931693,\u003cbr\u003e \"sharpe\": 0.36365527780287404,\u003cbr\u003e \"total_trades\": 2391,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8879130071099958\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 393,\u003cbr\u003e \"values\": [\u003cbr\u003e -999455.2606800001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.034380000001875,\u003cbr\u003e \"max_equity_dd_pct\": 0.024525188022622733,\u003cbr\u003e \"net_profit\": 583.7736999999901,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4299553060546863,\u003cbr\u003e \"sharpe\": 0.28794425149631103,\u003cbr\u003e \"total_trades\": 2237,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.43 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8828788556101922\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 394,\u003cbr\u003e \"values\": [\u003cbr\u003e 771.1652800000038\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.569999999999254,\u003cbr\u003e \"max_equity_dd_pct\": 0.02022637522869532,\u003cbr\u003e \"net_profit\": 807.7352800000031,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6203809902246018,\u003cbr\u003e \"sharpe\": 0.3910188132434733,\u003cbr\u003e \"total_trades\": 2395,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8818371607515657\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 395,\u003cbr\u003e \"values\": [\u003cbr\u003e 478.1968600000033\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 50,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 60.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 240.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.42000000000007,\u003cbr\u003e \"max_equity_dd_pct\": 0.02504225538399692,\u003cbr\u003e \"net_profit\": 516.6168600000034,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 50,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 60.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 240.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5916575164691003,\u003cbr\u003e \"sharpe\": 0.3207958221442681,\u003cbr\u003e \"total_trades\": 1618,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8819530284301607\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 396,\u003cbr\u003e \"values\": [\u003cbr\u003e 649.0552799999937\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.85999999999831,\u003cbr\u003e \"max_equity_dd_pct\": 0.02752091072390304,\u003cbr\u003e \"net_profit\": 695.915279999992,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.51574541592505,\u003cbr\u003e \"sharpe\": 0.3373623911295948,\u003cbr\u003e \"total_trades\": 2414,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8736536868268434\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 397,\u003cbr\u003e \"values\": [\u003cbr\u003e 684.4633599999902\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.97999999999638,\u003cbr\u003e \"max_equity_dd_pct\": 0.024789288738665982,\u003cbr\u003e \"net_profit\": 727.4433599999866,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 59.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.600292559575435,\u003cbr\u003e \"sharpe\": 0.3535629145579141,\u003cbr\u003e \"total_trades\": 2243,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8818546589389211\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 398,\u003cbr\u003e \"values\": [\u003cbr\u003e 756.3452800000077\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.340000000001055,\u003cbr\u003e \"max_equity_dd_pct\": 0.018976828640144137,\u003cbr\u003e \"net_profit\": 790.6852800000088,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6193056072458278,\u003cbr\u003e \"sharpe\": 0.3833975116919674,\u003cbr\u003e \"total_trades\": 2282,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8869412795793163\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 399,\u003cbr\u003e \"values\": [\u003cbr\u003e -999341.28856\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 54.905959999998686,\u003cbr\u003e \"max_equity_dd_pct\": 0.031620436540410156,\u003cbr\u003e \"net_profit\": 713.6174000000027,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4969567987937868,\u003cbr\u003e \"sharpe\": 0.3263402272718675,\u003cbr\u003e \"total_trades\": 2258,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.50 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8728963684676705\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 400,\u003cbr\u003e \"values\": [\u003cbr\u003e 503.90527999999676\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 26,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.1,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 26.640000000000782,\u003cbr\u003e \"max_equity_dd_pct\": 0.01730830763422205,\u003cbr\u003e \"net_profit\": 530.5452799999975,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 26,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.1,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6886578784200543,\u003cbr\u003e \"sharpe\": 0.3279439397928013,\u003cbr\u003e \"total_trades\": 1520,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8907894736842106\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 401,\u003cbr\u003e \"values\": [\u003cbr\u003e 645.8196600000065\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.1,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.05000000000018,\u003cbr\u003e \"max_equity_dd_pct\": 0.020086485030648762,\u003cbr\u003e \"net_profit\": 679.8696600000067,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.1,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5400186618571303,\u003cbr\u003e \"sharpe\": 0.3924965662662643,\u003cbr\u003e \"total_trades\": 2383,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8111624003357113\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 402,\u003cbr\u003e \"values\": [\u003cbr\u003e 661.3914400000048\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 57.995959999999286,\u003cbr\u003e \"max_equity_dd_pct\": 0.033281712479456674,\u003cbr\u003e \"net_profit\": 719.387400000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5009749753811863,\u003cbr\u003e \"sharpe\": 0.3292761704202415,\u003cbr\u003e \"total_trades\": 2257,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.872840053167922\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 403,\u003cbr\u003e \"values\": [\u003cbr\u003e 770.9933600000035\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.900000000000546,\u003cbr\u003e \"max_equity_dd_pct\": 0.02031185176844365,\u003cbr\u003e \"net_profit\": 807.893360000004,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5927061867824444,\u003cbr\u003e \"sharpe\": 0.3866829989160712,\u003cbr\u003e \"total_trades\": 2383,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8787242971044902\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 404,\u003cbr\u003e \"values\": [\u003cbr\u003e 771.8133600000068\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.289999999999964,\u003cbr\u003e \"max_equity_dd_pct\": 0.01888857238396183,\u003cbr\u003e \"net_profit\": 806.1033600000068,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5922663343817378,\u003cbr\u003e \"sharpe\": 0.3848146173586656,\u003cbr\u003e \"total_trades\": 2376,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8787878787878788\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 405,\u003cbr\u003e \"values\": [\u003cbr\u003e -999397.88664\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.99000000000069,\u003cbr\u003e \"max_equity_dd_pct\": 0.028241501754086688,\u003cbr\u003e \"net_profit\": 649.103360000005,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4555211161260877,\u003cbr\u003e \"sharpe\": 0.3232998463608287,\u003cbr\u003e \"total_trades\": 2346,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8746803069053708\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 406,\u003cbr\u003e \"values\": [\u003cbr\u003e 689.8933600000099\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.51999999999862,\u003cbr\u003e \"max_equity_dd_pct\": 0.021503732639918807,\u003cbr\u003e \"net_profit\": 727.4133600000085,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5196965073864077,\u003cbr\u003e \"sharpe\": 0.35877613384350715,\u003cbr\u003e \"total_trades\": 2387,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8701298701298701\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 407,\u003cbr\u003e \"values\": [\u003cbr\u003e 745.2933600000055\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.819999999999254,\u003cbr\u003e \"max_equity_dd_pct\": 0.0194584562963961,\u003cbr\u003e \"net_profit\": 780.1133600000047,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5731707657556717,\u003cbr\u003e \"sharpe\": 0.37368306756208813,\u003cbr\u003e \"total_trades\": 2377,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8788388725283971\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 408,\u003cbr\u003e \"values\": [\u003cbr\u003e 754.8552800000039\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.38000000000102,\u003cbr\u003e \"max_equity_dd_pct\": 0.02011127783410852,\u003cbr\u003e \"net_profit\": 791.2352800000049,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6152260284119178,\u003cbr\u003e \"sharpe\": 0.3955814186288243,\u003cbr\u003e \"total_trades\": 2324,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8747848537005164\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 409,\u003cbr\u003e \"values\": [\u003cbr\u003e -999427.61944\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.89034000000038,\u003cbr\u003e \"max_equity_dd_pct\": 0.0273231617765437,\u003cbr\u003e \"net_profit\": 617.2709000000036,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4233470071329928,\u003cbr\u003e \"sharpe\": 0.3059694349456593,\u003cbr\u003e \"total_trades\": 2263,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.42 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8506407423773752\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 410,\u003cbr\u003e \"values\": [\u003cbr\u003e 759.5952799999986\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.42000000000098,\u003cbr\u003e \"max_equity_dd_pct\": 0.02014452641247256,\u003cbr\u003e \"net_profit\": 796.0152799999996,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6220187471601404,\u003cbr\u003e \"sharpe\": 0.39851074449726276,\u003cbr\u003e \"total_trades\": 2325,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.875268817204301\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 411,\u003cbr\u003e \"values\": [\u003cbr\u003e 760.2033600000021\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.0600000000004,\u003cbr\u003e \"max_equity_dd_pct\": 0.020387131492971493,\u003cbr\u003e \"net_profit\": 797.2633600000025,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6560139088910266,\u003cbr\u003e \"sharpe\": 0.4051435990316795,\u003cbr\u003e \"total_trades\": 2248,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8772241992882562\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 412,\u003cbr\u003e \"values\": [\u003cbr\u003e -999445.8663\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.2,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 46.59999999999991,\u003cbr\u003e \"max_equity_dd_pct\": 0.02897895151790315,\u003cbr\u003e \"net_profit\": 600.7336999999974,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4662740838942288,\u003cbr\u003e \"sharpe\": 0.31252870588515413,\u003cbr\u003e \"total_trades\": 2214,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8730803974706414\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 413,\u003cbr\u003e \"values\": [\u003cbr\u003e 688.7645999999918\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 55.72033999999849,\u003cbr\u003e \"max_equity_dd_pct\": 0.031663692900329915,\u003cbr\u003e \"net_profit\": 744.4849399999903,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5362089686865859,\u003cbr\u003e \"sharpe\": 0.35833433954899546,\u003cbr\u003e \"total_trades\": 2292,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8577661431064573\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 414,\u003cbr\u003e \"values\": [\u003cbr\u003e 700.4833599999846\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 50.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.19000000000051,\u003cbr\u003e \"max_equity_dd_pct\": 0.020037314615836056,\u003cbr\u003e \"net_profit\": 735.6733599999851,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 50.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6053107745302875,\u003cbr\u003e \"sharpe\": 0.372797724079951,\u003cbr\u003e \"total_trades\": 2238,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8771224307417337\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 415,\u003cbr\u003e \"values\": [\u003cbr\u003e 196.5300000000002\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 3,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 55.539999999999964,\u003cbr\u003e \"max_equity_dd_pct\": 0.04427791286323588,\u003cbr\u003e \"net_profit\": 252.07000000000016,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 3,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.508256880733946,\u003cbr\u003e \"sharpe\": 0.21171171437059152,\u003cbr\u003e \"total_trades\": 736,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8532608695652174\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 416,\u003cbr\u003e \"values\": [\u003cbr\u003e 755.6952800000045\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.3700000000008,\u003cbr\u003e \"max_equity_dd_pct\": 0.019083574440443545,\u003cbr\u003e \"net_profit\": 790.0652800000053,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6168294842242,\u003cbr\u003e \"sharpe\": 0.39719559454447984,\u003cbr\u003e \"total_trades\": 2346,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8687127024722933\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 417,\u003cbr\u003e \"values\": [\u003cbr\u003e 713.5989800000029\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 51.600339999999505,\u003cbr\u003e \"max_equity_dd_pct\": 0.028787614480502807,\u003cbr\u003e \"net_profit\": 765.1993200000024,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 47.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5409149965606792,\u003cbr\u003e \"sharpe\": 0.37310849432549614,\u003cbr\u003e \"total_trades\": 2268,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.86331569664903\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 418,\u003cbr\u003e \"values\": [\u003cbr\u003e 680.9833600000005\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 51.71999999999889,\u003cbr\u003e \"max_equity_dd_pct\": 0.02973946298395911,\u003cbr\u003e \"net_profit\": 732.7033599999994,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5971771572561155,\u003cbr\u003e \"sharpe\": 0.3677868603684985,\u003cbr\u003e \"total_trades\": 2230,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8825112107623319\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 419,\u003cbr\u003e \"values\": [\u003cbr\u003e 713.5252800000012\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.63000000000011,\u003cbr\u003e \"max_equity_dd_pct\": 0.020838841242550678,\u003cbr\u003e \"net_profit\": 750.1552800000013,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5563882114142538,\u003cbr\u003e \"sharpe\": 0.3721902488291766,\u003cbr\u003e \"total_trades\": 2418,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8726220016542597\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 420,\u003cbr\u003e \"values\": [\u003cbr\u003e 745.5733600000052\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.70000000000027,\u003cbr\u003e \"max_equity_dd_pct\": 0.021025587325521747,\u003cbr\u003e \"net_profit\": 783.2733600000055,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 45.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5754925047652284,\u003cbr\u003e \"sharpe\": 0.377269543380355,\u003cbr\u003e \"total_trades\": 2375,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8787368421052631\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 421,\u003cbr\u003e \"values\": [\u003cbr\u003e -999589.73822\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 56.54595999999492,\u003cbr\u003e \"max_equity_dd_pct\": 0.0380215611303874,\u003cbr\u003e \"net_profit\": 466.8077399999851,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3172001713396022,\u003cbr\u003e \"sharpe\": 0.23011829483846621,\u003cbr\u003e \"total_trades\": 2149,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.32 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8543508608655188\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 422,\u003cbr\u003e \"values\": [\u003cbr\u003e 748.697739999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.01000000000022,\u003cbr\u003e \"max_equity_dd_pct\": 0.02224597325365704,\u003cbr\u003e \"net_profit\": 788.7077399999993,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 400.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6912605107684056,\u003cbr\u003e \"sharpe\": 0.40425189963154984,\u003cbr\u003e \"total_trades\": 2142,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.88468720821662\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 423,\u003cbr\u003e \"values\": [\u003cbr\u003e 819.6914400000068\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.23595999999907,\u003cbr\u003e \"max_equity_dd_pct\": 0.021633080947137475,\u003cbr\u003e \"net_profit\": 859.9274000000058,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6516256644339247,\u003cbr\u003e \"sharpe\": 0.4012607976995771,\u003cbr\u003e \"total_trades\": 2459,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8836925579503864\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 424,\u003cbr\u003e \"values\": [\u003cbr\u003e -999453.1606\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 290.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 99.55595999999287,\u003cbr\u003e \"max_equity_dd_pct\": 0.05965595072242048,\u003cbr\u003e \"net_profit\": 646.3953600000007,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 290.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.1816716997827084,\u003cbr\u003e \"sharpe\": 0.19266505479472168,\u003cbr\u003e \"total_trades\": 1953,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.18 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.6492575524833589\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 425,\u003cbr\u003e \"values\": [\u003cbr\u003e 846.8789800000063\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 29.860339999999724,\u003cbr\u003e \"max_equity_dd_pct\": 0.015797037821444444,\u003cbr\u003e \"net_profit\": 876.739320000006,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7061032775220868,\u003cbr\u003e \"sharpe\": 0.4358545513115951,\u003cbr\u003e \"total_trades\": 2307,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8851322063285653\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 426,\u003cbr\u003e \"values\": [\u003cbr\u003e 718.3686400000045\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.504379999998946,\u003cbr\u003e \"max_equity_dd_pct\": 0.024101970611077616,\u003cbr\u003e \"net_profit\": 760.8730200000034,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5055973652984478,\u003cbr\u003e \"sharpe\": 0.35406324481191287,\u003cbr\u003e \"total_trades\": 2453,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.86180187525479\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 427,\u003cbr\u003e \"values\": [\u003cbr\u003e 371.9680800000009\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 38.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 30.88000000000011,\u003cbr\u003e \"max_equity_dd_pct\": 0.022010793157791055,\u003cbr\u003e \"net_profit\": 402.848080000001,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 38.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6069274274952945,\u003cbr\u003e \"sharpe\": 0.27040279291107966,\u003cbr\u003e \"total_trades\": 1074,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8798882681564246\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 428,\u003cbr\u003e \"values\": [\u003cbr\u003e 753.4789800000093\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.6899999999996,\u003cbr\u003e \"max_equity_dd_pct\": 0.019881469010270957,\u003cbr\u003e \"net_profit\": 789.1689800000089,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5285109868640379,\u003cbr\u003e \"sharpe\": 0.3642559602646871,\u003cbr\u003e \"total_trades\": 2368,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8673986486486487\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 429,\u003cbr\u003e \"values\": [\u003cbr\u003e -999355.65664\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.89999999999873,\u003cbr\u003e \"max_equity_dd_pct\": 0.02459781457751648,\u003cbr\u003e \"net_profit\": 686.2433600000053,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.7,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 75,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4709474914235643,\u003cbr\u003e \"sharpe\": 0.33042787473214935,\u003cbr\u003e \"total_trades\": 2497,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8694433319983981\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 430,\u003cbr\u003e \"values\": [\u003cbr\u003e 783.0793199999907\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.960000000000036,\u003cbr\u003e \"max_equity_dd_pct\": 0.018507625719478574,\u003cbr\u003e \"net_profit\": 817.0393199999908,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.658510353944286,\u003cbr\u003e \"sharpe\": 0.4021001988413435,\u003cbr\u003e \"total_trades\": 2291,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8847664775207333\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 431,\u003cbr\u003e \"values\": [\u003cbr\u003e -999384.71506\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 50.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.159999999999854,\u003cbr\u003e \"max_equity_dd_pct\": 0.029871635223217348,\u003cbr\u003e \"net_profit\": 665.4449399999862,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 50.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4265691450412334,\u003cbr\u003e \"sharpe\": 0.3052177233397864,\u003cbr\u003e \"total_trades\": 2244,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.43 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8547237076648841\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 432,\u003cbr\u003e \"values\": [\u003cbr\u003e -999434.1406800001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.004380000000765,\u003cbr\u003e \"max_equity_dd_pct\": 0.025405066852488604,\u003cbr\u003e \"net_profit\": 606.8636999999875,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4498604370728503,\u003cbr\u003e \"sharpe\": 0.3029642512366899,\u003cbr\u003e \"total_trades\": 2258,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8786536758193091\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 433,\u003cbr\u003e \"values\": [\u003cbr\u003e 672.60931999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 53.89000000000033,\u003cbr\u003e \"max_equity_dd_pct\": 0.03086908910215671,\u003cbr\u003e \"net_profit\": 726.4993199999903,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.2,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.538355505499023,\u003cbr\u003e \"sharpe\": 0.35023778362661434,\u003cbr\u003e \"total_trades\": 2203,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.873354516568316\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 434,\u003cbr\u003e \"values\": [\u003cbr\u003e 765.5893199999896\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.31999999999971,\u003cbr\u003e \"max_equity_dd_pct\": 0.02105969714089102,\u003cbr\u003e \"net_profit\": 803.9093199999893,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6422751517354397,\u003cbr\u003e \"sharpe\": 0.39260256363173823,\u003cbr\u003e \"total_trades\": 2273,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8900131984161901\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 435,\u003cbr\u003e \"values\": [\u003cbr\u003e 678.1933599999961\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.48999999999887,\u003cbr\u003e \"max_equity_dd_pct\": 0.025614403702899073,\u003cbr\u003e \"net_profit\": 722.683359999995,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5191822390441034,\u003cbr\u003e \"sharpe\": 0.33356803281282266,\u003cbr\u003e \"total_trades\": 2384,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8829697986577181\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 436,\u003cbr\u003e \"values\": [\u003cbr\u003e 673.4893199999906\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.60999999999967,\u003cbr\u003e \"max_equity_dd_pct\": 0.029079533310780552,\u003cbr\u003e \"net_profit\": 724.0993199999903,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5110884920380891,\u003cbr\u003e \"sharpe\": 0.34179244213158577,\u003cbr\u003e \"total_trades\": 2239,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8767306833407771\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 437,\u003cbr\u003e \"values\": [\u003cbr\u003e -999442.87664\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.03999999999678,\u003cbr\u003e \"max_equity_dd_pct\": 0.029125251310547825,\u003cbr\u003e \"net_profit\": 604.1633599999863,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4233448378185347,\u003cbr\u003e \"sharpe\": 0.2970861061161571,\u003cbr\u003e \"total_trades\": 2351,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.42 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.874096129306678\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 438,\u003cbr\u003e \"values\": [\u003cbr\u003e -999627.06588\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 200.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 80.21033999999281,\u003cbr\u003e \"max_equity_dd_pct\": 0.05471506451117664,\u003cbr\u003e \"net_profit\": 453.14446000000873,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.5,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 200.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.1512283812689978,\u003cbr\u003e \"sharpe\": 0.15410105323774603,\u003cbr\u003e \"total_trades\": 2081,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.15 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.7280153772224892\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 439,\u003cbr\u003e \"values\": [\u003cbr\u003e 746.5433599999905\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 31.24999999999818,\u003cbr\u003e \"max_equity_dd_pct\": 0.017439361915566696,\u003cbr\u003e \"net_profit\": 777.7933599999886,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6505439021685966,\u003cbr\u003e \"sharpe\": 0.3860589014863566,\u003cbr\u003e \"total_trades\": 2215,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8848758465011287\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 440,\u003cbr\u003e \"values\": [\u003cbr\u003e 725.7033600000012\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.79999999999973,\u003cbr\u003e \"max_equity_dd_pct\": 0.019686783723528164,\u003cbr\u003e \"net_profit\": 760.503360000001,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 160,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.554695409890602,\u003cbr\u003e \"sharpe\": 0.3604443198432021,\u003cbr\u003e \"total_trades\": 2362,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8848433530906011\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 441,\u003cbr\u003e \"values\": [\u003cbr\u003e -999600.3226000001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 61.865960000000086,\u003cbr\u003e \"max_equity_dd_pct\": 0.04193724179153207,\u003cbr\u003e \"net_profit\": 461.54335999998045,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.8,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.330655232195155,\u003cbr\u003e \"sharpe\": 0.22660816484055965,\u003cbr\u003e \"total_trades\": 2066,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.33 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8620522749273959\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 442,\u003cbr\u003e \"values\": [\u003cbr\u003e 78.84562000000145\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 39.0,\u003cbr\u003e \"InpRsiSellLevel\": 70.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.0,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.38000000000011,\u003cbr\u003e \"max_equity_dd_pct\": 0.030343800555900625,\u003cbr\u003e \"net_profit\": 113.22562000000156,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 24,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 39.0,\u003cbr\u003e \"InpRsiSellLevel\": 70.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.0,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 3.0,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6333082341981016,\u003cbr\u003e \"sharpe\": 0.14836335265402337,\u003cbr\u003e \"total_trades\": 308,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8701298701298701\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 443,\u003cbr\u003e \"values\": [\u003cbr\u003e 767.5733600000052\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 30.579999999999472,\u003cbr\u003e \"max_equity_dd_pct\": 0.016872344481674843,\u003cbr\u003e \"net_profit\": 798.1533600000047,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.9000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 5.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6673552538760443,\u003cbr\u003e \"sharpe\": 0.4011184915857199,\u003cbr\u003e \"total_trades\": 2211,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8846675712347354\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 444,\u003cbr\u003e \"values\": [\u003cbr\u003e 813.019320000009\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.119999999999436,\u003cbr\u003e \"max_equity_dd_pct\": 0.018867424602773186,\u003cbr\u003e \"net_profit\": 848.1393200000084,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6811331319759202,\u003cbr\u003e \"sharpe\": 0.4216496288927652,\u003cbr\u003e \"total_trades\": 2284,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8844133099824869\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 445,\u003cbr\u003e \"values\": [\u003cbr\u003e 718.0911000000149\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.59033999999929,\u003cbr\u003e \"max_equity_dd_pct\": 0.024176097218218492,\u003cbr\u003e \"net_profit\": 760.6814400000142,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5167445626983156,\u003cbr\u003e \"sharpe\": 0.34483230005074633,\u003cbr\u003e \"total_trades\": 2423,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8704085843995047\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 446,\u003cbr\u003e \"values\": [\u003cbr\u003e 728.0030200000109\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.81034000000045,\u003cbr\u003e \"max_equity_dd_pct\": 0.01852861024958906,\u003cbr\u003e \"net_profit\": 760.8133600000114,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.508117162707569,\u003cbr\u003e \"sharpe\": 0.354267007118505,\u003cbr\u003e \"total_trades\": 2357,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8676283411115825\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 447,\u003cbr\u003e \"values\": [\u003cbr\u003e -999414.1663\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 35.970000000000255,\u003cbr\u003e \"max_equity_dd_pct\": 0.022057015022992007,\u003cbr\u003e \"net_profit\": 621.8037000000003,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 16,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4598546675614446,\u003cbr\u003e \"sharpe\": 0.315834281720611,\u003cbr\u003e \"total_trades\": 2250,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.46 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8777777777777778\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 448,\u003cbr\u003e \"values\": [\u003cbr\u003e 812.6170600000099\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.79033999999956,\u003cbr\u003e \"max_equity_dd_pct\": 0.01883198042835564,\u003cbr\u003e \"net_profit\": 847.4074000000095,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.644546300564735,\u003cbr\u003e \"sharpe\": 0.39964167989915533,\u003cbr\u003e \"total_trades\": 2464,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8843344155844156\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 449,\u003cbr\u003e \"values\": [\u003cbr\u003e -999451.26136\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.650000000000546,\u003cbr\u003e \"max_equity_dd_pct\": 0.02658184343295495,\u003cbr\u003e \"net_profit\": 591.3886400000018,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 58.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.3000000000000003,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3454809833776418,\u003cbr\u003e \"sharpe\": 0.2628889846495649,\u003cbr\u003e \"total_trades\": 2375,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.35 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8488421052631578\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 450,\u003cbr\u003e \"values\": [\u003cbr\u003e -999310.4969799999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.52437999999984,\u003cbr\u003e \"max_equity_dd_pct\": 0.024430068777462746,\u003cbr\u003e \"net_profit\": 732.0274000000143,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.486418042106184,\u003cbr\u003e \"sharpe\": 0.3423627093669782,\u003cbr\u003e \"total_trades\": 2446,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.49 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8622240392477515\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 451,\u003cbr\u003e \"values\": [\u003cbr\u003e -999417.31698\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 55.48999999999842,\u003cbr\u003e \"max_equity_dd_pct\": 0.03363961977784495,\u003cbr\u003e \"net_profit\": 638.1730200000106,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.4000000000000004,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 80.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.3773115046266449,\u003cbr\u003e \"sharpe\": 0.27857649722674677,\u003cbr\u003e \"total_trades\": 2374,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.38 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8508845829823083\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 452,\u003cbr\u003e \"values\": [\u003cbr\u003e 772.1052800000102\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.17000000000007,\u003cbr\u003e \"max_equity_dd_pct\": 0.018706320986847543,\u003cbr\u003e \"net_profit\": 806.2752800000103,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6373371199206714,\u003cbr\u003e \"sharpe\": 0.39160645507450337,\u003cbr\u003e \"total_trades\": 2286,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8871391076115486\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 453,\u003cbr\u003e \"values\": [\u003cbr\u003e 710.8852800000104\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.4,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.220000000001164,\u003cbr\u003e \"max_equity_dd_pct\": 0.018748709544721357,\u003cbr\u003e \"net_profit\": 744.1052800000116,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.4,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5302770285507328,\u003cbr\u003e \"sharpe\": 0.3543519844974281,\u003cbr\u003e \"total_trades\": 2251,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8685028876055086\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 454,\u003cbr\u003e \"values\": [\u003cbr\u003e 783.9552800000092\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.1,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 26.409999999999854,\u003cbr\u003e \"max_equity_dd_pct\": 0.014456932158636917,\u003cbr\u003e \"net_profit\": 810.3652800000091,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.1,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6708828570793817,\u003cbr\u003e \"sharpe\": 0.4042684327744018,\u003cbr\u003e \"total_trades\": 2235,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8841163310961969\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 455,\u003cbr\u003e \"values\": [\u003cbr\u003e 747.052680000001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.30999999999676,\u003cbr\u003e \"max_equity_dd_pct\": 0.02799101180847753,\u003cbr\u003e \"net_profit\": 797.3626799999978,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5204958114575948,\u003cbr\u003e \"sharpe\": 0.34612857357087035,\u003cbr\u003e \"total_trades\": 2493,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8764540713999198\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 456,\u003cbr\u003e \"values\": [\u003cbr\u003e 718.3352800000043\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.5,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.32999999999947,\u003cbr\u003e \"max_equity_dd_pct\": 0.021629640424071995,\u003cbr\u003e \"net_profit\": 756.6652800000038,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.5,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5532275858555502,\u003cbr\u003e \"sharpe\": 0.36795798166130494,\u003cbr\u003e \"total_trades\": 2366,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8782755705832629\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 457,\u003cbr\u003e \"values\": [\u003cbr\u003e 753.8152800000075\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.36000000000104,\u003cbr\u003e \"max_equity_dd_pct\": 0.020100221606602114,\u003cbr\u003e \"net_profit\": 790.1752800000086,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.613662235517057,\u003cbr\u003e \"sharpe\": 0.39585467720912465,\u003cbr\u003e \"total_trades\": 2313,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8737570255079983\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 458,\u003cbr\u003e \"values\": [\u003cbr\u003e 812.3970600000074\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.75034000000096,\u003cbr\u003e \"max_equity_dd_pct\": 0.019872810861150853,\u003cbr\u003e \"net_profit\": 849.1474000000084,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 3.5,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6472926155467638,\u003cbr\u003e \"sharpe\": 0.4005978535305573,\u003cbr\u003e \"total_trades\": 2465,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8851926977687626\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 459,\u003cbr\u003e \"values\": [\u003cbr\u003e 687.804600000015\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.0,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.74437999999827,\u003cbr\u003e \"max_equity_dd_pct\": 0.023996277621665167,\u003cbr\u003e \"net_profit\": 729.5489800000132,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.0,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5518672086801357,\u003cbr\u003e \"sharpe\": 0.3617810860854328,\u003cbr\u003e \"total_trades\": 2388,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8773031825795645\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 460,\u003cbr\u003e \"values\": [\u003cbr\u003e -999601.60744\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 230.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 118.5847199999971,\u003cbr\u003e \"max_equity_dd_pct\": 0.0775647911673672,\u003cbr\u003e \"net_profit\": 516.9772799999957,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 230.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.1536049316231307,\u003cbr\u003e \"sharpe\": 0.16972128837463604,\u003cbr\u003e \"total_trades\": 2148,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.15 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.6950651769087524\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 461,\u003cbr\u003e \"values\": [\u003cbr\u003e 748.6067200000132\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 45.04034000000047,\u003cbr\u003e \"max_equity_dd_pct\": 0.025111038288658707,\u003cbr\u003e \"net_profit\": 793.6470600000137,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.2,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.542858006656879,\u003cbr\u003e \"sharpe\": 0.35865277745317536,\u003cbr\u003e \"total_trades\": 2432,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8721217105263158\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 462,\u003cbr\u003e \"values\": [\u003cbr\u003e -999316.42574\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.3,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 43.00437999999849,\u003cbr\u003e \"max_equity_dd_pct\": 0.0247795501533791,\u003cbr\u003e \"net_profit\": 726.5786400000152,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.3,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4917292112590075,\u003cbr\u003e \"sharpe\": 0.34102774931622926,\u003cbr\u003e \"total_trades\": 2409,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.49 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.863013698630137\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 463,\u003cbr\u003e \"values\": [\u003cbr\u003e -999449.09506\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.3,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.69033999999783,\u003cbr\u003e \"max_equity_dd_pct\": 0.029180981297331866,\u003cbr\u003e \"net_profit\": 598.5952800000014,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.3,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4028452268817193,\u003cbr\u003e \"sharpe\": 0.2974771874032525,\u003cbr\u003e \"total_trades\": 2252,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.40 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8565719360568383\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 464,\u003cbr\u003e \"values\": [\u003cbr\u003e 784.7352799999953\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 27.400000000001455,\u003cbr\u003e \"max_equity_dd_pct\": 0.01503713777895011,\u003cbr\u003e \"net_profit\": 812.1352799999968,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.655609358591809,\u003cbr\u003e \"sharpe\": 0.3922868853972393,\u003cbr\u003e \"total_trades\": 2305,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8837310195227766\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 465,\u003cbr\u003e \"values\": [\u003cbr\u003e 694.6833599999914\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 49.75000000000091,\u003cbr\u003e \"max_equity_dd_pct\": 0.028327186646996384,\u003cbr\u003e \"net_profit\": 744.4333599999923,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 0.75,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5353614713156596,\u003cbr\u003e \"sharpe\": 0.34848078465891613,\u003cbr\u003e \"total_trades\": 2422,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8790255986787778\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 466,\u003cbr\u003e \"values\": [\u003cbr\u003e -999310.05102\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.27000000000044,\u003cbr\u003e \"max_equity_dd_pct\": 0.021530919677376407,\u003cbr\u003e \"net_profit\": 727.218979999995,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4897911716152337,\u003cbr\u003e \"sharpe\": 0.33634918361879473,\u003cbr\u003e \"total_trades\": 2353,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.49 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8674033149171271\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 467,\u003cbr\u003e \"values\": [\u003cbr\u003e -999365.61102\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.000000000000455,\u003cbr\u003e \"max_equity_dd_pct\": 0.02614877853885141,\u003cbr\u003e \"net_profit\": 678.3889799999982,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4690076714972673,\u003cbr\u003e \"sharpe\": 0.309473497176208,\u003cbr\u003e \"total_trades\": 2495,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8837675350701403\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 468,\u003cbr\u003e \"values\": [\u003cbr\u003e 695.0752799999959\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.82000000000153,\u003cbr\u003e \"max_equity_dd_pct\": 0.021174606611235196,\u003cbr\u003e \"net_profit\": 731.8952799999975,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5467132469257372,\u003cbr\u003e \"sharpe\": 0.35950935316063537,\u003cbr\u003e \"total_trades\": 2418,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8742762613730356\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 469,\u003cbr\u003e \"values\": [\u003cbr\u003e -999406.52664\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 48.629999999999654,\u003cbr\u003e \"max_equity_dd_pct\": 0.029483388465996508,\u003cbr\u003e \"net_profit\": 642.1033599999872,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrPeriod\": 28,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.4531911789935787,\u003cbr\u003e \"sharpe\": 0.312683728597903,\u003cbr\u003e \"total_trades\": 2344,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.45 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8809726962457338\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 470,\u003cbr\u003e \"values\": [\u003cbr\u003e -999382.66664\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.45999999999958,\u003cbr\u003e \"max_equity_dd_pct\": 0.02651236525743295,\u003cbr\u003e \"net_profit\": 661.7933600000059,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.469191025733343,\u003cbr\u003e \"sharpe\": 0.330895942033823,\u003cbr\u003e \"total_trades\": 2349,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.47 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8752660706683695\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 471,\u003cbr\u003e \"values\": [\u003cbr\u003e 736.7205600000098\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.93000000000029,\u003cbr\u003e \"max_equity_dd_pct\": 0.02082028940980297,\u003cbr\u003e \"net_profit\": 773.65056000001,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.6,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 70.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5366040402728116,\u003cbr\u003e \"sharpe\": 0.35868996916603335,\u003cbr\u003e \"total_trades\": 2364,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8701353637901861\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 472,\u003cbr\u003e \"values\": [\u003cbr\u003e 388.7977399999912\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 40.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.3,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 36.76999999999998,\u003cbr\u003e \"max_equity_dd_pct\": 0.025793232386137052,\u003cbr\u003e \"net_profit\": 425.5677399999912,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 170,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 40.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.3,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 2.0,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 20,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5849612759544227,\u003cbr\u003e \"sharpe\": 0.2780076909461645,\u003cbr\u003e \"total_trades\": 1323,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8888888888888888\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 473,\u003cbr\u003e \"values\": [\u003cbr\u003e -999337.48876\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpTrailStartPoints\": 210.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 34.29999999999836,\u003cbr\u003e \"max_equity_dd_pct\": 0.020059286126615488,\u003cbr\u003e \"net_profit\": 696.8112399999927,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 165,\u003cbr\u003e \"InpRsiPeriod\": 15,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 27,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.0,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.7,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 70.0,\u003cbr\u003e \"InpBreakEvenLock\": 15,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 210.0,\u003cbr\u003e \"InpTrailStepPoints\": 60.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.496474475339393,\u003cbr\u003e \"sharpe\": 0.34509212322564337,\u003cbr\u003e \"total_trades\": 2273,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.50 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8697756269247691\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 474,\u003cbr\u003e \"values\": [\u003cbr\u003e 825.2352800000035\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 26.4799999999982,\u003cbr\u003e \"max_equity_dd_pct\": 0.01429569968077735,\u003cbr\u003e \"net_profit\": 851.7152800000017,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.2,\u003cbr\u003e \"InpAtrPeriod\": 26,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 60.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 390.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6619898187994535,\u003cbr\u003e \"sharpe\": 0.41275417611428017,\u003cbr\u003e \"total_trades\": 2417,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8837401737691353\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 475,\u003cbr\u003e \"values\": [\u003cbr\u003e 822.3877400000041\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 30.91000000000031,\u003cbr\u003e \"max_equity_dd_pct\": 0.016659321151041833,\u003cbr\u003e \"net_profit\": 853.2977400000044,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 25,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7213118520634123,\u003cbr\u003e \"sharpe\": 0.4283530101846939,\u003cbr\u003e \"total_trades\": 2491,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8972300281011641\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 476,\u003cbr\u003e \"values\": [\u003cbr\u003e 694.3833600000038\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 40.17999999999893,\u003cbr\u003e \"max_equity_dd_pct\": 0.023058514406371494,\u003cbr\u003e \"net_profit\": 734.5633600000027,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 26,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 57.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 42.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5736757897225466,\u003cbr\u003e \"sharpe\": 0.37686219631947165,\u003cbr\u003e \"total_trades\": 2551,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8871030968247746\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 477,\u003cbr\u003e \"values\": [\u003cbr\u003e 723.2477399999997\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 45\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.849999999999454,\u003cbr\u003e \"max_equity_dd_pct\": 0.02137128871197182,\u003cbr\u003e \"net_profit\": 761.0977399999991,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 2.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 45,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6103624274048673,\u003cbr\u003e \"sharpe\": 0.39277921761929335,\u003cbr\u003e \"total_trades\": 2464,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8867694805194806\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 478,\u003cbr\u003e \"values\": [\u003cbr\u003e 834.9477400000036\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 30.91000000000031,\u003cbr\u003e \"max_equity_dd_pct\": 0.016566107553301596,\u003cbr\u003e \"net_profit\": 865.8577400000039,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 40.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 380.0,\u003cbr\u003e \"InpTrailStepPoints\": 80.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7330196667625994,\u003cbr\u003e \"sharpe\": 0.43373658646770513,\u003cbr\u003e \"total_trades\": 2491,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8972300281011641\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 479,\u003cbr\u003e \"values\": [\u003cbr\u003e 820.9077400000018\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 31.01000000000022,\u003cbr\u003e \"max_equity_dd_pct\": 0.016744804226563638,\u003cbr\u003e \"net_profit\": 851.917740000002,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 27,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 50.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.7212183122413915,\u003cbr\u003e \"sharpe\": 0.42898919055655454,\u003cbr\u003e \"total_trades\": 2483,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8968989126057189\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 480,\u003cbr\u003e \"values\": [\u003cbr\u003e 797.8137000000061\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.039999999997235,\u003cbr\u003e \"max_equity_dd_pct\": 0.021253734034450956,\u003cbr\u003e \"net_profit\": 836.8537000000033,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6757155766847074,\u003cbr\u003e \"sharpe\": 0.413524335578962,\u003cbr\u003e \"total_trades\": 2567,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8955979742890534\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 481,\u003cbr\u003e \"values\": [\u003cbr\u003e 725.7477399999988\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.25,\u003cbr\u003e \"max_equity_dd_pct\": 0.021554544883138693,\u003cbr\u003e \"net_profit\": 763.9977399999988,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 14,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6113153982786796,\u003cbr\u003e \"sharpe\": 0.3948408280100118,\u003cbr\u003e \"total_trades\": 2468,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8865478119935171\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 482,\u003cbr\u003e \"values\": [\u003cbr\u003e 794.2437000000086\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.35999999999649,\u003cbr\u003e \"max_equity_dd_pct\": 0.020397425491112724,\u003cbr\u003e \"net_profit\": 831.6037000000051,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6730797325441098,\u003cbr\u003e \"sharpe\": 0.4105319416824259,\u003cbr\u003e \"total_trades\": 2564,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8958658346333853\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 483,\u003cbr\u003e \"values\": [\u003cbr\u003e 811.4080800000083\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 33.97999999999729,\u003cbr\u003e \"max_equity_dd_pct\": 0.018413471056991537,\u003cbr\u003e \"net_profit\": 845.3880800000056,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.9,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6847765149221405,\u003cbr\u003e \"sharpe\": 0.4159106286926133,\u003cbr\u003e \"total_trades\": 2569,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.896457765667575\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 484,\u003cbr\u003e \"values\": [\u003cbr\u003e 788.2280799999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.41000000000122,\u003cbr\u003e \"max_equity_dd_pct\": 0.017790214106572257,\u003cbr\u003e \"net_profit\": 820.6380800000011,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6588792878999958,\u003cbr\u003e \"sharpe\": 0.41358937258030387,\u003cbr\u003e \"total_trades\": 2574,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8904428904428905\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 485,\u003cbr\u003e \"values\": [\u003cbr\u003e 787.7280799999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.41000000000122,\u003cbr\u003e \"max_equity_dd_pct\": 0.01779509807147104,\u003cbr\u003e \"net_profit\": 820.1380800000011,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6584778446182633,\u003cbr\u003e \"sharpe\": 0.41334654533741894,\u003cbr\u003e \"total_trades\": 2572,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.890357698289269\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 486,\u003cbr\u003e \"values\": [\u003cbr\u003e 673.2209000000098\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 53.05999999999631,\u003cbr\u003e \"max_equity_dd_pct\": 0.030735528539001848,\u003cbr\u003e \"net_profit\": 726.2809000000061,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5290782280980317,\u003cbr\u003e \"sharpe\": 0.36256278198676056,\u003cbr\u003e \"total_trades\": 2622,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8764302059496567\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 487,\u003cbr\u003e \"values\": [\u003cbr\u003e 757.3780800000035\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.56999999999971,\u003cbr\u003e \"max_equity_dd_pct\": 0.022020669623353636,\u003cbr\u003e \"net_profit\": 796.9480800000032,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6384236761955417,\u003cbr\u003e \"sharpe\": 0.40879167308327824,\u003cbr\u003e \"total_trades\": 2588,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.883693972179289\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 488,\u003cbr\u003e \"values\": [\u003cbr\u003e 788.4780799999999\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.41000000000122,\u003cbr\u003e \"max_equity_dd_pct\": 0.017787773129308685,\u003cbr\u003e \"net_profit\": 820.8880800000011,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6590800095408622,\u003cbr\u003e \"sharpe\": 0.41360524976606317,\u003cbr\u003e \"total_trades\": 2575,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8904854368932039\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 489,\u003cbr\u003e \"values\": [\u003cbr\u003e 697.1737000000053\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 49.44999999999982,\u003cbr\u003e \"max_equity_dd_pct\": 0.02831176515010055,\u003cbr\u003e \"net_profit\": 746.6237000000051,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5786523105513697,\u003cbr\u003e \"sharpe\": 0.3869599106057652,\u003cbr\u003e \"total_trades\": 2533,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8791946308724832\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 490,\u003cbr\u003e \"values\": [\u003cbr\u003e -999470.7991000001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 10,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 68.31999999999834,\u003cbr\u003e \"max_equity_dd_pct\": 0.042729619638212576,\u003cbr\u003e \"net_profit\": 597.5208999999695,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 10,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.43260096900963,\u003cbr\u003e \"sharpe\": 0.2849511242667488,\u003cbr\u003e \"total_trades\": 2609,\u003cbr\u003e \"violations\": [\u003cbr\u003e \"PF too low (1.43 \u003c 1.5)\"\u003cbr\u003e ],\u003cbr\u003e \"win_rate\": 0.8811805289382906\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 491,\u003cbr\u003e \"values\": [\u003cbr\u003e 720.42808000001\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 47.74999999999909,\u003cbr\u003e \"max_equity_dd_pct\": 0.027005198480912533,\u003cbr\u003e \"net_profit\": 768.1780800000091,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.6,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6064662930753066,\u003cbr\u003e \"sharpe\": 0.4022382815120662,\u003cbr\u003e \"total_trades\": 2599,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8768757214313198\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 492,\u003cbr\u003e \"values\": [\u003cbr\u003e 789.5680799999985\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 32.41000000000122,\u003cbr\u003e \"max_equity_dd_pct\": 0.01778835890275981,\u003cbr\u003e \"net_profit\": 821.9780799999997,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6599551558950385,\u003cbr\u003e \"sharpe\": 0.41617269807339025,\u003cbr\u003e \"total_trades\": 2576,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.890527950310559\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 493,\u003cbr\u003e \"values\": [\u003cbr\u003e 676.8537000000047\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 50.19999999999982,\u003cbr\u003e \"max_equity_dd_pct\": 0.02906684372350419,\u003cbr\u003e \"net_profit\": 727.0537000000045,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5634850640288034,\u003cbr\u003e \"sharpe\": 0.3778205247983413,\u003cbr\u003e \"total_trades\": 2533,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8791946308724832\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 494,\u003cbr\u003e \"values\": [\u003cbr\u003e 751.2080800000011\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 37.44999999999891,\u003cbr\u003e \"max_equity_dd_pct\": 0.020937484038312623,\u003cbr\u003e \"net_profit\": 788.65808,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 31,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.7000000000000002,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.3,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6799151911800374,\u003cbr\u003e \"sharpe\": 0.4148708965993464,\u003cbr\u003e \"total_trades\": 2446,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8916598528209322\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 495,\u003cbr\u003e \"values\": [\u003cbr\u003e 722.9496600000034\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 42.72999999999911,\u003cbr\u003e \"max_equity_dd_pct\": 0.024042361459309682,\u003cbr\u003e \"net_profit\": 765.6796600000025,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 11,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6186860430352557,\u003cbr\u003e \"sharpe\": 0.39677233822149893,\u003cbr\u003e \"total_trades\": 2517,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8875645609853\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 496,\u003cbr\u003e \"values\": [\u003cbr\u003e 766.6237000000023\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 32,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 39.48999999999887,\u003cbr\u003e \"max_equity_dd_pct\": 0.02185071276538052,\u003cbr\u003e \"net_profit\": 806.1137000000011,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 32,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.1,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.5,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6445813856087717,\u003cbr\u003e \"sharpe\": 0.40761956797892673,\u003cbr\u003e \"total_trades\": 2573,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8896230081616789\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 497,\u003cbr\u003e \"values\": [\u003cbr\u003e 694.7337000000048\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.2,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 44.219999999998436,\u003cbr\u003e \"max_equity_dd_pct\": 0.025426598464501567,\u003cbr\u003e \"net_profit\": 738.9537000000032,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 28,\u003cbr\u003e \"InpSlowEmaPeriod\": 180,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 48.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.9,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 35.0,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.2,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5765237130634462,\u003cbr\u003e \"sharpe\": 0.37638602703810226,\u003cbr\u003e \"total_trades\": 2525,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.885940594059406\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 498,\u003cbr\u003e \"values\": [\u003cbr\u003e 718.83932\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 41.97999999999911,\u003cbr\u003e \"max_equity_dd_pct\": 0.023579244899339272,\u003cbr\u003e \"net_profit\": 760.8193199999992,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 30,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 12,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 2.0,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.5,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.6,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 370.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 7.0,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.5574975292451236,\u003cbr\u003e \"sharpe\": 0.3749978164704555,\u003cbr\u003e \"total_trades\": 2655,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8839924670433145\u003cbr\u003e }\u003cbr\u003e}","{\u003cbr\u003e \"number\": 499,\u003cbr\u003e \"values\": [\u003cbr\u003e 765.7937000000019\u003cbr\u003e ],\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpMinSecondsBetween\": 30\u003cbr\u003e },\u003cbr\u003e \"user_attrs\": {\u003cbr\u003e \"max_equity_dd\": 38.16999999999871,\u003cbr\u003e \"max_equity_dd_pct\": 0.02115896234497329,\u003cbr\u003e \"net_profit\": 803.9637000000006,\u003cbr\u003e \"params\": {\u003cbr\u003e \"InpTimeframe\": 5,\u003cbr\u003e \"InpFastEmaPeriod\": 29,\u003cbr\u003e \"InpSlowEmaPeriod\": 175,\u003cbr\u003e \"InpRsiPeriod\": 13,\u003cbr\u003e \"InpRsiBuyLevel\": 49.0,\u003cbr\u003e \"InpRsiSellLevel\": 56.0,\u003cbr\u003e \"InpPullbackAtrMult\": 1.8,\u003cbr\u003e \"InpAtrPeriod\": 25,\u003cbr\u003e \"InpMinAtrPoints\": 0,\u003cbr\u003e \"InpMaxSpreadAtrPct\": 37.5,\u003cbr\u003e \"InpSizingMode\": 1,\u003cbr\u003e \"InpFixedLots\": 0.01,\u003cbr\u003e \"InpRiskPercent\": 1.25,\u003cbr\u003e \"InpStopMode\": 0,\u003cbr\u003e \"InpAtrSLMult\": 1.8,\u003cbr\u003e \"InpAtrTPMult\": 2.4000000000000004,\u003cbr\u003e \"InpStopLossPoints\": 200,\u003cbr\u003e \"InpTakeProfitPoints\": 300,\u003cbr\u003e \"InpUseBreakEven\": true,\u003cbr\u003e \"InpBreakEvenPoints\": 50.0,\u003cbr\u003e \"InpBreakEvenLock\": 25,\u003cbr\u003e \"InpUseTrailing\": true,\u003cbr\u003e \"InpTrailStartPoints\": 360.0,\u003cbr\u003e \"InpTrailStepPoints\": 90.0,\u003cbr\u003e \"InpMaxPositions\": 1,\u003cbr\u003e \"InpMaxTradesPerDay\": 12,\u003cbr\u003e \"InpDailyLossLimit\": 6.5,\u003cbr\u003e \"InpDailyProfitTarget\": 0.0,\u003cbr\u003e \"InpMinSecondsBetween\": 30,\u003cbr\u003e \"InpUseSession\": false,\u003cbr\u003e \"InpSessionStartHour\": 7,\u003cbr\u003e \"InpSessionEndHour\": 20,\u003cbr\u003e \"InpMagicNumber\": 20240530,\u003cbr\u003e \"InpComment\": \"GoldScalperPro\"\u003cbr\u003e },\u003cbr\u003e \"profit_factor\": 1.6449870681474208,\u003cbr\u003e \"sharpe\": 0.408174292292333,\u003cbr\u003e \"total_trades\": 2570,\u003cbr\u003e \"violations\": [],\u003cbr\u003e \"win_rate\": 0.8898832684824902\u003cbr\u003e }\u003cbr\u003e}"],"textposition":"none","x":[1749.828,1786.604,2238.944,1940.0919999999999,1725.272,1753.8020000000001,1790.241,1842.444,1572.879,1896.921,1571.836,1748.923,1707.09,1804.922,1694.0610000000001,1773.847,1948.1660000000002,2241.1059999999998,2279.089,2406.259,2382.4649999999997,2508.3199999999997,2259.4599999999996,2188.339,2177.564,2758.897,2218.98,2086.919,2327.4339999999997,2276.009,2513.7909999999997,2236.659,2161.4,2391.6369999999997,2309.521,2498.071,2372.7019999999998,2301.647,2096.1620000000003,2200.053,1999.596,2017.939,1981.955,2005.5710000000001,1989.809,1944.016,1884.979,1929.383,2031.854,1969.5240000000001,2034.0500000000002,1964.201,1954.5049999999999,2051.931,2091.134,2007.511,2855.944,2805.3819999999996,2748.289,2029.7749999999999,2071.753,2081.5739999999996,2100.54,2125.338,2022.24,2125.013,1999.5929999999998,2110.4759999999997,1978.7069999999999,2068.354,2135.2400000000002,2037.617,2061.042,2050.772,2091.493,2021.2859999999998,2085.368,2048.149,2177.254,2073.264,2158.68,2176.607,2165.476,2172.5460000000003,2096.7419999999997,2069.875,2063.929,2281.147,2211.84,2228.118,2155.3909999999996,2138.9550000000004,2116.657,2095.299,2172.121,2149.448,2040.007,2124.4990000000003,2103.328,2182.856,2139.868,2099.7219999999998,2063.731,2336.045,2210.247,2279.9,2215.138,2144.1659999999997,2296.798,2146.115,2018.407,2014.687,2113.0879999999997,2360.462,2220.475,1957.876,1966.27,1960.431,1934.3729999999998,1998.8049999999998,1995.864,1885.691,2134.835,1984.551,1961.653,1994.536,1960.782,1891.306,1931.4750000000001,1981.643,2258.245,2058.2470000000003,2129.558,2076.735,1999.288,2032.2779999999998,2113.8810000000003,2164.8450000000003,2058.667,1976.6209999999999,2026.536,1981.313,1909.792,1940.146,1935.7009999999998,1997.5339999999999,1890.1390000000001,2041.7390000000003,1911.709,2028.6629999999998,1901.935,1948.99,1956.428,2016.504,1970.952,1953.351,1944.723,1984.68,1921.999,1982.396,2031.491,1974.5049999999999,1955.6670000000001,1976.873,2027.2890000000002,1989.763,2001.576,2005.951,1990.24,1961.017,1971.598,2401.6440000000002,2880.062,1883.931,1895.034,1851.932,1917.664,1921.263,1944.764,1966.6380000000001,2030.398,1905.3439999999998,1992.5870000000002,1926.155,1947.961,1925.75,1889.114,1948.1280000000002,1891.36,1899.357,1916.784,1959.605,1928.633,1971.332,1921.741,1948.836,1874.949,1936.107,1868.9,1942.4779999999998,1853.442,1892.169,2060.98,2004.349,1894.947,1952.022,1899.372,1980.8490000000002,1901.529,1946.588,1909.958,2028.1509999999998,1964.2869999999998,1962.568,1918.896,2022.059,1896.922,1982.958,1908.401,1963.597,1936.4399999999998,1946.2140000000002,1940.053,1952.966,1934.667,1975.508,1953.808,1956.494,1980.1960000000001,1921.9669999999999,1950.6589999999999,1895.515,1934.506,1870.0810000000001,1908.392,1886.28,1965.1970000000001,1837.201,1971.977,1832.448,2012.439,1855.515,1965.841,1851.964,1945.0,1923.2530000000002,1976.8220000000001,1873.062,1904.3220000000001,1936.685,1956.885,1950.431,1962.307,1907.5720000000001,1923.6599999999999,1908.202,1946.051,1892.177,1929.5720000000001,1907.5910000000001,1906.04,1870.722,1901.99,1890.758,1963.517,1903.4759999999999,2016.296,1935.069,1883.145,1880.922,1879.976,1973.4769999999999,2000.69,2014.4410000000003,1922.7540000000001,1940.043,1961.0939999999998,2005.8790000000001,1957.9850000000001,2021.7179999999998,1949.335,1993.5210000000002,1927.9170000000001,1977.198,1921.8090000000002,2003.4990000000003,1918.272,2007.845,1911.648,1914.509,1939.729,2023.603,1934.3509999999999,2003.857,1951.7910000000002,1970.452,1995.303,1978.1219999999998,1857.194,1984.9270000000001,1906.1950000000002,2068.216,1905.503,1968.754,1971.619,1993.493,1934.799,1993.921,1931.438,1995.775,2002.4060000000002,1996.77,1916.933,1987.0159999999998,1945.551,1991.0339999999999,1880.308,1937.4370000000001,1882.528,1943.634,1897.866,1965.082,1924.7430000000002,1962.053,1949.1019999999999,1957.434,1975.95,1936.9080000000001,1975.991,1872.414,1963.5130000000001,1998.53,1966.542,1989.887,2027.291,1920.1390000000001,1984.8909999999998,1918.529,1954.393,1990.957,1975.339,2009.533,1984.239,1902.346,1972.87,1951.06,1992.787,2007.844,1993.388,1952.58,1973.181,1953.232,2018.4319999999998,1929.441,2030.3840000000002,1939.178,2005.592,2001.846,2019.304,2000.4759999999999,1997.816,1927.539,1991.894,2006.92,1961.4270000000001,1963.459,1982.7859999999998,1905.28,2055.918,2007.892,2047.6589999999999,1938.577,2075.4,1929.508,2073.3830000000003,1953.7839999999999,1990.605,1963.123,2058.726,1928.82,1986.06,1917.645,2073.0879999999997,1916.259,1983.1160000000002,1954.599,1888.655,1972.038,1954.426,1999.062,1976.627,1991.205,2036.1630000000002,2088.757,2208.725,2095.392,2102.951,1985.874,1987.274,2049.7309999999998,4958.916,5264.749,5571.1050000000005,5313.089,6157.46,5984.018,5441.893999999999,5231.828,5322.133,5343.731,6092.744,2612.297,2209.5389999999998,5352.96,5050.669,4620.512,6244.83,5963.762,6067.801,6360.554999999999,5639.0070000000005,5898.503,5799.892,5492.004,6082.754000000001,5596.053000000001,5558.875,4751.089999999999,5887.846,6437.317,4577.825,5723.137000000001,5678.714,6008.393,5508.243,6291.52,6326.285000000001,5597.084,6472.315,6330.893,5944.083,3215.871,5120.888,5529.269,6223.436000000001,6463.8460000000005,5907.503000000001,4906.396,5673.034000000001,5970.575,5809.996,5780.599999999999,5970.535,6346.1990000000005,4931.329,6121.731,6354.93,2509.2940000000003,2155.4359999999997,2345.34,2268.654,2269.06,2220.422,2184.6839999999997,2267.461,2213.225,2179.5119999999997,2225.9829999999997,2167.503,2202.9139999999998,2147.0679999999998,2205.283,2090.101,3896.808,4844.9619999999995,4872.621,5697.692,4940.914000000001,5552.141,6014.832,5160.546,4734.431,4901.524,4573.387000000001,5428.161,5231.131,4855.723,4589.949,4698.777,4897.0019999999995,4714.795,5549.8820000000005,5055.288,5249.745,4696.900000000001,4580.2880000000005,5088.728,4643.487999999999,5373.478,5271.554],"y":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"type":"bar"}], {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"type":"date","title":{"text":"试验序号 Trial"}},"title":{"text":"时间线 — 试验耗时与状态"},"yaxis":{"title":{"text":"耗时 (秒) Elapsed (s)"}},"showlegend":true,"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"height":520,"width":1100}, {"responsive": true} ) }; </script> </div></section>
|
||
<h2 class="section-title">参数切片图(单参数影响)</h2><p class="section-desc">每参数独立小图,避免 19 参数挤在 5400px 宽的复合图里导致标签重叠。</p><section class="chart"><h2>切片 — InpFastEmaPeriod</h2><div style="height:420px; width:900px;"> <div id="slice-InpFastEmaPeriod" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpFastEmaPeriod")) { Plotly.newPlot( "slice-InpFastEmaPeriod", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[18,19,16,24,8,11,14,30,15,25,33,23,22,20,27,21,27,19,12,17,22,19,20,26,29,22,18,13,13,10,8,17,17,15,17,18,15,10,8,24,21,10,10,10,12,14,9,16,11,24,33,13,13,11,12,9,18,14,16,20,22,13,12,9,11,12,15,11,16,18,19,18,17,17,16,17,19,21,21,23,23,23,21,21,21,23,25,20,22,21,20,23,22,24,20,22,26,20,21,22,21,21,23,23,24,25,24,23,23,26,28,25,24,23,23,23,24,22,23,31,25,23,24,22,22,26,23,22,24,22,25,22,22,22,23,23,20,22,22,22,24,20,22,19,21,19,19,19,19,19,20,20,19,18,18,18,18,19,18,18,18,18,18,18,18,18,17,17,17,17,17,17,17,17,16,16,17,17,15,16,18,18,17,17,18,18,16,17,18,19,19,19,18,18,18,19,19,18,19,19,19,19,19,19,19,19,19,19,19,19,20,19,19,20,20,20,20,20,20,19,20,19,19,19,19,20,19,20,19,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,21,21,22,22,22,21,22,21,21,22,22,22,22,22,22,22,22,22,22,22,22,22,23,22,22,22,23,22,22,23,22,22,23,23,23,23,23,23,23,23,24,23,23,24,23,22,23,22,24,24,24,24,25,24,24,24,24,25,25,25,25,25,26,25,25,26,24,25,24,24,27,25,24,24,24,25,24,26,25,25,25,24,25,26,24,25,25,24,24,26,27,25,26,26,27,24,26,26,26,25,27,25,26,25,25,26,28,26,25,24,26,24,27,25,25,25,34,25,26,24,26,24,25,24,25,26,24,25,25,25,27,24,26,24,24,25,26,25,25,25,25,27,27,28,28,28,28,29,29,30,26,29,26,24,26,28,24,25,25,27,25,31,26,25,25,25,26,25,25,25,26,24,26,25,24,24,25,25,25,25,25,26,26,26,25,26,26,27,27,27,26,27,27,27,27,26,26,27,27,27,26,26,27,26,27,25,26,25,25,26,27,28,27,28,28,28,29,29,30,30,29,30,30,31,29,31,30,31,29,32,28,30,29],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpFastEmaPeriod"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpFastEmaPeriod"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpSlowEmaPeriod</h2><div style="height:420px; width:900px;"> <div id="slice-InpSlowEmaPeriod" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpSlowEmaPeriod")) { Plotly.newPlot( "slice-InpSlowEmaPeriod", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[195,95,65,190,175,160,60,180,55,130,105,105,135,135,90,140,85,115,155,80,120,110,95,145,120,75,105,95,125,70,150,95,100,90,50,110,170,80,75,65,165,85,85,65,185,100,85,130,75,200,60,95,105,80,90,100,115,90,110,95,135,80,95,100,85,105,70,120,95,115,115,95,125,125,125,140,145,145,155,155,150,150,160,160,160,160,160,170,175,175,165,160,175,165,160,180,170,155,190,195,180,170,160,185,185,190,185,185,190,200,185,195,195,190,190,185,165,170,190,180,195,185,180,200,200,190,190,195,175,185,185,200,200,195,200,200,200,190,195,190,200,195,195,195,195,195,195,195,195,195,190,190,195,190,190,195,195,195,195,195,195,195,200,200,200,200,200,200,200,200,200,200,200,200,200,200,190,200,200,200,200,190,200,195,190,195,200,190,195,195,190,190,190,190,190,180,180,185,185,180,180,185,185,185,185,185,185,180,180,180,175,185,185,185,185,185,185,185,185,185,180,185,185,185,175,180,185,185,180,185,185,185,180,185,175,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,180,180,180,180,175,175,170,175,175,180,170,170,170,170,165,170,165,165,165,170,170,170,170,170,165,170,170,170,170,170,170,165,165,165,165,165,165,170,170,165,165,160,155,160,160,165,160,160,160,165,155,155,155,150,165,160,155,155,155,165,160,150,160,160,165,165,165,165,165,165,165,160,160,160,160,160,155,160,160,160,160,160,155,165,150,160,165,160,155,160,150,150,155,155,160,155,160,155,145,145,150,160,155,160,155,160,160,160,150,160,155,150,155,155,160,165,165,165,150,160,155,165,160,165,160,155,155,165,160,165,150,155,145,140,160,165,160,155,165,165,165,165,50,160,165,160,160,165,160,160,165,165,165,165,165,170,170,170,170,170,170,165,165,175,160,170,165,165,160,160,170,170,175,175,175,175,170,170,175,170,165,165,165,160,165,160,165,160,165,170,165,165,165,170,165,170,175,170,175,170,170,170,175,170,175,170,170,175,170,175,170,170,170,175,170,170,175,165,170,170,165,175,175,175,175,175,175,175,175,175,180,180,180,180,180,180,180,180,180,180,180,175,180,175,180,175,175],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpSlowEmaPeriod"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpSlowEmaPeriod"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpRsiPeriod</h2><div style="height:420px; width:900px;"> <div id="slice-InpRsiPeriod" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpRsiPeriod")) { Plotly.newPlot( "slice-InpRsiPeriod", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[23,20,22,8,22,23,13,7,20,8,28,14,14,17,12,17,27,17,11,20,15,17,19,15,25,10,18,20,18,15,24,21,22,21,19,25,21,23,24,23,13,19,22,19,16,18,24,21,27,9,13,20,21,23,18,16,20,19,16,14,22,20,20,18,21,23,21,25,20,20,20,20,21,17,18,17,17,17,11,12,11,11,12,12,12,12,12,10,10,10,7,12,10,9,14,12,9,13,11,11,10,11,12,13,13,14,13,13,15,13,14,12,12,13,13,14,12,13,15,15,13,11,15,12,14,13,11,14,12,13,14,13,15,16,15,15,13,13,16,16,15,14,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,18,16,17,17,16,16,17,17,17,17,18,18,18,18,18,18,19,18,19,17,18,18,17,17,18,18,17,18,18,19,17,19,17,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,21,20,20,19,20,20,19,20,21,19,20,21,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,17,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,15,16,15,15,16,16,16,15,15,15,15,15,15,16,16,16,15,16,15,14,15,16,16,15,16,15,15,15,16,16,15,14,15,15,14,14,14,15,15,14,16,16,15,15,14,15,16,15,28,16,16,15,16,14,14,16,14,15,14,14,15,14,26,15,14,15,15,15,15,15,15,15,15,16,16,16,16,16,15,16,15,14,15,16,16,14,14,16,14,16,15,13,16,16,16,16,16,14,16,15,14,16,15,16,15,16,16,14,15,16,14,13,14,14,15,15,15,13,14,15,14,14,13,14,14,15,15,14,15,13,14,15,15,14,15,15,14,14,13,14,14,14,13,14,13,13,13,13,12,13,13,13,12,13,13,13,13,12,13,13,12,13],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpRsiPeriod"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiPeriod"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpRsiBuyLevel</h2><div style="height:420px; width:900px;"> <div id="slice-InpRsiBuyLevel" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpRsiBuyLevel")) { Plotly.newPlot( "slice-InpRsiBuyLevel", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[42.0,32.0,39.0,34.0,45.0,41.0,33.0,40.0,40.0,47.0,30.0,35.0,35.0,30.0,37.0,32.0,36.0,37.0,32.0,49.0,43.0,38.0,37.0,38.0,34.0,32.0,35.0,35.0,35.0,43.0,35.0,31.0,31.0,34.0,33.0,36.0,33.0,31.0,31.0,30.0,31.0,33.0,33.0,34.0,32.0,31.0,30.0,36.0,33.0,34.0,40.0,35.0,38.0,36.0,32.0,35.0,33.0,37.0,39.0,34.0,30.0,35.0,35.0,32.0,36.0,37.0,36.0,39.0,41.0,44.0,46.0,41.0,45.0,44.0,43.0,44.0,44.0,44.0,47.0,48.0,48.0,49.0,48.0,48.0,48.0,48.0,50.0,47.0,47.0,47.0,47.0,48.0,48.0,49.0,47.0,46.0,50.0,46.0,48.0,49.0,47.0,48.0,48.0,46.0,46.0,46.0,45.0,49.0,50.0,49.0,48.0,48.0,49.0,48.0,46.0,50.0,49.0,48.0,47.0,47.0,45.0,48.0,46.0,47.0,47.0,47.0,49.0,46.0,48.0,45.0,45.0,47.0,47.0,47.0,46.0,45.0,46.0,46.0,47.0,45.0,46.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,49.0,47.0,47.0,47.0,48.0,48.0,48.0,48.0,49.0,48.0,48.0,49.0,48.0,48.0,48.0,48.0,48.0,48.0,48.0,48.0,49.0,48.0,48.0,48.0,48.0,49.0,48.0,48.0,48.0,49.0,48.0,50.0,48.0,48.0,49.0,48.0,49.0,48.0,47.0,48.0,47.0,49.0,49.0,49.0,50.0,49.0,49.0,50.0,49.0,49.0,49.0,50.0,49.0,49.0,49.0,49.0,49.0,49.0,49.0,49.0,50.0,49.0,49.0,49.0,49.0,49.0,50.0,49.0,49.0,50.0,49.0,49.0,49.0,49.0,50.0,49.0,49.0,50.0,49.0,49.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,49.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,49.0,42.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,38.0,50.0,49.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,49.0,39.0,50.0,50.0,50.0,50.0,49.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,50.0,49.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,50.0,49.0,50.0,50.0,50.0,49.0,49.0,50.0,40.0,50.0,50.0,50.0,50.0,49.0,50.0,50.0,49.0,49.0,49.0,49.0,49.0,49.0,48.0,49.0,49.0,48.0,48.0,49.0,49.0,48.0,49.0,49.0,49.0,48.0,49.0,49.0],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpRsiBuyLevel"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiBuyLevel"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpRsiSellLevel</h2><div style="height:420px; width:900px;"> <div id="slice-InpRsiSellLevel" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpRsiSellLevel")) { Plotly.newPlot( "slice-InpRsiSellLevel", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[53.0,56.0,52.0,50.0,66.0,66.0,69.0,58.0,51.0,56.0,61.0,57.0,50.0,61.0,54.0,60.0,55.0,59.0,63.0,50.0,53.0,59.0,64.0,56.0,58.0,63.0,54.0,54.0,52.0,54.0,52.0,53.0,54.0,51.0,53.0,50.0,55.0,52.0,52.0,51.0,53.0,55.0,55.0,50.0,57.0,51.0,69.0,56.0,52.0,53.0,57.0,54.0,55.0,54.0,53.0,51.0,56.0,52.0,55.0,70.0,54.0,54.0,53.0,50.0,53.0,52.0,53.0,51.0,52.0,53.0,53.0,51.0,53.0,56.0,57.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,51.0,51.0,51.0,51.0,51.0,50.0,51.0,50.0,52.0,50.0,51.0,52.0,51.0,51.0,52.0,50.0,50.0,51.0,51.0,51.0,50.0,51.0,51.0,52.0,67.0,50.0,51.0,50.0,51.0,52.0,50.0,52.0,51.0,51.0,52.0,50.0,51.0,50.0,50.0,51.0,50.0,51.0,50.0,51.0,52.0,51.0,51.0,51.0,51.0,52.0,51.0,52.0,52.0,52.0,52.0,52.0,53.0,53.0,53.0,53.0,53.0,53.0,54.0,54.0,54.0,54.0,53.0,55.0,55.0,55.0,54.0,55.0,54.0,55.0,55.0,54.0,54.0,54.0,56.0,56.0,55.0,56.0,55.0,56.0,57.0,57.0,57.0,55.0,58.0,57.0,58.0,56.0,56.0,56.0,55.0,57.0,56.0,55.0,55.0,56.0,55.0,57.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,55.0,54.0,53.0,55.0,54.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,55.0,55.0,61.0,56.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,65.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,54.0,62.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,54.0,56.0,55.0,54.0,55.0,55.0,56.0,54.0,54.0,68.0,55.0,55.0,56.0,55.0,55.0,56.0,56.0,56.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,59.0,58.0,58.0,60.0,59.0,60.0,58.0,57.0,58.0,59.0,59.0,57.0,57.0,57.0,57.0,57.0,57.0,58.0,57.0,58.0,57.0,59.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,58.0,57.0,58.0,58.0,57.0,58.0,59.0,57.0,58.0,57.0,58.0,57.0,57.0,58.0,57.0,56.0,57.0,60.0,57.0,59.0,57.0,58.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,57.0,57.0,57.0,56.0,57.0,58.0,57.0,56.0,58.0,57.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,58.0,70.0,57.0,56.0,56.0,56.0,56.0,56.0,58.0,56.0,56.0,57.0,57.0,57.0,56.0,57.0,57.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,56.0,57.0,57.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpRsiSellLevel"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiSellLevel"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpPullbackAtrMult</h2><div style="height:420px; width:900px;"> <div id="slice-InpPullbackAtrMult" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpPullbackAtrMult")) { Plotly.newPlot( "slice-InpPullbackAtrMult", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[1.4,2.1,2.5,2.0,1.2,2.5,3.5,1.6,1.8,1.5,3.8000000000000003,2.3,3.0,3.0,3.0,3.1,4.0,1.0,2.2,2.7,3.5,1.0,1.8,1.1,3.3000000000000003,2.0,2.7,2.7,2.7,2.8,2.5,3.2,3.2,3.4000000000000004,2.9000000000000004,2.6,3.7,2.4000000000000004,2.3,2.4000000000000004,3.2,2.9000000000000004,2.9000000000000004,2.9000000000000004,3.1,2.5,3.7,2.1,3.4000000000000004,3.1,2.6,2.8,2.8,3.0,2.4000000000000004,2.8,3.2,2.6,2.3,3.4000000000000004,1.8,3.0,2.7,2.7,2.9000000000000004,2.4000000000000004,2.8,3.3000000000000003,2.5,2.6,2.6,2.7,3.0,3.1,3.0,3.1,3.3000000000000003,3.6,3.6,3.6,3.9000000000000004,4.0,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.7,3.8000000000000003,3.7,4.0,3.6,3.9000000000000004,3.8000000000000003,3.7,3.5,3.7,4.0,3.8000000000000003,3.8000000000000003,3.8000000000000003,3.5,3.7,3.6,3.8000000000000003,3.9000000000000004,3.7,3.6,3.6,4.0,4.0,3.8000000000000003,3.9000000000000004,3.7,4.0,4.0,3.5,3.8000000000000003,3.9000000000000004,4.0,4.0,3.8000000000000003,3.7,4.0,3.9000000000000004,1.4,1.1,3.8000000000000003,3.8000000000000003,3.8000000000000003,3.7,1.6,3.7,3.6,3.4000000000000004,1.3,3.5,3.6,3.6,3.6,3.4000000000000004,3.5,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.2,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.5,3.2,3.5,3.5,3.5,3.5,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.2,3.3000000000000003,3.5,3.4000000000000004,3.4000000000000004,3.2,3.5,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.6,3.2,3.5,3.3000000000000003,3.5,3.1,3.1,3.6,3.6,3.1,3.1,3.1,3.1,3.0,3.0,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.8,2.8,2.8,3.0,3.1,3.0,2.8,2.9000000000000004,3.0,3.0,2.9000000000000004,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.1,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.5,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.5,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.6,3.6,3.6,3.5,3.5,3.5,3.6,3.5,3.4000000000000004,3.6,3.5,3.6,3.5,3.5,3.6,3.5,3.5,3.4000000000000004,3.4000000000000004,3.6,3.5,3.4000000000000004,3.4000000000000004,2.0,3.5,3.5,3.4000000000000004,3.4000000000000004,3.6,3.4000000000000004,3.5,3.4000000000000004,3.5,3.7,3.4000000000000004,3.4000000000000004,3.6,3.5,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.5,3.6,3.4000000000000004,3.5,3.4000000000000004,3.5,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.5,3.5,3.4000000000000004,3.6,3.4000000000000004,3.4000000000000004,3.5,3.5,3.5,3.6,3.5,3.6,3.5,3.5,3.5,3.6,3.5,3.6,3.7,3.5,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.6,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.7,1.9,2.1,3.5,1.2,3.4000000000000004,1.5,3.4000000000000004,3.4000000000000004,2.5,3.4000000000000004,1.9,3.4000000000000004,1.0,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.4000000000000004,1.6,1.4,1.1,1.2,1.5,1.6,3.5,1.0,1.7000000000000002,2.2,1.3,2.3,1.9,1.8,1.7000000000000002,1.9,1.9,1.7000000000000002,2.0,1.6,1.3,2.1,2.2,1.9,2.0,1.8,1.9,1.8,1.9,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.9,2.0,1.8,1.9,1.9,1.7000000000000002,1.8,2.1,1.9,2.0,1.8],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpPullbackAtrMult"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpPullbackAtrMult"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpAtrPeriod</h2><div style="height:420px; width:900px;"> <div id="slice-InpAtrPeriod" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpAtrPeriod")) { Plotly.newPlot( "slice-InpAtrPeriod", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[8,17,7,15,14,18,20,9,26,7,28,15,21,22,24,18,12,21,18,24,13,21,20,23,17,20,11,11,11,9,10,16,12,15,16,13,10,8,7,9,8,11,14,11,13,8,26,7,16,10,19,11,12,14,9,11,8,16,10,28,26,11,12,12,14,15,13,14,17,17,18,17,19,19,19,21,22,22,22,23,23,23,22,22,22,24,25,22,24,24,21,25,25,27,24,22,20,24,25,25,24,21,22,23,23,23,22,21,21,23,25,22,20,21,21,20,23,27,20,20,21,23,21,22,24,26,23,25,21,22,20,22,23,22,21,23,21,22,22,20,22,22,21,22,22,21,21,21,22,21,22,22,21,22,22,22,23,23,23,23,23,22,22,21,20,20,24,24,24,24,24,24,24,24,25,25,24,24,24,23,24,26,25,24,23,23,23,24,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,23,22,23,24,24,24,24,24,24,24,24,24,25,25,25,25,25,25,26,25,25,25,25,26,25,26,25,26,26,27,27,28,27,27,27,28,28,28,28,27,27,28,28,28,28,27,28,28,28,28,28,28,28,28,28,28,28,27,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,27,28,27,28,28,27,27,27,28,27,28,28,28,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26,27,27,27,26,27,27,27,26,26,26,26,27,26,27,27,27,26,27,26,27,27,27,26,27,27,26,27,26,26,26,27,27,26,27,27,27,26,26,26,27,26,26,26,26,27,26,27,26,27,27,26,27,27,27,26,27,27,26,26,27,27,27,26,26,26,26,27,26,27,27,26,27,27,27,27,27,27,27,26,26,26,26,26,26,26,26,26,25,27,26,27,27,25,27,26,27,26,27,27,27,27,27,27,27,27,27,27,27,27,27,26,27,27,27,28,27,27,28,27,27,28,27,28,28,28,28,28,28,28,28,28,28,27,27,26,28,26,28,27,27,26,27,26,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpAtrPeriod"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpAtrPeriod"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpMaxSpreadAtrPct</h2><div style="height:420px; width:900px;"> <div id="slice-InpMaxSpreadAtrPct" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpMaxSpreadAtrPct")) { Plotly.newPlot( "slice-InpMaxSpreadAtrPct", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[45.0,42.5,47.5,20.0,12.5,27.5,45.0,22.5,20.0,35.0,35.0,10.0,35.0,40.0,32.5,40.0,50.0,40.0,30.0,25.0,37.5,42.5,42.5,50.0,45.0,35.0,30.0,30.0,30.0,27.5,17.5,32.5,32.5,27.5,32.5,30.0,25.0,37.5,37.5,37.5,35.0,32.5,32.5,37.5,22.5,35.0,25.0,27.5,32.5,40.0,35.0,30.0,30.0,32.5,27.5,37.5,22.5,30.0,40.0,45.0,35.0,30.0,32.5,32.5,32.5,37.5,30.0,35.0,27.5,25.0,25.0,20.0,27.5,27.5,22.5,25.0,25.0,20.0,15.0,15.0,15.0,15.0,12.5,10.0,10.0,10.0,10.0,10.0,10.0,10.0,12.5,12.5,12.5,10.0,12.5,12.5,10.0,10.0,12.5,17.5,15.0,12.5,12.5,10.0,10.0,10.0,12.5,10.0,10.0,10.0,12.5,15.0,12.5,10.0,10.0,10.0,12.5,10.0,10.0,17.5,12.5,10.0,10.0,10.0,12.5,47.5,12.5,10.0,10.0,12.5,15.0,12.5,12.5,12.5,15.0,15.0,12.5,15.0,17.5,17.5,15.0,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,20.0,20.0,20.0,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,20.0,20.0,20.0,22.5,22.5,20.0,20.0,20.0,22.5,22.5,22.5,22.5,20.0,20.0,20.0,22.5,20.0,20.0,22.5,22.5,20.0,20.0,22.5,20.0,20.0,20.0,20.0,22.5,22.5,22.5,22.5,22.5,25.0,22.5,25.0,25.0,22.5,22.5,22.5,25.0,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,25.0,22.5,22.5,22.5,25.0,25.0,25.0,25.0,25.0,25.0,25.0,27.5,25.0,22.5,25.0,22.5,22.5,22.5,25.0,27.5,22.5,22.5,22.5,25.0,22.5,22.5,25.0,25.0,25.0,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,30.0,32.5,30.0,30.0,32.5,32.5,30.0,30.0,30.0,30.0,30.0,32.5,30.0,30.0,30.0,30.0,30.0,30.0,30.0,32.5,32.5,32.5,32.5,32.5,32.5,35.0,35.0,32.5,35.0,32.5,35.0,35.0,35.0,35.0,37.5,35.0,35.0,35.0,35.0,35.0,32.5,35.0,37.5,32.5,32.5,32.5,35.0,35.0,35.0,37.5,40.0,40.0,37.5,40.0,40.0,40.0,40.0,40.0,42.5,42.5,40.0,40.0,40.0,42.5,37.5,37.5,42.5,40.0,42.5,42.5,40.0,40.0,40.0,40.0,40.0,40.0,40.0,45.0,40.0,42.5,37.5,37.5,42.5,40.0,40.0,40.0,40.0,42.5,42.5,45.0,40.0,42.5,42.5,42.5,37.5,40.0,37.5,37.5,40.0,37.5,42.5,45.0,42.5,40.0,40.0,42.5,42.5,40.0,42.5,45.0,42.5,42.5,37.5,40.0,40.0,42.5,40.0,37.5,40.0,45.0,47.5,47.5,45.0,45.0,45.0,45.0,42.5,42.5,42.5,42.5,45.0,42.5,37.5,37.5,37.5,37.5,45.0,45.0,45.0,47.5,47.5,42.5,50.0,42.5,47.5,47.5,42.5,45.0,45.0,42.5,37.5,40.0,40.0,37.5,37.5,40.0,40.0,37.5,40.0,50.0,40.0,40.0,37.5,37.5,37.5,37.5,40.0,40.0,37.5,37.5,40.0,40.0,40.0,40.0,40.0,37.5,40.0,40.0,40.0,40.0,42.5,42.5,42.5,42.5,40.0,42.5,37.5,37.5,37.5,40.0,37.5,40.0,37.5,37.5,37.5,37.5,37.5,40.0,40.0,37.5,37.5,40.0,40.0,37.5,42.5,40.0,40.0,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,37.5,35.0,35.0,37.5,37.5],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpMaxSpreadAtrPct"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpMaxSpreadAtrPct"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpRiskPercent</h2><div style="height:420px; width:900px;"> <div id="slice-InpRiskPercent" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpRiskPercent")) { Plotly.newPlot( "slice-InpRiskPercent", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[2.0,0.75,1.0,2.5,2.75,0.25,2.5,3.0,0.5,2.25,1.5,1.5,1.0,0.75,1.25,0.75,1.75,0.25,1.0,1.25,0.75,0.25,0.5,0.5,0.25,1.0,1.25,1.25,1.5,2.0,1.75,1.25,1.25,1.25,1.75,1.0,1.5,1.0,1.0,0.75,1.0,1.25,1.25,1.5,1.0,0.75,1.5,1.25,2.0,0.5,1.75,1.25,1.25,1.0,1.5,0.75,3.0,1.0,1.25,2.75,1.5,1.25,1.25,1.0,1.25,0.75,1.5,1.25,1.0,1.75,2.0,1.75,2.25,2.25,2.25,2.25,2.5,2.5,2.5,2.5,2.5,2.5,2.75,2.5,2.75,2.75,2.75,2.75,2.75,2.75,3.0,2.75,2.75,2.75,3.0,2.75,3.0,2.75,2.75,3.0,2.5,2.75,2.75,2.75,2.75,3.0,2.75,2.5,3.0,2.5,2.75,2.5,2.75,2.5,2.75,2.75,2.5,3.0,2.75,2.5,2.25,2.75,2.75,2.75,3.0,2.5,2.75,2.75,2.5,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.25,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.25,2.5,2.5,2.5,2.5,2.25,2.5,2.5,2.5,2.5,2.5,2.5,2.25,2.25,2.5,2.5,2.5,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.0,2.0,2.25,2.25,2.0,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.0,2.25,2.25,2.25,2.0,2.0,2.0,2.25,2.25,2.0,2.25,2.25,2.25,2.25,1.75,1.75,1.75,2.0,2.0,2.0,2.25,2.25,2.25,2.25,2.0,1.75,2.25,2.0,2.25,2.25,2.25,2.25,2.0,2.25,2.25,2.25,2.25,2.0,2.25,2.25,2.25,2.25,2.25,2.0,1.75,2.25,2.25,2.25,2.25,1.5,1.5,1.75,2.25,2.25,2.25,1.5,2.25,2.25,2.25,2.25,2.25,2.25,2.25,1.5,2.25,2.25,2.25,2.25,2.25,2.0,2.0,2.0,2.0,1.75,2.25,2.0,1.75,2.25,2.0,0.25,2.25,2.25,2.0,2.25,2.25,2.25,2.25,2.25,2.25,1.5,2.0,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.25,1.25,0.75,1.25,1.0,2.25,2.25,1.5,1.25,1.25,1.0,2.25,2.25,2.25,2.25,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.25],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpRiskPercent"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRiskPercent"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpAtrSLMult</h2><div style="height:420px; width:900px;"> <div id="slice-InpAtrSLMult" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpAtrSLMult")) { Plotly.newPlot( "slice-InpAtrSLMult", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[2.4000000000000004,2.0,2.3,1.7000000000000002,2.3,1.2,1.3,1.6,2.0,1.0,3.0,1.7000000000000002,1.8,2.0,2.8,1.9,2.5,1.5,2.1,1.4,2.6,1.5,1.7000000000000002,1.8,2.2,1.1,1.4,1.9,1.3,1.5,1.8,2.0,1.9,2.2,2.1,1.9,2.4000000000000004,1.6,1.6,1.2,1.4,1.8,1.6,1.8,1.7000000000000002,2.0,1.4,1.6,2.1,1.3,1.0,1.8,1.8,1.7000000000000002,1.6,2.0,1.8,2.2,1.5,1.9,1.7000000000000002,2.0,1.9,1.8,1.7000000000000002,1.7000000000000002,1.4,2.0,2.3,2.6,2.7,2.4000000000000004,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.7,2.7,2.8,2.7,2.6,2.8,2.8,2.7,2.6,2.8,2.5,2.5,2.7,2.8,2.6,2.8,2.8,2.7,2.7,2.7,2.7,2.9000000000000004,2.7,2.6,2.7,2.5,2.8,2.8,2.8,2.7,2.6,2.8,2.7,2.9000000000000004,3.0,2.9000000000000004,2.9000000000000004,2.8,2.7,2.7,2.5,2.7,2.6,2.9000000000000004,2.7,2.7,2.8,2.8,2.9000000000000004,2.8,2.8,2.8,2.7,2.6,2.6,2.6,2.7,2.7,2.7,2.7,2.5,2.6,2.5,2.4000000000000004,2.4000000000000004,2.3,2.3,2.3,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.5,2.5,2.4000000000000004,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.6,2.4000000000000004,2.5,2.5,2.3,2.4000000000000004,2.6,2.4000000000000004,2.5,2.6,2.6,2.5,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.6,2.6,2.6,2.7,2.7,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.2,2.3,2.2,2.2,2.2,2.3,2.2,2.2,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2.1,2.2,2.1,2.0,2.0,2.1,2.2,2.2,2.1,2.1,2.1,2.2,2.0,2.0,2.1,2.1,2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.0,1.9,2.0,2.0,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,2.0,1.9,1.8,2.0,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.8,1.9,2.0,2.0,2.0,2.0,1.9,2.0,1.8,1.9,2.0,1.9,1.9,1.9,2.0,1.8,1.9,1.9,1.8,1.9,2.0,1.9,2.0,1.7000000000000002,1.9,1.8,2.0,1.9,2.0,2.0,1.9,2.0,2.0,1.8,1.9,2.0,1.9,1.9,1.8,1.9,2.0,2.0,1.9,1.9,1.8,1.9,2.0,2.0,2.0,1.1,2.0,1.9,1.9,1.9,1.8,1.9,1.8,1.7000000000000002,1.8,1.8,1.8,1.7000000000000002,1.8,1.9,1.7000000000000002,1.8,1.9,1.8,1.9,1.8,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.9,1.9,1.9,2.0,2.0,2.0,1.9,2.0,1.9,2.0,1.9,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,2.0,1.9,1.9,2.0,1.9,1.8,1.9,1.8,1.9,1.9,1.8,1.8,1.9,1.9,1.9,2.0,1.8,2.0,1.9,1.9,2.0,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.7000000000000002,1.7000000000000002,1.8,1.7000000000000002,1.8,1.6,1.8,1.7000000000000002,1.8,1.8,1.8,1.8,1.8,1.8],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpAtrSLMult"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpAtrSLMult"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpAtrTPMult</h2><div style="height:420px; width:900px;"> <div id="slice-InpAtrTPMult" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpAtrTPMult")) { Plotly.newPlot( "slice-InpAtrTPMult", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[1.0,2.8,1.9,1.8,2.0,1.0,3.7,2.6,4.0,2.5,3.2,1.7000000000000002,2.9000000000000004,3.1,2.9000000000000004,2.5,3.3000000000000003,3.6,2.2,2.8,1.4,3.6,3.5,4.0,2.9000000000000004,2.3,3.3000000000000003,3.1,3.3000000000000003,3.1,3.8000000000000003,2.7,2.7,3.0,3.3000000000000003,2.3,3.4000000000000004,2.7,2.6,2.1,2.4000000000000004,2.8,2.8,2.7,2.9000000000000004,2.6,3.0,2.5,1.9,3.2,2.7,3.1,3.0,2.8,3.2,2.9000000000000004,3.4000000000000004,2.4000000000000004,3.1,1.1,2.6,3.2,3.0,2.9000000000000004,3.5,3.8000000000000003,3.5,3.6,3.3000000000000003,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.7,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.9000000000000004,4.0,4.0,4.0,3.9000000000000004,3.9000000000000004,4.0,4.0,4.0,3.9000000000000004,4.0,3.7,3.7,3.7,3.6,4.0,3.7,3.9000000000000004,4.0,3.7,3.8000000000000003,3.9000000000000004,4.0,3.8000000000000003,3.6,4.0,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.8000000000000003,3.7,3.9000000000000004,4.0,1.7000000000000002,3.8000000000000003,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.6,3.7,3.5,3.6,3.7,3.8000000000000003,4.0,3.9000000000000004,4.0,3.8000000000000003,3.9000000000000004,3.7,4.0,3.9000000000000004,4.0,4.0,4.0,3.8000000000000003,3.8000000000000003,3.7,4.0,4.0,4.0,4.0,3.9000000000000004,3.8000000000000003,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.8000000000000003,3.9000000000000004,3.8000000000000003,3.9000000000000004,3.9000000000000004,3.9000000000000004,3.8000000000000003,3.6,3.6,3.9000000000000004,3.7,3.7,3.5,3.5,3.5,3.5,3.5,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.5,3.4000000000000004,3.3000000000000003,3.5,3.5,3.3000000000000003,3.4000000000000004,3.5,3.6,3.4000000000000004,3.5,3.5,3.6,3.3000000000000003,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.7,3.7,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.7,3.6,3.6,3.7,3.7,3.7,3.7,3.7,3.7,3.6,3.7,3.6,3.6,3.7,3.6,3.7,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.2,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.2,3.4000000000000004,3.3000000000000003,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.3000000000000003,3.3000000000000003,3.2,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.2,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.1,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.2,3.2,3.1,3.1,3.2,3.2,3.2,3.2,3.1,3.0,3.1,3.2,3.0,3.0,3.1,3.1,3.2,3.2,3.2,3.1,3.1,3.1,3.0,3.2,3.2,3.2,3.2,3.2,3.1,3.1,2.9000000000000004,3.1,3.0,3.1,3.1,3.2,3.1,2.9000000000000004,3.2,3.2,3.0,3.1,3.2,3.1,3.1,3.0,3.1,3.2,3.1,3.1,3.1,3.0,3.0,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,3.0,3.0,3.1,2.8,3.1,3.1,3.1,2.9000000000000004,3.1,3.0,3.1,3.1,3.0,2.9000000000000004,3.1,3.1,3.0,3.1,1.2,2.9000000000000004,3.0,3.1,2.8,3.2,3.1,3.0,3.0,3.1,3.1,3.1,2.9000000000000004,3.1,3.0,3.1,2.9000000000000004,3.1,3.0,3.1,3.1,3.0,3.1,2.9000000000000004,3.0,3.1,3.1,3.0,2.9000000000000004,2.8,3.0,3.0,3.1,3.0,3.1,1.7000000000000002,3.0,3.1,3.0,2.9000000000000004,3.0,2.7,2.8,2.6,2.7,2.4000000000000004,2.4000000000000004,2.1,2.3,2.5,2.9000000000000004,2.9000000000000004,2.8,2.8,2.3,2.7,2.6,2.7,2.9000000000000004,2.2,2.9000000000000004,2.7,2.9000000000000004,2.5,2.9000000000000004,2.8,2.7,2.6,2.9000000000000004,2.9000000000000004,2.8,2.8,2.7,2.7,2.8,2.7,2.8,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.8,2.7,3.0,3.0,2.9000000000000004,2.8,3.0,2.9000000000000004,2.6,2.6,2.7,2.7,2.5,2.6,2.5,2.6,2.5,2.5,2.4000000000000004,2.5,2.6,2.5,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.5,2.6,2.3,2.5,2.6,2.5,2.4000000000000004,2.5,2.7,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.4000000000000004,2.4000000000000004,2.2,2.5,2.3,2.3,2.3,2.4000000000000004,2.5,2.2,2.6,2.4000000000000004],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpAtrTPMult"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpAtrTPMult"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpBreakEvenPoints</h2><div style="height:420px; width:900px;"> <div id="slice-InpBreakEvenPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpBreakEvenPoints")) { Plotly.newPlot( "slice-InpBreakEvenPoints", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[300.0,60.0,180.0,190.0,60.0,210.0,190.0,230.0,110.0,100.0,290.0,140.0,50.0,50.0,80.0,120.0,80.0,50.0,150.0,80.0,140.0,50.0,70.0,100.0,50.0,90.0,70.0,120.0,120.0,160.0,120.0,70.0,70.0,100.0,70.0,90.0,130.0,60.0,60.0,70.0,90.0,60.0,60.0,60.0,80.0,280.0,100.0,50.0,250.0,70.0,90.0,110.0,110.0,60.0,80.0,170.0,50.0,80.0,110.0,60.0,190.0,140.0,130.0,130.0,70.0,90.0,100.0,150.0,70.0,110.0,130.0,110.0,70.0,80.0,80.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,210.0,60.0,50.0,60.0,50.0,60.0,70.0,50.0,60.0,50.0,70.0,60.0,50.0,50.0,60.0,60.0,60.0,80.0,50.0,60.0,70.0,50.0,50.0,60.0,50.0,70.0,60.0,50.0,80.0,60.0,70.0,70.0,50.0,60.0,50.0,50.0,60.0,70.0,50.0,60.0,50.0,60.0,50.0,50.0,60.0,50.0,50.0,70.0,50.0,50.0,50.0,60.0,50.0,50.0,50.0,60.0,60.0,60.0,70.0,50.0,70.0,50.0,50.0,60.0,50.0,60.0,60.0,60.0,80.0,60.0,300.0,70.0,60.0,60.0,60.0,60.0,80.0,60.0,70.0,80.0,90.0,70.0,70.0,80.0,70.0,90.0,70.0,70.0,70.0,80.0,70.0,90.0,70.0,80.0,270.0,60.0,60.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,180.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,210.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,60.0,50.0,50.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,60.0,260.0,60.0,60.0,60.0,60.0,60.0,230.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,80.0,60.0,80.0,70.0,60.0,70.0,160.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,60.0,290.0,60.0,70.0,70.0,70.0,60.0,60.0,80.0,60.0,70.0,60.0,60.0,70.0,60.0,200.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,60.0,80.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,230.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpBreakEvenPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpBreakEvenPoints"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpBreakEvenLock</h2><div style="height:420px; width:900px;"> <div id="slice-InpBreakEvenLock" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpBreakEvenLock")) { Plotly.newPlot( "slice-InpBreakEvenLock", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[45,35,30,15,20,20,45,25,40,35,10,10,50,50,50,35,40,30,45,35,50,30,25,30,40,25,35,40,45,40,45,35,40,35,35,45,30,40,50,45,20,40,40,35,35,30,40,45,25,40,50,40,35,35,45,40,35,30,40,45,50,40,40,35,40,45,35,30,40,40,35,40,40,45,45,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,45,50,45,50,50,45,50,50,50,50,50,50,50,50,45,50,50,50,50,50,50,45,50,50,45,50,50,50,50,50,50,50,45,10,50,50,50,50,50,50,50,50,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,40,40,45,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,30,35,35,35,35,35,35,35,35,35,35,35,35,30,35,35,35,35,35,35,35,30,30,30,30,30,30,30,30,30,30,30,30,30,30,25,25,20,15,30,30,25,30,30,30,30,30,30,25,25,30,30,25,25,25,25,25,25,25,25,25,25,25,25,25,25,20,25,25,25,25,25,30,30,25,30,30,30,25,30,25,25,30,30,30,25,30,20,30,30,30,30,30,30,30,25,30,25,30,30,25,30,25,25,25,25,25,25,25,30,30,25,30,30,25,25,30,30,25,30,25,20,20,20,25,25,15,20,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,15,20,25,25,25,25,25,25,20,25,25,25,25,25,25,25,25,20,20,20,20,20,20,20,20,20,20,20,15,25,25,25,25,25,25,25,25,25,25,25,25,25,20,25,25,25,25,25,25,25,25,20,20,20,20,20,20,25,25,20,15,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,10,25,25,25,25,25,25,25,25,25],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpBreakEvenLock"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpBreakEvenLock"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpTrailStartPoints</h2><div style="height:420px; width:900px;"> <div id="slice-InpTrailStartPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpTrailStartPoints")) { Plotly.newPlot( "slice-InpTrailStartPoints", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[160.0,150.0,150.0,340.0,200.0,250.0,370.0,400.0,330.0,150.0,260.0,100.0,300.0,260.0,220.0,310.0,110.0,290.0,210.0,180.0,370.0,300.0,290.0,230.0,280.0,330.0,120.0,120.0,120.0,180.0,180.0,140.0,130.0,130.0,150.0,100.0,170.0,130.0,160.0,140.0,200.0,120.0,140.0,100.0,120.0,160.0,240.0,360.0,140.0,200.0,110.0,120.0,130.0,400.0,110.0,170.0,100.0,150.0,120.0,270.0,140.0,120.0,130.0,110.0,130.0,170.0,130.0,380.0,190.0,190.0,190.0,220.0,320.0,310.0,330.0,300.0,310.0,300.0,310.0,340.0,340.0,340.0,350.0,350.0,350.0,350.0,350.0,370.0,380.0,380.0,360.0,390.0,390.0,360.0,370.0,350.0,390.0,370.0,350.0,330.0,380.0,350.0,390.0,400.0,390.0,400.0,390.0,390.0,400.0,390.0,360.0,390.0,370.0,390.0,400.0,370.0,380.0,400.0,390.0,390.0,380.0,370.0,390.0,400.0,400.0,380.0,400.0,390.0,370.0,360.0,380.0,360.0,360.0,360.0,390.0,390.0,370.0,380.0,360.0,360.0,380.0,360.0,360.0,360.0,340.0,330.0,330.0,330.0,340.0,340.0,320.0,340.0,320.0,340.0,340.0,340.0,340.0,340.0,330.0,330.0,330.0,340.0,320.0,320.0,320.0,320.0,320.0,320.0,310.0,300.0,310.0,310.0,310.0,320.0,310.0,300.0,320.0,290.0,280.0,290.0,310.0,320.0,330.0,280.0,350.0,300.0,310.0,320.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,360.0,360.0,340.0,360.0,360.0,350.0,340.0,360.0,350.0,340.0,360.0,350.0,370.0,350.0,340.0,340.0,340.0,340.0,340.0,360.0,360.0,360.0,360.0,360.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,400.0,390.0,400.0,390.0,240.0,390.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,380.0,390.0,390.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,380.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,210.0,390.0,380.0,370.0,370.0,380.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,360.0,360.0,360.0,360.0,370.0,360.0,370.0,360.0],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpTrailStartPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpTrailStartPoints"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpTrailStepPoints</h2><div style="height:420px; width:900px;"> <div id="slice-InpTrailStepPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpTrailStepPoints")) { Plotly.newPlot( "slice-InpTrailStepPoints", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[90.0,70.0,240.0,70.0,190.0,230.0,120.0,240.0,100.0,190.0,140.0,60.0,60.0,60.0,90.0,130.0,80.0,110.0,150.0,160.0,80.0,110.0,110.0,60.0,80.0,100.0,70.0,70.0,70.0,90.0,90.0,70.0,60.0,80.0,70.0,70.0,100.0,70.0,60.0,80.0,90.0,70.0,70.0,60.0,210.0,80.0,100.0,70.0,90.0,60.0,120.0,70.0,80.0,60.0,70.0,90.0,80.0,70.0,60.0,170.0,100.0,70.0,70.0,80.0,60.0,60.0,60.0,80.0,90.0,110.0,130.0,110.0,90.0,100.0,120.0,100.0,110.0,120.0,130.0,140.0,140.0,140.0,130.0,140.0,150.0,150.0,160.0,150.0,150.0,150.0,170.0,150.0,150.0,130.0,150.0,160.0,130.0,170.0,140.0,160.0,150.0,140.0,130.0,150.0,180.0,210.0,200.0,140.0,140.0,190.0,180.0,140.0,160.0,230.0,230.0,160.0,230.0,240.0,150.0,170.0,220.0,150.0,140.0,150.0,140.0,150.0,160.0,180.0,130.0,150.0,150.0,140.0,150.0,160.0,140.0,120.0,140.0,130.0,130.0,130.0,120.0,130.0,130.0,130.0,130.0,130.0,130.0,130.0,120.0,120.0,130.0,130.0,120.0,130.0,130.0,130.0,130.0,120.0,130.0,120.0,130.0,130.0,130.0,120.0,130.0,130.0,120.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,120.0,120.0,100.0,110.0,100.0,100.0,120.0,110.0,100.0,120.0,120.0,120.0,110.0,110.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,110.0,120.0,120.0,110.0,120.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,90.0,100.0,100.0,100.0,100.0,90.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,90.0,100.0,90.0,90.0,90.0,90.0,100.0,100.0,100.0,90.0,100.0,90.0,90.0,90.0,90.0,90.0,90.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,80.0,80.0,80.0,70.0,60.0,70.0,80.0,80.0,70.0,70.0,60.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,60.0,70.0,70.0,60.0,70.0,70.0,70.0,60.0,70.0,70.0,70.0,70.0,70.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,70.0,70.0,70.0,60.0,70.0,60.0,70.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,60.0,70.0,70.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,60.0,70.0,60.0,70.0,80.0,60.0,70.0,70.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,70.0,80.0,60.0,60.0,70.0,80.0,70.0,80.0,60.0,70.0,70.0,60.0,70.0,70.0,60.0,80.0,80.0,80.0,80.0,70.0,80.0,70.0,80.0,70.0,70.0,70.0,80.0,70.0,70.0,70.0,80.0,70.0,70.0,80.0,80.0,80.0,80.0,80.0,70.0,70.0,80.0,70.0,70.0,70.0,80.0,70.0,70.0,80.0,60.0,70.0,70.0,80.0,70.0,60.0,70.0,80.0,70.0,60.0,60.0,80.0,80.0,80.0,80.0,80.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0,90.0],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpTrailStepPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpTrailStepPoints"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpMaxTradesPerDay</h2><div style="height:420px; width:900px;"> <div id="slice-InpMaxTradesPerDay" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpMaxTradesPerDay")) { Plotly.newPlot( "slice-InpMaxTradesPerDay", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[4,12,10,12,9,5,4,5,10,6,7,12,12,12,10,11,8,11,11,9,12,11,11,9,11,12,10,8,8,8,7,10,10,9,7,10,8,9,10,3,9,9,10,9,10,9,10,7,11,8,6,8,9,8,12,6,10,9,11,7,10,8,8,9,8,7,8,8,7,5,5,3,4,4,4,4,5,5,6,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,5,6,7,7,6,5,6,6,6,6,7,6,7,6,7,6,6,6,7,6,6,6,7,7,7,6,6,6,5,7,6,5,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,8,8,8,8,8,8,8,9,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,3,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,12],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpMaxTradesPerDay"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpMaxTradesPerDay"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpDailyLossLimit</h2><div style="height:420px; width:900px;"> <div id="slice-InpDailyLossLimit" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpDailyLossLimit")) { Plotly.newPlot( "slice-InpDailyLossLimit", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[3.5,8.0,8.0,7.0,7.5,4.5,3.0,5.0,4.0,8.0,2.0,6.5,6.5,5.5,6.0,7.0,6.5,6.0,7.5,5.5,8.0,6.0,7.0,6.0,5.0,6.5,7.5,7.5,7.0,7.5,7.5,8.0,7.5,8.0,7.0,8.0,6.5,7.5,7.0,7.5,8.0,7.5,8.0,7.0,7.5,6.5,2.5,8.0,7.0,7.5,5.5,7.5,7.5,4.0,6.5,8.0,7.0,8.0,7.0,6.0,7.5,7.5,7.5,7.5,7.0,6.5,7.0,8.0,7.0,6.5,6.0,6.5,7.0,6.5,6.5,6.0,5.5,5.5,5.0,5.0,5.0,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.0,4.5,4.0,4.0,3.5,4.5,4.0,4.5,4.5,3.5,3.5,4.0,3.0,4.5,3.5,3.5,3.0,3.5,3.5,3.5,3.5,3.0,4.0,4.0,3.5,3.5,3.5,2.5,3.0,4.0,4.0,3.5,4.0,4.5,3.5,3.5,3.0,3.5,4.0,3.5,4.0,2.5,4.0,4.0,4.0,3.5,3.5,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.0,5.0,5.0,5.0,5.0,5.0,5.5,5.5,5.0,5.0,5.0,5.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,5.5,6.0,5.5,5.0,5.5,5.0,6.0,5.5,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,4.5,5.5,5.5,5.5,5.5,2.0,5.5,5.5,2.5,2.0,2.5,2.0,2.0,2.5,2.5,5.5,5.5,2.0,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,6.5,6.0,6.0,5.5,6.0,5.5,5.5,6.0,5.5,5.5,2.5,6.5,6.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.5,7.0,7.0,6.5,6.5,6.5,6.0,6.0,5.5,6.5,6.5,6.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.5,6.5,7.0,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.0,7.0,7.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,7.0,6.5,6.5,7.0,6.5],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpDailyLossLimit"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpDailyLossLimit"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>切片 — InpMinSecondsBetween</h2><div style="height:420px; width:900px;"> <div id="slice-InpMinSecondsBetween" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("slice-InpMinSecondsBetween")) { Plotly.newPlot( "slice-InpMinSecondsBetween", [{"marker":{"color":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499],"colorbar":{"title":{"text":"Trial"},"x":1.0,"xpad":40},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"line":{"color":"Grey","width":0.5}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[105,150,165,60,105,150,90,75,120,45,30,180,135,135,150,180,135,150,120,165,120,150,135,165,150,135,105,90,90,90,105,75,75,75,60,105,60,105,105,120,75,90,90,105,45,75,90,120,105,60,45,90,90,105,120,75,90,60,105,135,75,90,90,105,75,75,75,60,120,135,135,120,135,135,135,150,150,165,165,165,180,180,165,165,165,165,165,165,165,165,180,165,165,165,150,180,165,150,165,165,180,165,165,150,150,150,150,150,150,150,150,165,180,165,150,165,180,165,150,150,150,165,165,165,150,165,150,135,180,150,150,150,150,150,135,135,150,150,135,135,135,150,150,150,150,150,150,150,150,150,150,150,150,150,135,135,135,135,135,135,135,135,135,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,105,120,120,120,105,120,120,120,120,120,120,120,120,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,90,105,105,90,105,105,105,105,105,105,105,105,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,75,75,75,90,90,90,75,75,90,75,75,75,75,75,75,75,75,75,75,75,75,60,60,60,60,60,60,60,60,60,75,75,45,75,75,75,75,75,75,75,75,75,75,75,75,60,75,75,75,75,75,75,75,60,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,60,30,60,60,45,60,60,60,60,60,60,60,60,60,60,60,60,60,45,60,60,60,60,60,45,60,60,75,60,60,60,45,60,60,60,60,60,60,60,75,45,45,30,45,75,45,75,75,75,75,60,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,45,45,30,45,45,45,45,45,45,45,45,30,45,45,45,45,45,45,45,45,45,30,45,45,45,45,45,45,45,45,45,45,45,45,30,30,45,30,45,30,30,45,30,45,45,45,45,45,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30],"y":[-999913.25192,131.69807999999412,-999903.8878799999,-999496.29226,-999847.21438,-1000090.73,-2000004.88,-1000003.92,-999911.17576,-999834.1,-2000013.0,-999827.48596,462.65808000000914,54.38808000000054,-999669.44294,-1000100.61384,17.1599999999994,63.71808000000502,-1000048.76452,-999695.30192,-999712.12554,78.96808000000229,-1000002.35,-999755.77226,-1000016.54,-999889.74418,239.84404000000126,194.0200000000027,-999874.81596,-999648.89068,-999851.03788,257.29807999999855,180.56999999999744,-999810.48192,-999926.02192,-999837.18788,-1000040.78384,207.46000000000458,191.83000000000675,159.38404000000259,-999745.35788,204.93000000000893,95.72403999999865,-999751.76192,171.25211999999996,-999773.21384,-2000000.0,119.69403999999207,139.58808000000263,-999553.4238400001,-999798.47192,223.71000000000458,-999938.63192,115.90403999999802,-999813.07192,-999766.9898,185.3821200000015,-999821.37596,-999790.6363,18.31999999999516,-999891.59192,186.02000000000362,253.54808000000855,-999802.14788,218.99404000000953,-999807.05596,-999924.8359599999,-999778.4138399999,286.37000000001217,399.920900000001,-999658.74102,-999910.01576,235.77966000000742,284.4796600000018,-999835.8463,241.72000000000526,313.370000000004,309.9500000000053,406.21562000000586,392.5900000000047,311.77000000000635,-999714.27,394.4600000000032,452.8156200000067,446.3756200000071,457.3756200000048,-999621.58,476.2100000000073,400.9100000000035,-999938.21438,-999708.52,485.5256200000035,-999648.42,-999657.9,-999691.71,-999758.06,-999721.67,-999756.77,554.1156200000019,-999682.78,-999651.76,330.4600000000023,508.83562000000074,469.63999999999487,488.3900000000008,384.47999999999774,-999663.16,533.640000000004,-999594.45,-999747.8,375.78000000000156,426.9456200000059,-999656.84,491.63000000000056,-999600.14,371.21000000000595,398.65000000001237,-999839.76,488.51000000000204,-999679.43,-999600.59,394.77000000000544,-999690.24,489.3300000000004,406.23999999999796,-999638.09,-999724.47,339.5899999999956,-999759.44438,499.74000000000024,-999633.77,485.3500000000008,564.6900000000023,-999587.39,480.030000000002,463.7200000000021,-999579.69,498.72999999999,529.0199999999872,470.95999999998,475.2799999999834,546.0199999999859,610.1099999999901,631.0999999999949,560.2999999999929,551.9199999999955,562.6699999999933,-999488.15,532.0299999999947,-999629.75596,490.94403999999395,513.3040399999959,-999615.42596,654.6299999999928,610.1199999999985,588.3399999999983,612.4199999999964,-999702.18034,536.174039999988,-999599.18834,-999516.58596,546.9640399999944,597.9340399999928,668.929999999998,615.7199999999839,-999582.52034,602.5000000000014,556.589659999976,567.1596599999821,-999729.42068,586.3077399999759,586.3077399999759,-999508.07226,511.20561999998245,-999760.2326,531.5417799999748,-999579.7778800001,567.2296599999781,-999691.1463,-999564.7000000001,-999464.14472,516.5177399999724,-999511.0263,-999675.52396,665.9199999999846,531.2340399999862,-999558.20034,-999556.31034,616.4556199999834,621.3096599999922,659.0840399999915,659.0840399999915,646.774039999987,554.464039999993,647.6940399999876,663.8340399999865,580.004039999993,701.2840399999986,711.4940399999987,702.3440399999977,564.0340400000018,714.7440399999987,643.8240399999945,641.094039999994,641.094039999994,641.094039999994,641.094039999994,632.7099999999928,632.7099999999928,555.5840400000034,552.9540399999937,641.094039999994,641.094039999994,660.3340399999947,660.3340399999947,-999501.53034,665.7140399999939,550.4340399999924,562.6940400000049,646.4740399999932,578.1996599999961,641.094039999994,626.1840399999946,589.6580800000019,496.0380799999833,503.3040399999836,638.4199999999928,-999555.46192,632.0640399999847,646.809999999994,659.7399999999898,659.7399999999898,641.03999999999,674.989999999988,631.2699999999859,657.4999999999909,662.0799999999908,662.0799999999908,662.1999999999862,660.6599999999853,671.0999999999863,671.0999999999863,673.3499999999872,671.0999999999863,637.621779999978,671.0999999999863,672.2899999999868,635.2161599999797,672.2899999999868,674.4556199999847,672.2899999999868,639.6717799999777,651.9099999999821,692.2156199999881,619.8617799999832,684.2640399999837,684.2640399999837,674.2240399999814,671.3340399999838,686.5540399999836,612.5421199999785,681.9840399999734,703.26403999998,708.6240399999729,640.4321199999697,718.594039999974,658.0821199999702,725.5140399999773,693.6940399999799,723.0140399999782,426.5599999999931,620.7721199999799,708.6240399999729,649.5421199999707,707.554039999975,707.554039999975,715.2240399999746,638.4621199999694,725.4440399999771,725.4440399999771,665.792119999973,715.504039999973,713.5540399999722,648.8361599999919,732.3640399999781,734.2940399999784,728.5440399999788,-999784.53046,733.7140399999726,405.93999999996913,718.8040399999772,716.6440400000024,739.3940400000006,660.7540400000048,708.3840400000058,601.4561599999963,682.6236999999973,735.6040400000088,418.36403999999715,737.9280800000155,738.2280800000152,-1000003.25866,728.9380800000102,750.6080800000158,683.5340400000086,723.8180800000044,683.188080000008,706.1680799999843,-999520.71068,733.3280800000106,680.2137000000157,-999412.09226,744.8380800000126,673.1040400000065,642.3837000000134,763.2380800000154,438.7140400000025,751.108080000013,728.858080000004,680.4540400000046,758.1380800000155,762.7380800000163,845.3240400000091,845.3240400000091,858.4740400000092,806.9021200000104,764.9033600000083,764.9033600000083,-999931.59496,407.9721200000048,764.0833600000068,682.4277399999991,-999443.25226,761.8333600000068,-999925.70182,-999479.00226,723.0573999999837,679.3533600000086,-999391.85472,772.503360000005,781.3752800000093,611.8633600000029,649.5230200000182,744.9833600000128,-999577.32226,751.7117799999999,741.057400000011,-999415.30698,-999489.6426,-999461.86294,640.9114400000065,-999502.39226,-999418.05698,590.1437000000041,684.7914400000125,-999556.87418,783.6452800000143,-999333.11664,641.6652800000047,760.6433600000195,646.2730200000191,-999413.05472,723.0374000000078,782.9052800000186,715.3974000000197,-999602.55472,679.9114400000083,651.1830200000062,790.1952800000172,-999349.24102,732.7352799999999,598.4233600000115,746.2033600000058,727.2833600000057,695.2030200000044,702.755280000003,-999416.80472,729.0152799999983,-999639.90226,701.9830200000168,764.2577400000172,-999467.41698,-999653.748,614.9130200000199,667.7614400000045,661.6152800000114,428.25123999999687,-999609.62226,642.8393200000022,714.5149400000155,-999500.63226,794.9877400000004,733.6452800000047,-999455.2606800001,771.1652800000038,478.1968600000033,649.0552799999937,684.4633599999902,756.3452800000077,-999341.28856,503.90527999999676,645.8196600000065,661.3914400000048,770.9933600000035,771.8133600000068,-999397.88664,689.8933600000099,745.2933600000055,754.8552800000039,-999427.61944,759.5952799999986,760.2033600000021,-999445.8663,688.7645999999918,700.4833599999846,196.5300000000002,755.6952800000045,713.5989800000029,680.9833600000005,713.5252800000012,745.5733600000052,-999589.73822,748.697739999999,819.6914400000068,-999453.1606,846.8789800000063,718.3686400000045,371.9680800000009,753.4789800000093,-999355.65664,783.0793199999907,-999384.71506,-999434.1406800001,672.60931999999,765.5893199999896,678.1933599999961,673.4893199999906,-999442.87664,-999627.06588,746.5433599999905,725.7033600000012,-999600.3226000001,78.84562000000145,767.5733600000052,813.019320000009,718.0911000000149,728.0030200000109,-999414.1663,812.6170600000099,-999451.26136,-999310.4969799999,-999417.31698,772.1052800000102,710.8852800000104,783.9552800000092,747.052680000001,718.3352800000043,753.8152800000075,812.3970600000074,687.804600000015,-999601.60744,748.6067200000132,-999316.42574,-999449.09506,784.7352799999953,694.6833599999914,-999310.05102,-999365.61102,695.0752799999959,-999406.52664,-999382.66664,736.7205600000098,388.7977399999912,-999337.48876,825.2352800000035,822.3877400000041,694.3833600000038,723.2477399999997,834.9477400000036,820.9077400000018,797.8137000000061,725.7477399999988,794.2437000000086,811.4080800000083,788.2280799999999,787.7280799999999,673.2209000000098,757.3780800000035,788.4780799999999,697.1737000000053,-999470.7991000001,720.42808000001,789.5680799999985,676.8537000000047,751.2080800000011,722.9496600000034,766.6237000000023,694.7337000000048,718.83932,765.7937000000019],"type":"scatter"}], {"title":{"text":"参数切片 — InpMinSecondsBetween"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpMinSecondsBetween"}},"yaxis":{"title":{"text":"目标值 Objective (score)"}},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":60,"r":40,"t":60,"b":60},"height":420,"width":900}, {"responsive": true} ) }; </script> </div></section>
|
||
<h2 class="section-title">等高线图(参数两两交互)</h2><p class="section-desc">按 fANOVA 重要性 Top-6 参数两两配对,避免 19²=361 子图密集到无法读。</p><section class="chart"><h2>等高线 — InpDailyLossLimit × InpRsiSellLevel</h2><div style="height:520px; width:700px;"> <div id="contour-InpDailyLossLimit-InpRsiSellLevel" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpDailyLossLimit-InpRsiSellLevel")) { Plotly.newPlot( "contour-InpDailyLossLimit-InpRsiSellLevel", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[1.7,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.3],"y":[49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0BnZmZm6nhAuML1KFyndEC4R+F6FLp+QDhihPBoWH5AML4Ts17Nf0A4BvUtc2N5QJi4HoXrlXNAkKRwPQo3bkAO4+R+h+p8QEwao5WQgC7BZ+22S\u002fSCLsGvzjFgOoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIOF6FK4HeEAsti3K7FCBQABSuB6FpYFAEMP1KFzDfUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+9b3xtuoIuwQAAAAAAAPh\u002fvgtBDkrsY0DLEMf6rYIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f6RwPYqjgS7B7I7C9SiIgEAQUrgehft8QOCOwvUoEIFAuB6FaxeCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8EyqYc\u002foIuwSi5HoXr5XFAwIXrUbjuaUBB1H3AGoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+CqPuA0oMuwaDMzMzMuINAAAAAAAAA+H9QwvUoXPODQAAAAAAAAPh\u002fM\u002flme9WBLsFAbqMBvP54QABBh\u002fnyeG1AHHQR34mxb0BeuYjvxBRwQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fywK16Nw54RAAAAAAAAA+H8vr3yW59mHQEhXPsvzVYZAvMd71cozhEAAAAAAAAD4fwAAAAAAAPh\u002frpAsYAL7bUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f5ijcD0KdYRACML1KFzPhEA3r3yW59WHQPzbKR2svoRAO8eA7AaBLsGAW4\u002fC9SgxQBUdyUXdgi7BMCpcj8KdaUBdP96rVu5XQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f2goXI\u002fCPYNA2Gj7V9a5gUBIyHvVytOKQFib4QZ8fn9A7I6qJgh3ikADibX4lBeKQEPpfeNrWIdAEsKjDd1\u002fLsHtPt6rVnZgQAAAAAAAAPh\u002fAAAAAAAA+H\u002f\u002fAdnr3UeHQIl7LB30fy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fipxjQHZSgkDmyLCKNzeJQBjt9e6PsYhAlyo1e6DBh0BYC3va4cmJQBALe9rhhYhA7EiFsYWOh0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+Jeyyd7n8uwZ+nOuTm14hAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f4lgXd6CCLsHDlSGOdZiGQDsHX5hMmIZAjzf92Q\u002fih0AwXI\u002fC9ZBoQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+NRdO5S4AuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f5JvtrmxfYdA+vrQBfW9U0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9aAg6hSgeEQAHeAkmDgC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3req1Ym431AAAAAAAAA+H8AAAAAAAD4f4o8STpJhS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+wW4\u002fC9ah6QPQd\u002fpqsMUtAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fHZpsb0yV6QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H81KQV9o4MuwQAAAAAAAPh\u002fWipvh+GELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzMzM7OEhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+4oXA9Cl95QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fXI\u002fCdTWFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbU6DLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fMK5H4Xp8d0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+\u002fADW1bGt7QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACAhD7BFK5H4YSEPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fYjZZox62U0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"23, 15"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[3.5,8.0,8.0,7.0,7.5,4.5,3.0,5.0,4.0,8.0,2.0,6.5,6.5,5.5,6.0,7.0,6.5,6.0,7.5,5.5,8.0,6.0,7.0,6.0,5.0,6.5,7.5,7.5,7.0,7.5,7.5,8.0,7.5,8.0,7.0,8.0,6.5,7.5,7.0,7.5,8.0,7.5,8.0,7.0,7.5,6.5,2.5,8.0,7.0,7.5,5.5,7.5,7.5,4.0,6.5,8.0,7.0,8.0,7.0,6.0,7.5,7.5,7.5,7.5,7.0,6.5,7.0,8.0,7.0,6.5,6.0,6.5,7.0,6.5,6.5,6.0,5.5,5.5,5.0,5.0,5.0,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.0,4.5,4.0,4.0,3.5,4.5,4.0,4.5,4.5,3.5,3.5,4.0,3.0,4.5,3.5,3.5,3.0,3.5,3.5,3.5,3.5,3.0,4.0,4.0,3.5,3.5,3.5,2.5,3.0,4.0,4.0,3.5,4.0,4.5,3.5,3.5,3.0,3.5,4.0,3.5,4.0,2.5,4.0,4.0,4.0,3.5,3.5,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.0,5.0,5.0,5.0,5.0,5.0,5.5,5.5,5.0,5.0,5.0,5.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,5.5,6.0,5.5,5.0,5.5,5.0,6.0,5.5,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,4.5,5.5,5.5,5.5,5.5,2.0,5.5,5.5,2.5,2.0,2.5,2.0,2.0,2.5,2.5,5.5,5.5,2.0,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,6.5,6.0,6.0,5.5,6.0,5.5,5.5,6.0,5.5,5.5,2.5,6.5,6.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.5,7.0,7.0,6.5,6.5,6.5,6.0,6.0,5.5,6.5,6.5,6.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.5,6.5,7.0,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.0,7.0,7.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,7.0,6.5,6.5,7.0,6.5],"y":[53.0,56.0,52.0,50.0,66.0,66.0,69.0,58.0,51.0,56.0,61.0,57.0,50.0,61.0,54.0,60.0,55.0,59.0,63.0,50.0,53.0,59.0,64.0,56.0,58.0,63.0,54.0,54.0,52.0,54.0,52.0,53.0,54.0,51.0,53.0,50.0,55.0,52.0,52.0,51.0,53.0,55.0,55.0,50.0,57.0,51.0,69.0,56.0,52.0,53.0,57.0,54.0,55.0,54.0,53.0,51.0,56.0,52.0,55.0,70.0,54.0,54.0,53.0,50.0,53.0,52.0,53.0,51.0,52.0,53.0,53.0,51.0,53.0,56.0,57.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,51.0,51.0,51.0,51.0,51.0,50.0,51.0,50.0,52.0,50.0,51.0,52.0,51.0,51.0,52.0,50.0,50.0,51.0,51.0,51.0,50.0,51.0,51.0,52.0,67.0,50.0,51.0,50.0,51.0,52.0,50.0,52.0,51.0,51.0,52.0,50.0,51.0,50.0,50.0,51.0,50.0,51.0,50.0,51.0,52.0,51.0,51.0,51.0,51.0,52.0,51.0,52.0,52.0,52.0,52.0,52.0,53.0,53.0,53.0,53.0,53.0,53.0,54.0,54.0,54.0,54.0,53.0,55.0,55.0,55.0,54.0,55.0,54.0,55.0,55.0,54.0,54.0,54.0,56.0,56.0,55.0,56.0,55.0,56.0,57.0,57.0,57.0,55.0,58.0,57.0,58.0,56.0,56.0,56.0,55.0,57.0,56.0,55.0,55.0,56.0,55.0,57.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,55.0,54.0,53.0,55.0,54.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,55.0,55.0,61.0,56.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,65.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,54.0,62.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,54.0,56.0,55.0,54.0,55.0,55.0,56.0,54.0,54.0,68.0,55.0,55.0,56.0,55.0,55.0,56.0,56.0,56.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,59.0,58.0,58.0,60.0,59.0,60.0,58.0,57.0,58.0,59.0,59.0,57.0,57.0,57.0,57.0,57.0,57.0,58.0,57.0,58.0,57.0,59.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,58.0,57.0,58.0,58.0,57.0,58.0,59.0,57.0,58.0,57.0,58.0,57.0,57.0,58.0,57.0,56.0,57.0,60.0,57.0,59.0,57.0,58.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,57.0,57.0,57.0,56.0,57.0,58.0,57.0,56.0,58.0,57.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,58.0,70.0,57.0,56.0,56.0,56.0,56.0,56.0,58.0,56.0,56.0,57.0,57.0,57.0,56.0,57.0,57.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,56.0,57.0,57.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpDailyLossLimit × InpRsiSellLevel"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpDailyLossLimit"},"range":[1.7,8.3]},"yaxis":{"title":{"text":"InpRsiSellLevel"},"range":[49.0,71.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpDailyLossLimit × InpBreakEvenPoints</h2><div style="height:520px; width:700px;"> <div id="contour-InpDailyLossLimit-InpBreakEvenPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpDailyLossLimit-InpBreakEvenPoints")) { Plotly.newPlot( "contour-InpDailyLossLimit-InpBreakEvenPoints", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[37.5,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,230.0,250.0,260.0,270.0,280.0,290.0,300.0,312.5],"y":[1.7,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.3],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f\u002fAdnr3UeHQIl7LJ3ufy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0BnZmZm6nhAn6c65ObXiECzliGOdSiHQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAgIQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fsjsL1KIiAQPCsR+F6tH1AAAAAAAAA+H9SuB6FP4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fFK5H4YSEPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fLLYtyuxQgUAY16NwPYZ+QHsUrkdggS7BH4XrUd6BLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4Ko+4DSgy7BAAAAAAAA+H8AAAAAAAD4f5ijcD0KdYRALArXo3DnhEDNzMxMgIAuwSYBago9gS7BAAAAAAAA+H8AAAAAAAD4f\u002fg2\u002fVnOgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbQSELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+5GW5gXoEuwQAAAAAAAPh\u002fAAAAAAAA+H8wvhOzXs1\u002fQAjC9Shcz4RAipxjQHZSgkA4c9L7RrmBQGa9GEpQgC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1yPwnU1hS7BAAAAAAAA+H8AAAAAAAD4f92YnjD3gy7BMXxEDPeBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fSMh71crTikBnxM4UOueHQJFJRo43gS7BQkP\u002fJKiALsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AdJgP0YIuwQAAAAAAAPh\u002fAAAAAAAA+H9iFW+EhoQuwXfzVGfrgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f5i4HoXrlXNAGO317o+xiEC3KjV7oFGHQIVCBJzxfy7BjX+f8eyCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+QpHA9CjduQOyOqiYId4pAIkCH+fJyhkAlWBxusX8uwQAAAAAAAPh\u002fqKlli5eCLsEAAAAAAAD4fwAAAAAAAPh\u002fM\u002flme9WBLsEAAAAAAAD4fwAAAAAAAPh\u002fI9v5fsuBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8cpOlI6gC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fA4m1+JQXikBYC3va4cmJQNNbd\u002fPUi4dAUNP2r6zHcUAEyqYc\u002foIuwQAAAAAAAPh\u002fQG6jAbz+eEAAAAAAAAD4f\u002ft5U5HRhC7Bxr\u002fP+CaDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f+wW7IZaBLsEAAAAAAAD4fy1gAjdjgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fvW98bbqCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f6ySV+eYl4ZAEAt72uGFiEBD6X3ja1iHQAAAAAAAAPh\u002fAAAAAAAA+H\u002f58gKs6YMuwRUdyUXdgi7BVoLFoYWDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9MGqOVkIAuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fy3uJY3RcmFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f+xIhbGFjodArpAsYAL7bUBbVfZdEWhlQAAAAAAAAPh\u002fAAAAAAAA+H\u002fAhetRuPZrQNA9CtejQGhAHHQR34mxb0DwPQrXo0BnQFoqb4fhhC7BfjUHyMGBLsEAAAAAAAD4fwAAAAAAAPh\u002fZCMQL6eDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fPIW\u002fJmvsXUDtPt6rVnZgQF65iO\u002fEFHBAQdR9wBqDLsEgDDy3goIuwd83vvYEgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fZcdGQECCLsEj1uLTxIIuwQAAAAAAAPh\u002fyxDH+q2CLsEVNZjGv4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"15, 26"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[300.0,60.0,180.0,190.0,60.0,210.0,190.0,230.0,110.0,100.0,290.0,140.0,50.0,50.0,80.0,120.0,80.0,50.0,150.0,80.0,140.0,50.0,70.0,100.0,50.0,90.0,70.0,120.0,120.0,160.0,120.0,70.0,70.0,100.0,70.0,90.0,130.0,60.0,60.0,70.0,90.0,60.0,60.0,60.0,80.0,280.0,100.0,50.0,250.0,70.0,90.0,110.0,110.0,60.0,80.0,170.0,50.0,80.0,110.0,60.0,190.0,140.0,130.0,130.0,70.0,90.0,100.0,150.0,70.0,110.0,130.0,110.0,70.0,80.0,80.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,210.0,60.0,50.0,60.0,50.0,60.0,70.0,50.0,60.0,50.0,70.0,60.0,50.0,50.0,60.0,60.0,60.0,80.0,50.0,60.0,70.0,50.0,50.0,60.0,50.0,70.0,60.0,50.0,80.0,60.0,70.0,70.0,50.0,60.0,50.0,50.0,60.0,70.0,50.0,60.0,50.0,60.0,50.0,50.0,60.0,50.0,50.0,70.0,50.0,50.0,50.0,60.0,50.0,50.0,50.0,60.0,60.0,60.0,70.0,50.0,70.0,50.0,50.0,60.0,50.0,60.0,60.0,60.0,80.0,60.0,300.0,70.0,60.0,60.0,60.0,60.0,80.0,60.0,70.0,80.0,90.0,70.0,70.0,80.0,70.0,90.0,70.0,70.0,70.0,80.0,70.0,90.0,70.0,80.0,270.0,60.0,60.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,180.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,210.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,60.0,50.0,50.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,60.0,260.0,60.0,60.0,60.0,60.0,60.0,230.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,80.0,60.0,80.0,70.0,60.0,70.0,160.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,60.0,290.0,60.0,70.0,70.0,70.0,60.0,60.0,80.0,60.0,70.0,60.0,60.0,70.0,60.0,200.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,60.0,80.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,230.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0],"y":[3.5,8.0,8.0,7.0,7.5,4.5,3.0,5.0,4.0,8.0,2.0,6.5,6.5,5.5,6.0,7.0,6.5,6.0,7.5,5.5,8.0,6.0,7.0,6.0,5.0,6.5,7.5,7.5,7.0,7.5,7.5,8.0,7.5,8.0,7.0,8.0,6.5,7.5,7.0,7.5,8.0,7.5,8.0,7.0,7.5,6.5,2.5,8.0,7.0,7.5,5.5,7.5,7.5,4.0,6.5,8.0,7.0,8.0,7.0,6.0,7.5,7.5,7.5,7.5,7.0,6.5,7.0,8.0,7.0,6.5,6.0,6.5,7.0,6.5,6.5,6.0,5.5,5.5,5.0,5.0,5.0,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.0,4.5,4.0,4.0,3.5,4.5,4.0,4.5,4.5,3.5,3.5,4.0,3.0,4.5,3.5,3.5,3.0,3.5,3.5,3.5,3.5,3.0,4.0,4.0,3.5,3.5,3.5,2.5,3.0,4.0,4.0,3.5,4.0,4.5,3.5,3.5,3.0,3.5,4.0,3.5,4.0,2.5,4.0,4.0,4.0,3.5,3.5,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.0,5.0,5.0,5.0,5.0,5.0,5.5,5.5,5.0,5.0,5.0,5.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,5.5,6.0,5.5,5.0,5.5,5.0,6.0,5.5,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,4.5,5.5,5.5,5.5,5.5,2.0,5.5,5.5,2.5,2.0,2.5,2.0,2.0,2.5,2.5,5.5,5.5,2.0,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,6.5,6.0,6.0,5.5,6.0,5.5,5.5,6.0,5.5,5.5,2.5,6.5,6.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.5,7.0,7.0,6.5,6.5,6.5,6.0,6.0,5.5,6.5,6.5,6.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.5,6.5,7.0,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.0,7.0,7.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,7.0,6.5,6.5,7.0,6.5],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpDailyLossLimit × InpBreakEvenPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpDailyLossLimit"},"range":[37.5,312.5]},"yaxis":{"title":{"text":"InpBreakEvenPoints"},"range":[1.7,8.3]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpDailyLossLimit × InpRsiPeriod</h2><div style="height:520px; width:700px;"> <div id="contour-InpDailyLossLimit-InpRsiPeriod" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpDailyLossLimit-InpRsiPeriod")) { Plotly.newPlot( "contour-InpDailyLossLimit-InpRsiPeriod", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[1.7,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.3],"y":[5.95,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29.05],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fpHA9CjmCLsFxPQrXh4QuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0wao5WQgC7BAAAAAAAA+H8zMzMzNIMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fNzMzM04EuwQAAAAAAAPh\u002fcT0KV1OCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fdo4B2QKBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3E9CtfAgS7BEMP1KFzDfUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H81KQV9o4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fuML1KFyndEAsti3K7FCBQBgfhetRrHhAAAAAAAAA+H84BvUtc2N5QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fWipvh+GELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0BnZmZm6nhAAAAAAAAA+H\u002foehSuR5V+QDhihPBoWH5AML4Ts17Nf0CQCtejcIl4QAAAAAAAAPh\u002fHAjJ4uqBLsHUHThnxAmFQKySV+eYl4ZAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fmOB6FK4rf0Co61G4Hq2AQKhwPQrXO39ApHA9ipmCLsEAAAAAAAD4f41\u002fn\u002fHsgi7BOh4zUHd\u002fLsGAcXK\u002fQ1uJQEPpfeNrWIdAAAAAAAAA+H8gDDy3goIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f5+nOuTm14hAIOF6FK4HeECAcD0K12N5QOCOwvUoEIFAuB6FaxeCLsEAAAAAAAD4f5gVUn5SGYhAZ9mxEYidiUADibX4lBeKQCzYR6eucoZAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9aAg6hSgeEQLOWIY51KIdA8KxH4Xq0fUA4rkfhegB+QABSuB6FpYFAHtydtb9\u002fLsF381Rn64MuwRjt9e6PsYhAOz\u002fjwoEeiEC8Zwqd1yCIQBALe9rhhYhA7EiFsYWOh0Blx0ZAQIIuwQAAAAAAAPh\u002fAAAAAAAA+H\u002f\u002fAdnr3UeHQIl7LB30fy7B7I7C9SiIgEAAAAAAAAD4f6DMzMzMuINABDkoAW6ALsFIyHvVytOKQBeRm+EGJIhA7I6qJgh3ikCUgT6RJ2iJQOipmiDqC4VAW1X2XRFoZUDLEMf6rYIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fywK16Nw54RADAAAAADUgkAvr3yW59mHQJi4HoXrlXNAkKRwPQo3bkBQ0\u002favrMdxQIo8STpJhS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0SGVVwsgi7BCML1KFzPhECMinH+JhuHQAAAAAAAAPh\u002fAAAAAAAA+H+9b3xtuoIuwVaCxaGFgy7BrpAsYAL7bUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fqDoZHKVDg0BIVz7L8zuGQEhXPsvzVYZAbJJX55gRgkAAAAAAAAD4f9RgGoaPgi7BMCpcj8KdaUBB1H3AGoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fg2\u002fVnOgy7BAAAAAAAA+H\u002f2KMb5mwB\u002fQBSAmlq2zYRAvMd71cozhEBAbqMBvP54QCi5HoXr5XFAHHQR34mxb0DtPt6rVnZgQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f5BMZyeDwINAAAAAAAAA+H\u002f7eVOR0YQuwQBBh\u002fnyeG1AqwSLQwWELsFeuYjvxBRwQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fsNajcD2SZkBdP96rVu5XQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+CqPuA0oMuwRyRlsrb+VxAXI\u002fCdTWFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8EyqYc\u002foIuwQAAAAAAAPh\u002fwIXrUbjuaUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACAhD7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f7D2KFyP+mdA4gFlE1aDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9I4XoUoYQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8j1uLTxIIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1ib4QZ8fn9AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+AW4\u002fC9SgxQC3uJY3RcmFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fD2OxQFxHpAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"24, 15"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[3.5,8.0,8.0,7.0,7.5,4.5,3.0,5.0,4.0,8.0,2.0,6.5,6.5,5.5,6.0,7.0,6.5,6.0,7.5,5.5,8.0,6.0,7.0,6.0,5.0,6.5,7.5,7.5,7.0,7.5,7.5,8.0,7.5,8.0,7.0,8.0,6.5,7.5,7.0,7.5,8.0,7.5,8.0,7.0,7.5,6.5,2.5,8.0,7.0,7.5,5.5,7.5,7.5,4.0,6.5,8.0,7.0,8.0,7.0,6.0,7.5,7.5,7.5,7.5,7.0,6.5,7.0,8.0,7.0,6.5,6.0,6.5,7.0,6.5,6.5,6.0,5.5,5.5,5.0,5.0,5.0,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.0,4.5,4.0,4.0,3.5,4.5,4.0,4.5,4.5,3.5,3.5,4.0,3.0,4.5,3.5,3.5,3.0,3.5,3.5,3.5,3.5,3.0,4.0,4.0,3.5,3.5,3.5,2.5,3.0,4.0,4.0,3.5,4.0,4.5,3.5,3.5,3.0,3.5,4.0,3.5,4.0,2.5,4.0,4.0,4.0,3.5,3.5,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.0,5.0,5.0,5.0,5.0,5.0,5.5,5.5,5.0,5.0,5.0,5.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,5.5,6.0,5.5,5.0,5.5,5.0,6.0,5.5,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,4.5,5.5,5.5,5.5,5.5,2.0,5.5,5.5,2.5,2.0,2.5,2.0,2.0,2.5,2.5,5.5,5.5,2.0,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,6.5,6.0,6.0,5.5,6.0,5.5,5.5,6.0,5.5,5.5,2.5,6.5,6.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.5,7.0,7.0,6.5,6.5,6.5,6.0,6.0,5.5,6.5,6.5,6.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.5,6.5,7.0,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.0,7.0,7.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,7.0,6.5,6.5,7.0,6.5],"y":[23,20,22,8,22,23,13,7,20,8,28,14,14,17,12,17,27,17,11,20,15,17,19,15,25,10,18,20,18,15,24,21,22,21,19,25,21,23,24,23,13,19,22,19,16,18,24,21,27,9,13,20,21,23,18,16,20,19,16,14,22,20,20,18,21,23,21,25,20,20,20,20,21,17,18,17,17,17,11,12,11,11,12,12,12,12,12,10,10,10,7,12,10,9,14,12,9,13,11,11,10,11,12,13,13,14,13,13,15,13,14,12,12,13,13,14,12,13,15,15,13,11,15,12,14,13,11,14,12,13,14,13,15,16,15,15,13,13,16,16,15,14,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,18,16,17,17,16,16,17,17,17,17,18,18,18,18,18,18,19,18,19,17,18,18,17,17,18,18,17,18,18,19,17,19,17,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,21,20,20,19,20,20,19,20,21,19,20,21,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,17,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,15,16,15,15,16,16,16,15,15,15,15,15,15,16,16,16,15,16,15,14,15,16,16,15,16,15,15,15,16,16,15,14,15,15,14,14,14,15,15,14,16,16,15,15,14,15,16,15,28,16,16,15,16,14,14,16,14,15,14,14,15,14,26,15,14,15,15,15,15,15,15,15,15,16,16,16,16,16,15,16,15,14,15,16,16,14,14,16,14,16,15,13,16,16,16,16,16,14,16,15,14,16,15,16,15,16,16,14,15,16,14,13,14,14,15,15,15,13,14,15,14,14,13,14,14,15,15,14,15,13,14,15,15,14,15,15,14,14,13,14,14,14,13,14,13,13,13,13,12,13,13,13,12,13,13,13,13,12,13,13,12,13],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpDailyLossLimit × InpRsiPeriod"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpDailyLossLimit"},"range":[1.7,8.3]},"yaxis":{"title":{"text":"InpRsiPeriod"},"range":[5.95,29.05]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpDailyLossLimit × InpAtrSLMult</h2><div style="height:520px; width:700px;"> <div id="contour-InpDailyLossLimit-InpAtrSLMult" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpDailyLossLimit-InpAtrSLMult")) { Plotly.newPlot( "contour-InpDailyLossLimit-InpAtrSLMult", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[0.9,1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7000000000000002,1.8,1.9,2.0,2.1,2.2,2.3,2.4000000000000004,2.5,2.6,2.7,2.8,2.9000000000000004,3.0,3.1],"y":[1.7,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.3],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f\u002fwHZ691Hh0BehZS\u002fCYEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACNhD7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAICEPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+Jeywd9H8uwZ+nOuTm14hAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+kcD2Ko4EuwUBnZmZm6nhAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8UrkfhhIQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8wrkfhenx3QOyOwvUoiIBAmOB6FK4rf0C4wvUoXKd0QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4Ko+4DSgy7BAAAAAAAA+H\u002f4wvUoXDN3QKjrUbgerYBALLYtyuxQgUDhehQuYYEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fHJGWytv5XEAAAAAAAAD4fwAAAAAAAPh\u002f+Db9Wc6DLsEAAAAAAAD4fwAAAAAAAPh\u002fRAWGrG4KgEBwwvUoXCODQCwK16Nw54RAxKYFL3pqg0CgzMzMzLiDQABSuB6FpYFAgI\u002fC9SiIfkDD9Sjc\u002foEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fXI\u002fCdTWFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fdmJ4w94MuwR7cnbW\u002ffy7BAAAAAAAA+H8AAAAAAAD4f2dmZmYZgS7BDAAAAADUgkCoOhkcpUODQAjC9Shcz4RAML4Ts17Nf0AQw\u002fUoXMN9QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fcT0K14eELsEAAAAAAAD4f3\u002f58gJsU4VASMh71crTikAvr3yW59mHQH9nmxvTEYdA43tJY7RGh0AA5gDBHPqFQICC+pa5oYVAIOYAwRxihUBIVz7L8zuGQOi3HoXrF4VAkArXo3CJeEA4BvUtc2N5QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f41\u002fn\u002fHsgi7B8O7mqY4uhEAAAAAAAAD4fwAAAAAAAPh\u002fHEKVmh6CLsEAAAAAAAD4fwAAAAAAAPh\u002fsJo90Ar2hUA04h5LH8iGQBjt9e6PsYhAmIaPiCl9iEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fSFc+y\u002fNVhkCQTGcng8CDQAAAAAAAAPh\u002fmLgeheuVc0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f+vrQBfW9U0AAAAAAAAD4f6js9e6PnYdAlyo1e6DBh0DsjqomCHeKQI83\u002fdkP4odAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f7zHe9XKM4RAM\u002flme9WBLsEcCMni6oEuwZCkcD0KN25AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H81KQV9o4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f6wA1tWyDhkBLms5OBquHQAvshm2LrIhAA4m1+JQXikC8Zwqd1yCIQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f9mxEQjMgy7BgFuPwvUoMUBAbqMBvP54QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1DT9q+sx3FAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1aCxaGFgy7B+fICrOmDLsEVHclF3YIuwbD2KFyP+mdAnl75LM9fa0CsklfnmJeGQBALe9rhhYhAQ+l942tYh0At7iWN0XJhQAAAAAAAAPh\u002fKLkehevlcUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AQYf58nhtQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fvgtBDkrsY0B2jgHZAoEuwa6QLGAC+21AfjUHyMGBLsHAhetRuO5pQFtV9l0RaGVA7EiFsYWOh0AcdBHfibFvQPA9CtejQGdAWipvh+GELsEAAAAAAAD4fyI3w21Ogy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fMzMzMzSDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8gDDy3goIuwQAAAAAAAPh\u002fPIW\u002fJmvsXUAAAAAAAAD4fwAAAAAAAPh\u002fr84xYDqDLsFeuYjvxBRwQAAAAAAAAPh\u002f3ze+9gSDLsEVNZjGv4MuwQAAAAAAAPh\u002fAAAAAAAA+H9lx0ZAQIIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"15, 23"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[2.4000000000000004,2.0,2.3,1.7000000000000002,2.3,1.2,1.3,1.6,2.0,1.0,3.0,1.7000000000000002,1.8,2.0,2.8,1.9,2.5,1.5,2.1,1.4,2.6,1.5,1.7000000000000002,1.8,2.2,1.1,1.4,1.9,1.3,1.5,1.8,2.0,1.9,2.2,2.1,1.9,2.4000000000000004,1.6,1.6,1.2,1.4,1.8,1.6,1.8,1.7000000000000002,2.0,1.4,1.6,2.1,1.3,1.0,1.8,1.8,1.7000000000000002,1.6,2.0,1.8,2.2,1.5,1.9,1.7000000000000002,2.0,1.9,1.8,1.7000000000000002,1.7000000000000002,1.4,2.0,2.3,2.6,2.7,2.4000000000000004,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.7,2.7,2.8,2.7,2.6,2.8,2.8,2.7,2.6,2.8,2.5,2.5,2.7,2.8,2.6,2.8,2.8,2.7,2.7,2.7,2.7,2.9000000000000004,2.7,2.6,2.7,2.5,2.8,2.8,2.8,2.7,2.6,2.8,2.7,2.9000000000000004,3.0,2.9000000000000004,2.9000000000000004,2.8,2.7,2.7,2.5,2.7,2.6,2.9000000000000004,2.7,2.7,2.8,2.8,2.9000000000000004,2.8,2.8,2.8,2.7,2.6,2.6,2.6,2.7,2.7,2.7,2.7,2.5,2.6,2.5,2.4000000000000004,2.4000000000000004,2.3,2.3,2.3,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.5,2.5,2.4000000000000004,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.6,2.4000000000000004,2.5,2.5,2.3,2.4000000000000004,2.6,2.4000000000000004,2.5,2.6,2.6,2.5,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.6,2.6,2.6,2.7,2.7,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.2,2.3,2.2,2.2,2.2,2.3,2.2,2.2,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2.1,2.2,2.1,2.0,2.0,2.1,2.2,2.2,2.1,2.1,2.1,2.2,2.0,2.0,2.1,2.1,2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.0,1.9,2.0,2.0,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,2.0,1.9,1.8,2.0,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.8,1.9,2.0,2.0,2.0,2.0,1.9,2.0,1.8,1.9,2.0,1.9,1.9,1.9,2.0,1.8,1.9,1.9,1.8,1.9,2.0,1.9,2.0,1.7000000000000002,1.9,1.8,2.0,1.9,2.0,2.0,1.9,2.0,2.0,1.8,1.9,2.0,1.9,1.9,1.8,1.9,2.0,2.0,1.9,1.9,1.8,1.9,2.0,2.0,2.0,1.1,2.0,1.9,1.9,1.9,1.8,1.9,1.8,1.7000000000000002,1.8,1.8,1.8,1.7000000000000002,1.8,1.9,1.7000000000000002,1.8,1.9,1.8,1.9,1.8,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.9,1.9,1.9,2.0,2.0,2.0,1.9,2.0,1.9,2.0,1.9,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,2.0,1.9,1.9,2.0,1.9,1.8,1.9,1.8,1.9,1.9,1.8,1.8,1.9,1.9,1.9,2.0,1.8,2.0,1.9,1.9,2.0,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.7000000000000002,1.7000000000000002,1.8,1.7000000000000002,1.8,1.6,1.8,1.7000000000000002,1.8,1.8,1.8,1.8,1.8,1.8],"y":[3.5,8.0,8.0,7.0,7.5,4.5,3.0,5.0,4.0,8.0,2.0,6.5,6.5,5.5,6.0,7.0,6.5,6.0,7.5,5.5,8.0,6.0,7.0,6.0,5.0,6.5,7.5,7.5,7.0,7.5,7.5,8.0,7.5,8.0,7.0,8.0,6.5,7.5,7.0,7.5,8.0,7.5,8.0,7.0,7.5,6.5,2.5,8.0,7.0,7.5,5.5,7.5,7.5,4.0,6.5,8.0,7.0,8.0,7.0,6.0,7.5,7.5,7.5,7.5,7.0,6.5,7.0,8.0,7.0,6.5,6.0,6.5,7.0,6.5,6.5,6.0,5.5,5.5,5.0,5.0,5.0,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.0,4.5,4.0,4.0,3.5,4.5,4.0,4.5,4.5,3.5,3.5,4.0,3.0,4.5,3.5,3.5,3.0,3.5,3.5,3.5,3.5,3.0,4.0,4.0,3.5,3.5,3.5,2.5,3.0,4.0,4.0,3.5,4.0,4.5,3.5,3.5,3.0,3.5,4.0,3.5,4.0,2.5,4.0,4.0,4.0,3.5,3.5,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.0,5.0,5.0,5.0,5.0,5.0,5.5,5.5,5.0,5.0,5.0,5.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,5.5,6.0,5.5,5.0,5.5,5.0,6.0,5.5,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,4.5,5.5,5.5,5.5,5.5,2.0,5.5,5.5,2.5,2.0,2.5,2.0,2.0,2.5,2.5,5.5,5.5,2.0,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,6.5,6.0,6.0,5.5,6.0,5.5,5.5,6.0,5.5,5.5,2.5,6.5,6.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.5,7.0,7.0,6.5,6.5,6.5,6.0,6.0,5.5,6.5,6.5,6.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.5,6.5,7.0,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.0,7.0,7.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,7.0,6.5,6.5,7.0,6.5],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpDailyLossLimit × InpAtrSLMult"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpDailyLossLimit"},"range":[0.9,3.1]},"yaxis":{"title":{"text":"InpAtrSLMult"},"range":[1.7,8.3]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpDailyLossLimit × InpTrailStartPoints</h2><div style="height:520px; width:700px;"> <div id="contour-InpDailyLossLimit-InpTrailStartPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpDailyLossLimit-InpTrailStartPoints")) { Plotly.newPlot( "contour-InpDailyLossLimit-InpTrailStartPoints", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[1.7,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.3],"y":[85.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,415.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fGv8\u002f4JoMuwe3kuFM6LGdAAAAAAAAA+H+vzjFgOoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f41\u002fn\u002fHsgi7BAAAAAAAA+H+AW4\u002fC9SgxQAAAAAAAAPh\u002fZ+22S\u002fSCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxUdyUXdgi7BrpAsYAL7bUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f55e+SzPX2tAHHQR34mxb0DfN772BIMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fy3uJY3RcmFAvgtBDkrsY0BeuYjvxBRwQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fyYZOQvsgy7BAAAAAAAA+H\u002ftPt6rVnZgQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+CqPuA0oMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+9b3xtuoIuwbD2KFyP+mdAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8EyqYc\u002foIuwQAAAAAAAPh\u002fAAAAAAAA+H\u002fLEMf6rYIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxxClZoegi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002ffjUHyMGBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fM\u002flme9WBLsFAbqMBvP54QCi5HoXr5XFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fdo4B2QKBLsEgDDy3goIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8vwD76Un8uwQAAAAAAAPh\u002fWipvh+GELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fHAjJ4uqBLsHZsREIzIMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fqKlli5eCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACAhD7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3req1Ym431AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fXI\u002fCdTWFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fQd\u002fpqsMUtAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fALMehetRMkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fMXxEDPeBLsFI4XoUoYQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f2Gj7V9a5gUAAAAAAAAD4fwAAAAAAAPh\u002fdPehC+rbT0AAAAAAAAD4fzMzM7OEhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fJqzAkFWcgEAsD11Q35mAQJAzMzMzX3NAkKRwPQo3bkAO4+R+h+p8QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fipxjQHZSgkA4BvUtc2N5QJi4HoXrlXNAAAAAAAAA+H9Q0\u002favrMdxQIo8STpJhS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fywK16Nw54RADAAAAADUgkCRSUaON4EuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwBBh\u002fnyeG1AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f2KFyPBYIuwVTC9ShclYFAkDF3Da6ALsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fNO06xN4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f5ijcD0KdYRAAAAAAAAA+H\u002fotx6F6xeFQBjx12SNlYFAEKn26XiRg0AAAAAAAAD4f0wao5WQgC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fuML1KFyndEAsti3K7FCBQMSmBS96aoNACML1KFzPhEBIVz7L8zuGQEhXPsvzVYZAO8eA7AaBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f7I7C9SiIgEDNzMzM04EuwaDMzMzMuINApHA9CjmCLsEgmZmZmbGEQBSAmlq2zYRAvMd71cozhEAL7IZti6yIQKySV+eYl4ZAAAAAAAAA+H88hb8ma+xdQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fFK5H4YSEPsH4wvUoXDN3QBgfhetRrHhAEMP1KFzDfUCAgvqWuaGFQJBMZyeDwINAAAAAAAAA+H87ajANQ6eJQAh3Z+22doZAAAAAAAAA+H9lx0ZAQIIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0BnZmZm6nhAmOB6FK4rf0DhehQuYYEuwVK4HoXHgS7BAPYoXI8OeUDo5QDBHKyGQAAAAAAAAPh\u002fIkCH+fJyhkADibX4lBeKQIA012mkf4hA7EiFsYWOh0Aj1uLTxIIuwQAAAAAAAPh\u002fAAAAAAAA+H+NRdO5S4AuwX9N1sicgC7BAAAAAAAA+H+o61G4Hq2AQICPwvUoiH5AML4Ts17Nf0Avr3yW59mHQBeRm+EGJIhA7I6qJgh3ikBYC3va4cmJQBALe9rhhYhAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f\u002fAdnr3UeHQJ+nOuTm14hAIOF6FK4HeEDoehSuR5V+QByRlsrb+VxAHtydtb9\u002fLsFIyHvVytOKQBjt9e6PsYhAW0m6ZvIXiEBxrIu7K4AuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"33, 15"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[3.5,8.0,8.0,7.0,7.5,4.5,3.0,5.0,4.0,8.0,2.0,6.5,6.5,5.5,6.0,7.0,6.5,6.0,7.5,5.5,8.0,6.0,7.0,6.0,5.0,6.5,7.5,7.5,7.0,7.5,7.5,8.0,7.5,8.0,7.0,8.0,6.5,7.5,7.0,7.5,8.0,7.5,8.0,7.0,7.5,6.5,2.5,8.0,7.0,7.5,5.5,7.5,7.5,4.0,6.5,8.0,7.0,8.0,7.0,6.0,7.5,7.5,7.5,7.5,7.0,6.5,7.0,8.0,7.0,6.5,6.0,6.5,7.0,6.5,6.5,6.0,5.5,5.5,5.0,5.0,5.0,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.0,4.5,4.0,4.0,3.5,4.5,4.0,4.5,4.5,3.5,3.5,4.0,3.0,4.5,3.5,3.5,3.0,3.5,3.5,3.5,3.5,3.0,4.0,4.0,3.5,3.5,3.5,2.5,3.0,4.0,4.0,3.5,4.0,4.5,3.5,3.5,3.0,3.5,4.0,3.5,4.0,2.5,4.0,4.0,4.0,3.5,3.5,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.0,4.5,4.5,4.5,4.0,5.0,5.0,5.0,5.0,5.0,5.5,5.5,5.0,5.0,5.0,5.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,5.5,6.0,5.5,5.0,5.5,5.0,6.0,5.5,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,5.0,5.0,5.0,5.0,4.5,5.0,5.0,4.5,5.5,5.5,5.5,5.5,2.0,5.5,5.5,2.5,2.0,2.5,2.0,2.0,2.5,2.5,5.5,5.5,2.0,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,5.5,5.5,5.5,6.0,5.5,5.5,5.5,5.5,5.5,6.0,6.5,6.0,6.0,5.5,6.0,5.5,5.5,6.0,5.5,5.5,2.5,6.5,6.0,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.0,6.5,6.0,6.0,6.0,6.0,6.0,6.5,6.5,7.0,7.0,6.5,6.5,6.5,6.0,6.0,5.5,6.5,6.5,6.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.5,6.5,7.0,6.5,6.5,6.5,6.5,7.0,7.0,7.0,7.0,7.0,7.5,7.0,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,6.5,7.0,6.5,6.5,7.0,6.5],"y":[160.0,150.0,150.0,340.0,200.0,250.0,370.0,400.0,330.0,150.0,260.0,100.0,300.0,260.0,220.0,310.0,110.0,290.0,210.0,180.0,370.0,300.0,290.0,230.0,280.0,330.0,120.0,120.0,120.0,180.0,180.0,140.0,130.0,130.0,150.0,100.0,170.0,130.0,160.0,140.0,200.0,120.0,140.0,100.0,120.0,160.0,240.0,360.0,140.0,200.0,110.0,120.0,130.0,400.0,110.0,170.0,100.0,150.0,120.0,270.0,140.0,120.0,130.0,110.0,130.0,170.0,130.0,380.0,190.0,190.0,190.0,220.0,320.0,310.0,330.0,300.0,310.0,300.0,310.0,340.0,340.0,340.0,350.0,350.0,350.0,350.0,350.0,370.0,380.0,380.0,360.0,390.0,390.0,360.0,370.0,350.0,390.0,370.0,350.0,330.0,380.0,350.0,390.0,400.0,390.0,400.0,390.0,390.0,400.0,390.0,360.0,390.0,370.0,390.0,400.0,370.0,380.0,400.0,390.0,390.0,380.0,370.0,390.0,400.0,400.0,380.0,400.0,390.0,370.0,360.0,380.0,360.0,360.0,360.0,390.0,390.0,370.0,380.0,360.0,360.0,380.0,360.0,360.0,360.0,340.0,330.0,330.0,330.0,340.0,340.0,320.0,340.0,320.0,340.0,340.0,340.0,340.0,340.0,330.0,330.0,330.0,340.0,320.0,320.0,320.0,320.0,320.0,320.0,310.0,300.0,310.0,310.0,310.0,320.0,310.0,300.0,320.0,290.0,280.0,290.0,310.0,320.0,330.0,280.0,350.0,300.0,310.0,320.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,360.0,360.0,340.0,360.0,360.0,350.0,340.0,360.0,350.0,340.0,360.0,350.0,370.0,350.0,340.0,340.0,340.0,340.0,340.0,360.0,360.0,360.0,360.0,360.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,400.0,390.0,400.0,390.0,240.0,390.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,380.0,390.0,390.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,380.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,210.0,390.0,380.0,370.0,370.0,380.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,360.0,360.0,360.0,360.0,370.0,360.0,370.0,360.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpDailyLossLimit × InpTrailStartPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpDailyLossLimit"},"range":[1.7,8.3]},"yaxis":{"title":{"text":"InpTrailStartPoints"},"range":[85.0,415.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpRsiSellLevel × InpBreakEvenPoints</h2><div style="height:520px; width:700px;"> <div id="contour-InpRsiSellLevel-InpBreakEvenPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpRsiSellLevel-InpBreakEvenPoints")) { Plotly.newPlot( "contour-InpRsiSellLevel-InpBreakEvenPoints", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[37.5,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,230.0,250.0,260.0,270.0,280.0,290.0,300.0,312.5],"y":[49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fML4Ts17Nf0DUYBqGj4IuwQrXo\u002fBYgi7BH4XrUd6BLsGvzjFgOoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f2fttkv0gi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0wao5WQgC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwBSuB6FpYFAgI\u002fC9SiIfkC+C0EOSuxjQAAAAAAAAPh\u002fAAAAAAAA+H\u002ffN772BIMuwdmxEQjMgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fI9bi08SCLsEAAAAAAAD4f8sQx\u002fqtgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbQSELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f71vfG26gi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fgjsL1KBCBQPCsR+F6tH1AKLkehevlcUBB1H3AGoMuwQTKphz+gi7BAAAAAAAA+H8AAAAAAAD4f+IBZRNWgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxU1mMa\u002fgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8t7iWN0XJhQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002foMzMzMy4g0BQwvUoXPODQF65iO\u002fEFHBAwLLSJAqDLsEgDDy3goIuwfnyAqzpgy7BQG6jAbz+eEAAAAAAAAD4fxx0Ed+JsW9AZcdGQECCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4Ko+4DSgy7BAAAAAAAA+H8AAAAAAAD4fy+vfJbn2YdASFc+y\u002fNVhkBsklfnmBGCQBwIyeLqgS7BAAAAAAAA+H8AAAAAAAD4f8CF61G49mtA0D0K16NAaEAAAAAAAAD4f\u002fA9CtejQGdAAAAAAAAA+H9+NQfIwYEuwQAAAAAAAPh\u002fAAAAAAAA+H9kIxAvp4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H83r3yW59WHQAjC9Shcz4RAQHUyOErzf0A4c9L7RrmBQGa9GEpQgC7BAAAAAAAA+H8VHclF3YIuwQAAAAAAAPh\u002f+3lTkdGELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fMXxEDPeBLsEAAAAAAAD4fwAAAAAAAPh\u002fuRluYF6BLsEAAAAAAAD4fwAAAAAAAPh\u002fSMh71crTikDsjqomCHeKQNNbd\u002fPUi4dAUNP2r6zHcUB0XmPXYoIuwaipZYuXgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AdJgP0YIuwQAAAAAAAPh\u002f+wW7IZaBLsFiFW+EhoQuwS1gAjdjgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fHKTpSOoAuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f+bIsIo3N4lAWAt72uHJiUC3KjV7oFGHQFtV9l0RaGVAjX+f8eyCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8a\u002fz\u002fgmgy7BAAAAAAAA+H8j2\u002fl+y4EuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9381Rn64MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9I4XoUoYQuwZ+nOuTm14hAs5YhjnUoh0BZ+tCFNoAuweJYF3eggi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fcT0K14eELsEAAAAAAAD4f92YnjD3gy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f+vrQBfW9U0CSb7a5sX2HQGamft5UZoVAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fWgIOoUoHhEAB3gJJg4AuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fijxJOkmFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+wW4\u002fC9ah6QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACNhD7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fx2abG9MlekAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fNSkFfaODLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fWipvh+GELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fMzMzs4SELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fuKFwPQpfeUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbU6DLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fXI\u002fCdTWFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8wrkfhenx3QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fvwA1tWxre0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAgIQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8UrkfhhIQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f2I2WaMetlNAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8=","shape":"23, 26"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[300.0,60.0,180.0,190.0,60.0,210.0,190.0,230.0,110.0,100.0,290.0,140.0,50.0,50.0,80.0,120.0,80.0,50.0,150.0,80.0,140.0,50.0,70.0,100.0,50.0,90.0,70.0,120.0,120.0,160.0,120.0,70.0,70.0,100.0,70.0,90.0,130.0,60.0,60.0,70.0,90.0,60.0,60.0,60.0,80.0,280.0,100.0,50.0,250.0,70.0,90.0,110.0,110.0,60.0,80.0,170.0,50.0,80.0,110.0,60.0,190.0,140.0,130.0,130.0,70.0,90.0,100.0,150.0,70.0,110.0,130.0,110.0,70.0,80.0,80.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,210.0,60.0,50.0,60.0,50.0,60.0,70.0,50.0,60.0,50.0,70.0,60.0,50.0,50.0,60.0,60.0,60.0,80.0,50.0,60.0,70.0,50.0,50.0,60.0,50.0,70.0,60.0,50.0,80.0,60.0,70.0,70.0,50.0,60.0,50.0,50.0,60.0,70.0,50.0,60.0,50.0,60.0,50.0,50.0,60.0,50.0,50.0,70.0,50.0,50.0,50.0,60.0,50.0,50.0,50.0,60.0,60.0,60.0,70.0,50.0,70.0,50.0,50.0,60.0,50.0,60.0,60.0,60.0,80.0,60.0,300.0,70.0,60.0,60.0,60.0,60.0,80.0,60.0,70.0,80.0,90.0,70.0,70.0,80.0,70.0,90.0,70.0,70.0,70.0,80.0,70.0,90.0,70.0,80.0,270.0,60.0,60.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,180.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,210.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,60.0,50.0,50.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,60.0,260.0,60.0,60.0,60.0,60.0,60.0,230.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,80.0,60.0,80.0,70.0,60.0,70.0,160.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,60.0,290.0,60.0,70.0,70.0,70.0,60.0,60.0,80.0,60.0,70.0,60.0,60.0,70.0,60.0,200.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,60.0,80.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,230.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0],"y":[53.0,56.0,52.0,50.0,66.0,66.0,69.0,58.0,51.0,56.0,61.0,57.0,50.0,61.0,54.0,60.0,55.0,59.0,63.0,50.0,53.0,59.0,64.0,56.0,58.0,63.0,54.0,54.0,52.0,54.0,52.0,53.0,54.0,51.0,53.0,50.0,55.0,52.0,52.0,51.0,53.0,55.0,55.0,50.0,57.0,51.0,69.0,56.0,52.0,53.0,57.0,54.0,55.0,54.0,53.0,51.0,56.0,52.0,55.0,70.0,54.0,54.0,53.0,50.0,53.0,52.0,53.0,51.0,52.0,53.0,53.0,51.0,53.0,56.0,57.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,51.0,51.0,51.0,51.0,51.0,50.0,51.0,50.0,52.0,50.0,51.0,52.0,51.0,51.0,52.0,50.0,50.0,51.0,51.0,51.0,50.0,51.0,51.0,52.0,67.0,50.0,51.0,50.0,51.0,52.0,50.0,52.0,51.0,51.0,52.0,50.0,51.0,50.0,50.0,51.0,50.0,51.0,50.0,51.0,52.0,51.0,51.0,51.0,51.0,52.0,51.0,52.0,52.0,52.0,52.0,52.0,53.0,53.0,53.0,53.0,53.0,53.0,54.0,54.0,54.0,54.0,53.0,55.0,55.0,55.0,54.0,55.0,54.0,55.0,55.0,54.0,54.0,54.0,56.0,56.0,55.0,56.0,55.0,56.0,57.0,57.0,57.0,55.0,58.0,57.0,58.0,56.0,56.0,56.0,55.0,57.0,56.0,55.0,55.0,56.0,55.0,57.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,55.0,54.0,53.0,55.0,54.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,55.0,55.0,61.0,56.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,65.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,54.0,62.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,54.0,56.0,55.0,54.0,55.0,55.0,56.0,54.0,54.0,68.0,55.0,55.0,56.0,55.0,55.0,56.0,56.0,56.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,59.0,58.0,58.0,60.0,59.0,60.0,58.0,57.0,58.0,59.0,59.0,57.0,57.0,57.0,57.0,57.0,57.0,58.0,57.0,58.0,57.0,59.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,58.0,57.0,58.0,58.0,57.0,58.0,59.0,57.0,58.0,57.0,58.0,57.0,57.0,58.0,57.0,56.0,57.0,60.0,57.0,59.0,57.0,58.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,57.0,57.0,57.0,56.0,57.0,58.0,57.0,56.0,58.0,57.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,58.0,70.0,57.0,56.0,56.0,56.0,56.0,56.0,58.0,56.0,56.0,57.0,57.0,57.0,56.0,57.0,57.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,56.0,57.0,57.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpRsiSellLevel × InpBreakEvenPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiSellLevel"},"range":[37.5,312.5]},"yaxis":{"title":{"text":"InpBreakEvenPoints"},"range":[49.0,71.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpRsiSellLevel × InpRsiPeriod</h2><div style="height:520px; width:700px;"> <div id="contour-InpRsiSellLevel-InpRsiPeriod" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpRsiSellLevel-InpRsiPeriod")) { Plotly.newPlot( "contour-InpRsiSellLevel-InpRsiPeriod", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[5.95,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29.05],"y":[49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0wao5WQgC7BzczMzNOBLsEAAAAAAAD4fzgG9S1zY3lAML4Ts17Nf0C4R+F6FLp+QA7j5H6H6nxAAAAAAAAA+H8AAAAAAAD4f5i4HoXrlXNAZ+22S\u002fSCLsHUYBqGj4IuwRxClZoegi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+vzjFgOoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+kcD0KOYIuwQAAAAAAAPh\u002fcT0KV1OCLsEQw\u002fUoXMN9QCy2LcrsUIFAj8L1KIuBLsGo61G4Hq2AQCDhehSuB3hAAFK4HoWlgUB7FK7HRoEuwQAAAAAAAPh\u002fvW98bbqCLsEAAAAAAAD4f9mxEQjMgy7B3ze+9gSDLsEAAAAAAAD4f74LQQ5K7GNAAAAAAAAA+H8j1uLTxIIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9SuB6Fx4EuwQAAAAAAAPh\u002fAAAAAAAA+H+Y4HoUrit\u002fQOCOwvUoEIFA8KxH4Xq0fUDsjsL1KIiAQAAAAAAAAPh\u002fVoLFoYWDLsFB1H3AGoMuwSi5HoXr5XFAAAAAAAAA+H8VNZjGv4MuwcCF61G47mlAsPYoXI\u002f6Z0AAAAAAAAD4fwAAAAAAAPh\u002fLe4ljdFyYUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fdo4B2QKBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8gDDy3goIuwQAAAAAAAPh\u002fZcdGQECCLsGgzMzMzLiDQNttF9p+gS7BwLLSJAqDLsFQwvUoXPODQEBuowG8\u002fnhAXrmI78QUcEAAAAAAAAD4f4Ko+4DSgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fHAjJ4uqBLsEAAAAAAAD4fwAAAAAAAPh\u002ffjUHyMGBLsEAqfbpeK+CQC+vfJbn2YdAHGzsEtX8hkBIVz7L81WGQBSAmlq2zYRAkExnJ4PAg0Cw1qNwPZJmQByRlsrb+VxAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8VHclF3YIuwTevfJbn1YdAjIpx\u002fiYbh0CAgvqWuaGFQPYoxvmbAH9AqwSLQwWELsFdP96rVu5XQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fgFuPwvUoMUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzMzMzM0gy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002frJJX55iXhkCAcXK\u002fQ1uJQAOJtfiUF4pAOz\u002fjwoEeiEBIyHvVytOKQFh2w7ZFXIVAIrMCQ1bOhEAXUDHOX\u002f2DQO3kuFM6LGdAPIW\u002fJmvsXUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1ib4QZ8fn9AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fjNAwfEbOFQFgLe9rhyYlAGO317o+xiEDmyLCKNzeJQG3i5J4IgS7BipxjQHZSgkAmrMCQVZyAQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9xPQrXh4QuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9Z+tCFNoAuwZ+nOuTm14hAjzf92Q\u002fih0DbiLX4lGWHQJFJRo43gS7B4lgXd6CCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9I4XoUoYQuwQAAAAAAAPh\u002fAAAAAAAA+H\u002fw9jsUBcR6QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f9xxFva0Y4VAkm+2ubF9h0BqAg6hSj+FQPr60AX1vVNAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fWgIOoUoHhEAAAAAAAAD4f4o8STpJhS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fQd\u002fpqsMUtAsFuPwvWoekAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fx2abG9MlekAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H81KQV9o4MuwVoqb4fhhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8zMzOzhIQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fuKFwPQpfeUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8iN8NtToMuwVyPwnU1hS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzCuR+F6fHdAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f78ANbVsa3tAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8UrkfhhIQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAICEPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwCzHoXrUTJAYjZZox62U0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"23, 24"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[23,20,22,8,22,23,13,7,20,8,28,14,14,17,12,17,27,17,11,20,15,17,19,15,25,10,18,20,18,15,24,21,22,21,19,25,21,23,24,23,13,19,22,19,16,18,24,21,27,9,13,20,21,23,18,16,20,19,16,14,22,20,20,18,21,23,21,25,20,20,20,20,21,17,18,17,17,17,11,12,11,11,12,12,12,12,12,10,10,10,7,12,10,9,14,12,9,13,11,11,10,11,12,13,13,14,13,13,15,13,14,12,12,13,13,14,12,13,15,15,13,11,15,12,14,13,11,14,12,13,14,13,15,16,15,15,13,13,16,16,15,14,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,18,16,17,17,16,16,17,17,17,17,18,18,18,18,18,18,19,18,19,17,18,18,17,17,18,18,17,18,18,19,17,19,17,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,21,20,20,19,20,20,19,20,21,19,20,21,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,17,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,15,16,15,15,16,16,16,15,15,15,15,15,15,16,16,16,15,16,15,14,15,16,16,15,16,15,15,15,16,16,15,14,15,15,14,14,14,15,15,14,16,16,15,15,14,15,16,15,28,16,16,15,16,14,14,16,14,15,14,14,15,14,26,15,14,15,15,15,15,15,15,15,15,16,16,16,16,16,15,16,15,14,15,16,16,14,14,16,14,16,15,13,16,16,16,16,16,14,16,15,14,16,15,16,15,16,16,14,15,16,14,13,14,14,15,15,15,13,14,15,14,14,13,14,14,15,15,14,15,13,14,15,15,14,15,15,14,14,13,14,14,14,13,14,13,13,13,13,12,13,13,13,12,13,13,13,13,12,13,13,12,13],"y":[53.0,56.0,52.0,50.0,66.0,66.0,69.0,58.0,51.0,56.0,61.0,57.0,50.0,61.0,54.0,60.0,55.0,59.0,63.0,50.0,53.0,59.0,64.0,56.0,58.0,63.0,54.0,54.0,52.0,54.0,52.0,53.0,54.0,51.0,53.0,50.0,55.0,52.0,52.0,51.0,53.0,55.0,55.0,50.0,57.0,51.0,69.0,56.0,52.0,53.0,57.0,54.0,55.0,54.0,53.0,51.0,56.0,52.0,55.0,70.0,54.0,54.0,53.0,50.0,53.0,52.0,53.0,51.0,52.0,53.0,53.0,51.0,53.0,56.0,57.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,51.0,51.0,51.0,51.0,51.0,50.0,51.0,50.0,52.0,50.0,51.0,52.0,51.0,51.0,52.0,50.0,50.0,51.0,51.0,51.0,50.0,51.0,51.0,52.0,67.0,50.0,51.0,50.0,51.0,52.0,50.0,52.0,51.0,51.0,52.0,50.0,51.0,50.0,50.0,51.0,50.0,51.0,50.0,51.0,52.0,51.0,51.0,51.0,51.0,52.0,51.0,52.0,52.0,52.0,52.0,52.0,53.0,53.0,53.0,53.0,53.0,53.0,54.0,54.0,54.0,54.0,53.0,55.0,55.0,55.0,54.0,55.0,54.0,55.0,55.0,54.0,54.0,54.0,56.0,56.0,55.0,56.0,55.0,56.0,57.0,57.0,57.0,55.0,58.0,57.0,58.0,56.0,56.0,56.0,55.0,57.0,56.0,55.0,55.0,56.0,55.0,57.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,55.0,54.0,53.0,55.0,54.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,55.0,55.0,61.0,56.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,65.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,54.0,62.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,54.0,56.0,55.0,54.0,55.0,55.0,56.0,54.0,54.0,68.0,55.0,55.0,56.0,55.0,55.0,56.0,56.0,56.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,59.0,58.0,58.0,60.0,59.0,60.0,58.0,57.0,58.0,59.0,59.0,57.0,57.0,57.0,57.0,57.0,57.0,58.0,57.0,58.0,57.0,59.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,58.0,57.0,58.0,58.0,57.0,58.0,59.0,57.0,58.0,57.0,58.0,57.0,57.0,58.0,57.0,56.0,57.0,60.0,57.0,59.0,57.0,58.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,57.0,57.0,57.0,56.0,57.0,58.0,57.0,56.0,58.0,57.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,58.0,70.0,57.0,56.0,56.0,56.0,56.0,56.0,58.0,56.0,56.0,57.0,57.0,57.0,56.0,57.0,57.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,56.0,57.0,57.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpRsiSellLevel × InpRsiPeriod"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiSellLevel"},"range":[5.95,29.05]},"yaxis":{"title":{"text":"InpRsiPeriod"},"range":[49.0,71.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpRsiSellLevel × InpAtrSLMult</h2><div style="height:520px; width:700px;"> <div id="contour-InpRsiSellLevel-InpAtrSLMult" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpRsiSellLevel-InpAtrSLMult")) { Plotly.newPlot( "contour-InpRsiSellLevel-InpAtrSLMult", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[0.9,1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7000000000000002,1.8,1.9,2.0,2.1,2.2,2.3,2.4000000000000004,2.5,2.6,2.7,2.8,2.9000000000000004,3.0,3.1],"y":[49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8cQpWaHoIuwQAAAAAAAPh\u002fAAAAAAAA+H9MGqOVkIAuwQ7j5H6H6nxAr84xYDqDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f7FG4HpyCLsHNzMzM04EuwTC+E7NezX9AuEfhehS6fkA4BvUtc2N5QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H++C0EOSuxjQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fyxDH+q2CLsEAAAAAAAD4f983vvYEgy7BAAAAAAAA+H\u002fZsREIzIMuweF6FC6sgS7B8AnXo3A5dUCo61G4Hq2AQABSuB6FpYFAgI\u002fC9SiIfkDD9Sjc\u002foEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9WgsWhhYMuwQAAAAAAAPh\u002fAAAAAAAA+H\u002fAhetRuO5pQATKphz+gi7B4gFlE1aDLsEAAAAAAAD4fwAAAAAAAPh\u002fLe4ljdFyYUBB1H3AGoMuwSi5HoXr5XFAAAAAAAAA+H8AAAAAAAD4f+yOwvUoiIBA4I7C9SgQgUAQUrgehft8QOF6FC5hgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fdo4B2QKBLsEgDDy3goIuwQAAAAAAAPh\u002fwLLSJAqDLsGeXvksz19rQAAAAAAAAPh\u002fHHQR34mxb0BeuYjvxBRwQCYZOQvsgy7BAAAAAAAA+H\u002fbbRfafoEuwYKo+4DSgy7BaML1KFw\u002fgUBQwvUoXPODQKDMzMzMuINAAAAAAAAA+H8AAAAAAAD4fwBBh\u002fnyeG1AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002frpAsYAL7bUB+NQfIwYEuwQAAAAAAAPh\u002fHJGWytv5XEDAhetRuPZrQNA9CtejQGhAL698lufZh0BbuFM6WBGGQBxs7BLV\u002fIZARAWGrG4KgEBwwvUoXCODQCwK16Nw54RASFc+y\u002fNVhkCQTGcng8CDQBwIyeLqgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fFR3JRd2CLsFdP96rVu5XQAAAAAAAAPh\u002fMCpcj8KdaUA3r3yW59WHQEMLDFndeIdAf2ebG9MRh0Dje0ljtEaHQADmAMEc+oVAgIL6lrmhhUAg5gDBHGKFQAjC9Shcz4RA6LcehesXhUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fMzMzMzSDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f6wA1tWyDhkBLms5OBquHQAvshm2LrIhASMh71crTikCsdmfttuyHQAhs7BLVCIVAIrMCQ1bOhECKnlT7dAOEQDOi6ezkXoNAF1Axzl\u002f9g0AsD11Q35mAQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1DT9q+sx3FAAAAAAAAA+H8AAAAAAAD4f41\u002fn\u002fHsgi7B8O7mqY4uhEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fqOz17o+dh0CXKjV7oMGHQFgLe9rhyYlAmIaPiCl9iEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4qcY0B2UoJAJqzAkFWcgEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fNO06xN4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9xPQrXh4QuwQAAAAAAAPh\u002ff\u002fnyAmxThUCfpzrk5teIQI83\u002fdkP4odAAAAAAAAA+H9I4XoUoYQuwQAAAAAAAPh\u002fkUlGjjeBLsHiWBd3oIIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fr60AX1vVNAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fkm+2ubF9h0Bmpn7eVGaFQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8B3gJJg4AuwVoCDqFKB4RAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fQd\u002fpqsMUtAAAAAAAAA+H+wW4\u002fC9ah6QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAI2EPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fx2abG9MlekAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fNSkFfaODLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9aKm+H4YQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzMzM7OEhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fuKFwPQpfeUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9cj8J1NYUuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbU6DLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8wrkfhenx3QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fvwA1tWxre0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxSuR+GEhD7BAAAAAICEPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8Asx6F61EyQGI2WaMetlNAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8=","shape":"23, 23"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[2.4000000000000004,2.0,2.3,1.7000000000000002,2.3,1.2,1.3,1.6,2.0,1.0,3.0,1.7000000000000002,1.8,2.0,2.8,1.9,2.5,1.5,2.1,1.4,2.6,1.5,1.7000000000000002,1.8,2.2,1.1,1.4,1.9,1.3,1.5,1.8,2.0,1.9,2.2,2.1,1.9,2.4000000000000004,1.6,1.6,1.2,1.4,1.8,1.6,1.8,1.7000000000000002,2.0,1.4,1.6,2.1,1.3,1.0,1.8,1.8,1.7000000000000002,1.6,2.0,1.8,2.2,1.5,1.9,1.7000000000000002,2.0,1.9,1.8,1.7000000000000002,1.7000000000000002,1.4,2.0,2.3,2.6,2.7,2.4000000000000004,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.7,2.7,2.8,2.7,2.6,2.8,2.8,2.7,2.6,2.8,2.5,2.5,2.7,2.8,2.6,2.8,2.8,2.7,2.7,2.7,2.7,2.9000000000000004,2.7,2.6,2.7,2.5,2.8,2.8,2.8,2.7,2.6,2.8,2.7,2.9000000000000004,3.0,2.9000000000000004,2.9000000000000004,2.8,2.7,2.7,2.5,2.7,2.6,2.9000000000000004,2.7,2.7,2.8,2.8,2.9000000000000004,2.8,2.8,2.8,2.7,2.6,2.6,2.6,2.7,2.7,2.7,2.7,2.5,2.6,2.5,2.4000000000000004,2.4000000000000004,2.3,2.3,2.3,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.5,2.5,2.4000000000000004,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.6,2.4000000000000004,2.5,2.5,2.3,2.4000000000000004,2.6,2.4000000000000004,2.5,2.6,2.6,2.5,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.6,2.6,2.6,2.7,2.7,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.2,2.3,2.2,2.2,2.2,2.3,2.2,2.2,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2.1,2.2,2.1,2.0,2.0,2.1,2.2,2.2,2.1,2.1,2.1,2.2,2.0,2.0,2.1,2.1,2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.0,1.9,2.0,2.0,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,2.0,1.9,1.8,2.0,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.8,1.9,2.0,2.0,2.0,2.0,1.9,2.0,1.8,1.9,2.0,1.9,1.9,1.9,2.0,1.8,1.9,1.9,1.8,1.9,2.0,1.9,2.0,1.7000000000000002,1.9,1.8,2.0,1.9,2.0,2.0,1.9,2.0,2.0,1.8,1.9,2.0,1.9,1.9,1.8,1.9,2.0,2.0,1.9,1.9,1.8,1.9,2.0,2.0,2.0,1.1,2.0,1.9,1.9,1.9,1.8,1.9,1.8,1.7000000000000002,1.8,1.8,1.8,1.7000000000000002,1.8,1.9,1.7000000000000002,1.8,1.9,1.8,1.9,1.8,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.9,1.9,1.9,2.0,2.0,2.0,1.9,2.0,1.9,2.0,1.9,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,2.0,1.9,1.9,2.0,1.9,1.8,1.9,1.8,1.9,1.9,1.8,1.8,1.9,1.9,1.9,2.0,1.8,2.0,1.9,1.9,2.0,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.7000000000000002,1.7000000000000002,1.8,1.7000000000000002,1.8,1.6,1.8,1.7000000000000002,1.8,1.8,1.8,1.8,1.8,1.8],"y":[53.0,56.0,52.0,50.0,66.0,66.0,69.0,58.0,51.0,56.0,61.0,57.0,50.0,61.0,54.0,60.0,55.0,59.0,63.0,50.0,53.0,59.0,64.0,56.0,58.0,63.0,54.0,54.0,52.0,54.0,52.0,53.0,54.0,51.0,53.0,50.0,55.0,52.0,52.0,51.0,53.0,55.0,55.0,50.0,57.0,51.0,69.0,56.0,52.0,53.0,57.0,54.0,55.0,54.0,53.0,51.0,56.0,52.0,55.0,70.0,54.0,54.0,53.0,50.0,53.0,52.0,53.0,51.0,52.0,53.0,53.0,51.0,53.0,56.0,57.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,51.0,51.0,51.0,51.0,51.0,50.0,51.0,50.0,52.0,50.0,51.0,52.0,51.0,51.0,52.0,50.0,50.0,51.0,51.0,51.0,50.0,51.0,51.0,52.0,67.0,50.0,51.0,50.0,51.0,52.0,50.0,52.0,51.0,51.0,52.0,50.0,51.0,50.0,50.0,51.0,50.0,51.0,50.0,51.0,52.0,51.0,51.0,51.0,51.0,52.0,51.0,52.0,52.0,52.0,52.0,52.0,53.0,53.0,53.0,53.0,53.0,53.0,54.0,54.0,54.0,54.0,53.0,55.0,55.0,55.0,54.0,55.0,54.0,55.0,55.0,54.0,54.0,54.0,56.0,56.0,55.0,56.0,55.0,56.0,57.0,57.0,57.0,55.0,58.0,57.0,58.0,56.0,56.0,56.0,55.0,57.0,56.0,55.0,55.0,56.0,55.0,57.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,55.0,54.0,53.0,55.0,54.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,55.0,55.0,61.0,56.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,65.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,54.0,62.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,54.0,56.0,55.0,54.0,55.0,55.0,56.0,54.0,54.0,68.0,55.0,55.0,56.0,55.0,55.0,56.0,56.0,56.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,59.0,58.0,58.0,60.0,59.0,60.0,58.0,57.0,58.0,59.0,59.0,57.0,57.0,57.0,57.0,57.0,57.0,58.0,57.0,58.0,57.0,59.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,58.0,57.0,58.0,58.0,57.0,58.0,59.0,57.0,58.0,57.0,58.0,57.0,57.0,58.0,57.0,56.0,57.0,60.0,57.0,59.0,57.0,58.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,57.0,57.0,57.0,56.0,57.0,58.0,57.0,56.0,58.0,57.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,58.0,70.0,57.0,56.0,56.0,56.0,56.0,56.0,58.0,56.0,56.0,57.0,57.0,57.0,56.0,57.0,57.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,56.0,57.0,57.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpRsiSellLevel × InpAtrSLMult"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiSellLevel"},"range":[0.9,3.1]},"yaxis":{"title":{"text":"InpAtrSLMult"},"range":[49.0,71.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpRsiSellLevel × InpTrailStartPoints</h2><div style="height:520px; width:700px;"> <div id="contour-InpRsiSellLevel-InpTrailStartPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpRsiSellLevel-InpTrailStartPoints")) { Plotly.newPlot( "contour-InpRsiSellLevel-InpTrailStartPoints", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0],"y":[85.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,415.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f1GAaho+CLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f7eS4UzosZ0DGv8\u002f4JoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f2fttkv0gi7BAAAAAAAA+H8AAAAAAAD4f8Cy0iQKgy7BAAAAAAAA+H+AW4\u002fC9SgxQAAAAAAAAPh\u002fjX+f8eyCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fVoLFoYWDLsEAAAAAAAD4f66QLGAC+21AMCpcj8KdaUAAAAAAAAD4f1tV9l0RaGVAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002ffN772BIMuwcCF61G47mlAHHQR34mxb0Cw1qNwPZJmQKsEi0MFhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fvgtBDkrsY0At7iWN0XJhQF65iO\u002fEFHBAZCMQL6eDLsFdP96rVu5XQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fQdR9wBqDLsEmGTkL7IMuwQAAAAAAAPh\u002fAAAAAAAA+H\u002ftPt6rVnZgQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+9b3xtuoIuwbD2KFyP+mdAgqj7gNKDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fyxDH+q2CLsEEyqYc\u002foIuwQAAAAAAAPh\u002fAAAAAAAA+H\u002f7eVOR0YQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8cQpWaHoIuwQAAAAAAAPh\u002f4gFlE1aDLsEAAAAAAAD4f341B8jBgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fyi5HoXr5XFAQG6jAbz+eEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3aOAdkCgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbU6DLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fy\u002fAPvpSfy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1oqb4fhhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fZsREIzIMuwQAAAAAAAPh\u002fAAAAAAAA+H8cCMni6oEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f6ipZYuXgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3req1Ym431AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACAhD7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9cj8J1NYUuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f0Hf6arDFLQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fALMehetRMkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzF8RAz3gS7BZ9XnShaCLsEAAAAAAAD4f0jhehShhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f9ho+1fWuYFAAAAAAAAA+H8AAAAAAAD4f3T3oQvq209AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8zMzOzhIQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8O4+R+h+p8QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8sD11Q35mAQCaswJBVnIBAAAAAAAAA+H\u002f6+tAF9b1TQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fOAb1LXNjeUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzhz0vtGuYFAUNP2r6zHcUCKnGNAdlKCQOJYF3eggi7BAAAAAAAA+H+KPEk6SYUuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwBBh\u002fnyeG1ALArXo3DnhEAMAAAAANSCQGgoXI\u002fCPYNAs33eVCQkgECRSUaON4EuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fYoXI8Fgi7BAAAAAAAA+H9UwvUoXJWBQChhFW9kwYBA+vICLLmALsGQMXcNroAuwc07TrE3gy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzUpBX2jgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fkArXo3CJeEAAAAAAAAD4fwAAAAAAAPh\u002fKGZmZmaCgUAQqfbpeJGDQOi3HoXrF4VAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f+j7HYoClnxALLYtyuxQgUAAAAAAAAD4fwAAAAAAAPh\u002fSFc+y\u002fNVhkAIwvUoXM+EQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fNzMzM04EuwQBSuB6FpYFA4I7C9SgQgUBQwvUoXPODQBSAmlq2zYRAIJmZmZmxhEAL7IZti6yIQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fMK5H4Xp8d0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fGB+F61GseEAQw\u002fUoXMN9QPjC9ShcM3dAZcdGQECCLsGQTGcng8CDQICC+pa5oYVAO2owDUOniUDjNAwfEbOFQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8UrkfhhIQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0BnZmZm6nhAAPYoXI8OeUCY4HoUrit\u002fQAAAAAAAAPh\u002fAAAAAAAA+H\u002fo5QDBHKyGQAOJtfiUF4pAgDTXaaR\u002fiEBZ+tCFNoAuwQAAAAAAAPh\u002fAAAAAAAA+H+wW4\u002fC9ah6QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9iNlmjHrZTQAAAAAAAAPh\u002fAAAAAAAA+H8wvhOzXs1\u002fQKjrUbgerYBAEFK4HoX7fEAAAAAAAAD4fy+vfJbn2YdAQwsMWd14h0DsjqomCHeKQFgLe9rhyYlAjzf92Q\u002fih0DccRb2tGOFQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+\u002fADW1bGt7QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f6HoUrkeVfkCw1qNwPVp9QFK4HoU\u002fgy7BAAAAAAAA+H8cbOwS1fyGQDevfJbn1YdASMh71crTikDmyLCKNzeJQJ+nOuTm14hAkm+2ubF9h0BaAg6hSgeEQAAAAAAAAPh\u002fx2abG9MlekAAAAAAAAD4fwAAAAAAAPh\u002fuKFwPQpfeUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"33, 23"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[53.0,56.0,52.0,50.0,66.0,66.0,69.0,58.0,51.0,56.0,61.0,57.0,50.0,61.0,54.0,60.0,55.0,59.0,63.0,50.0,53.0,59.0,64.0,56.0,58.0,63.0,54.0,54.0,52.0,54.0,52.0,53.0,54.0,51.0,53.0,50.0,55.0,52.0,52.0,51.0,53.0,55.0,55.0,50.0,57.0,51.0,69.0,56.0,52.0,53.0,57.0,54.0,55.0,54.0,53.0,51.0,56.0,52.0,55.0,70.0,54.0,54.0,53.0,50.0,53.0,52.0,53.0,51.0,52.0,53.0,53.0,51.0,53.0,56.0,57.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,51.0,51.0,51.0,51.0,51.0,50.0,51.0,50.0,52.0,50.0,51.0,52.0,51.0,51.0,52.0,50.0,50.0,51.0,51.0,51.0,50.0,51.0,51.0,52.0,67.0,50.0,51.0,50.0,51.0,52.0,50.0,52.0,51.0,51.0,52.0,50.0,51.0,50.0,50.0,51.0,50.0,51.0,50.0,51.0,52.0,51.0,51.0,51.0,51.0,52.0,51.0,52.0,52.0,52.0,52.0,52.0,53.0,53.0,53.0,53.0,53.0,53.0,54.0,54.0,54.0,54.0,53.0,55.0,55.0,55.0,54.0,55.0,54.0,55.0,55.0,54.0,54.0,54.0,56.0,56.0,55.0,56.0,55.0,56.0,57.0,57.0,57.0,55.0,58.0,57.0,58.0,56.0,56.0,56.0,55.0,57.0,56.0,55.0,55.0,56.0,55.0,57.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,54.0,55.0,54.0,53.0,55.0,54.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,55.0,55.0,61.0,56.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,55.0,56.0,55.0,65.0,55.0,55.0,55.0,56.0,55.0,56.0,55.0,54.0,62.0,55.0,55.0,56.0,55.0,55.0,56.0,55.0,55.0,54.0,56.0,55.0,54.0,55.0,55.0,56.0,54.0,54.0,68.0,55.0,55.0,56.0,55.0,55.0,56.0,56.0,56.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,57.0,59.0,58.0,58.0,60.0,59.0,60.0,58.0,57.0,58.0,59.0,59.0,57.0,57.0,57.0,57.0,57.0,57.0,58.0,57.0,58.0,57.0,59.0,57.0,57.0,57.0,57.0,58.0,57.0,57.0,58.0,57.0,57.0,57.0,58.0,57.0,58.0,58.0,57.0,58.0,59.0,57.0,58.0,57.0,58.0,57.0,57.0,58.0,57.0,56.0,57.0,60.0,57.0,59.0,57.0,58.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,57.0,57.0,57.0,56.0,57.0,58.0,57.0,56.0,58.0,57.0,56.0,57.0,58.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,57.0,56.0,58.0,70.0,57.0,56.0,56.0,56.0,56.0,56.0,58.0,56.0,56.0,57.0,57.0,57.0,56.0,57.0,57.0,56.0,56.0,56.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,57.0,56.0,56.0,57.0,56.0,57.0,57.0,56.0,57.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0,56.0],"y":[160.0,150.0,150.0,340.0,200.0,250.0,370.0,400.0,330.0,150.0,260.0,100.0,300.0,260.0,220.0,310.0,110.0,290.0,210.0,180.0,370.0,300.0,290.0,230.0,280.0,330.0,120.0,120.0,120.0,180.0,180.0,140.0,130.0,130.0,150.0,100.0,170.0,130.0,160.0,140.0,200.0,120.0,140.0,100.0,120.0,160.0,240.0,360.0,140.0,200.0,110.0,120.0,130.0,400.0,110.0,170.0,100.0,150.0,120.0,270.0,140.0,120.0,130.0,110.0,130.0,170.0,130.0,380.0,190.0,190.0,190.0,220.0,320.0,310.0,330.0,300.0,310.0,300.0,310.0,340.0,340.0,340.0,350.0,350.0,350.0,350.0,350.0,370.0,380.0,380.0,360.0,390.0,390.0,360.0,370.0,350.0,390.0,370.0,350.0,330.0,380.0,350.0,390.0,400.0,390.0,400.0,390.0,390.0,400.0,390.0,360.0,390.0,370.0,390.0,400.0,370.0,380.0,400.0,390.0,390.0,380.0,370.0,390.0,400.0,400.0,380.0,400.0,390.0,370.0,360.0,380.0,360.0,360.0,360.0,390.0,390.0,370.0,380.0,360.0,360.0,380.0,360.0,360.0,360.0,340.0,330.0,330.0,330.0,340.0,340.0,320.0,340.0,320.0,340.0,340.0,340.0,340.0,340.0,330.0,330.0,330.0,340.0,320.0,320.0,320.0,320.0,320.0,320.0,310.0,300.0,310.0,310.0,310.0,320.0,310.0,300.0,320.0,290.0,280.0,290.0,310.0,320.0,330.0,280.0,350.0,300.0,310.0,320.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,360.0,360.0,340.0,360.0,360.0,350.0,340.0,360.0,350.0,340.0,360.0,350.0,370.0,350.0,340.0,340.0,340.0,340.0,340.0,360.0,360.0,360.0,360.0,360.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,400.0,390.0,400.0,390.0,240.0,390.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,380.0,390.0,390.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,380.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,210.0,390.0,380.0,370.0,370.0,380.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,360.0,360.0,360.0,360.0,370.0,360.0,370.0,360.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpRsiSellLevel × InpTrailStartPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiSellLevel"},"range":[49.0,71.0]},"yaxis":{"title":{"text":"InpTrailStartPoints"},"range":[85.0,415.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpBreakEvenPoints × InpRsiPeriod</h2><div style="height:520px; width:700px;"> <div id="contour-InpBreakEvenPoints-InpRsiPeriod" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpBreakEvenPoints-InpRsiPeriod")) { Plotly.newPlot( "contour-InpBreakEvenPoints-InpRsiPeriod", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[37.5,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,230.0,250.0,260.0,270.0,280.0,290.0,300.0,312.5],"y":[5.95,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29.05],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+kcD0KOYIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3E9CteHhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8zMzMzNIMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9MGqOVkIAuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fNzMzM04EuwQAAAAAAAPh\u002fdo4B2QKBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fEMP1KFzDfUAA9ihcjw55QAAAAAAAAPh\u002fAAAAAAAA+H81KQV9o4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8iN8NtBIQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fyy2LcrsUIFAAAAAAAAA+H\u002f2KFyPBYIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fWipvh+GELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+sklfnmJeGQI\u002fC9SiLgS7B7FG4HpyCLsEcCMni6oEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fgHFyv0NbiUAY16NwPYZ+QEPpfeNrWIdAWfrQhTaALsEgDDy3goIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxSuR+GEhD7BAAAAAAAA+H8AAAAAAAD4fy1gAjdjgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwOJtfiUF4pAWAt72uHJiUAW7wOQ2mSHQNszS6Lyfy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8a\u002fz\u002fgmgy7BAAAAAAAA+H8j2\u002fl+y4EuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fsFuyGWgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fxyk6UjqALsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AUrgehaWBQBjt9e6PsYhA01t389SLh0CFQgSc8X8uwQAAAAAAAPh\u002fqKlli5eCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9lx0ZAQIIuwQAAAAAAAPh\u002ffjUHyMGBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fd\u002fNUZ+uDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fSMh71crTikDsjqomCHeKQMS3BrbKTIZAW1X2XRFoZUAAAAAAAAD4fwAAAAAAAPh\u002fFR3JRd2CLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fyxDH+q2CLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fdmJ4w94MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fy+vfJbn2YdAyHlYqLVBhUD68gIsuYAuwVDT9q+sx3FAZr0YSlCALsEAAAAAAAD4fwAAAAAAAPh\u002fijxJOkmFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fYhVvhIaELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8xfEQM94EuwQAAAAAAAPh\u002fAAAAAAAA+H+5GW5gXoEuwQAAAAAAAPh\u002fAAAAAAAA+H+MinH+JhuHQAjC9Shcz4RAipxjQHZSgkA4c9L7RrmBQHReY9digi7BAAAAAAAA+H8AAAAAAAD4f1aCxaGFgy7BZ+22S\u002fSCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwB0mA\u002fRgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+9b3xtuoIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fgIL6lrmhhUBIVz7L81WGQGySV+eYEYJA6PaSZgyBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f+3kuFM6LGdAFICaWrbNhEBkOLnfoUeBQBxClZoegi7BAAAAAAAA+H8AAAAAAAD4f0BuowG8\u002fnhA0D0K16NAaEAcdBHfibFvQPA9CtejQGdAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H88hb8ma+xdQJBMZyeDwINA\u002fKj26XgzgUAAAAAAAAD4fwAAAAAAAPh\u002f3ze+9gSDLsGrBItDBYQuwQAAAAAAAPh\u002f+3lTkdGELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9dP96rVu5XQLDWo3A9kmZAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8VNZjGv4MuwWQjEC+ngy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fwIXrUbjuaUC+C0EOSuxjQAAAAAAAAPh\u002fBMqmHP6CLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fXI\u002fCdTWFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+CqPuA0oMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f7D2KFyP+mdAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAICEPsEAAAAAAAD4f+IBZRNWgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fSOF6FKGELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+vzjFgOoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8j1uLTxIIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fWJvhBnx+f0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+AW4\u002fC9SgxQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8t7iWN0XJhQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fD2OxQFxHpAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"24, 26"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[300.0,60.0,180.0,190.0,60.0,210.0,190.0,230.0,110.0,100.0,290.0,140.0,50.0,50.0,80.0,120.0,80.0,50.0,150.0,80.0,140.0,50.0,70.0,100.0,50.0,90.0,70.0,120.0,120.0,160.0,120.0,70.0,70.0,100.0,70.0,90.0,130.0,60.0,60.0,70.0,90.0,60.0,60.0,60.0,80.0,280.0,100.0,50.0,250.0,70.0,90.0,110.0,110.0,60.0,80.0,170.0,50.0,80.0,110.0,60.0,190.0,140.0,130.0,130.0,70.0,90.0,100.0,150.0,70.0,110.0,130.0,110.0,70.0,80.0,80.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,210.0,60.0,50.0,60.0,50.0,60.0,70.0,50.0,60.0,50.0,70.0,60.0,50.0,50.0,60.0,60.0,60.0,80.0,50.0,60.0,70.0,50.0,50.0,60.0,50.0,70.0,60.0,50.0,80.0,60.0,70.0,70.0,50.0,60.0,50.0,50.0,60.0,70.0,50.0,60.0,50.0,60.0,50.0,50.0,60.0,50.0,50.0,70.0,50.0,50.0,50.0,60.0,50.0,50.0,50.0,60.0,60.0,60.0,70.0,50.0,70.0,50.0,50.0,60.0,50.0,60.0,60.0,60.0,80.0,60.0,300.0,70.0,60.0,60.0,60.0,60.0,80.0,60.0,70.0,80.0,90.0,70.0,70.0,80.0,70.0,90.0,70.0,70.0,70.0,80.0,70.0,90.0,70.0,80.0,270.0,60.0,60.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,180.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,210.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,60.0,50.0,50.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,60.0,260.0,60.0,60.0,60.0,60.0,60.0,230.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,80.0,60.0,80.0,70.0,60.0,70.0,160.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,60.0,290.0,60.0,70.0,70.0,70.0,60.0,60.0,80.0,60.0,70.0,60.0,60.0,70.0,60.0,200.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,60.0,80.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,230.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0],"y":[23,20,22,8,22,23,13,7,20,8,28,14,14,17,12,17,27,17,11,20,15,17,19,15,25,10,18,20,18,15,24,21,22,21,19,25,21,23,24,23,13,19,22,19,16,18,24,21,27,9,13,20,21,23,18,16,20,19,16,14,22,20,20,18,21,23,21,25,20,20,20,20,21,17,18,17,17,17,11,12,11,11,12,12,12,12,12,10,10,10,7,12,10,9,14,12,9,13,11,11,10,11,12,13,13,14,13,13,15,13,14,12,12,13,13,14,12,13,15,15,13,11,15,12,14,13,11,14,12,13,14,13,15,16,15,15,13,13,16,16,15,14,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,18,16,17,17,16,16,17,17,17,17,18,18,18,18,18,18,19,18,19,17,18,18,17,17,18,18,17,18,18,19,17,19,17,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,21,20,20,19,20,20,19,20,21,19,20,21,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,17,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,15,16,15,15,16,16,16,15,15,15,15,15,15,16,16,16,15,16,15,14,15,16,16,15,16,15,15,15,16,16,15,14,15,15,14,14,14,15,15,14,16,16,15,15,14,15,16,15,28,16,16,15,16,14,14,16,14,15,14,14,15,14,26,15,14,15,15,15,15,15,15,15,15,16,16,16,16,16,15,16,15,14,15,16,16,14,14,16,14,16,15,13,16,16,16,16,16,14,16,15,14,16,15,16,15,16,16,14,15,16,14,13,14,14,15,15,15,13,14,15,14,14,13,14,14,15,15,14,15,13,14,15,15,14,15,15,14,14,13,14,14,14,13,14,13,13,13,13,12,13,13,13,12,13,13,13,13,12,13,13,12,13],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpBreakEvenPoints × InpRsiPeriod"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpBreakEvenPoints"},"range":[37.5,312.5]},"yaxis":{"title":{"text":"InpRsiPeriod"},"range":[5.95,29.05]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpBreakEvenPoints × InpAtrSLMult</h2><div style="height:520px; width:700px;"> <div id="contour-InpBreakEvenPoints-InpAtrSLMult" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpBreakEvenPoints-InpAtrSLMult")) { Plotly.newPlot( "contour-InpBreakEvenPoints-InpAtrSLMult", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[0.9,1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7000000000000002,1.8,1.9,2.0,2.1,2.2,2.3,2.4000000000000004,2.5,2.6,2.7,2.8,2.9000000000000004,3.0,3.1],"y":[37.5,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,230.0,250.0,260.0,270.0,280.0,290.0,300.0,312.5],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fr60AX1vVNA6wA1tWyDhkBLms5OBquHQAvshm2LrIhASMh71crTikAvr3yW59mHQH9nmxvTEYdA43tJY7RGh0AA5gDBHPqFQICC+pa5oYVAIOYAwRxihUD4tx6F652EQOi3HoXrF4VAAFK4HoWlgUA4BvUtc2N5QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f8O7mqY4uhEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8CF61G47mlAqOz17o+dh0CXKjV7oMGHQOyOqiYId4pAmIaPiCl9iEDIeViotUGFQLw\u002f3mvBgC7B220X2n6BLsFwwvUoXCODQCwK16Nw54RASFc+y\u002fNVhkCQTGcng8CDQFK4HoXHgS7BgI\u002fC9SiIfkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fvgtBDkrsY0B2jgHZAoEuwa6QLGAC+21AAAAAAAAA+H8AAAAAAAD4f7CaPdAK9oVAIkCH+fJyhkDTW3fz1IuHQEPpfeNrWIdAJhk5C+yDLsEAAAAAAAD4fyi5HoXr5XFA+vICLLmALsGKnGNAdlKCQGySV+eYEYJAexSuR2CBLsEUrkdhN4EuweF6FC5hgS7BAEGH+fJ4bUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8cQpWaHoIuwQAAAAAAAPh\u002fwLLSJAqDLsFbVfZdEWhlQAAAAAAAAPh\u002fJVgcbrF\u002fLsHb3Jg+c4EuwQAAAAAAAPh\u002fQdR9wBqDLsEAAAAAAAD4f5Axdw2ugC7BOHPS+0a5gUAAAAAAAAD4f1K4HoU\u002fgy7BHAjJ4uqBLsEfhetR3oEuwVDT9q+sx3FAAAAAAAAA+H8AAAAAAAD4f41\u002fn\u002fHsgi7BNSkFfaODLsEAAAAAAAD4fwAAAAAAAPh\u002fIAw8t4KCLsEAAAAAAAD4fwAAAAAAAPh\u002fBMqmHP6CLsEAAAAAAAD4f6\u002fOMWA6gy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9mvRhKUIAuwXReY9digi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8zMzMzNIMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fnyAqzpgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fqKlli5eCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002ffN772BIMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxUdyUXdgi7BAAAAAAAA+H8AAAAAAAD4f8CF61G49mtAAAAAAAAA+H\u002f4Nv1ZzoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f9mxEQjMgy7BAAAAAAAA+H9AbqMBvP54QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1aCxaGFgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fiAWUTVoMuwdA9CtejQGhAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fZ+22S\u002fSCLsEcdBHfibFvQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f+3lTkdGELsEAAAAAAAD4fwAAAAAAAPh\u002fM\u002flme9WBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fGv8\u002f4JoMuwQAAAAAAAPh\u002fAAAAAAAA+H\u002fwPQrXo0BnQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9lx0ZAQIIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fI9bi08SCLsFaKm+H4YQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002ffjUHyMGBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8j2\u002fl+y4EuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fLEMf6rYIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AdJgP0YIuwQAAAAAAAPh\u002fFTWYxr+DLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8UrkfhhIQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0wao5WQgC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f7BbshloEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9cj8J1NYUuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9iFW+EhoQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbQSELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9xPQrXh4QuwQAAAAAAAPh\u002fAAAAAAAA+H8tYAI3Y4EuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fy3uJY3RcmFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f92YnjD3gy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8xfEQM94EuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+9b3xtuoIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8cpOlI6gC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fgqj7gNKDLsG5GW5gXoEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8=","shape":"26, 23"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[2.4000000000000004,2.0,2.3,1.7000000000000002,2.3,1.2,1.3,1.6,2.0,1.0,3.0,1.7000000000000002,1.8,2.0,2.8,1.9,2.5,1.5,2.1,1.4,2.6,1.5,1.7000000000000002,1.8,2.2,1.1,1.4,1.9,1.3,1.5,1.8,2.0,1.9,2.2,2.1,1.9,2.4000000000000004,1.6,1.6,1.2,1.4,1.8,1.6,1.8,1.7000000000000002,2.0,1.4,1.6,2.1,1.3,1.0,1.8,1.8,1.7000000000000002,1.6,2.0,1.8,2.2,1.5,1.9,1.7000000000000002,2.0,1.9,1.8,1.7000000000000002,1.7000000000000002,1.4,2.0,2.3,2.6,2.7,2.4000000000000004,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.7,2.7,2.8,2.7,2.6,2.8,2.8,2.7,2.6,2.8,2.5,2.5,2.7,2.8,2.6,2.8,2.8,2.7,2.7,2.7,2.7,2.9000000000000004,2.7,2.6,2.7,2.5,2.8,2.8,2.8,2.7,2.6,2.8,2.7,2.9000000000000004,3.0,2.9000000000000004,2.9000000000000004,2.8,2.7,2.7,2.5,2.7,2.6,2.9000000000000004,2.7,2.7,2.8,2.8,2.9000000000000004,2.8,2.8,2.8,2.7,2.6,2.6,2.6,2.7,2.7,2.7,2.7,2.5,2.6,2.5,2.4000000000000004,2.4000000000000004,2.3,2.3,2.3,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.5,2.5,2.4000000000000004,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.6,2.4000000000000004,2.5,2.5,2.3,2.4000000000000004,2.6,2.4000000000000004,2.5,2.6,2.6,2.5,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.6,2.6,2.6,2.7,2.7,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.2,2.3,2.2,2.2,2.2,2.3,2.2,2.2,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2.1,2.2,2.1,2.0,2.0,2.1,2.2,2.2,2.1,2.1,2.1,2.2,2.0,2.0,2.1,2.1,2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.0,1.9,2.0,2.0,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,2.0,1.9,1.8,2.0,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.8,1.9,2.0,2.0,2.0,2.0,1.9,2.0,1.8,1.9,2.0,1.9,1.9,1.9,2.0,1.8,1.9,1.9,1.8,1.9,2.0,1.9,2.0,1.7000000000000002,1.9,1.8,2.0,1.9,2.0,2.0,1.9,2.0,2.0,1.8,1.9,2.0,1.9,1.9,1.8,1.9,2.0,2.0,1.9,1.9,1.8,1.9,2.0,2.0,2.0,1.1,2.0,1.9,1.9,1.9,1.8,1.9,1.8,1.7000000000000002,1.8,1.8,1.8,1.7000000000000002,1.8,1.9,1.7000000000000002,1.8,1.9,1.8,1.9,1.8,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.9,1.9,1.9,2.0,2.0,2.0,1.9,2.0,1.9,2.0,1.9,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,2.0,1.9,1.9,2.0,1.9,1.8,1.9,1.8,1.9,1.9,1.8,1.8,1.9,1.9,1.9,2.0,1.8,2.0,1.9,1.9,2.0,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.7000000000000002,1.7000000000000002,1.8,1.7000000000000002,1.8,1.6,1.8,1.7000000000000002,1.8,1.8,1.8,1.8,1.8,1.8],"y":[300.0,60.0,180.0,190.0,60.0,210.0,190.0,230.0,110.0,100.0,290.0,140.0,50.0,50.0,80.0,120.0,80.0,50.0,150.0,80.0,140.0,50.0,70.0,100.0,50.0,90.0,70.0,120.0,120.0,160.0,120.0,70.0,70.0,100.0,70.0,90.0,130.0,60.0,60.0,70.0,90.0,60.0,60.0,60.0,80.0,280.0,100.0,50.0,250.0,70.0,90.0,110.0,110.0,60.0,80.0,170.0,50.0,80.0,110.0,60.0,190.0,140.0,130.0,130.0,70.0,90.0,100.0,150.0,70.0,110.0,130.0,110.0,70.0,80.0,80.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,210.0,60.0,50.0,60.0,50.0,60.0,70.0,50.0,60.0,50.0,70.0,60.0,50.0,50.0,60.0,60.0,60.0,80.0,50.0,60.0,70.0,50.0,50.0,60.0,50.0,70.0,60.0,50.0,80.0,60.0,70.0,70.0,50.0,60.0,50.0,50.0,60.0,70.0,50.0,60.0,50.0,60.0,50.0,50.0,60.0,50.0,50.0,70.0,50.0,50.0,50.0,60.0,50.0,50.0,50.0,60.0,60.0,60.0,70.0,50.0,70.0,50.0,50.0,60.0,50.0,60.0,60.0,60.0,80.0,60.0,300.0,70.0,60.0,60.0,60.0,60.0,80.0,60.0,70.0,80.0,90.0,70.0,70.0,80.0,70.0,90.0,70.0,70.0,70.0,80.0,70.0,90.0,70.0,80.0,270.0,60.0,60.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,180.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,210.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,60.0,50.0,50.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,60.0,260.0,60.0,60.0,60.0,60.0,60.0,230.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,80.0,60.0,80.0,70.0,60.0,70.0,160.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,60.0,290.0,60.0,70.0,70.0,70.0,60.0,60.0,80.0,60.0,70.0,60.0,60.0,70.0,60.0,200.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,60.0,80.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,230.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpBreakEvenPoints × InpAtrSLMult"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpBreakEvenPoints"},"range":[0.9,3.1]},"yaxis":{"title":{"text":"InpAtrSLMult"},"range":[37.5,312.5]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpBreakEvenPoints × InpTrailStartPoints</h2><div style="height:520px; width:700px;"> <div id="contour-InpBreakEvenPoints-InpTrailStartPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpBreakEvenPoints-InpTrailStartPoints")) { Plotly.newPlot( "contour-InpBreakEvenPoints-InpTrailStartPoints", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[37.5,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,230.0,250.0,260.0,270.0,280.0,290.0,300.0,312.5],"y":[85.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,415.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f7eS4UzosZ0DUYBqGj4IuwQAAAAAAAPh\u002fAAAAAAAA+H+vzjFgOoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fxr\u002fP+CaDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4Bbj8L1KDFAjX+f8eyCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9n7bZL9IIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzAqXI\u002fCnWlArpAsYAL7bUBbVfZdEWhlQAAAAAAAAPh\u002fAAAAAAAA+H\u002fAhetRuPZrQNA9CtejQGhAAAAAAAAA+H\u002fwPQrXo0BnQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fAhetRuO5pQJ5e+SzPX2tAAAAAAAAA+H8AAAAAAAD4f983vvYEgy7BqwSLQwWELsEAAAAAAAD4fxx0Ed+JsW9AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fXT\u002feq1buV0BeuYjvxBRwQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9kIxAvp4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fy3uJY3RcmFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f+0+3qtWdmBAJhk5C+yDLsFB1H3AGoMuwQAAAAAAAPh\u002fMzMzMzSDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxU1mMa\u002fgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+w9ihcj\u002fpnQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fvW98bbqCLsEAAAAAAAD4f4Ko+4DSgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fBMqmHP6CLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f7eVOR0YQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8sQx\u002fqtgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8cQpWaHoIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f+IBZRNWgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002ffjUHyMGBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fyi5HoXr5XFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fQG6jAbz+eEAAAAAAAAD4fzP5ZnvVgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbU6DLsF2jgHZAoEuwQAAAAAAAPh\u002fIAw8t4KCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fL8A++lJ\u002fLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1oqb4fhhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fHAjJ4uqBLsEAAAAAAAD4fwAAAAAAAPh\u002f2bERCMyDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+oqWWLl4IuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3req1Ym431AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAICEPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9cj8J1NYUuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fQd\u002fpqsMUtAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAI2EPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwCzHoXrUTJAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fSOF6FKGELsEAAAAAAAD4fwAAAAAAAPh\u002fZ9XnShaCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzF8RAz3gS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3T3oQvq209AAAAAAAAA+H\u002fYaPtX1rmBQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8O4+R+h+p8QCwPXVDfmYBAJqzAkFWcgEAAAAAAAAD4f3ReY9digi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fOAb1LXNjeUAAAAAAAAD4f4qcY0B2UoJAOHPS+0a5gUBmvRhKUIAuwQAAAAAAAPh\u002fAAAAAAAA+H+KPEk6SYUuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3Dhr8kar35ALArXo3DnhEBAfamft2SBQCYBago9gS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1TC9ShclYFAzczMTICALsGQMXcNroAuwTUpBX2jgy7BAAAAAAAA+H\u002f4Nv1ZzoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fuRluYF6BLsEAAAAAAAD4fwAAAAAAAPh\u002f6LcehesXhUAQqfbpeJGDQLAJDFnddH9ARIZVXCyCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0wao5WQgC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f+CtR+F6NoRASFc+y\u002fNVhkBkOLnfoUeBQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8L7IZti6yIQBSAmlq2zYRAbJJX55gRgkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fO2owDUOniUCQTGcng8CDQBSuR2E3gS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fZcdGQECCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxSuR+GEhD7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwOJtfiUF4pApxTLLS1jiUBD6X3ja1iHQCVYHG6xfy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fI9bi08SCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fsFuyGWgS7BIjfDbQSELsEtYAI3Y4EuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8vr3yW59mHQOyOqiYId4pA01t389SLh0DbM0ui8n8uwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fI9v5fsuBLsEAAAAAAAD4fwB0mA\u002fRgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8cpOlI6gC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fSMh71crTikCfpzrk5teIQLcqNXugUYdAhUIEnPF\u002fLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9iFW+EhoQuwXfzVGfrgy7BAAAAAAAA+H\u002fdmJ4w94MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"33, 26"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[300.0,60.0,180.0,190.0,60.0,210.0,190.0,230.0,110.0,100.0,290.0,140.0,50.0,50.0,80.0,120.0,80.0,50.0,150.0,80.0,140.0,50.0,70.0,100.0,50.0,90.0,70.0,120.0,120.0,160.0,120.0,70.0,70.0,100.0,70.0,90.0,130.0,60.0,60.0,70.0,90.0,60.0,60.0,60.0,80.0,280.0,100.0,50.0,250.0,70.0,90.0,110.0,110.0,60.0,80.0,170.0,50.0,80.0,110.0,60.0,190.0,140.0,130.0,130.0,70.0,90.0,100.0,150.0,70.0,110.0,130.0,110.0,70.0,80.0,80.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,210.0,60.0,50.0,60.0,50.0,60.0,70.0,50.0,60.0,50.0,70.0,60.0,50.0,50.0,60.0,60.0,60.0,80.0,50.0,60.0,70.0,50.0,50.0,60.0,50.0,70.0,60.0,50.0,80.0,60.0,70.0,70.0,50.0,60.0,50.0,50.0,60.0,70.0,50.0,60.0,50.0,60.0,50.0,50.0,60.0,50.0,50.0,70.0,50.0,50.0,50.0,60.0,50.0,50.0,50.0,60.0,60.0,60.0,70.0,50.0,70.0,50.0,50.0,60.0,50.0,60.0,60.0,60.0,80.0,60.0,300.0,70.0,60.0,60.0,60.0,60.0,80.0,60.0,70.0,80.0,90.0,70.0,70.0,80.0,70.0,90.0,70.0,70.0,70.0,80.0,70.0,90.0,70.0,80.0,270.0,60.0,60.0,80.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,180.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,210.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,50.0,60.0,60.0,50.0,50.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,60.0,260.0,60.0,60.0,60.0,60.0,60.0,230.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,70.0,70.0,70.0,70.0,80.0,60.0,80.0,70.0,60.0,70.0,160.0,60.0,60.0,60.0,70.0,80.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,70.0,60.0,60.0,290.0,60.0,70.0,70.0,70.0,60.0,60.0,80.0,60.0,70.0,60.0,60.0,70.0,60.0,200.0,60.0,60.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,60.0,80.0,70.0,80.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,60.0,230.0,70.0,70.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,60.0,70.0,60.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0],"y":[160.0,150.0,150.0,340.0,200.0,250.0,370.0,400.0,330.0,150.0,260.0,100.0,300.0,260.0,220.0,310.0,110.0,290.0,210.0,180.0,370.0,300.0,290.0,230.0,280.0,330.0,120.0,120.0,120.0,180.0,180.0,140.0,130.0,130.0,150.0,100.0,170.0,130.0,160.0,140.0,200.0,120.0,140.0,100.0,120.0,160.0,240.0,360.0,140.0,200.0,110.0,120.0,130.0,400.0,110.0,170.0,100.0,150.0,120.0,270.0,140.0,120.0,130.0,110.0,130.0,170.0,130.0,380.0,190.0,190.0,190.0,220.0,320.0,310.0,330.0,300.0,310.0,300.0,310.0,340.0,340.0,340.0,350.0,350.0,350.0,350.0,350.0,370.0,380.0,380.0,360.0,390.0,390.0,360.0,370.0,350.0,390.0,370.0,350.0,330.0,380.0,350.0,390.0,400.0,390.0,400.0,390.0,390.0,400.0,390.0,360.0,390.0,370.0,390.0,400.0,370.0,380.0,400.0,390.0,390.0,380.0,370.0,390.0,400.0,400.0,380.0,400.0,390.0,370.0,360.0,380.0,360.0,360.0,360.0,390.0,390.0,370.0,380.0,360.0,360.0,380.0,360.0,360.0,360.0,340.0,330.0,330.0,330.0,340.0,340.0,320.0,340.0,320.0,340.0,340.0,340.0,340.0,340.0,330.0,330.0,330.0,340.0,320.0,320.0,320.0,320.0,320.0,320.0,310.0,300.0,310.0,310.0,310.0,320.0,310.0,300.0,320.0,290.0,280.0,290.0,310.0,320.0,330.0,280.0,350.0,300.0,310.0,320.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,360.0,360.0,340.0,360.0,360.0,350.0,340.0,360.0,350.0,340.0,360.0,350.0,370.0,350.0,340.0,340.0,340.0,340.0,340.0,360.0,360.0,360.0,360.0,360.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,400.0,390.0,400.0,390.0,240.0,390.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,380.0,390.0,390.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,380.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,210.0,390.0,380.0,370.0,370.0,380.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,360.0,360.0,360.0,360.0,370.0,360.0,370.0,360.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpBreakEvenPoints × InpTrailStartPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpBreakEvenPoints"},"range":[37.5,312.5]},"yaxis":{"title":{"text":"InpTrailStartPoints"},"range":[85.0,415.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpRsiPeriod × InpAtrSLMult</h2><div style="height:520px; width:700px;"> <div id="contour-InpRsiPeriod-InpAtrSLMult" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpRsiPeriod-InpAtrSLMult")) { Plotly.newPlot( "contour-InpRsiPeriod-InpAtrSLMult", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[0.9,1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7000000000000002,1.8,1.9,2.0,2.1,2.2,2.3,2.4000000000000004,2.5,2.6,2.7,2.8,2.9000000000000004,3.0,3.1],"y":[5.95,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29.05],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fcT0K14eELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fpHA9CjmCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzMzMzM0gy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fTBqjlZCALsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H92jgHZAoEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9xPQpXU4Iuwc3MzMzTgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H81KQV9o4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8iN8NtBIQuwQD2KFyPDnlAEMP1KFzDfUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9aKm+H4YQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f9ihcjwWCLsEK16PwWIIuwSy2LcrsUIFAOAb1LXNjeUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f9QdOGfECYVArJJX55iXhkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fsUbgenIIuwQAAAAAAAPh\u002fML4Ts17Nf0A4YoTwaFh+QH7GheOegi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fjX+f8eyCLsEAAAAAAAD4fwAAAAAAAPh\u002fFK5H4YSEPsEgDDy3goIuwQAAAAAAAPh\u002f6wA1tWyDhkBLms5OBquHQAvshm2LrIhAgHFyv0NbiUBD6X3ja1iHQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f4XoULqyBLsEAAAAAAAD4f6jrUbgerYBAuEfhehS6fkDhehQuYYEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fxr\u002fP+CaDLsE04h5LH8iGQAOJtfiUF4pAtyo1e6BRh0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzCuR+F6fHdA+ML1KFwzd0DgjsL1KBCBQLgehWsXgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fDu5qmOLoRAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002ffjUHyMGBLsEAAAAAAAD4f6js9e6PnYdAqB8pIsO8h0AY7fXuj7GIQJiGj4gpfYhAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fCsR+F6tH1AAAAAAAAA+H8AUrgehaWBQICPwvUoiH5Aw\u002fUo3P6BLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxUdyUXdgi7BAAAAAAAA+H\u002fk05rmHYaFQJcqNXugwYdASMh71crTikCsdmfttuyHQAAAAAAAAPh\u002fAAAAAAAA+H9EBYasbgqAQBiAmlq2F4FAAKn26XivgkBUwvUoXJWBQKDMzMzMuINAAAAAAAAA+H97FK7HRoEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f6+tAF9b1TQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzevfJbn1YdAL698lufZh0B\u002fZ5sb0xGHQON7SWO0RodAZ2ZmZhmBLsFwwvUoXCODQCwK16Nw54RAxKYFL3pqg0AAAAAAAAD4fwAAAAAAAPh\u002fmLgeheuVc0BQ0\u002favrMdxQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9WgsWhhYMuwa6QLGAC+21AAAAAAAAA+H\u002fAstIkCoMuwQAAAAAAAPh\u002fZ+22S\u002fSCLsEAAAAAAAD4fwxDkIMSI4ZA\u002fLykMVryhkCMinH+JhuHQADmAMEc+oVA2ASGrG50hUAg5gDBHGKFQAjC9Shcz4RAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fzTtOsTeDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8zMzOzhIQuwTAqXI\u002fCnWlAAAAAAAAA+H8AAAAAAAD4fyYZOQvsgy7BQdR9wBqDLsEAAAAAAAD4f4CC+pa5oYVAtDoZHKUThUBIVz7L81WGQOi3HoXrF4VAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fHEKVmh6CLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fAhetRuPZrQBx0Ed+JsW9A8D0K16NAZ0AAAAAAAAD4fwAAAAAAAPh\u002fKLkehevlcUDZsREIzIMuwQAAAAAAAPh\u002fFICaWrbNhEAz+WZ71YEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fnyAqzpgy7BAAAAAAAA+H88hb8ma+xdQJ5e+SzPX2tAqwSLQwWELsEAAAAAAAD4f165iO\u002fEFHBAAAAAAAAA+H\u002ffN772BIMuwQAAAAAAAPh\u002f+3lTkdGELsEAAAAAAAD4f\u002fyo9ul4M4FAkExnJ4PAg0AAAAAAAAD4fwAAAAAAAPh\u002fAEGH+fJ4bUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fXT\u002feq1buV0BkIxAvp4MuwQAAAAAAAPh\u002fsNajcD2SZkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8iN8NtToMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H++C0EOSuxjQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8CF61G47mlAHJGWytv5XEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+CqPuA0oMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACAhD7BAAAAAAAA+H+w9ihcj\u002fpnQAAAAAAAAPh\u002f4gFlE1aDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fr84xYDqDLsEj1uLTxIIuwQAAAAAAAPh\u002fSOF6FKGELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fWJvhBnx+f0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fLe4ljdFyYUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+AW4\u002fC9SgxQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f8PY7FAXEekAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACNhD7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"24, 23"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[2.4000000000000004,2.0,2.3,1.7000000000000002,2.3,1.2,1.3,1.6,2.0,1.0,3.0,1.7000000000000002,1.8,2.0,2.8,1.9,2.5,1.5,2.1,1.4,2.6,1.5,1.7000000000000002,1.8,2.2,1.1,1.4,1.9,1.3,1.5,1.8,2.0,1.9,2.2,2.1,1.9,2.4000000000000004,1.6,1.6,1.2,1.4,1.8,1.6,1.8,1.7000000000000002,2.0,1.4,1.6,2.1,1.3,1.0,1.8,1.8,1.7000000000000002,1.6,2.0,1.8,2.2,1.5,1.9,1.7000000000000002,2.0,1.9,1.8,1.7000000000000002,1.7000000000000002,1.4,2.0,2.3,2.6,2.7,2.4000000000000004,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.7,2.7,2.8,2.7,2.6,2.8,2.8,2.7,2.6,2.8,2.5,2.5,2.7,2.8,2.6,2.8,2.8,2.7,2.7,2.7,2.7,2.9000000000000004,2.7,2.6,2.7,2.5,2.8,2.8,2.8,2.7,2.6,2.8,2.7,2.9000000000000004,3.0,2.9000000000000004,2.9000000000000004,2.8,2.7,2.7,2.5,2.7,2.6,2.9000000000000004,2.7,2.7,2.8,2.8,2.9000000000000004,2.8,2.8,2.8,2.7,2.6,2.6,2.6,2.7,2.7,2.7,2.7,2.5,2.6,2.5,2.4000000000000004,2.4000000000000004,2.3,2.3,2.3,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.5,2.5,2.4000000000000004,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.6,2.4000000000000004,2.5,2.5,2.3,2.4000000000000004,2.6,2.4000000000000004,2.5,2.6,2.6,2.5,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.6,2.6,2.6,2.7,2.7,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.2,2.3,2.2,2.2,2.2,2.3,2.2,2.2,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2.1,2.2,2.1,2.0,2.0,2.1,2.2,2.2,2.1,2.1,2.1,2.2,2.0,2.0,2.1,2.1,2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.0,1.9,2.0,2.0,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,2.0,1.9,1.8,2.0,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.8,1.9,2.0,2.0,2.0,2.0,1.9,2.0,1.8,1.9,2.0,1.9,1.9,1.9,2.0,1.8,1.9,1.9,1.8,1.9,2.0,1.9,2.0,1.7000000000000002,1.9,1.8,2.0,1.9,2.0,2.0,1.9,2.0,2.0,1.8,1.9,2.0,1.9,1.9,1.8,1.9,2.0,2.0,1.9,1.9,1.8,1.9,2.0,2.0,2.0,1.1,2.0,1.9,1.9,1.9,1.8,1.9,1.8,1.7000000000000002,1.8,1.8,1.8,1.7000000000000002,1.8,1.9,1.7000000000000002,1.8,1.9,1.8,1.9,1.8,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.9,1.9,1.9,2.0,2.0,2.0,1.9,2.0,1.9,2.0,1.9,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,2.0,1.9,1.9,2.0,1.9,1.8,1.9,1.8,1.9,1.9,1.8,1.8,1.9,1.9,1.9,2.0,1.8,2.0,1.9,1.9,2.0,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.7000000000000002,1.7000000000000002,1.8,1.7000000000000002,1.8,1.6,1.8,1.7000000000000002,1.8,1.8,1.8,1.8,1.8,1.8],"y":[23,20,22,8,22,23,13,7,20,8,28,14,14,17,12,17,27,17,11,20,15,17,19,15,25,10,18,20,18,15,24,21,22,21,19,25,21,23,24,23,13,19,22,19,16,18,24,21,27,9,13,20,21,23,18,16,20,19,16,14,22,20,20,18,21,23,21,25,20,20,20,20,21,17,18,17,17,17,11,12,11,11,12,12,12,12,12,10,10,10,7,12,10,9,14,12,9,13,11,11,10,11,12,13,13,14,13,13,15,13,14,12,12,13,13,14,12,13,15,15,13,11,15,12,14,13,11,14,12,13,14,13,15,16,15,15,13,13,16,16,15,14,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,18,16,17,17,16,16,17,17,17,17,18,18,18,18,18,18,19,18,19,17,18,18,17,17,18,18,17,18,18,19,17,19,17,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,21,20,20,19,20,20,19,20,21,19,20,21,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,17,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,15,16,15,15,16,16,16,15,15,15,15,15,15,16,16,16,15,16,15,14,15,16,16,15,16,15,15,15,16,16,15,14,15,15,14,14,14,15,15,14,16,16,15,15,14,15,16,15,28,16,16,15,16,14,14,16,14,15,14,14,15,14,26,15,14,15,15,15,15,15,15,15,15,16,16,16,16,16,15,16,15,14,15,16,16,14,14,16,14,16,15,13,16,16,16,16,16,14,16,15,14,16,15,16,15,16,16,14,15,16,14,13,14,14,15,15,15,13,14,15,14,14,13,14,14,15,15,14,15,13,14,15,15,14,15,15,14,14,13,14,14,14,13,14,13,13,13,13,12,13,13,13,12,13,13,13,13,12,13,13,12,13],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpRsiPeriod × InpAtrSLMult"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiPeriod"},"range":[0.9,3.1]},"yaxis":{"title":{"text":"InpAtrSLMult"},"range":[5.95,29.05]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpRsiPeriod × InpTrailStartPoints</h2><div style="height:520px; width:700px;"> <div id="contour-InpRsiPeriod-InpTrailStartPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpRsiPeriod-InpTrailStartPoints")) { Plotly.newPlot( "contour-InpRsiPeriod-InpTrailStartPoints", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[5.95,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29.05],"y":[85.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,415.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8a\u002fz\u002fgmgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fUYBqGj4Iuwe3kuFM6LGdAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+vzjFgOoMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+Nf5\u002fx7IIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fZ+22S\u002fSCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fgFuPwvUoMUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9bVfZdEWhlQAAAAAAAAPh\u002frpAsYAL7bUAwKlyPwp1pQMCF61G49mtAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxx0Ed+JsW9Anl75LM9fa0Cw1qNwPZJmQMCF61G47mlAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fXrmI78QUcEBdP96rVu5XQL4LQQ5K7GNAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fLe4ljdFyYUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzMzMzM0gy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9B1H3AGoMuwe0+3qtWdmBAAAAAAAAA+H8VNZjGv4MuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fvW98bbqCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4Ko+4DSgy7BsPYoXI\u002f6Z0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fLEMf6rYIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f+3lTkdGELsEAAAAAAAD4fwTKphz+gi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002ffjUHyMGBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxxClZoegi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f4gFlE1aDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0BuowG8\u002fnhAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fdo4B2QKBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8gDDy3goIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8iN8NtToMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1oqb4fhhC7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fL8A++lJ\u002fLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fHAjJ4uqBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f9mxEQjMgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fqKlli5eCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fet6rVibjfUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAICEPsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1yPwnU1hS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fQd\u002fpqsMUtAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwCzHoXrUTJAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzF8RAz3gS7BZ9XnShaCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9I4XoUoYQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3T3oQvq209A2Gj7V9a5gUAzMzOzhIQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fw7j5H6H6nxAAAAAAAAA+H8AAAAAAAD4f5AzMzMzX3NALA9dUN+ZgEAmrMCQVZyAQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzgG9S1zY3lAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f5i4HoXrlXNAipxjQHZSgkDo9pJmDIEuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AqfbpeK+CQCwK16Nw54RAQH2pn7dkgUBAdTI4SvN\u002fQAAAAAAAAPh\u002fAEGH+fJ4bUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H81KQV9o4MuwfYoXI8Fgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9UwvUoXJWBQPryAiy5gC7BkDF3Da6ALsEAAAAAAAD4f\u002fg2\u002fVnOgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f0wao5WQgC7BAAAAAAAA+H8AAAAAAAD4fygfhetRfHNAkArXo3CJeEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8oZmZmZoKBQJijcD0KdYRARIZVXCyCLsHotx6F6xeFQBCp9ul4kYNAsAkMWd10f0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fyy2LcrsUIFA6PsdigKWfEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8SmBS96aoNACML1KFzPhEBIVz7L81WGQETcKR2sooRAeLmID5uALsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+kcD0KOYIuwQAAAAAAAPh\u002fzczMzNOBLsEAAAAAAAD4fwAAAAAAAPh\u002frJJX55iXhkAL7IZti6yIQOCOwvUoEIFAAFK4HoWlgUCgzMzMzLiDQAAAAAAAAPh\u002fAAAAAAAA+H8gmZmZmbGEQBSAmlq2zYRA\u002fKj26XgzgUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8Qw\u002fUoXMN9QBgfhetRrHhACHdn7bZ2hkCAcXK\u002fQ1uJQDtqMA1Dp4lAZcdGQECCLsEAAAAAAAD4fwAAAAAAAPh\u002fIOYAwRxihUCAgvqWuaGFQAAAAAAAAPh\u002fkExnJ4PAg0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8A9ihcjw55QAAAAAAAAPh\u002fQGdmZmbqeEBD6X3ja1iHQAOJtfiUF4pAgDTXaaR\u002fiEBPryDNWFSHQAAAAAAAAPh\u002f6OUAwRyshkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8j1uLTxIIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fcT0KV1OCLsFxPQrXwIEuwQAAAAAAAPh\u002fML4Ts17Nf0Co61G4Hq2AQFgLe9rhyYlAEAt72uGFiEDsjqomCHeKQC+vfJbn2YdAjIpx\u002fiYbh0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fw9jsUBcR6QAAAAAAAAPh\u002fAAAAAAAA+H9xPQrXh4QuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwrXo\u002fBYgi7B6HoUrkeVfkCw1qNwPVp9QJ+nOuTm14hAGO317o+xiEBIyHvVytOKQDevfJbn1YdAHGzsEtX8hkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxyRlsrb+VxAAAAAAAAA+H8AAAAAAAD4f1ib4QZ8fn9AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"33, 24"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[23,20,22,8,22,23,13,7,20,8,28,14,14,17,12,17,27,17,11,20,15,17,19,15,25,10,18,20,18,15,24,21,22,21,19,25,21,23,24,23,13,19,22,19,16,18,24,21,27,9,13,20,21,23,18,16,20,19,16,14,22,20,20,18,21,23,21,25,20,20,20,20,21,17,18,17,17,17,11,12,11,11,12,12,12,12,12,10,10,10,7,12,10,9,14,12,9,13,11,11,10,11,12,13,13,14,13,13,15,13,14,12,12,13,13,14,12,13,15,15,13,11,15,12,14,13,11,14,12,13,14,13,15,16,15,15,13,13,16,16,15,14,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,18,16,17,17,16,16,17,17,17,17,18,18,18,18,18,18,19,18,19,17,18,18,17,17,18,18,17,18,18,19,17,19,17,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,21,20,20,19,20,20,19,20,21,19,20,21,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,17,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,15,16,15,15,16,16,16,15,15,15,15,15,15,16,16,16,15,16,15,14,15,16,16,15,16,15,15,15,16,16,15,14,15,15,14,14,14,15,15,14,16,16,15,15,14,15,16,15,28,16,16,15,16,14,14,16,14,15,14,14,15,14,26,15,14,15,15,15,15,15,15,15,15,16,16,16,16,16,15,16,15,14,15,16,16,14,14,16,14,16,15,13,16,16,16,16,16,14,16,15,14,16,15,16,15,16,16,14,15,16,14,13,14,14,15,15,15,13,14,15,14,14,13,14,14,15,15,14,15,13,14,15,15,14,15,15,14,14,13,14,14,14,13,14,13,13,13,13,12,13,13,13,12,13,13,13,13,12,13,13,12,13],"y":[160.0,150.0,150.0,340.0,200.0,250.0,370.0,400.0,330.0,150.0,260.0,100.0,300.0,260.0,220.0,310.0,110.0,290.0,210.0,180.0,370.0,300.0,290.0,230.0,280.0,330.0,120.0,120.0,120.0,180.0,180.0,140.0,130.0,130.0,150.0,100.0,170.0,130.0,160.0,140.0,200.0,120.0,140.0,100.0,120.0,160.0,240.0,360.0,140.0,200.0,110.0,120.0,130.0,400.0,110.0,170.0,100.0,150.0,120.0,270.0,140.0,120.0,130.0,110.0,130.0,170.0,130.0,380.0,190.0,190.0,190.0,220.0,320.0,310.0,330.0,300.0,310.0,300.0,310.0,340.0,340.0,340.0,350.0,350.0,350.0,350.0,350.0,370.0,380.0,380.0,360.0,390.0,390.0,360.0,370.0,350.0,390.0,370.0,350.0,330.0,380.0,350.0,390.0,400.0,390.0,400.0,390.0,390.0,400.0,390.0,360.0,390.0,370.0,390.0,400.0,370.0,380.0,400.0,390.0,390.0,380.0,370.0,390.0,400.0,400.0,380.0,400.0,390.0,370.0,360.0,380.0,360.0,360.0,360.0,390.0,390.0,370.0,380.0,360.0,360.0,380.0,360.0,360.0,360.0,340.0,330.0,330.0,330.0,340.0,340.0,320.0,340.0,320.0,340.0,340.0,340.0,340.0,340.0,330.0,330.0,330.0,340.0,320.0,320.0,320.0,320.0,320.0,320.0,310.0,300.0,310.0,310.0,310.0,320.0,310.0,300.0,320.0,290.0,280.0,290.0,310.0,320.0,330.0,280.0,350.0,300.0,310.0,320.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,360.0,360.0,340.0,360.0,360.0,350.0,340.0,360.0,350.0,340.0,360.0,350.0,370.0,350.0,340.0,340.0,340.0,340.0,340.0,360.0,360.0,360.0,360.0,360.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,400.0,390.0,400.0,390.0,240.0,390.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,380.0,390.0,390.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,380.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,210.0,390.0,380.0,370.0,370.0,380.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,360.0,360.0,360.0,360.0,370.0,360.0,370.0,360.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpRsiPeriod × InpTrailStartPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpRsiPeriod"},"range":[5.95,29.05]},"yaxis":{"title":{"text":"InpTrailStartPoints"},"range":[85.0,415.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
<section class="chart"><h2>等高线 — InpAtrSLMult × InpTrailStartPoints</h2><div style="height:520px; width:700px;"> <div id="contour-InpAtrSLMult-InpTrailStartPoints" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("contour-InpAtrSLMult-InpTrailStartPoints")) { Plotly.newPlot( "contour-InpAtrSLMult-InpTrailStartPoints", [{"colorbar":{"title":{"text":"Objective Value"}},"colorscale":[[0.0,"rgb(247,251,255)"],[0.125,"rgb(222,235,247)"],[0.25,"rgb(198,219,239)"],[0.375,"rgb(158,202,225)"],[0.5,"rgb(107,174,214)"],[0.625,"rgb(66,146,198)"],[0.75,"rgb(33,113,181)"],[0.875,"rgb(8,81,156)"],[1.0,"rgb(8,48,107)"]],"connectgaps":true,"contours":{"coloring":"heatmap"},"hoverinfo":"none","line":{"smoothing":1.3},"reversescale":false,"x":[0.9,1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7000000000000002,1.8,1.9,2.0,2.1,2.2,2.3,2.4000000000000004,2.5,2.6,2.7,2.8,2.9000000000000004,3.0,3.1],"y":[85.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,415.0],"z":{"dtype":"f8","bdata":"AAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fGv8\u002f4JoMuwe3kuFM6LGdAr84xYDqDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f41\u002fn\u002fHsgi7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f8Cy0iQKgy7BAAAAAAAA+H9n7bZL9IIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4Bbj8L1KDFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9WgsWhhYMuwa6QLGAC+21AFR3JRd2CLsEAAAAAAAD4f1tV9l0RaGVAwIXrUbj2a0DQPQrXo0BoQPA9CtejQGdAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f58gKs6YMuwQAAAAAAAPh\u002fwIXrUbjuaUCeXvksz19rQKsEi0MFhC7BHHQR34mxb0AAAAAAAAD4fwAAAAAAAPh\u002f3ze+9gSDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H++C0EOSuxjQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f10\u002f3qtW7ldAZCMQL6eDLsEAAAAAAAD4fwAAAAAAAPh\u002fXrmI78QUcEAt7iWN0XJhQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8zMzMzNIMuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f+0+3qtWdmBAJhk5C+yDLsFB1H3AGoMuwRU1mMa\u002fgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fsPYoXI\u002f6Z0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+9b3xtuoIuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4Ko+4DSgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fBMqmHP6CLsEAAAAAAAD4fwAAAAAAAPh\u002fyxDH+q2CLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002f7eVOR0YQuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fxxClZoegi7BfjUHyMGBLsEAAAAAAAD4fwAAAAAAAPh\u002f4gFlE1aDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8ouR6F6+VxQAAAAAAAAPh\u002fAAAAAAAA+H9AbqMBvP54QDP5ZnvVgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f3aOAdkCgS7BIAw8t4KCLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fIjfDbU6DLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8vwD76Un8uwQAAAAAAAPh\u002fWipvh+GELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f9mxEQjMgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fHAjJ4uqBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H+oqWWLl4IuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAACAhD7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H963qtWJuN9QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f1yPwnU1hS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f9B3+mqwxS0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAjYQ+wQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8Asx6F61EyQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fSOF6FKGELsEAAAAAAAD4fwAAAAAAAPh\u002fMXxEDPeBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9096EL6ttPQAAAAAAAAPh\u002fMzMzs4SELsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fZ2ZmZhmBLsEAAAAAAAD4f9ho+1fWuYFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f+vrQBfW9U0AAAAAAAAD4fwAAAAAAAPh\u002fDuPkfofqfEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H90XmPXYoIuwSaswJBVnIBAAAAAAAAA+H8AAAAAAAD4f5AzMzMzX3NAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fijxJOkmFLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f2a9GEpQgC7BipxjQHZSgkAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H84BvUtc2N5QFDT9q+sx3FAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fcOGvyRqvfkAMAAAAANSCQCwK16Nw54RAs33eVCQkgEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AQYf58nhtQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fzUpBX2jgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fg2\u002fVnOgy7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fKGEVb2TBgEBowvUoXD+BQFTC9ShclYFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fzTtOsTeDLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9MGqOVkIAuwQAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9EBYasbgqAQHDC9ShcI4NAmKNwPQp1hED4tx6F652EQOi3HoXrF4VAkArXo3CJeEAoH4XrUXxzQAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4Dw12SNPYRASFc+y\u002fNVhkDo+x2KApZ8QCy2LcrsUIFAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H88hb8ma+xdQOxkqmDUJoVAC+yGbYusiEAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8gmZmZmbGEQBSAmlq2zYRAoMzMzMy4g0AAUrgehaWBQHsUrsdGgS7BAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fFK5H4YSEPsEAAAAAAAD4fwAAAAAAAPh\u002f6wA1tWyDhkBLms5OBquHQPhmmxvTo4hAO2owDUOniUAAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f4CC+pa5oYVAIOYAwRxihUD4wvUoXDN3QJBMZyeDwINAEMP1KFzDfUAYH4XrUax4QAAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H\u002fsSIWxhY6HQAOJtfiUF4pAvGcKndcgiEAOswJDVkyEQOjlAMEcrIZAAOYAwRz6hUDYBIasbnSFQOF6FC6sgS7B8KxH4Xq0fUCY4HoUrit\u002fQEBnZmZm6nhA4XoULmGBLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f\u002fDu5qmOLoRAAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4f7CaPdAK9oVAOAt72uHlhkDsjqomCHeKQKx2Z+227IdA\u002fLykMVryhkCMinH+JhuHQAAAAAAAAPh\u002fAAAAAAAA+H9xPQpXU4IuwfAJ16NwOXVAqOtRuB6tgEC4R+F6FLp+QICPwvUoiH5Aw\u002fUo3P6BLsEAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fcT0K14eELsGo7PXuj52HQJcqNXugwYdASMh71crTikCYho+IKX2IQH9nmxvTEYdA43tJY7RGh0AAAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H9mZmbmVIEuweh6FK5HlX5AAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002fAAAAAAAA+H8AAAAAAAD4fwAAAAAAAPh\u002f","shape":"33, 23"},"type":"contour"},{"marker":{"color":"black","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Feasible Trial","showlegend":false,"x":[2.4000000000000004,2.0,2.3,1.7000000000000002,2.3,1.2,1.3,1.6,2.0,1.0,3.0,1.7000000000000002,1.8,2.0,2.8,1.9,2.5,1.5,2.1,1.4,2.6,1.5,1.7000000000000002,1.8,2.2,1.1,1.4,1.9,1.3,1.5,1.8,2.0,1.9,2.2,2.1,1.9,2.4000000000000004,1.6,1.6,1.2,1.4,1.8,1.6,1.8,1.7000000000000002,2.0,1.4,1.6,2.1,1.3,1.0,1.8,1.8,1.7000000000000002,1.6,2.0,1.8,2.2,1.5,1.9,1.7000000000000002,2.0,1.9,1.8,1.7000000000000002,1.7000000000000002,1.4,2.0,2.3,2.6,2.7,2.4000000000000004,3.0,3.0,3.0,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.9000000000000004,2.8,2.9000000000000004,2.9000000000000004,2.8,2.8,2.8,2.7,2.7,2.8,2.7,2.6,2.8,2.8,2.7,2.6,2.8,2.5,2.5,2.7,2.8,2.6,2.8,2.8,2.7,2.7,2.7,2.7,2.9000000000000004,2.7,2.6,2.7,2.5,2.8,2.8,2.8,2.7,2.6,2.8,2.7,2.9000000000000004,3.0,2.9000000000000004,2.9000000000000004,2.8,2.7,2.7,2.5,2.7,2.6,2.9000000000000004,2.7,2.7,2.8,2.8,2.9000000000000004,2.8,2.8,2.8,2.7,2.6,2.6,2.6,2.7,2.7,2.7,2.7,2.5,2.6,2.5,2.4000000000000004,2.4000000000000004,2.3,2.3,2.3,2.5,2.6,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.5,2.5,2.4000000000000004,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.6,2.4000000000000004,2.5,2.5,2.3,2.4000000000000004,2.6,2.4000000000000004,2.5,2.6,2.6,2.5,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.6,2.6,2.6,2.7,2.7,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4000000000000004,2.4000000000000004,2.5,2.5,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.4000000000000004,2.3,2.2,2.3,2.2,2.2,2.2,2.3,2.2,2.2,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2.1,2.2,2.1,2.0,2.0,2.1,2.2,2.2,2.1,2.1,2.1,2.2,2.0,2.0,2.1,2.1,2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.0,1.9,2.0,2.0,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,2.0,1.9,1.8,2.0,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.8,1.9,2.0,2.0,2.0,2.0,1.9,2.0,1.8,1.9,2.0,1.9,1.9,1.9,2.0,1.8,1.9,1.9,1.8,1.9,2.0,1.9,2.0,1.7000000000000002,1.9,1.8,2.0,1.9,2.0,2.0,1.9,2.0,2.0,1.8,1.9,2.0,1.9,1.9,1.8,1.9,2.0,2.0,1.9,1.9,1.8,1.9,2.0,2.0,2.0,1.1,2.0,1.9,1.9,1.9,1.8,1.9,1.8,1.7000000000000002,1.8,1.8,1.8,1.7000000000000002,1.8,1.9,1.7000000000000002,1.8,1.9,1.8,1.9,1.8,1.9,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.9,1.9,1.9,2.0,2.0,2.0,1.9,2.0,1.9,2.0,1.9,2.0,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.9,2.0,1.9,1.9,2.0,1.9,1.8,1.9,1.8,1.9,1.9,1.8,1.8,1.9,1.9,1.9,2.0,1.8,2.0,1.9,1.9,2.0,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.7000000000000002,1.7000000000000002,1.8,1.7000000000000002,1.8,1.6,1.8,1.7000000000000002,1.8,1.8,1.8,1.8,1.8,1.8],"y":[160.0,150.0,150.0,340.0,200.0,250.0,370.0,400.0,330.0,150.0,260.0,100.0,300.0,260.0,220.0,310.0,110.0,290.0,210.0,180.0,370.0,300.0,290.0,230.0,280.0,330.0,120.0,120.0,120.0,180.0,180.0,140.0,130.0,130.0,150.0,100.0,170.0,130.0,160.0,140.0,200.0,120.0,140.0,100.0,120.0,160.0,240.0,360.0,140.0,200.0,110.0,120.0,130.0,400.0,110.0,170.0,100.0,150.0,120.0,270.0,140.0,120.0,130.0,110.0,130.0,170.0,130.0,380.0,190.0,190.0,190.0,220.0,320.0,310.0,330.0,300.0,310.0,300.0,310.0,340.0,340.0,340.0,350.0,350.0,350.0,350.0,350.0,370.0,380.0,380.0,360.0,390.0,390.0,360.0,370.0,350.0,390.0,370.0,350.0,330.0,380.0,350.0,390.0,400.0,390.0,400.0,390.0,390.0,400.0,390.0,360.0,390.0,370.0,390.0,400.0,370.0,380.0,400.0,390.0,390.0,380.0,370.0,390.0,400.0,400.0,380.0,400.0,390.0,370.0,360.0,380.0,360.0,360.0,360.0,390.0,390.0,370.0,380.0,360.0,360.0,380.0,360.0,360.0,360.0,340.0,330.0,330.0,330.0,340.0,340.0,320.0,340.0,320.0,340.0,340.0,340.0,340.0,340.0,330.0,330.0,330.0,340.0,320.0,320.0,320.0,320.0,320.0,320.0,310.0,300.0,310.0,310.0,310.0,320.0,310.0,300.0,320.0,290.0,280.0,290.0,310.0,320.0,330.0,280.0,350.0,300.0,310.0,320.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,350.0,360.0,360.0,340.0,360.0,360.0,350.0,340.0,360.0,350.0,340.0,360.0,350.0,370.0,350.0,340.0,340.0,340.0,340.0,340.0,360.0,360.0,360.0,360.0,360.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,390.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,390.0,400.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,400.0,390.0,400.0,390.0,240.0,390.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,390.0,390.0,390.0,390.0,400.0,400.0,400.0,400.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,390.0,400.0,400.0,400.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,390.0,390.0,380.0,390.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,390.0,380.0,390.0,380.0,390.0,390.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,380.0,390.0,390.0,380.0,390.0,380.0,380.0,390.0,390.0,380.0,390.0,390.0,380.0,210.0,390.0,380.0,370.0,370.0,380.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,370.0,360.0,360.0,360.0,360.0,370.0,360.0,370.0,360.0],"type":"scatter"},{"marker":{"color":"#cccccc","line":{"color":"Gray","width":2.0}},"mode":"markers","name":"Infeasible Trial","showlegend":false,"x":[],"y":[],"type":"scatter"}], {"title":{"text":"等高线 — InpAtrSLMult × InpTrailStartPoints"},"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"title":{"text":"InpAtrSLMult"},"range":[0.9,3.1]},"yaxis":{"title":{"text":"InpTrailStartPoints"},"range":[85.0,415.0]},"font":{"family":"Microsoft YaHei, Arial, sans-serif","size":12,"color":"#222"},"margin":{"l":70,"r":70,"t":60,"b":70},"height":520,"width":700}, {"responsive": true} ) }; </script> </div></section>
|
||
</main>
|
||
<footer>
|
||
生成时间:2026-06-26 · 来源:<code>studies\optuna\gold_scalper_pro_is2025.db</code>
|
||
· 框架:<a href="https://optuna.org">Optuna</a> + <a href="https://plotly.com/python">Plotly</a>
|
||
</footer>
|
||
</body>
|
||
</html>
|