@guihz/trading-vue-editor-tes 0.0.281 → 0.0.283

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -73,7 +73,7 @@ ${ko}rows: ${M.rows}
73
73
  ${ko}columns: ${M.columns}
74
74
  }`}function L6(M,e,t,r,o){const{rows:n,columns:b}=M,z=Math.min(n,e),i=Math.min(b,t),s=[];if(o==="auto"){o=!1;e:for(let O=0;O<z;O++)for(let a=0;a<i;a++)if(M.get(O,a)<0){o=!0;break e}}for(let O=0;O<z;O++){let a=[];for(let u=0;u<i;u++)a.push(v6(M.get(O,u),r,o));s.push(`${a.join(" ")}`)}return i!==b&&(s[s.length-1]+=` ... ${b-t} more columns`),z!==n&&s.push(`... ${n-e} more rows`),s.join(`
75
75
  ${W3}`)}function v6(M,e,t){return(M>=0&&t?` ${m3(M,e-1)}`:m3(M,e)).padEnd(e)}function m3(M,e){let t=M.toString();if(t.length<=e)return t;let r=M.toFixed(e);if(r.length>e&&(r=M.toFixed(Math.max(0,e-(r.length-e)))),r.length<=e&&!r.startsWith("0.000")&&!r.startsWith("-0.000"))return r;let o=M.toExponential(e);return o.length>e&&(o=M.toExponential(Math.max(0,e-(o.length-e)))),o.slice(0)}function N6(M,e){M.prototype.add=function(r){return typeof r=="number"?this.addS(r):this.addM(r)},M.prototype.addS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)+r);return this},M.prototype.addM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)+r.get(o,n));return this},M.add=function(r,o){return new e(r).add(o)},M.prototype.sub=function(r){return typeof r=="number"?this.subS(r):this.subM(r)},M.prototype.subS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)-r);return this},M.prototype.subM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)-r.get(o,n));return this},M.sub=function(r,o){return new e(r).sub(o)},M.prototype.subtract=M.prototype.sub,M.prototype.subtractS=M.prototype.subS,M.prototype.subtractM=M.prototype.subM,M.subtract=M.sub,M.prototype.mul=function(r){return typeof r=="number"?this.mulS(r):this.mulM(r)},M.prototype.mulS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)*r);return this},M.prototype.mulM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)*r.get(o,n));return this},M.mul=function(r,o){return new e(r).mul(o)},M.prototype.multiply=M.prototype.mul,M.prototype.multiplyS=M.prototype.mulS,M.prototype.multiplyM=M.prototype.mulM,M.multiply=M.mul,M.prototype.div=function(r){return typeof r=="number"?this.divS(r):this.divM(r)},M.prototype.divS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)/r);return this},M.prototype.divM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)/r.get(o,n));return this},M.div=function(r,o){return new e(r).div(o)},M.prototype.divide=M.prototype.div,M.prototype.divideS=M.prototype.divS,M.prototype.divideM=M.prototype.divM,M.divide=M.div,M.prototype.mod=function(r){return typeof r=="number"?this.modS(r):this.modM(r)},M.prototype.modS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)%r);return this},M.prototype.modM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)%r.get(o,n));return this},M.mod=function(r,o){return new e(r).mod(o)},M.prototype.modulus=M.prototype.mod,M.prototype.modulusS=M.prototype.modS,M.prototype.modulusM=M.prototype.modM,M.modulus=M.mod,M.prototype.and=function(r){return typeof r=="number"?this.andS(r):this.andM(r)},M.prototype.andS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)&r);return this},M.prototype.andM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)&r.get(o,n));return this},M.and=function(r,o){return new e(r).and(o)},M.prototype.or=function(r){return typeof r=="number"?this.orS(r):this.orM(r)},M.prototype.orS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)|r);return this},M.prototype.orM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)|r.get(o,n));return this},M.or=function(r,o){return new e(r).or(o)},M.prototype.xor=function(r){return typeof r=="number"?this.xorS(r):this.xorM(r)},M.prototype.xorS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)^r);return this},M.prototype.xorM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)^r.get(o,n));return this},M.xor=function(r,o){return new e(r).xor(o)},M.prototype.leftShift=function(r){return typeof r=="number"?this.leftShiftS(r):this.leftShiftM(r)},M.prototype.leftShiftS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)<<r);return this},M.prototype.leftShiftM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)<<r.get(o,n));return this},M.leftShift=function(r,o){return new e(r).leftShift(o)},M.prototype.signPropagatingRightShift=function(r){return typeof r=="number"?this.signPropagatingRightShiftS(r):this.signPropagatingRightShiftM(r)},M.prototype.signPropagatingRightShiftS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)>>r);return this},M.prototype.signPropagatingRightShiftM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)>>r.get(o,n));return this},M.signPropagatingRightShift=function(r,o){return new e(r).signPropagatingRightShift(o)},M.prototype.rightShift=function(r){return typeof r=="number"?this.rightShiftS(r):this.rightShiftM(r)},M.prototype.rightShiftS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)>>>r);return this},M.prototype.rightShiftM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,this.get(o,n)>>>r.get(o,n));return this},M.rightShift=function(r,o){return new e(r).rightShift(o)},M.prototype.zeroFillRightShift=M.prototype.rightShift,M.prototype.zeroFillRightShiftS=M.prototype.rightShiftS,M.prototype.zeroFillRightShiftM=M.prototype.rightShiftM,M.zeroFillRightShift=M.rightShift,M.prototype.not=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,~this.get(r,o));return this},M.not=function(r){return new e(r).not()},M.prototype.abs=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.abs(this.get(r,o)));return this},M.abs=function(r){return new e(r).abs()},M.prototype.acos=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.acos(this.get(r,o)));return this},M.acos=function(r){return new e(r).acos()},M.prototype.acosh=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.acosh(this.get(r,o)));return this},M.acosh=function(r){return new e(r).acosh()},M.prototype.asin=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.asin(this.get(r,o)));return this},M.asin=function(r){return new e(r).asin()},M.prototype.asinh=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.asinh(this.get(r,o)));return this},M.asinh=function(r){return new e(r).asinh()},M.prototype.atan=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.atan(this.get(r,o)));return this},M.atan=function(r){return new e(r).atan()},M.prototype.atanh=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.atanh(this.get(r,o)));return this},M.atanh=function(r){return new e(r).atanh()},M.prototype.cbrt=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.cbrt(this.get(r,o)));return this},M.cbrt=function(r){return new e(r).cbrt()},M.prototype.ceil=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.ceil(this.get(r,o)));return this},M.ceil=function(r){return new e(r).ceil()},M.prototype.clz32=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.clz32(this.get(r,o)));return this},M.clz32=function(r){return new e(r).clz32()},M.prototype.cos=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.cos(this.get(r,o)));return this},M.cos=function(r){return new e(r).cos()},M.prototype.cosh=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.cosh(this.get(r,o)));return this},M.cosh=function(r){return new e(r).cosh()},M.prototype.exp=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.exp(this.get(r,o)));return this},M.exp=function(r){return new e(r).exp()},M.prototype.expm1=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.expm1(this.get(r,o)));return this},M.expm1=function(r){return new e(r).expm1()},M.prototype.floor=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.floor(this.get(r,o)));return this},M.floor=function(r){return new e(r).floor()},M.prototype.fround=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.fround(this.get(r,o)));return this},M.fround=function(r){return new e(r).fround()},M.prototype.log=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.log(this.get(r,o)));return this},M.log=function(r){return new e(r).log()},M.prototype.log1p=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.log1p(this.get(r,o)));return this},M.log1p=function(r){return new e(r).log1p()},M.prototype.log10=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.log10(this.get(r,o)));return this},M.log10=function(r){return new e(r).log10()},M.prototype.log2=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.log2(this.get(r,o)));return this},M.log2=function(r){return new e(r).log2()},M.prototype.round=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.round(this.get(r,o)));return this},M.round=function(r){return new e(r).round()},M.prototype.sign=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.sign(this.get(r,o)));return this},M.sign=function(r){return new e(r).sign()},M.prototype.sin=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.sin(this.get(r,o)));return this},M.sin=function(r){return new e(r).sin()},M.prototype.sinh=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.sinh(this.get(r,o)));return this},M.sinh=function(r){return new e(r).sinh()},M.prototype.sqrt=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.sqrt(this.get(r,o)));return this},M.sqrt=function(r){return new e(r).sqrt()},M.prototype.tan=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.tan(this.get(r,o)));return this},M.tan=function(r){return new e(r).tan()},M.prototype.tanh=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.tanh(this.get(r,o)));return this},M.tanh=function(r){return new e(r).tanh()},M.prototype.trunc=function(){for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.set(r,o,Math.trunc(this.get(r,o)));return this},M.trunc=function(r){return new e(r).trunc()},M.pow=function(r,o){return new e(r).pow(o)},M.prototype.pow=function(r){return typeof r=="number"?this.powS(r):this.powM(r)},M.prototype.powS=function(r){for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,Math.pow(this.get(o,n),r));return this},M.prototype.powM=function(r){if(r=e.checkMatrix(r),this.rows!==r.rows||this.columns!==r.columns)throw new RangeError("Matrices dimensions must be equal");for(let o=0;o<this.rows;o++)for(let n=0;n<this.columns;n++)this.set(o,n,Math.pow(this.get(o,n),r.get(o,n)));return this}}function pe(M,e,t){let r=t?M.rows:M.rows-1;if(e<0||e>r)throw new RangeError("Row index out of range")}function ze(M,e,t){let r=t?M.columns:M.columns-1;if(e<0||e>r)throw new RangeError("Column index out of range")}function Br(M,e){if(e.to1DArray&&(e=e.to1DArray()),e.length!==M.columns)throw new RangeError("vector size must be the same as the number of columns");return e}function wr(M,e){if(e.to1DArray&&(e=e.to1DArray()),e.length!==M.rows)throw new RangeError("vector size must be the same as the number of rows");return e}function cp(M,e){if(!C2.isAnyArray(e))throw new TypeError("row indices must be an array");for(let t=0;t<e.length;t++)if(e[t]<0||e[t]>=M.rows)throw new RangeError("row indices are out of range")}function sp(M,e){if(!C2.isAnyArray(e))throw new TypeError("column indices must be an array");for(let t=0;t<e.length;t++)if(e[t]<0||e[t]>=M.columns)throw new RangeError("column indices are out of range")}function ap(M,e,t,r,o){if(arguments.length!==5)throw new RangeError("expected 4 arguments");if(Uo("startRow",e),Uo("endRow",t),Uo("startColumn",r),Uo("endColumn",o),e>t||r>o||e<0||e>=M.rows||t<0||t>=M.rows||r<0||r>=M.columns||o<0||o>=M.columns)throw new RangeError("Submatrix indices are out of range")}function $o(M,e=0){let t=[];for(let r=0;r<M;r++)t.push(e);return t}function Uo(M,e){if(typeof e!="number")throw new TypeError(`${M} must be a number`)}function Dr(M){if(M.isEmpty())throw new Error("Empty matrix has no elements to index")}function y6(M){let e=$o(M.rows);for(let t=0;t<M.rows;++t)for(let r=0;r<M.columns;++r)e[t]+=M.get(t,r);return e}function B6(M){let e=$o(M.columns);for(let t=0;t<M.rows;++t)for(let r=0;r<M.columns;++r)e[r]+=M.get(t,r);return e}function w6(M){let e=0;for(let t=0;t<M.rows;t++)for(let r=0;r<M.columns;r++)e+=M.get(t,r);return e}function D6(M){let e=$o(M.rows,1);for(let t=0;t<M.rows;++t)for(let r=0;r<M.columns;++r)e[t]*=M.get(t,r);return e}function X6(M){let e=$o(M.columns,1);for(let t=0;t<M.rows;++t)for(let r=0;r<M.columns;++r)e[r]*=M.get(t,r);return e}function E6(M){let e=1;for(let t=0;t<M.rows;t++)for(let r=0;r<M.columns;r++)e*=M.get(t,r);return e}function T6(M,e,t){const r=M.rows,o=M.columns,n=[];for(let b=0;b<r;b++){let z=0,i=0,s=0;for(let O=0;O<o;O++)s=M.get(b,O)-t[b],z+=s,i+=s*s;e?n.push((i-z*z/o)/(o-1)):n.push((i-z*z/o)/o)}return n}function C6(M,e,t){const r=M.rows,o=M.columns,n=[];for(let b=0;b<o;b++){let z=0,i=0,s=0;for(let O=0;O<r;O++)s=M.get(O,b)-t[b],z+=s,i+=s*s;e?n.push((i-z*z/r)/(r-1)):n.push((i-z*z/r)/r)}return n}function x6(M,e,t){const r=M.rows,o=M.columns,n=r*o;let b=0,z=0,i=0;for(let s=0;s<r;s++)for(let O=0;O<o;O++)i=M.get(s,O)-t,b+=i,z+=i*i;return e?(z-b*b/n)/(n-1):(z-b*b/n)/n}function S6(M,e){for(let t=0;t<M.rows;t++)for(let r=0;r<M.columns;r++)M.set(t,r,M.get(t,r)-e[t])}function F6(M,e){for(let t=0;t<M.rows;t++)for(let r=0;r<M.columns;r++)M.set(t,r,M.get(t,r)-e[r])}function I6(M,e){for(let t=0;t<M.rows;t++)for(let r=0;r<M.columns;r++)M.set(t,r,M.get(t,r)-e)}function P6(M){const e=[];for(let t=0;t<M.rows;t++){let r=0;for(let o=0;o<M.columns;o++)r+=Math.pow(M.get(t,o),2)/(M.columns-1);e.push(Math.sqrt(r))}return e}function k6(M,e){for(let t=0;t<M.rows;t++)for(let r=0;r<M.columns;r++)M.set(t,r,M.get(t,r)/e[t])}function $6(M){const e=[];for(let t=0;t<M.columns;t++){let r=0;for(let o=0;o<M.rows;o++)r+=Math.pow(M.get(o,t),2)/(M.rows-1);e.push(Math.sqrt(r))}return e}function U6(M,e){for(let t=0;t<M.rows;t++)for(let r=0;r<M.columns;r++)M.set(t,r,M.get(t,r)/e[r])}function j6(M){const e=M.size-1;let t=0;for(let r=0;r<M.columns;r++)for(let o=0;o<M.rows;o++)t+=Math.pow(M.get(o,r),2)/e;return Math.sqrt(t)}function H6(M,e){for(let t=0;t<M.rows;t++)for(let r=0;r<M.columns;r++)M.set(t,r,M.get(t,r)/e)}class H0{static from1DArray(e,t,r){if(e*t!==r.length)throw new RangeError("data length does not match given dimensions");let n=new q0(e,t);for(let b=0;b<e;b++)for(let z=0;z<t;z++)n.set(b,z,r[b*t+z]);return n}static rowVector(e){let t=new q0(1,e.length);for(let r=0;r<e.length;r++)t.set(0,r,e[r]);return t}static columnVector(e){let t=new q0(e.length,1);for(let r=0;r<e.length;r++)t.set(r,0,e[r]);return t}static zeros(e,t){return new q0(e,t)}static ones(e,t){return new q0(e,t).fill(1)}static rand(e,t,r={}){if(typeof r!="object")throw new TypeError("options must be an object");const{random:o=Math.random}=r;let n=new q0(e,t);for(let b=0;b<e;b++)for(let z=0;z<t;z++)n.set(b,z,o());return n}static randInt(e,t,r={}){if(typeof r!="object")throw new TypeError("options must be an object");const{min:o=0,max:n=1e3,random:b=Math.random}=r;if(!Number.isInteger(o))throw new TypeError("min must be an integer");if(!Number.isInteger(n))throw new TypeError("max must be an integer");if(o>=n)throw new RangeError("min must be smaller than max");let z=n-o,i=new q0(e,t);for(let s=0;s<e;s++)for(let O=0;O<t;O++){let a=o+Math.round(b()*z);i.set(s,O,a)}return i}static eye(e,t,r){t===void 0&&(t=e),r===void 0&&(r=1);let o=Math.min(e,t),n=this.zeros(e,t);for(let b=0;b<o;b++)n.set(b,b,r);return n}static diag(e,t,r){let o=e.length;t===void 0&&(t=o),r===void 0&&(r=t);let n=Math.min(o,t,r),b=this.zeros(t,r);for(let z=0;z<n;z++)b.set(z,z,e[z]);return b}static min(e,t){e=this.checkMatrix(e),t=this.checkMatrix(t);let r=e.rows,o=e.columns,n=new q0(r,o);for(let b=0;b<r;b++)for(let z=0;z<o;z++)n.set(b,z,Math.min(e.get(b,z),t.get(b,z)));return n}static max(e,t){e=this.checkMatrix(e),t=this.checkMatrix(t);let r=e.rows,o=e.columns,n=new this(r,o);for(let b=0;b<r;b++)for(let z=0;z<o;z++)n.set(b,z,Math.max(e.get(b,z),t.get(b,z)));return n}static checkMatrix(e){return H0.isMatrix(e)?e:new q0(e)}static isMatrix(e){return e!=null&&e.klass==="Matrix"}get size(){return this.rows*this.columns}apply(e){if(typeof e!="function")throw new TypeError("callback must be a function");for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)e.call(this,t,r);return this}to1DArray(){let e=[];for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)e.push(this.get(t,r));return e}to2DArray(){let e=[];for(let t=0;t<this.rows;t++){e.push([]);for(let r=0;r<this.columns;r++)e[t].push(this.get(t,r))}return e}toJSON(){return this.to2DArray()}isRowVector(){return this.rows===1}isColumnVector(){return this.columns===1}isVector(){return this.rows===1||this.columns===1}isSquare(){return this.rows===this.columns}isEmpty(){return this.rows===0||this.columns===0}isSymmetric(){if(this.isSquare()){for(let e=0;e<this.rows;e++)for(let t=0;t<=e;t++)if(this.get(e,t)!==this.get(t,e))return!1;return!0}return!1}isDistance(){if(!this.isSymmetric())return!1;for(let e=0;e<this.rows;e++)if(this.get(e,e)!==0)return!1;return!0}isEchelonForm(){let e=0,t=0,r=-1,o=!0,n=!1;for(;e<this.rows&&o;){for(t=0,n=!1;t<this.columns&&n===!1;)this.get(e,t)===0?t++:this.get(e,t)===1&&t>r?(n=!0,r=t):(o=!1,n=!0);e++}return o}isReducedEchelonForm(){let e=0,t=0,r=-1,o=!0,n=!1;for(;e<this.rows&&o;){for(t=0,n=!1;t<this.columns&&n===!1;)this.get(e,t)===0?t++:this.get(e,t)===1&&t>r?(n=!0,r=t):(o=!1,n=!0);for(let b=t+1;b<this.rows;b++)this.get(e,b)!==0&&(o=!1);e++}return o}echelonForm(){let e=this.clone(),t=0,r=0;for(;t<e.rows&&r<e.columns;){let o=t;for(let n=t;n<e.rows;n++)e.get(n,r)>e.get(o,r)&&(o=n);if(e.get(o,r)===0)r++;else{e.swapRows(t,o);let n=e.get(t,r);for(let b=r;b<e.columns;b++)e.set(t,b,e.get(t,b)/n);for(let b=t+1;b<e.rows;b++){let z=e.get(b,r)/e.get(t,r);e.set(b,r,0);for(let i=r+1;i<e.columns;i++)e.set(b,i,e.get(b,i)-e.get(t,i)*z)}t++,r++}}return e}reducedEchelonForm(){let e=this.echelonForm(),t=e.columns,r=e.rows,o=r-1;for(;o>=0;)if(e.maxRow(o)===0)o--;else{let n=0,b=!1;for(;n<r&&b===!1;)e.get(o,n)===1?b=!0:n++;for(let z=0;z<o;z++){let i=e.get(z,n);for(let s=n;s<t;s++){let O=e.get(z,s)-i*e.get(o,s);e.set(z,s,O)}}o--}return e}set(){throw new Error("set method is unimplemented")}get(){throw new Error("get method is unimplemented")}repeat(e={}){if(typeof e!="object")throw new TypeError("options must be an object");const{rows:t=1,columns:r=1}=e;if(!Number.isInteger(t)||t<=0)throw new TypeError("rows must be a positive integer");if(!Number.isInteger(r)||r<=0)throw new TypeError("columns must be a positive integer");let o=new q0(this.rows*t,this.columns*r);for(let n=0;n<t;n++)for(let b=0;b<r;b++)o.setSubMatrix(this,this.rows*n,this.columns*b);return o}fill(e){for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,e);return this}neg(){return this.mulS(-1)}getRow(e){pe(this,e);let t=[];for(let r=0;r<this.columns;r++)t.push(this.get(e,r));return t}getRowVector(e){return q0.rowVector(this.getRow(e))}setRow(e,t){pe(this,e),t=Br(this,t);for(let r=0;r<this.columns;r++)this.set(e,r,t[r]);return this}swapRows(e,t){pe(this,e),pe(this,t);for(let r=0;r<this.columns;r++){let o=this.get(e,r);this.set(e,r,this.get(t,r)),this.set(t,r,o)}return this}getColumn(e){ze(this,e);let t=[];for(let r=0;r<this.rows;r++)t.push(this.get(r,e));return t}getColumnVector(e){return q0.columnVector(this.getColumn(e))}setColumn(e,t){ze(this,e),t=wr(this,t);for(let r=0;r<this.rows;r++)this.set(r,e,t[r]);return this}swapColumns(e,t){ze(this,e),ze(this,t);for(let r=0;r<this.rows;r++){let o=this.get(r,e);this.set(r,e,this.get(r,t)),this.set(r,t,o)}return this}addRowVector(e){e=Br(this,e);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,this.get(t,r)+e[r]);return this}subRowVector(e){e=Br(this,e);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,this.get(t,r)-e[r]);return this}mulRowVector(e){e=Br(this,e);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,this.get(t,r)*e[r]);return this}divRowVector(e){e=Br(this,e);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,this.get(t,r)/e[r]);return this}addColumnVector(e){e=wr(this,e);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,this.get(t,r)+e[t]);return this}subColumnVector(e){e=wr(this,e);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,this.get(t,r)-e[t]);return this}mulColumnVector(e){e=wr(this,e);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,this.get(t,r)*e[t]);return this}divColumnVector(e){e=wr(this,e);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)this.set(t,r,this.get(t,r)/e[t]);return this}mulRow(e,t){pe(this,e);for(let r=0;r<this.columns;r++)this.set(e,r,this.get(e,r)*t);return this}mulColumn(e,t){ze(this,e);for(let r=0;r<this.rows;r++)this.set(r,e,this.get(r,e)*t);return this}max(e){if(this.isEmpty())return NaN;switch(e){case"row":{const t=new Array(this.rows).fill(Number.NEGATIVE_INFINITY);for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.get(r,o)>t[r]&&(t[r]=this.get(r,o));return t}case"column":{const t=new Array(this.columns).fill(Number.NEGATIVE_INFINITY);for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.get(r,o)>t[o]&&(t[o]=this.get(r,o));return t}case void 0:{let t=this.get(0,0);for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.get(r,o)>t&&(t=this.get(r,o));return t}default:throw new Error(`invalid option: ${e}`)}}maxIndex(){Dr(this);let e=this.get(0,0),t=[0,0];for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.get(r,o)>e&&(e=this.get(r,o),t[0]=r,t[1]=o);return t}min(e){if(this.isEmpty())return NaN;switch(e){case"row":{const t=new Array(this.rows).fill(Number.POSITIVE_INFINITY);for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.get(r,o)<t[r]&&(t[r]=this.get(r,o));return t}case"column":{const t=new Array(this.columns).fill(Number.POSITIVE_INFINITY);for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.get(r,o)<t[o]&&(t[o]=this.get(r,o));return t}case void 0:{let t=this.get(0,0);for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.get(r,o)<t&&(t=this.get(r,o));return t}default:throw new Error(`invalid option: ${e}`)}}minIndex(){Dr(this);let e=this.get(0,0),t=[0,0];for(let r=0;r<this.rows;r++)for(let o=0;o<this.columns;o++)this.get(r,o)<e&&(e=this.get(r,o),t[0]=r,t[1]=o);return t}maxRow(e){if(pe(this,e),this.isEmpty())return NaN;let t=this.get(e,0);for(let r=1;r<this.columns;r++)this.get(e,r)>t&&(t=this.get(e,r));return t}maxRowIndex(e){pe(this,e),Dr(this);let t=this.get(e,0),r=[e,0];for(let o=1;o<this.columns;o++)this.get(e,o)>t&&(t=this.get(e,o),r[1]=o);return r}minRow(e){if(pe(this,e),this.isEmpty())return NaN;let t=this.get(e,0);for(let r=1;r<this.columns;r++)this.get(e,r)<t&&(t=this.get(e,r));return t}minRowIndex(e){pe(this,e),Dr(this);let t=this.get(e,0),r=[e,0];for(let o=1;o<this.columns;o++)this.get(e,o)<t&&(t=this.get(e,o),r[1]=o);return r}maxColumn(e){if(ze(this,e),this.isEmpty())return NaN;let t=this.get(0,e);for(let r=1;r<this.rows;r++)this.get(r,e)>t&&(t=this.get(r,e));return t}maxColumnIndex(e){ze(this,e),Dr(this);let t=this.get(0,e),r=[0,e];for(let o=1;o<this.rows;o++)this.get(o,e)>t&&(t=this.get(o,e),r[0]=o);return r}minColumn(e){if(ze(this,e),this.isEmpty())return NaN;let t=this.get(0,e);for(let r=1;r<this.rows;r++)this.get(r,e)<t&&(t=this.get(r,e));return t}minColumnIndex(e){ze(this,e),Dr(this);let t=this.get(0,e),r=[0,e];for(let o=1;o<this.rows;o++)this.get(o,e)<t&&(t=this.get(o,e),r[0]=o);return r}diag(){let e=Math.min(this.rows,this.columns),t=[];for(let r=0;r<e;r++)t.push(this.get(r,r));return t}norm(e="frobenius"){switch(e){case"max":return this.max();case"frobenius":return Math.sqrt(this.dot(this));default:throw new RangeError(`unknown norm type: ${e}`)}}cumulativeSum(){let e=0;for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)e+=this.get(t,r),this.set(t,r,e);return this}dot(e){H0.isMatrix(e)&&(e=e.to1DArray());let t=this.to1DArray();if(t.length!==e.length)throw new RangeError("vectors do not have the same size");let r=0;for(let o=0;o<t.length;o++)r+=t[o]*e[o];return r}mmul(e){e=q0.checkMatrix(e);let t=this.rows,r=this.columns,o=e.columns,n=new q0(t,o),b=new Float64Array(r);for(let z=0;z<o;z++){for(let i=0;i<r;i++)b[i]=e.get(i,z);for(let i=0;i<t;i++){let s=0;for(let O=0;O<r;O++)s+=this.get(i,O)*b[O];n.set(i,z,s)}}return n}strassen2x2(e){e=q0.checkMatrix(e);let t=new q0(2,2);const r=this.get(0,0),o=e.get(0,0),n=this.get(0,1),b=e.get(0,1),z=this.get(1,0),i=e.get(1,0),s=this.get(1,1),O=e.get(1,1),a=(r+s)*(o+O),u=(z+s)*o,l=r*(b-O),d=s*(i-o),A=(r+n)*O,h=(z-r)*(o+b),q=(n-s)*(i+O),_=a+d-A+q,m=l+A,L=u+d,g=a-u+l+h;return t.set(0,0,_),t.set(0,1,m),t.set(1,0,L),t.set(1,1,g),t}strassen3x3(e){e=q0.checkMatrix(e);let t=new q0(3,3);const r=this.get(0,0),o=this.get(0,1),n=this.get(0,2),b=this.get(1,0),z=this.get(1,1),i=this.get(1,2),s=this.get(2,0),O=this.get(2,1),a=this.get(2,2),u=e.get(0,0),l=e.get(0,1),d=e.get(0,2),A=e.get(1,0),h=e.get(1,1),q=e.get(1,2),_=e.get(2,0),m=e.get(2,1),L=e.get(2,2),g=(r+o+n-b-z-O-a)*h,v=(r-b)*(-l+h),y=z*(-u+l+A-h-q-_+L),E=(-r+b+z)*(u-l+h),T=(b+z)*(-u+l),N=r*u,D=(-r+s+O)*(u-d+q),C=(-r+s)*(d-q),P=(s+O)*(-u+d),H=(r+o+n-z-i-s-O)*q,G=O*(-u+d+A-h-q-_+m),k=(-n+O+a)*(h+_-m),J=(n-a)*(h-m),o0=n*_,z0=(O+a)*(-_+m),O0=(-n+z+i)*(q+_-L),v0=(n-i)*(q-L),w0=(z+i)*(-_+L),u0=o*A,k0=i*m,I0=b*d,P0=s*l,W0=a*L,b1=N+o0+u0,Z0=g+E+T+N+k+o0+z0,p1=N+D+P+H+o0+O0+w0,e2=v+y+E+N+o0+O0+v0,d1=v+E+T+N+k0,F=o0+O0+v0+w0+I0,K=N+D+C+G+k+J+o0,Z=k+J+o0+z0+P0,a0=N+D+C+P+W0;return t.set(0,0,b1),t.set(0,1,Z0),t.set(0,2,p1),t.set(1,0,e2),t.set(1,1,d1),t.set(1,2,F),t.set(2,0,K),t.set(2,1,Z),t.set(2,2,a0),t}mmulStrassen(e){e=q0.checkMatrix(e);let t=this.clone(),r=t.rows,o=t.columns,n=e.rows,b=e.columns;o!==n&&console.warn(`Multiplying ${r} x ${o} and ${n} x ${b} matrix: dimensions do not match.`);function z(a,u,l){let d=a.rows,A=a.columns;if(d===u&&A===l)return a;{let h=H0.zeros(u,l);return h=h.setSubMatrix(a,0,0),h}}let i=Math.max(r,n),s=Math.max(o,b);t=z(t,i,s),e=z(e,i,s);function O(a,u,l,d){if(l<=512||d<=512)return a.mmul(u);l%2===1&&d%2===1?(a=z(a,l+1,d+1),u=z(u,l+1,d+1)):l%2===1?(a=z(a,l+1,d),u=z(u,l+1,d)):d%2===1&&(a=z(a,l,d+1),u=z(u,l,d+1));let A=parseInt(a.rows/2,10),h=parseInt(a.columns/2,10),q=a.subMatrix(0,A-1,0,h-1),_=u.subMatrix(0,A-1,0,h-1),m=a.subMatrix(0,A-1,h,a.columns-1),L=u.subMatrix(0,A-1,h,u.columns-1),g=a.subMatrix(A,a.rows-1,0,h-1),v=u.subMatrix(A,u.rows-1,0,h-1),y=a.subMatrix(A,a.rows-1,h,a.columns-1),E=u.subMatrix(A,u.rows-1,h,u.columns-1),T=O(H0.add(q,y),H0.add(_,E),A,h),N=O(H0.add(g,y),_,A,h),D=O(q,H0.sub(L,E),A,h),C=O(y,H0.sub(v,_),A,h),P=O(H0.add(q,m),E,A,h),H=O(H0.sub(g,q),H0.add(_,L),A,h),G=O(H0.sub(m,y),H0.add(v,E),A,h),k=H0.add(T,C);k.sub(P),k.add(G);let J=H0.add(D,P),o0=H0.add(N,C),z0=H0.sub(T,N);z0.add(D),z0.add(H);let O0=H0.zeros(2*k.rows,2*k.columns);return O0=O0.setSubMatrix(k,0,0),O0=O0.setSubMatrix(J,k.rows,0),O0=O0.setSubMatrix(o0,0,k.columns),O0=O0.setSubMatrix(z0,k.rows,k.columns),O0.subMatrix(0,l-1,0,d-1)}return O(t,e,i,s)}scaleRows(e={}){if(typeof e!="object")throw new TypeError("options must be an object");const{min:t=0,max:r=1}=e;if(!Number.isFinite(t))throw new TypeError("min must be a number");if(!Number.isFinite(r))throw new TypeError("max must be a number");if(t>=r)throw new RangeError("min must be smaller than max");let o=new q0(this.rows,this.columns);for(let n=0;n<this.rows;n++){const b=this.getRow(n);b.length>0&&h3(b,{min:t,max:r,output:b}),o.setRow(n,b)}return o}scaleColumns(e={}){if(typeof e!="object")throw new TypeError("options must be an object");const{min:t=0,max:r=1}=e;if(!Number.isFinite(t))throw new TypeError("min must be a number");if(!Number.isFinite(r))throw new TypeError("max must be a number");if(t>=r)throw new RangeError("min must be smaller than max");let o=new q0(this.rows,this.columns);for(let n=0;n<this.columns;n++){const b=this.getColumn(n);b.length&&h3(b,{min:t,max:r,output:b}),o.setColumn(n,b)}return o}flipRows(){const e=Math.ceil(this.columns/2);for(let t=0;t<this.rows;t++)for(let r=0;r<e;r++){let o=this.get(t,r),n=this.get(t,this.columns-1-r);this.set(t,r,n),this.set(t,this.columns-1-r,o)}return this}flipColumns(){const e=Math.ceil(this.rows/2);for(let t=0;t<this.columns;t++)for(let r=0;r<e;r++){let o=this.get(r,t),n=this.get(this.rows-1-r,t);this.set(r,t,n),this.set(this.rows-1-r,t,o)}return this}kroneckerProduct(e){e=q0.checkMatrix(e);let t=this.rows,r=this.columns,o=e.rows,n=e.columns,b=new q0(t*o,r*n);for(let z=0;z<t;z++)for(let i=0;i<r;i++)for(let s=0;s<o;s++)for(let O=0;O<n;O++)b.set(o*z+s,n*i+O,this.get(z,i)*e.get(s,O));return b}kroneckerSum(e){if(e=q0.checkMatrix(e),!this.isSquare()||!e.isSquare())throw new Error("Kronecker Sum needs two Square Matrices");let t=this.rows,r=e.rows,o=this.kroneckerProduct(q0.eye(r,r)),n=q0.eye(t,t).kroneckerProduct(e);return o.add(n)}transpose(){let e=new q0(this.columns,this.rows);for(let t=0;t<this.rows;t++)for(let r=0;r<this.columns;r++)e.set(r,t,this.get(t,r));return e}sortRows(e=g3){for(let t=0;t<this.rows;t++)this.setRow(t,this.getRow(t).sort(e));return this}sortColumns(e=g3){for(let t=0;t<this.columns;t++)this.setColumn(t,this.getColumn(t).sort(e));return this}subMatrix(e,t,r,o){ap(this,e,t,r,o);let n=new q0(t-e+1,o-r+1);for(let b=e;b<=t;b++)for(let z=r;z<=o;z++)n.set(b-e,z-r,this.get(b,z));return n}subMatrixRow(e,t,r){if(t===void 0&&(t=0),r===void 0&&(r=this.columns-1),t>r||t<0||t>=this.columns||r<0||r>=this.columns)throw new RangeError("Argument out of range");let o=new q0(e.length,r-t+1);for(let n=0;n<e.length;n++)for(let b=t;b<=r;b++){if(e[n]<0||e[n]>=this.rows)throw new RangeError(`Row index out of range: ${e[n]}`);o.set(n,b-t,this.get(e[n],b))}return o}subMatrixColumn(e,t,r){if(t===void 0&&(t=0),r===void 0&&(r=this.rows-1),t>r||t<0||t>=this.rows||r<0||r>=this.rows)throw new RangeError("Argument out of range");let o=new q0(r-t+1,e.length);for(let n=0;n<e.length;n++)for(let b=t;b<=r;b++){if(e[n]<0||e[n]>=this.columns)throw new RangeError(`Column index out of range: ${e[n]}`);o.set(b-t,n,this.get(b,e[n]))}return o}setSubMatrix(e,t,r){if(e=q0.checkMatrix(e),e.isEmpty())return this;let o=t+e.rows-1,n=r+e.columns-1;ap(this,t,o,r,n);for(let b=0;b<e.rows;b++)for(let z=0;z<e.columns;z++)this.set(t+b,r+z,e.get(b,z));return this}selection(e,t){cp(this,e),sp(this,t);let r=new q0(e.length,t.length);for(let o=0;o<e.length;o++){let n=e[o];for(let b=0;b<t.length;b++){let z=t[b];r.set(o,b,this.get(n,z))}}return r}trace(){let e=Math.min(this.rows,this.columns),t=0;for(let r=0;r<e;r++)t+=this.get(r,r);return t}clone(){return this.constructor.copy(this,new q0(this.rows,this.columns))}static copy(e,t){for(const[r,o,n]of e.entries())t.set(r,o,n);return t}sum(e){switch(e){case"row":return y6(this);case"column":return B6(this);case void 0:return w6(this);default:throw new Error(`invalid option: ${e}`)}}product(e){switch(e){case"row":return D6(this);case"column":return X6(this);case void 0:return E6(this);default:throw new Error(`invalid option: ${e}`)}}mean(e){const t=this.sum(e);switch(e){case"row":{for(let r=0;r<this.rows;r++)t[r]/=this.columns;return t}case"column":{for(let r=0;r<this.columns;r++)t[r]/=this.rows;return t}case void 0:return t/this.size;default:throw new Error(`invalid option: ${e}`)}}variance(e,t={}){if(typeof e=="object"&&(t=e,e=void 0),typeof t!="object")throw new TypeError("options must be an object");const{unbiased:r=!0,mean:o=this.mean(e)}=t;if(typeof r!="boolean")throw new TypeError("unbiased must be a boolean");switch(e){case"row":{if(!C2.isAnyArray(o))throw new TypeError("mean must be an array");return T6(this,r,o)}case"column":{if(!C2.isAnyArray(o))throw new TypeError("mean must be an array");return C6(this,r,o)}case void 0:{if(typeof o!="number")throw new TypeError("mean must be a number");return x6(this,r,o)}default:throw new Error(`invalid option: ${e}`)}}standardDeviation(e,t){typeof e=="object"&&(t=e,e=void 0);const r=this.variance(e,t);if(e===void 0)return Math.sqrt(r);for(let o=0;o<r.length;o++)r[o]=Math.sqrt(r[o]);return r}center(e,t={}){if(typeof e=="object"&&(t=e,e=void 0),typeof t!="object")throw new TypeError("options must be an object");const{center:r=this.mean(e)}=t;switch(e){case"row":{if(!C2.isAnyArray(r))throw new TypeError("center must be an array");return S6(this,r),this}case"column":{if(!C2.isAnyArray(r))throw new TypeError("center must be an array");return F6(this,r),this}case void 0:{if(typeof r!="number")throw new TypeError("center must be a number");return I6(this,r),this}default:throw new Error(`invalid option: ${e}`)}}scale(e,t={}){if(typeof e=="object"&&(t=e,e=void 0),typeof t!="object")throw new TypeError("options must be an object");let r=t.scale;switch(e){case"row":{if(r===void 0)r=P6(this);else if(!C2.isAnyArray(r))throw new TypeError("scale must be an array");return k6(this,r),this}case"column":{if(r===void 0)r=$6(this);else if(!C2.isAnyArray(r))throw new TypeError("scale must be an array");return U6(this,r),this}case void 0:{if(r===void 0)r=j6(this);else if(typeof r!="number")throw new TypeError("scale must be a number");return H6(this,r),this}default:throw new Error(`invalid option: ${e}`)}}toString(e){return _3(this,e)}[Symbol.iterator](){return this.entries()}*entries(){for(let e=0;e<this.rows;e++)for(let t=0;t<this.columns;t++)yield[e,t,this.get(e,t)]}*values(){for(let e=0;e<this.rows;e++)for(let t=0;t<this.columns;t++)yield this.get(e,t)}}H0.prototype.klass="Matrix",typeof Symbol<"u"&&(H0.prototype[Symbol.for("nodejs.util.inspect.custom")]=R6);function g3(M,e){return M-e}function Y6(M){return M.every(e=>typeof e=="number")}H0.random=H0.rand,H0.randomInt=H0.randInt,H0.diagonal=H0.diag,H0.prototype.diagonal=H0.prototype.diag,H0.identity=H0.eye,H0.prototype.negate=H0.prototype.neg,H0.prototype.tensorProduct=H0.prototype.kroneckerProduct;let q0=(Sr=class extends H0{constructor(t,r){super();ni(this,mM);X(this,"data");if(Sr.isMatrix(t))bi(this,mM,pi).call(this,t.rows,t.columns),Sr.copy(t,this);else if(Number.isInteger(t)&&t>=0)bi(this,mM,pi).call(this,t,r);else if(C2.isAnyArray(t)){const o=t;if(t=o.length,r=t?o[0].length:0,typeof r!="number")throw new TypeError("Data must be a 2D array with at least one element");this.data=[];for(let n=0;n<t;n++){if(o[n].length!==r)throw new RangeError("Inconsistent array dimensions");if(!Y6(o[n]))throw new TypeError("Input data contains non-numeric values");this.data.push(Float64Array.from(o[n]))}this.rows=t,this.columns=r}else throw new TypeError("First argument must be a positive number or an array")}set(t,r,o){return this.data[t][r]=o,this}get(t,r){return this.data[t][r]}removeRow(t){return pe(this,t),this.data.splice(t,1),this.rows-=1,this}addRow(t,r){return r===void 0&&(r=t,t=this.rows),pe(this,t,!0),r=Float64Array.from(Br(this,r)),this.data.splice(t,0,r),this.rows+=1,this}removeColumn(t){ze(this,t);for(let r=0;r<this.rows;r++){const o=new Float64Array(this.columns-1);for(let n=0;n<t;n++)o[n]=this.data[r][n];for(let n=t+1;n<this.columns;n++)o[n-1]=this.data[r][n];this.data[r]=o}return this.columns-=1,this}addColumn(t,r){typeof r>"u"&&(r=t,t=this.columns),ze(this,t,!0),r=wr(this,r);for(let o=0;o<this.rows;o++){const n=new Float64Array(this.columns+1);let b=0;for(;b<t;b++)n[b]=this.data[o][b];for(n[b++]=r[o];b<this.columns+1;b++)n[b]=this.data[o][b-1];this.data[o]=n}return this.columns+=1,this}},mM=new WeakSet,pi=function(t,r){if(this.data=[],Number.isInteger(r)&&r>=0)for(let o=0;o<t;o++)this.data.push(new Float64Array(r));else throw new TypeError("nColumns must be a positive integer");this.rows=t,this.columns=r},Sr);N6(H0,q0);const an=class an extends H0{constructor(t){super();ni(this,m2,void 0);if(q0.isMatrix(t)){if(!t.isSymmetric())throw new TypeError("not symmetric data");Mb(this,m2,q0.copy(t,new q0(t.rows,t.rows)))}else if(Number.isInteger(t)&&t>=0)Mb(this,m2,new q0(t,t));else if(Mb(this,m2,new q0(t)),!this.isSymmetric())throw new TypeError("not symmetric data")}get size(){return ye(this,m2).size}get rows(){return ye(this,m2).rows}get columns(){return ye(this,m2).columns}get diagonalSize(){return this.rows}static isSymmetricMatrix(t){return q0.isMatrix(t)&&t.klassType==="SymmetricMatrix"}static zeros(t){return new this(t)}static ones(t){return new this(t).fill(1)}clone(){const t=new an(this.diagonalSize);for(const[r,o,n]of this.upperRightEntries())t.set(r,o,n);return t}toMatrix(){return new q0(this)}get(t,r){return ye(this,m2).get(t,r)}set(t,r,o){return ye(this,m2).set(t,r,o),ye(this,m2).set(r,t,o),this}removeCross(t){return ye(this,m2).removeRow(t),ye(this,m2).removeColumn(t),this}addCross(t,r){r===void 0&&(r=t,t=this.diagonalSize);const o=r.slice();return o.splice(t,1),ye(this,m2).addRow(t,o),ye(this,m2).addColumn(t,r),this}applyMask(t){if(t.length!==this.diagonalSize)throw new RangeError("Mask size do not match with matrix size");const r=[];for(const[o,n]of t.entries())n||r.push(o);r.reverse();for(const o of r)this.removeCross(o);return this}toCompact(){const{diagonalSize:t}=this,r=new Array(t*(t+1)/2);for(let o=0,n=0,b=0;b<r.length;b++)r[b]=this.get(n,o),++o>=t&&(o=++n);return r}static fromCompact(t){const r=t.length,o=(Math.sqrt(8*r+1)-1)/2;if(!Number.isInteger(o))throw new TypeError(`This array is not a compact representation of a Symmetric Matrix, ${JSON.stringify(t)}`);const n=new an(o);for(let b=0,z=0,i=0;i<r;i++)n.set(b,z,t[i]),++b>=o&&(b=++z);return n}*upperRightEntries(){for(let t=0,r=0;t<this.diagonalSize;void 0){const o=this.get(t,r);yield[t,r,o],++r>=this.diagonalSize&&(r=++t)}}*upperRightValues(){for(let t=0,r=0;t<this.diagonalSize;void 0)yield this.get(t,r),++r>=this.diagonalSize&&(r=++t)}};m2=new WeakMap;let Yt=an;Yt.prototype.klassType="SymmetricMatrix";class jo extends Yt{static isDistanceMatrix(e){return Yt.isSymmetricMatrix(e)&&e.klassSubType==="DistanceMatrix"}constructor(e){if(super(e),!this.isDistance())throw new TypeError("Provided arguments do no produce a distance matrix")}set(e,t,r){return e===t&&(r=0),super.set(e,t,r)}addCross(e,t){return t===void 0&&(t=e,e=this.diagonalSize),t=t.slice(),t[e]=0,super.addCross(e,t)}toSymmetricMatrix(){return new Yt(this)}clone(){const e=new jo(this.diagonalSize);for(const[t,r,o]of this.upperRightEntries())t!==r&&e.set(t,r,o);return e}toCompact(){const{diagonalSize:e}=this,t=(e-1)*e/2,r=new Array(t);for(let o=1,n=0,b=0;b<r.length;b++)r[b]=this.get(n,o),++o>=e&&(o=++n+1);return r}static fromCompact(e){const t=e.length,r=(Math.sqrt(8*t+1)+1)/2;if(!Number.isInteger(r))throw new TypeError(`This array is not a compact representation of a DistanceMatrix, ${JSON.stringify(e)}`);const o=new this(r);for(let n=1,b=0,z=0;z<t;z++)o.set(n,b,e[z]),++n>=r&&(n=++b+1);return o}}jo.prototype.klassSubType="DistanceMatrix";class Mt extends H0{constructor(e,t,r){super(),this.matrix=e,this.rows=t,this.columns=r}}class G6 extends Mt{constructor(e,t){ze(e,t),super(e,e.rows,1),this.column=t}set(e,t,r){return this.matrix.set(e,this.column,r),this}get(e){return this.matrix.get(e,this.column)}}class V6 extends Mt{constructor(e,t){sp(e,t),super(e,e.rows,t.length),this.columnIndices=t}set(e,t,r){return this.matrix.set(e,this.columnIndices[t],r),this}get(e,t){return this.matrix.get(e,this.columnIndices[t])}}class K6 extends Mt{constructor(e){super(e,e.rows,e.columns)}set(e,t,r){return this.matrix.set(e,this.columns-t-1,r),this}get(e,t){return this.matrix.get(e,this.columns-t-1)}}class J6 extends Mt{constructor(e){super(e,e.rows,e.columns)}set(e,t,r){return this.matrix.set(this.rows-e-1,t,r),this}get(e,t){return this.matrix.get(this.rows-e-1,t)}}class Q6 extends Mt{constructor(e,t){pe(e,t),super(e,1,e.columns),this.row=t}set(e,t,r){return this.matrix.set(this.row,t,r),this}get(e,t){return this.matrix.get(this.row,t)}}class Z6 extends Mt{constructor(e,t){cp(e,t),super(e,t.length,e.columns),this.rowIndices=t}set(e,t,r){return this.matrix.set(this.rowIndices[e],t,r),this}get(e,t){return this.matrix.get(this.rowIndices[e],t)}}class Ho extends Mt{constructor(e,t,r){cp(e,t),sp(e,r),super(e,t.length,r.length),this.rowIndices=t,this.columnIndices=r}set(e,t,r){return this.matrix.set(this.rowIndices[e],this.columnIndices[t],r),this}get(e,t){return this.matrix.get(this.rowIndices[e],this.columnIndices[t])}}class e_ extends Mt{constructor(e,t,r,o,n){ap(e,t,r,o,n),super(e,r-t+1,n-o+1),this.startRow=t,this.startColumn=o}set(e,t,r){return this.matrix.set(this.startRow+e,this.startColumn+t,r),this}get(e,t){return this.matrix.get(this.startRow+e,this.startColumn+t)}}class t_ extends Mt{constructor(e){super(e,e.columns,e.rows)}set(e,t,r){return this.matrix.set(t,e,r),this}get(e,t){return this.matrix.get(t,e)}}class R3 extends H0{constructor(e,t={}){const{rows:r=1}=t;if(e.length%r!==0)throw new Error("the data length is not divisible by the number of rows");super(),this.rows=r,this.columns=e.length/r,this.data=e}set(e,t,r){let o=this._calculateIndex(e,t);return this.data[o]=r,this}get(e,t){let r=this._calculateIndex(e,t);return this.data[r]}_calculateIndex(e,t){return e*this.columns+t}}class j2 extends H0{constructor(e){super(),this.data=e,this.rows=e.length,this.columns=e[0].length}set(e,t,r){return this.data[e][t]=r,this}get(e,t){return this.data[e][t]}}function r_(M,e){if(C2.isAnyArray(M))return M[0]&&C2.isAnyArray(M[0])?new j2(M):new R3(M,e);throw new Error("the argument is not an array")}class Yo{constructor(e){e=j2.checkMatrix(e);let t=e.clone(),r=t.rows,o=t.columns,n=new Float64Array(r),b=1,z,i,s,O,a,u,l,d,A;for(z=0;z<r;z++)n[z]=z;for(d=new Float64Array(r),i=0;i<o;i++){for(z=0;z<r;z++)d[z]=t.get(z,i);for(z=0;z<r;z++){for(A=Math.min(z,i),a=0,s=0;s<A;s++)a+=t.get(z,s)*d[s];d[z]-=a,t.set(z,i,d[z])}for(O=i,z=i+1;z<r;z++)Math.abs(d[z])>Math.abs(d[O])&&(O=z);if(O!==i){for(s=0;s<o;s++)u=t.get(O,s),t.set(O,s,t.get(i,s)),t.set(i,s,u);l=n[O],n[O]=n[i],n[i]=l,b=-b}if(i<r&&t.get(i,i)!==0)for(z=i+1;z<r;z++)t.set(z,i,t.get(z,i)/t.get(i,i))}this.LU=t,this.pivotVector=n,this.pivotSign=b}isSingular(){let e=this.LU,t=e.columns;for(let r=0;r<t;r++)if(e.get(r,r)===0)return!0;return!1}solve(e){e=q0.checkMatrix(e);let t=this.LU;if(t.rows!==e.rows)throw new Error("Invalid matrix dimensions");if(this.isSingular())throw new Error("LU matrix is singular");let o=e.columns,n=e.subMatrixRow(this.pivotVector,0,o-1),b=t.columns,z,i,s;for(s=0;s<b;s++)for(z=s+1;z<b;z++)for(i=0;i<o;i++)n.set(z,i,n.get(z,i)-n.get(s,i)*t.get(z,s));for(s=b-1;s>=0;s--){for(i=0;i<o;i++)n.set(s,i,n.get(s,i)/t.get(s,s));for(z=0;z<s;z++)for(i=0;i<o;i++)n.set(z,i,n.get(z,i)-n.get(s,i)*t.get(z,s))}return n}get determinant(){let e=this.LU;if(!e.isSquare())throw new Error("Matrix must be square");let t=this.pivotSign,r=e.columns;for(let o=0;o<r;o++)t*=e.get(o,o);return t}get lowerTriangularMatrix(){let e=this.LU,t=e.rows,r=e.columns,o=new q0(t,r);for(let n=0;n<t;n++)for(let b=0;b<r;b++)n>b?o.set(n,b,e.get(n,b)):n===b?o.set(n,b,1):o.set(n,b,0);return o}get upperTriangularMatrix(){let e=this.LU,t=e.rows,r=e.columns,o=new q0(t,r);for(let n=0;n<t;n++)for(let b=0;b<r;b++)n<=b?o.set(n,b,e.get(n,b)):o.set(n,b,0);return o}get pivotPermutationVector(){return Array.from(this.pivotVector)}}function ot(M,e){let t=0;return Math.abs(M)>Math.abs(e)?(t=e/M,Math.abs(M)*Math.sqrt(1+t*t)):e!==0?(t=M/e,Math.abs(e)*Math.sqrt(1+t*t)):0}class Op{constructor(e){e=j2.checkMatrix(e);let t=e.clone(),r=e.rows,o=e.columns,n=new Float64Array(o),b,z,i,s;for(i=0;i<o;i++){let O=0;for(b=i;b<r;b++)O=ot(O,t.get(b,i));if(O!==0){for(t.get(i,i)<0&&(O=-O),b=i;b<r;b++)t.set(b,i,t.get(b,i)/O);for(t.set(i,i,t.get(i,i)+1),z=i+1;z<o;z++){for(s=0,b=i;b<r;b++)s+=t.get(b,i)*t.get(b,z);for(s=-s/t.get(i,i),b=i;b<r;b++)t.set(b,z,t.get(b,z)+s*t.get(b,i))}}n[i]=-O}this.QR=t,this.Rdiag=n}solve(e){e=q0.checkMatrix(e);let t=this.QR,r=t.rows;if(e.rows!==r)throw new Error("Matrix row dimensions must agree");if(!this.isFullRank())throw new Error("Matrix is rank deficient");let o=e.columns,n=e.clone(),b=t.columns,z,i,s,O;for(s=0;s<b;s++)for(i=0;i<o;i++){for(O=0,z=s;z<r;z++)O+=t.get(z,s)*n.get(z,i);for(O=-O/t.get(s,s),z=s;z<r;z++)n.set(z,i,n.get(z,i)+O*t.get(z,s))}for(s=b-1;s>=0;s--){for(i=0;i<o;i++)n.set(s,i,n.get(s,i)/this.Rdiag[s]);for(z=0;z<s;z++)for(i=0;i<o;i++)n.set(z,i,n.get(z,i)-n.get(s,i)*t.get(z,s))}return n.subMatrix(0,b-1,0,o-1)}isFullRank(){let e=this.QR.columns;for(let t=0;t<e;t++)if(this.Rdiag[t]===0)return!1;return!0}get upperTriangularMatrix(){let e=this.QR,t=e.columns,r=new q0(t,t),o,n;for(o=0;o<t;o++)for(n=0;n<t;n++)o<n?r.set(o,n,e.get(o,n)):o===n?r.set(o,n,this.Rdiag[o]):r.set(o,n,0);return r}get orthogonalMatrix(){let e=this.QR,t=e.rows,r=e.columns,o=new q0(t,r),n,b,z,i;for(z=r-1;z>=0;z--){for(n=0;n<t;n++)o.set(n,z,0);for(o.set(z,z,1),b=z;b<r;b++)if(e.get(z,z)!==0){for(i=0,n=z;n<t;n++)i+=e.get(n,z)*o.get(n,b);for(i=-i/e.get(z,z),n=z;n<t;n++)o.set(n,b,o.get(n,b)+i*e.get(n,z))}}return o}}class Xr{constructor(e,t={}){if(e=j2.checkMatrix(e),e.isEmpty())throw new Error("Matrix must be non-empty");let r=e.rows,o=e.columns;const{computeLeftSingularVectors:n=!0,computeRightSingularVectors:b=!0,autoTranspose:z=!1}=t;let i=!!n,s=!!b,O=!1,a;if(r<o)if(!z)a=e.clone(),console.warn("Computing SVD on a matrix with more columns than rows. Consider enabling autoTranspose");else{a=e.transpose(),r=a.rows,o=a.columns,O=!0;let N=i;i=s,s=N}else a=e.clone();let u=Math.min(r,o),l=Math.min(r+1,o),d=new Float64Array(l),A=new q0(r,u),h=new q0(o,o),q=new Float64Array(o),_=new Float64Array(r),m=new Float64Array(l);for(let N=0;N<l;N++)m[N]=N;let L=Math.min(r-1,o),g=Math.max(0,Math.min(o-2,r)),v=Math.max(L,g);for(let N=0;N<v;N++){if(N<L){d[N]=0;for(let D=N;D<r;D++)d[N]=ot(d[N],a.get(D,N));if(d[N]!==0){a.get(N,N)<0&&(d[N]=-d[N]);for(let D=N;D<r;D++)a.set(D,N,a.get(D,N)/d[N]);a.set(N,N,a.get(N,N)+1)}d[N]=-d[N]}for(let D=N+1;D<o;D++){if(N<L&&d[N]!==0){let C=0;for(let P=N;P<r;P++)C+=a.get(P,N)*a.get(P,D);C=-C/a.get(N,N);for(let P=N;P<r;P++)a.set(P,D,a.get(P,D)+C*a.get(P,N))}q[D]=a.get(N,D)}if(i&&N<L)for(let D=N;D<r;D++)A.set(D,N,a.get(D,N));if(N<g){q[N]=0;for(let D=N+1;D<o;D++)q[N]=ot(q[N],q[D]);if(q[N]!==0){q[N+1]<0&&(q[N]=0-q[N]);for(let D=N+1;D<o;D++)q[D]/=q[N];q[N+1]+=1}if(q[N]=-q[N],N+1<r&&q[N]!==0){for(let D=N+1;D<r;D++)_[D]=0;for(let D=N+1;D<r;D++)for(let C=N+1;C<o;C++)_[D]+=q[C]*a.get(D,C);for(let D=N+1;D<o;D++){let C=-q[D]/q[N+1];for(let P=N+1;P<r;P++)a.set(P,D,a.get(P,D)+C*_[P])}}if(s)for(let D=N+1;D<o;D++)h.set(D,N,q[D])}}let y=Math.min(o,r+1);if(L<o&&(d[L]=a.get(L,L)),r<y&&(d[y-1]=0),g+1<y&&(q[g]=a.get(g,y-1)),q[y-1]=0,i){for(let N=L;N<u;N++){for(let D=0;D<r;D++)A.set(D,N,0);A.set(N,N,1)}for(let N=L-1;N>=0;N--)if(d[N]!==0){for(let D=N+1;D<u;D++){let C=0;for(let P=N;P<r;P++)C+=A.get(P,N)*A.get(P,D);C=-C/A.get(N,N);for(let P=N;P<r;P++)A.set(P,D,A.get(P,D)+C*A.get(P,N))}for(let D=N;D<r;D++)A.set(D,N,-A.get(D,N));A.set(N,N,1+A.get(N,N));for(let D=0;D<N-1;D++)A.set(D,N,0)}else{for(let D=0;D<r;D++)A.set(D,N,0);A.set(N,N,1)}}if(s)for(let N=o-1;N>=0;N--){if(N<g&&q[N]!==0)for(let D=N+1;D<o;D++){let C=0;for(let P=N+1;P<o;P++)C+=h.get(P,N)*h.get(P,D);C=-C/h.get(N+1,N);for(let P=N+1;P<o;P++)h.set(P,D,h.get(P,D)+C*h.get(P,N))}for(let D=0;D<o;D++)h.set(D,N,0);h.set(N,N,1)}let E=y-1,T=Number.EPSILON;for(;y>0;){let N,D;for(N=y-2;N>=-1&&N!==-1;N--){const C=Number.MIN_VALUE+T*Math.abs(d[N]+Math.abs(d[N+1]));if(Math.abs(q[N])<=C||Number.isNaN(q[N])){q[N]=0;break}}if(N===y-2)D=4;else{let C;for(C=y-1;C>=N&&C!==N;C--){let P=(C!==y?Math.abs(q[C]):0)+(C!==N+1?Math.abs(q[C-1]):0);if(Math.abs(d[C])<=T*P){d[C]=0;break}}C===N?D=3:C===y-1?D=1:(D=2,N=C)}switch(N++,D){case 1:{let C=q[y-2];q[y-2]=0;for(let P=y-2;P>=N;P--){let H=ot(d[P],C),G=d[P]/H,k=C/H;if(d[P]=H,P!==N&&(C=-k*q[P-1],q[P-1]=G*q[P-1]),s)for(let J=0;J<o;J++)H=G*h.get(J,P)+k*h.get(J,y-1),h.set(J,y-1,-k*h.get(J,P)+G*h.get(J,y-1)),h.set(J,P,H)}break}case 2:{let C=q[N-1];q[N-1]=0;for(let P=N;P<y;P++){let H=ot(d[P],C),G=d[P]/H,k=C/H;if(d[P]=H,C=-k*q[P],q[P]=G*q[P],i)for(let J=0;J<r;J++)H=G*A.get(J,P)+k*A.get(J,N-1),A.set(J,N-1,-k*A.get(J,P)+G*A.get(J,N-1)),A.set(J,P,H)}break}case 3:{const C=Math.max(Math.abs(d[y-1]),Math.abs(d[y-2]),Math.abs(q[y-2]),Math.abs(d[N]),Math.abs(q[N])),P=d[y-1]/C,H=d[y-2]/C,G=q[y-2]/C,k=d[N]/C,J=q[N]/C,o0=((H+P)*(H-P)+G*G)/2,z0=P*G*(P*G);let O0=0;(o0!==0||z0!==0)&&(o0<0?O0=0-Math.sqrt(o0*o0+z0):O0=Math.sqrt(o0*o0+z0),O0=z0/(o0+O0));let v0=(k+P)*(k-P)+O0,w0=k*J;for(let u0=N;u0<y-1;u0++){let k0=ot(v0,w0);k0===0&&(k0=Number.MIN_VALUE);let I0=v0/k0,P0=w0/k0;if(u0!==N&&(q[u0-1]=k0),v0=I0*d[u0]+P0*q[u0],q[u0]=I0*q[u0]-P0*d[u0],w0=P0*d[u0+1],d[u0+1]=I0*d[u0+1],s)for(let W0=0;W0<o;W0++)k0=I0*h.get(W0,u0)+P0*h.get(W0,u0+1),h.set(W0,u0+1,-P0*h.get(W0,u0)+I0*h.get(W0,u0+1)),h.set(W0,u0,k0);if(k0=ot(v0,w0),k0===0&&(k0=Number.MIN_VALUE),I0=v0/k0,P0=w0/k0,d[u0]=k0,v0=I0*q[u0]+P0*d[u0+1],d[u0+1]=-P0*q[u0]+I0*d[u0+1],w0=P0*q[u0+1],q[u0+1]=I0*q[u0+1],i&&u0<r-1)for(let W0=0;W0<r;W0++)k0=I0*A.get(W0,u0)+P0*A.get(W0,u0+1),A.set(W0,u0+1,-P0*A.get(W0,u0)+I0*A.get(W0,u0+1)),A.set(W0,u0,k0)}q[y-2]=v0;break}case 4:{if(d[N]<=0&&(d[N]=d[N]<0?-d[N]:0,s))for(let C=0;C<=E;C++)h.set(C,N,-h.get(C,N));for(;N<E&&!(d[N]>=d[N+1]);){let C=d[N];if(d[N]=d[N+1],d[N+1]=C,s&&N<o-1)for(let P=0;P<o;P++)C=h.get(P,N+1),h.set(P,N+1,h.get(P,N)),h.set(P,N,C);if(i&&N<r-1)for(let P=0;P<r;P++)C=A.get(P,N+1),A.set(P,N+1,A.get(P,N)),A.set(P,N,C);N++}y--;break}}}if(O){let N=h;h=A,A=N}this.m=r,this.n=o,this.s=d,this.U=A,this.V=h}solve(e){let t=e,r=this.threshold,o=this.s.length,n=q0.zeros(o,o);for(let u=0;u<o;u++)Math.abs(this.s[u])<=r?n.set(u,u,0):n.set(u,u,1/this.s[u]);let b=this.U,z=this.rightSingularVectors,i=z.mmul(n),s=z.rows,O=b.rows,a=q0.zeros(s,O);for(let u=0;u<s;u++)for(let l=0;l<O;l++){let d=0;for(let A=0;A<o;A++)d+=i.get(u,A)*b.get(l,A);a.set(u,l,d)}return a.mmul(t)}solveForDiagonal(e){return this.solve(q0.diag(e))}inverse(){let e=this.V,t=this.threshold,r=e.rows,o=e.columns,n=new q0(r,this.s.length);for(let O=0;O<r;O++)for(let a=0;a<o;a++)Math.abs(this.s[a])>t&&n.set(O,a,e.get(O,a)/this.s[a]);let b=this.U,z=b.rows,i=b.columns,s=new q0(r,z);for(let O=0;O<r;O++)for(let a=0;a<z;a++){let u=0;for(let l=0;l<i;l++)u+=n.get(O,l)*b.get(a,l);s.set(O,a,u)}return s}get condition(){return this.s[0]/this.s[Math.min(this.m,this.n)-1]}get norm2(){return this.s[0]}get rank(){let e=Math.max(this.m,this.n)*this.s[0]*Number.EPSILON,t=0,r=this.s;for(let o=0,n=r.length;o<n;o++)r[o]>e&&t++;return t}get diagonal(){return Array.from(this.s)}get threshold(){return Number.EPSILON/2*Math.max(this.m,this.n)*this.s[0]}get leftSingularVectors(){return this.U}get rightSingularVectors(){return this.V}get diagonalMatrix(){return q0.diag(this.s)}}function M_(M,e=!1){return M=j2.checkMatrix(M),e?new Xr(M).inverse():L3(M,q0.eye(M.rows))}function L3(M,e,t=!1){return M=j2.checkMatrix(M),e=j2.checkMatrix(e),t?new Xr(M).solve(e):M.isSquare()?new Yo(M).solve(e):new Op(M).solve(e)}function Go(M){if(M=q0.checkMatrix(M),M.isSquare()){if(M.columns===0)return 1;let e,t,r,o;if(M.columns===2)return e=M.get(0,0),t=M.get(0,1),r=M.get(1,0),o=M.get(1,1),e*o-t*r;if(M.columns===3){let n,b,z;return n=new Ho(M,[1,2],[1,2]),b=new Ho(M,[1,2],[0,2]),z=new Ho(M,[1,2],[0,1]),e=M.get(0,0),t=M.get(0,1),r=M.get(0,2),e*Go(n)-t*Go(b)+r*Go(z)}else return new Yo(M).determinant}else throw Error("determinant can only be calculated for a square matrix")}function o_(M,e){let t=[];for(let r=0;r<M;r++)r!==e&&t.push(r);return t}function n_(M,e,t,r=1e-9,o=1e-9){if(M>o)return new Array(e.rows+1).fill(0);{let n=e.addRow(t,[0]);for(let b=0;b<n.rows;b++)Math.abs(n.get(b,0))<r&&n.set(b,0,0);return n.to1DArray()}}function b_(M,e={}){const{thresholdValue:t=1e-9,thresholdError:r=1e-9}=e;M=q0.checkMatrix(M);let o=M.rows,n=new q0(o,o);for(let b=0;b<o;b++){let z=q0.columnVector(M.getRow(b)),i=M.subMatrixRow(o_(o,b)).transpose(),O=new Xr(i).solve(z),a=q0.sub(z,i.mmul(O)).abs().max();n.setRow(b,n_(a,O,b,t,r))}return n}function p_(M,e=Number.EPSILON){if(M=q0.checkMatrix(M),M.isEmpty())return M.transpose();let t=new Xr(M,{autoTranspose:!0}),r=t.leftSingularVectors,o=t.rightSingularVectors,n=t.diagonal;for(let b=0;b<n.length;b++)Math.abs(n[b])>e?n[b]=1/n[b]:n[b]=0;return o.mmul(q0.diag(n).mmul(r.transpose()))}function z_(M,e=M,t={}){M=new q0(M);let r=!1;if(typeof e=="object"&&!q0.isMatrix(e)&&!C2.isAnyArray(e)?(t=e,e=M,r=!0):e=new q0(e),M.rows!==e.rows)throw new TypeError("Both matrices must have the same number of rows");const{center:o=!0}=t;o&&(M=M.center("column"),r||(e=e.center("column")));const n=M.transpose().mmul(e);for(let b=0;b<n.rows;b++)for(let z=0;z<n.columns;z++)n.set(b,z,n.get(b,z)*(1/(M.rows-1)));return n}function i_(M,e=M,t={}){M=new q0(M);let r=!1;if(typeof e=="object"&&!q0.isMatrix(e)&&!C2.isAnyArray(e)?(t=e,e=M,r=!0):e=new q0(e),M.rows!==e.rows)throw new TypeError("Both matrices must have the same number of rows");const{center:o=!0,scale:n=!0}=t;o&&(M.center("column"),r||e.center("column")),n&&(M.scale("column"),r||e.scale("column"));const b=M.standardDeviation("column",{unbiased:!0}),z=r?b:e.standardDeviation("column",{unbiased:!0}),i=M.transpose().mmul(e);for(let s=0;s<i.rows;s++)for(let O=0;O<i.columns;O++)i.set(s,O,i.get(s,O)*(1/(b[s]*z[O]))*(1/(M.rows-1)));return i}let v3=class{constructor(e,t={}){const{assumeSymmetric:r=!1}=t;if(e=j2.checkMatrix(e),!e.isSquare())throw new Error("Matrix is not a square matrix");if(e.isEmpty())throw new Error("Matrix must be non-empty");let o=e.columns,n=new q0(o,o),b=new Float64Array(o),z=new Float64Array(o),i=e,s,O,a=!1;if(r?a=!0:a=e.isSymmetric(),a){for(s=0;s<o;s++)for(O=0;O<o;O++)n.set(s,O,i.get(s,O));c_(o,z,b,n),s_(o,z,b,n)}else{let u=new q0(o,o),l=new Float64Array(o);for(O=0;O<o;O++)for(s=0;s<o;s++)u.set(s,O,i.get(s,O));a_(o,u,l,n),O_(o,z,b,n,u)}this.n=o,this.e=z,this.d=b,this.V=n}get realEigenvalues(){return Array.from(this.d)}get imaginaryEigenvalues(){return Array.from(this.e)}get eigenvectorMatrix(){return this.V}get diagonalMatrix(){let e=this.n,t=this.e,r=this.d,o=new q0(e,e),n,b;for(n=0;n<e;n++){for(b=0;b<e;b++)o.set(n,b,0);o.set(n,n,r[n]),t[n]>0?o.set(n,n+1,t[n]):t[n]<0&&o.set(n,n-1,t[n])}return o}};function c_(M,e,t,r){let o,n,b,z,i,s,O,a;for(i=0;i<M;i++)t[i]=r.get(M-1,i);for(z=M-1;z>0;z--){for(a=0,b=0,s=0;s<z;s++)a=a+Math.abs(t[s]);if(a===0)for(e[z]=t[z-1],i=0;i<z;i++)t[i]=r.get(z-1,i),r.set(z,i,0),r.set(i,z,0);else{for(s=0;s<z;s++)t[s]/=a,b+=t[s]*t[s];for(o=t[z-1],n=Math.sqrt(b),o>0&&(n=-n),e[z]=a*n,b=b-o*n,t[z-1]=o-n,i=0;i<z;i++)e[i]=0;for(i=0;i<z;i++){for(o=t[i],r.set(i,z,o),n=e[i]+r.get(i,i)*o,s=i+1;s<=z-1;s++)n+=r.get(s,i)*t[s],e[s]+=r.get(s,i)*o;e[i]=n}for(o=0,i=0;i<z;i++)e[i]/=b,o+=e[i]*t[i];for(O=o/(b+b),i=0;i<z;i++)e[i]-=O*t[i];for(i=0;i<z;i++){for(o=t[i],n=e[i],s=i;s<=z-1;s++)r.set(s,i,r.get(s,i)-(o*e[s]+n*t[s]));t[i]=r.get(z-1,i),r.set(z,i,0)}}t[z]=b}for(z=0;z<M-1;z++){if(r.set(M-1,z,r.get(z,z)),r.set(z,z,1),b=t[z+1],b!==0){for(s=0;s<=z;s++)t[s]=r.get(s,z+1)/b;for(i=0;i<=z;i++){for(n=0,s=0;s<=z;s++)n+=r.get(s,z+1)*r.get(s,i);for(s=0;s<=z;s++)r.set(s,i,r.get(s,i)-n*t[s])}}for(s=0;s<=z;s++)r.set(s,z+1,0)}for(i=0;i<M;i++)t[i]=r.get(M-1,i),r.set(M-1,i,0);r.set(M-1,M-1,1),e[0]=0}function s_(M,e,t,r){let o,n,b,z,i,s,O,a,u,l,d,A,h,q,_,m;for(b=1;b<M;b++)e[b-1]=e[b];e[M-1]=0;let L=0,g=0,v=Number.EPSILON;for(s=0;s<M;s++){for(g=Math.max(g,Math.abs(t[s])+Math.abs(e[s])),O=s;O<M&&!(Math.abs(e[O])<=v*g);)O++;if(O>s)do{for(o=t[s],a=(t[s+1]-o)/(2*e[s]),u=ot(a,1),a<0&&(u=-u),t[s]=e[s]/(a+u),t[s+1]=e[s]*(a+u),l=t[s+1],n=o-t[s],b=s+2;b<M;b++)t[b]-=n;for(L=L+n,a=t[O],d=1,A=d,h=d,q=e[s+1],_=0,m=0,b=O-1;b>=s;b--)for(h=A,A=d,m=_,o=d*e[b],n=d*a,u=ot(a,e[b]),e[b+1]=_*u,_=e[b]/u,d=a/u,a=d*t[b]-_*o,t[b+1]=n+_*(d*o+_*t[b]),i=0;i<M;i++)n=r.get(i,b+1),r.set(i,b+1,_*r.get(i,b)+d*n),r.set(i,b,d*r.get(i,b)-_*n);a=-_*m*h*q*e[s]/l,e[s]=_*a,t[s]=d*a}while(Math.abs(e[s])>v*g);t[s]=t[s]+L,e[s]=0}for(b=0;b<M-1;b++){for(i=b,a=t[b],z=b+1;z<M;z++)t[z]<a&&(i=z,a=t[z]);if(i!==b)for(t[i]=t[b],t[b]=a,z=0;z<M;z++)a=r.get(z,b),r.set(z,b,r.get(z,i)),r.set(z,i,a)}}function a_(M,e,t,r){let o=0,n=M-1,b,z,i,s,O,a,u;for(a=o+1;a<=n-1;a++){for(u=0,s=a;s<=n;s++)u=u+Math.abs(e.get(s,a-1));if(u!==0){for(i=0,s=n;s>=a;s--)t[s]=e.get(s,a-1)/u,i+=t[s]*t[s];for(z=Math.sqrt(i),t[a]>0&&(z=-z),i=i-t[a]*z,t[a]=t[a]-z,O=a;O<M;O++){for(b=0,s=n;s>=a;s--)b+=t[s]*e.get(s,O);for(b=b/i,s=a;s<=n;s++)e.set(s,O,e.get(s,O)-b*t[s])}for(s=0;s<=n;s++){for(b=0,O=n;O>=a;O--)b+=t[O]*e.get(s,O);for(b=b/i,O=a;O<=n;O++)e.set(s,O,e.get(s,O)-b*t[O])}t[a]=u*t[a],e.set(a,a-1,u*z)}}for(s=0;s<M;s++)for(O=0;O<M;O++)r.set(s,O,s===O?1:0);for(a=n-1;a>=o+1;a--)if(e.get(a,a-1)!==0){for(s=a+1;s<=n;s++)t[s]=e.get(s,a-1);for(O=a;O<=n;O++){for(z=0,s=a;s<=n;s++)z+=t[s]*r.get(s,O);for(z=z/t[a]/e.get(a,a-1),s=a;s<=n;s++)r.set(s,O,r.get(s,O)+z*t[s])}}}function O_(M,e,t,r,o){let n=M-1,b=0,z=M-1,i=Number.EPSILON,s=0,O=0,a=0,u=0,l=0,d=0,A=0,h=0,q,_,m,L,g,v,y,E,T,N,D,C,P,H,G;for(q=0;q<M;q++)for((q<b||q>z)&&(t[q]=o.get(q,q),e[q]=0),_=Math.max(q-1,0);_<M;_++)O=O+Math.abs(o.get(q,_));for(;n>=b;){for(L=n;L>b&&(d=Math.abs(o.get(L-1,L-1))+Math.abs(o.get(L,L)),d===0&&(d=O),!(Math.abs(o.get(L,L-1))<i*d));)L--;if(L===n)o.set(n,n,o.get(n,n)+s),t[n]=o.get(n,n),e[n]=0,n--,h=0;else if(L===n-1){if(y=o.get(n,n-1)*o.get(n-1,n),a=(o.get(n-1,n-1)-o.get(n,n))/2,u=a*a+y,A=Math.sqrt(Math.abs(u)),o.set(n,n,o.get(n,n)+s),o.set(n-1,n-1,o.get(n-1,n-1)+s),E=o.get(n,n),u>=0){for(A=a>=0?a+A:a-A,t[n-1]=E+A,t[n]=t[n-1],A!==0&&(t[n]=E-y/A),e[n-1]=0,e[n]=0,E=o.get(n,n-1),d=Math.abs(E)+Math.abs(A),a=E/d,u=A/d,l=Math.sqrt(a*a+u*u),a=a/l,u=u/l,_=n-1;_<M;_++)A=o.get(n-1,_),o.set(n-1,_,u*A+a*o.get(n,_)),o.set(n,_,u*o.get(n,_)-a*A);for(q=0;q<=n;q++)A=o.get(q,n-1),o.set(q,n-1,u*A+a*o.get(q,n)),o.set(q,n,u*o.get(q,n)-a*A);for(q=b;q<=z;q++)A=r.get(q,n-1),r.set(q,n-1,u*A+a*r.get(q,n)),r.set(q,n,u*r.get(q,n)-a*A)}else t[n-1]=E+a,t[n]=E+a,e[n-1]=A,e[n]=-A;n=n-2,h=0}else{if(E=o.get(n,n),T=0,y=0,L<n&&(T=o.get(n-1,n-1),y=o.get(n,n-1)*o.get(n-1,n)),h===10){for(s+=E,q=b;q<=n;q++)o.set(q,q,o.get(q,q)-E);d=Math.abs(o.get(n,n-1))+Math.abs(o.get(n-1,n-2)),E=T=.75*d,y=-.4375*d*d}if(h===30&&(d=(T-E)/2,d=d*d+y,d>0)){for(d=Math.sqrt(d),T<E&&(d=-d),d=E-y/((T-E)/2+d),q=b;q<=n;q++)o.set(q,q,o.get(q,q)-d);s+=d,E=T=y=.964}for(h=h+1,g=n-2;g>=L&&(A=o.get(g,g),l=E-A,d=T-A,a=(l*d-y)/o.get(g+1,g)+o.get(g,g+1),u=o.get(g+1,g+1)-A-l-d,l=o.get(g+2,g+1),d=Math.abs(a)+Math.abs(u)+Math.abs(l),a=a/d,u=u/d,l=l/d,!(g===L||Math.abs(o.get(g,g-1))*(Math.abs(u)+Math.abs(l))<i*(Math.abs(a)*(Math.abs(o.get(g-1,g-1))+Math.abs(A)+Math.abs(o.get(g+1,g+1))))));)g--;for(q=g+2;q<=n;q++)o.set(q,q-2,0),q>g+2&&o.set(q,q-3,0);for(m=g;m<=n-1&&(H=m!==n-1,m!==g&&(a=o.get(m,m-1),u=o.get(m+1,m-1),l=H?o.get(m+2,m-1):0,E=Math.abs(a)+Math.abs(u)+Math.abs(l),E!==0&&(a=a/E,u=u/E,l=l/E)),E!==0);m++)if(d=Math.sqrt(a*a+u*u+l*l),a<0&&(d=-d),d!==0){for(m!==g?o.set(m,m-1,-d*E):L!==g&&o.set(m,m-1,-o.get(m,m-1)),a=a+d,E=a/d,T=u/d,A=l/d,u=u/a,l=l/a,_=m;_<M;_++)a=o.get(m,_)+u*o.get(m+1,_),H&&(a=a+l*o.get(m+2,_),o.set(m+2,_,o.get(m+2,_)-a*A)),o.set(m,_,o.get(m,_)-a*E),o.set(m+1,_,o.get(m+1,_)-a*T);for(q=0;q<=Math.min(n,m+3);q++)a=E*o.get(q,m)+T*o.get(q,m+1),H&&(a=a+A*o.get(q,m+2),o.set(q,m+2,o.get(q,m+2)-a*l)),o.set(q,m,o.get(q,m)-a),o.set(q,m+1,o.get(q,m+1)-a*u);for(q=b;q<=z;q++)a=E*r.get(q,m)+T*r.get(q,m+1),H&&(a=a+A*r.get(q,m+2),r.set(q,m+2,r.get(q,m+2)-a*l)),r.set(q,m,r.get(q,m)-a),r.set(q,m+1,r.get(q,m+1)-a*u)}}}if(O!==0){for(n=M-1;n>=0;n--)if(a=t[n],u=e[n],u===0)for(L=n,o.set(n,n,1),q=n-1;q>=0;q--){for(y=o.get(q,q)-a,l=0,_=L;_<=n;_++)l=l+o.get(q,_)*o.get(_,n);if(e[q]<0)A=y,d=l;else if(L=q,e[q]===0?o.set(q,n,y!==0?-l/y:-l/(i*O)):(E=o.get(q,q+1),T=o.get(q+1,q),u=(t[q]-a)*(t[q]-a)+e[q]*e[q],v=(E*d-A*l)/u,o.set(q,n,v),o.set(q+1,n,Math.abs(E)>Math.abs(A)?(-l-y*v)/E:(-d-T*v)/A)),v=Math.abs(o.get(q,n)),i*v*v>1)for(_=q;_<=n;_++)o.set(_,n,o.get(_,n)/v)}else if(u<0)for(L=n-1,Math.abs(o.get(n,n-1))>Math.abs(o.get(n-1,n))?(o.set(n-1,n-1,u/o.get(n,n-1)),o.set(n-1,n,-(o.get(n,n)-a)/o.get(n,n-1))):(G=Vo(0,-o.get(n-1,n),o.get(n-1,n-1)-a,u),o.set(n-1,n-1,G[0]),o.set(n-1,n,G[1])),o.set(n,n-1,0),o.set(n,n,1),q=n-2;q>=0;q--){for(N=0,D=0,_=L;_<=n;_++)N=N+o.get(q,_)*o.get(_,n-1),D=D+o.get(q,_)*o.get(_,n);if(y=o.get(q,q)-a,e[q]<0)A=y,l=N,d=D;else if(L=q,e[q]===0?(G=Vo(-N,-D,y,u),o.set(q,n-1,G[0]),o.set(q,n,G[1])):(E=o.get(q,q+1),T=o.get(q+1,q),C=(t[q]-a)*(t[q]-a)+e[q]*e[q]-u*u,P=(t[q]-a)*2*u,C===0&&P===0&&(C=i*O*(Math.abs(y)+Math.abs(u)+Math.abs(E)+Math.abs(T)+Math.abs(A))),G=Vo(E*l-A*N+u*D,E*d-A*D-u*N,C,P),o.set(q,n-1,G[0]),o.set(q,n,G[1]),Math.abs(E)>Math.abs(A)+Math.abs(u)?(o.set(q+1,n-1,(-N-y*o.get(q,n-1)+u*o.get(q,n))/E),o.set(q+1,n,(-D-y*o.get(q,n)-u*o.get(q,n-1))/E)):(G=Vo(-l-T*o.get(q,n-1),-d-T*o.get(q,n),A,u),o.set(q+1,n-1,G[0]),o.set(q+1,n,G[1]))),v=Math.max(Math.abs(o.get(q,n-1)),Math.abs(o.get(q,n))),i*v*v>1)for(_=q;_<=n;_++)o.set(_,n-1,o.get(_,n-1)/v),o.set(_,n,o.get(_,n)/v)}for(q=0;q<M;q++)if(q<b||q>z)for(_=q;_<M;_++)r.set(q,_,o.get(q,_));for(_=M-1;_>=b;_--)for(q=b;q<=z;q++){for(A=0,m=b;m<=Math.min(_,z);m++)A=A+r.get(q,m)*o.get(m,_);r.set(q,_,A)}}}function Vo(M,e,t,r){let o,n;return Math.abs(t)>Math.abs(r)?(o=r/t,n=t+o*r,[(M+o*e)/n,(e-o*M)/n]):(o=t/r,n=r+o*t,[(o*M+e)/n,(o*e-M)/n])}class N3{constructor(e){if(e=j2.checkMatrix(e),!e.isSymmetric())throw new Error("Matrix is not symmetric");let t=e,r=t.rows,o=new q0(r,r),n=!0,b,z,i;for(z=0;z<r;z++){let s=0;for(i=0;i<z;i++){let O=0;for(b=0;b<i;b++)O+=o.get(i,b)*o.get(z,b);O=(t.get(z,i)-O)/o.get(i,i),o.set(z,i,O),s=s+O*O}for(s=t.get(z,z)-s,n&=s>0,o.set(z,z,Math.sqrt(Math.max(s,0))),i=z+1;i<r;i++)o.set(z,i,0)}this.L=o,this.positiveDefinite=!!n}isPositiveDefinite(){return this.positiveDefinite}solve(e){e=j2.checkMatrix(e);let t=this.L,r=t.rows;if(e.rows!==r)throw new Error("Matrix dimensions do not match");if(this.isPositiveDefinite()===!1)throw new Error("Matrix is not positive definite");let o=e.columns,n=e.clone(),b,z,i;for(i=0;i<r;i++)for(z=0;z<o;z++){for(b=0;b<i;b++)n.set(i,z,n.get(i,z)-n.get(b,z)*t.get(i,b));n.set(i,z,n.get(i,z)/t.get(i,i))}for(i=r-1;i>=0;i--)for(z=0;z<o;z++){for(b=i+1;b<r;b++)n.set(i,z,n.get(i,z)-n.get(b,z)*t.get(b,i));n.set(i,z,n.get(i,z)/t.get(i,i))}return n}get lowerTriangularMatrix(){return this.L}}class y3{constructor(e,t={}){e=j2.checkMatrix(e);let{Y:r}=t;const{scaleScores:o=!1,maxIterations:n=1e3,terminationCriteria:b=1e-10}=t;let z;if(r){if(C2.isAnyArray(r)&&typeof r[0]=="number"?r=q0.columnVector(r):r=j2.checkMatrix(r),r.rows!==e.rows)throw new Error("Y should have the same number of rows as X");z=r.getColumnVector(0)}else z=e.getColumnVector(0);let i=1,s,O,a,u;for(let l=0;l<n&&i>b;l++)a=e.transpose().mmul(z).div(z.transpose().mmul(z).get(0,0)),a=a.div(a.norm()),s=e.mmul(a).div(a.transpose().mmul(a).get(0,0)),l>0&&(i=s.clone().sub(u).pow(2).sum()),u=s.clone(),r?(O=r.transpose().mmul(s).div(s.transpose().mmul(s).get(0,0)),O=O.div(O.norm()),z=r.mmul(O).div(O.transpose().mmul(O).get(0,0))):z=s;if(r){let l=e.transpose().mmul(s).div(s.transpose().mmul(s).get(0,0));l=l.div(l.norm());let d=e.clone().sub(s.clone().mmul(l.transpose())),A=z.transpose().mmul(s).div(s.transpose().mmul(s).get(0,0)),h=r.clone().sub(s.clone().mulS(A.get(0,0)).mmul(O.transpose()));this.t=s,this.p=l.transpose(),this.w=a.transpose(),this.q=O,this.u=z,this.s=s.transpose().mmul(s),this.xResidual=d,this.yResidual=h,this.betas=A}else this.w=a.transpose(),this.s=s.transpose().mmul(s).sqrt(),o?this.t=s.clone().div(this.s.get(0,0)):this.t=s,this.xResidual=e.sub(s.mmul(a.transpose()))}}e1.AbstractMatrix=H0,e1.CHO=N3,e1.CholeskyDecomposition=N3,e1.DistanceMatrix=jo,e1.EVD=v3;var u_=e1.EigenvalueDecomposition=v3;e1.LU=Yo,e1.LuDecomposition=Yo;var B3=e1.Matrix=q0;e1.MatrixColumnSelectionView=V6,e1.MatrixColumnView=G6,e1.MatrixFlipColumnView=K6,e1.MatrixFlipRowView=J6,e1.MatrixRowSelectionView=Z6,e1.MatrixRowView=Q6,e1.MatrixSelectionView=Ho,e1.MatrixSubView=e_,e1.MatrixTransposeView=t_,e1.NIPALS=y3,e1.Nipals=y3,e1.QR=Op,e1.QrDecomposition=Op,e1.SVD=Xr,e1.SingularValueDecomposition=Xr,e1.SymmetricMatrix=Yt,e1.WrapperMatrix1D=R3,e1.WrapperMatrix2D=j2,e1.correlation=i_,e1.covariance=z_;var w3=e1.default=q0;e1.determinant=Go,e1.inverse=M_,e1.linearDependencies=b_,e1.pseudoInverse=p_,e1.solve=L3,e1.wrap=r_;const D3=u_,X3=B3;w3.Matrix&&w3.Matrix;class A_{constructor(e){X(this,"_errorListener");this._errorListener=e}new({rows:e,columns:t,initial_value:r,type:o}={}){return new up(e,t,r,this._errorListener,o)}avg({id:e}){return e==null?void 0:e.avg()}col({id:e,column:t}){return e==null?void 0:e.col({column:t})}det({id:e}){return e==null?void 0:e.det()}get({id:e,row:t,column:r}){return e==null?void 0:e.get({row:t,column:r})}inv({id:e}){return e==null?void 0:e.inv()}max({id:e}){return e==null?void 0:e.max()}min({id:e}){return e==null?void 0:e.min()}pow({id:e,power:t}){return e==null?void 0:e.pow({power:t})}row({id:e,row:t}){return e==null?void 0:e.row({row:t})}set({id:e,row:t,column:r,value:o}){e==null||e.set({row:t,column:r,value:o})}sum({id1:e,id2:t}){return e==null?void 0:e.sum({id2:t})}copy({id:e}){return e==null?void 0:e.copy()}diff({id1:e,id2:t}){return e==null?void 0:e.diff({id2:t})}rows({id:e}){return e==null?void 0:e.rows()}columns({id:e}){return e==null?void 0:e.columns()}fill({id:e,value:t,from_row:r,to_row:o,from_column:n,to_column:b}){e==null||e.fill({value:t,from_row:r,to_row:o,from_column:n,to_column:b})}kron({id1:e,id2:t}){return e==null?void 0:e.kron({id2:t})}mode({id:e}){return e==null?void 0:e.mode()}mult({id1:e,id2:t}){return e==null?void 0:e.mult({id2:t})}pinv({id:e}){return e==null?void 0:e.pinv()}rank({id:e}){return e==null?void 0:e.rank()}sort({id:e,column:t,order:r}){e==null||e.sort({column:t,order:r})}trace({id:e}){return e==null?void 0:e.trace()}concat({id1:e,id2:t}){return e==null?void 0:e.concat({id2:t})}median({id:e}){return e==null?void 0:e.median()}add_col({id:e,column:t,array_id:r}){e==null||e.add_col({column:t,array_id:r})}add_row({id:e,row:t,array_id:r}){e==null||e.add_row({row:t,array_id:r})}is_zero({id:e}){return e==null?void 0:e.is_zero()}reshape({id:e,rows:t,columns:r},o){return e==null?void 0:e.reshape({rows:t,columns:r},o)}reverse({id:e}){e==null||e.reverse()}is_binary({id:e}){return e==null?void 0:e.is_binary()}is_square({id:e}){return e==null?void 0:e.is_square()}submatrix({id:e,from_row:t,to_row:r,from_column:o,to_column:n}){return e==null?void 0:e.submatrix({from_row:t,to_row:r,from_column:o,to_column:n})}swap_rows({id:e,row1:t,row2:r}){e==null||e.swap_rows({row1:t,row2:r})}transpose({id:e}){return e==null?void 0:e.transpose()}remove_col({id:e,column:t}){return e==null?void 0:e.remove_col({column:t})}remove_row({id:e,row:t}){return e==null?void 0:e.remove_row({row:t})}eigenvalues({id:e}){return e==null?void 0:e.eigenvalues()}is_diagonal({id:e}){return e==null?void 0:e.is_diagonal()}is_identity({id:e}){return e==null?void 0:e.is_identity()}eigenvectors({id:e}){return e==null?void 0:e.eigenvectors()}is_symmetric({id:e}){return e==null?void 0:e.is_symmetric()}swap_columns({id:e,column1:t,column2:r}){e==null||e.swap_columns({column1:t,column2:r})}is_stochastic({id:e}){return e==null?void 0:e.is_stochastic()}is_triangular({id:e}){return e==null?void 0:e.is_triangular()}elements_count({id:e}){return e==null?void 0:e.elements_count()}is_antidiagonal({id:e}){return e==null?void 0:e.is_antidiagonal()}is_antisymmetric({id:e}){return e==null?void 0:e.is_antisymmetric()}}class up{constructor(e=0,t=0,r=void 0,o,n){X(this,"_matrixInstance");X(this,"_errorListener");X(this,"_isNumber");X(this,"_thisType");this._isNumber=[C0.INT,C0.FLOAT].includes(n),r===void 0&&this._isNumber&&(r=NaN),this._thisType=n,this._matrixInstance=this._createMatrix(e,t,r),this._errorListener=o}get _matrixArray(){return this._matrixInstance.map(e=>[...e._value])}get _value(){return this._matrixInstance}set _value(e){this._matrixInstance=e}get isMatrix(){return!0}_createMatrix(e,t,r){return Array.from(new Array(e),()=>new M1(t,r,this._errorListener,this._thisType))}avg(){let e=0,t=0;for(const o of this._matrixInstance)for(const n of o._value)e+=l0(n)?0:n,t+=1;return e/t}col({column:e}){const t=[],r=new M1(0,void 0,this._errorListener,this._thisType);if(l0(e))return r;for(const o of this._matrixInstance)t.push(o._value[e]);return r._value=t,r}det(){return q3(this._matrixArray)}get({row:e,column:t}){var r,o;if(!(l0(e)||l0(t)))return(o=(r=this._matrixInstance[e])==null?void 0:r._value)==null?void 0:o[t]}inv(){const e=Po(this._matrixArray);return this._newMatrix(e)}max(){return c6(this._matrixArray)}min(){return ip(this._matrixArray)}pow({power:e}){const t=l0(e)?this._matrixArray:a6(this._matrixArray,e);return this._newMatrix(t)}row({row:e}){return l0(e)?new M1(0,void 0,this._errorListener,this._thisType):this._matrixInstance[e]}set({row:e,column:t,value:r}){l0(e)||l0(t)||(r===void 0&&this._isNumber&&(r=NaN),this._matrixInstance[e].set({index:t,value:r}))}sum({id2:e}){const t=dM(this._matrixArray,typeof e=="number"?e:e._matrixArray);return this._newMatrix(t)}copy(){return this._newMatrix(this._matrixArray)}diff({id2:e}){const t=o6(this._matrixArray,typeof e=="number"?e:e._matrixArray);return this._newMatrix(t)}rows(){return this._matrixInstance.length}columns(){return this._matrixArray.length&&this._matrixArray[0].length}fill({value:e,from_row:t,to_row:r,from_column:o,to_column:n}={}){l0(t)&&(t=0),l0(r)&&(r=this.rows()),l0(o)&&(o=0),l0(n)&&(n=this.columns());let b=t||0;for(;b<(r||0);){let z=this._matrixInstance[b];z||(z=new M1(0,e,this._errorListener,this._thisType),this._matrixInstance[b]=z),z.fill({value:e,index_from:o,index_to:n}),b++}}kron({id2:e}){const t=r6(this._matrixArray,e==null?void 0:e._matrixArray);return this._newMatrix(t)}mode(){return ip(s3(this._matrixArray))}mult({id2:e}){const t=typeof e=="number"?e:e!=null&&e._matrixArray?e._matrixArray:(e==null?void 0:e._value)||NaN,r=yr(this._matrixArray,t);if(e!=null&&e.isArray){const o=new M1(0,void 0,this._errorListener,this._thisType);return o._value=r,o}return this._newMatrix(r)}pinv(){const e=s6(this._matrixArray);return this._newMatrix(e)}rank(){return this._matrixRank(this._matrixArray)}sort({column:e,order:t=$e.ascending}={}){l0(e)&&(e=0),this._matrixInstance.sort((r,o)=>{const n=r._value[e],b=o._value[e];return t!==$e.descending?n-b:b-n})}trace(){return i6(this._matrixArray)}concat({id2:e}){for(const t of e._value)this._matrixInstance.push(t);return this}median(){return d3(this._matrixArray)}add_col({column:e,array_id:t}={}){l0(e)&&(e=this.columns());for(const[r,o]of this._matrixInstance.entries())o.insert({index:e,value:t?t._value[r]:void 0})}add_row({row:e,array_id:t}){l0(e)&&(e=this.rows()),this._matrixInstance.splice(e,0,t||new M1(this.columns(),void 0,this._errorListener,this._thisType))}is_zero(){return this._matrixArray.every(e=>e.every(t=>t===0))}reshape({rows:e=0,columns:t=0},r){if(e*t!==this.columns()*this.rows()){this._errorListener.addError(l1.matrixRehapeErr,r,j0.Error);return}const o=QW(this._matrixArray,[e,t]);this._matrixInstance=o.map(n=>{const b=new M1(0,void 0,this._errorListener,this._thisType);return b._value=[...n],b})}reverse(){this._matrixInstance.reverse();for(const e of this._matrixInstance)e.reverse()}is_binary(){return this._matrixArray.every(e=>e.every(t=>t===0||t===1))}is_square(){return this.rows()===this.columns()}submatrix({from_row:e,to_row:t,from_column:r,to_column:o}={}){l0(e)&&(e=0),l0(t)&&(t=this.rows()),l0(r)&&(r=0),l0(o)&&(o=this.columns());const n=this._matrixArray.splice(e,t),b=[];for(const z of n)b.push(z.splice(r,o));return this._newMatrix(b)}swap_rows({row1:e,row2:t}){if(l0(e)||l0(t))return;const r=this._matrixInstance[e],o=this._matrixInstance[t];this._matrixInstance[e]=o,this._matrixInstance[t]=r}transpose(){const e=O3(this._matrixArray);return this._newMatrix(e)}remove_col({column:e}={}){l0(e)&&(e=this.columns());const t=[];for(const o of this._matrixInstance){const n=o.remove({index:e});t.push(n)}const r=new M1(0,void 0,this._errorListener,this._thisType);return r._value=t,r}remove_row({row:e}={}){return l0(e)&&(e=this.rows()),this._matrixInstance.splice(e,1)[0]}eigenvalues(){const e=new D3(new X3(this._matrixArray)),t=new M1(0,void 0,this._errorListener,this._thisType);return t._value=e.realEigenvalues,t}is_diagonal(){const e=this.rows(),t=this.columns();if(e!==t)return!1;const r=this._matrixArray;for(let o=0;o<e;o++)for(let n=0;n<t;n++)if(o!==n&&r[o][n]!==0)return!1;return!0}is_identity(){const e=this.rows(),t=this.columns();if(e!==t)return!1;const r=this._matrixArray;for(let o=0;o<e;o++)for(let n=0;n<t;n++)if(o!==n&&r[o][n]!==0||o===n&&r[o][n]!==1)return!1;return!0}eigenvectors(){const e=new D3(new X3(this._matrixArray));return this._newMatrix(e.eigenvectorMatrix.to2DArray())}is_symmetric(){const e=this.rows(),t=this.columns();if(e!==t)return!1;const r=this._matrixArray;for(let o=0;o<e;o++)for(let n=o+1;n<t;n++)if(r[o][n]!==r[n][o])return!1;return!0}swap_columns({column1:e,column2:t}){if(!(l0(e)||l0(t)))for(const r of this._matrixInstance){const o=r._value[e],n=r._value[t];r.set({index:e,value:n}),r.set({index:t,value:o})}}is_stochastic(){const e=this._matrixArray;for(let t=0;t<e.length;t++){let r=0;for(let o=0;o<e[t].length;o++){if(e[t][o]<0)return!1;r+=e[t][o]}if(Math.abs(r-1)>Number.EPSILON)return!1}return!0}is_triangular(){const e=this.rows(),t=this.columns();return e!==t?!1:this._isUpperTriangular(e)||this._isLowerTriangular(e)}elements_count(){return ZW(this._matrixArray)}is_antidiagonal(){const e=this.rows(),t=this.columns();if(e!==t)return!1;const r=this._matrixArray;for(let o=0;o<e;o++)for(let n=0;n<e;n++)if(o+n!==e-1&&r[o][n]!==0)return!1;return!0}is_antisymmetric(){const e=this.rows(),t=this.columns();if(e!==t)return!1;const r=this._matrixArray;for(let o=0;o<e;o++)for(let n=0;n<e;n++)if(o!==n&&r[o][n]!==-r[n][o])return!1;return!0}_isUpperTriangular(e){const t=this._matrixArray;for(let r=1;r<e;r++)for(let o=0;o<r;o++)if(t[r][o]!==0)return!1;return!0}_isLowerTriangular(e){const t=this._matrixArray;for(let r=0;r<e-1;r++)for(let o=r+1;o<e;o++)if(t[r][o]!==0)return!1;return!0}_newMatrix(e){const t=new up(0,0,void 0,this._errorListener,this._thisType);return t._value=e.map(r=>{const o=new M1(0,void 0,this._errorListener,this._thisType);return o._value=[...r],o}),t}_matrixRank(e){let t=0;const r=e.length,o=e[0].length,n=[...e].map(b=>[...b]);for(let b=0;b<r&&!(b>=o);b++){let z=b;for(;z<r&&n[z][b]===0;)z++;if(z===r)continue;if(z!==b){const s=n[z];n[z]=n[b],n[b]=s}const i=n[b][b];for(let s=0;s<o;s++)n[b][s]/=i;for(let s=b+1;s<r;s++){const O=n[s][b];n[s]=n[s].map((a,u)=>a-O*n[b][u]),n[s][b]=0}}for(let b=0;b<r;b++)n[b].some(z=>Number(z.toFixed(8))!==0)&&t++;return t}}class f_{constructor(e){X(this,"_variables");X(this,"_cacheData");this._variables=e,this._cacheData={}}change({timeframe:e},t){if(!e)return!0;const{time:r,__period:o,bar_index:n}=this._variables,b=N2(e,r),z=N2(o,r);if(b<z)return!0;const i=`change_${t}`,s=this._cacheData[i],O=this._variables.time;if((s==null?void 0:s.bar_index)===n)return s.result;if(s){if(s.offset){if(s.currentTime+s.offset<=O)return this._cacheData[i]={currentTime:O,offset:0,bar_index:n,result:!0},!0}else if(s.currentTime+b*1e3<=O)return this._cacheData[i]={currentTime:O,offset:0,bar_index:n,result:!0},!0}else{const a=this._calcTimeOffset(O,e);return this._cacheData[i]={currentTime:O,offset:a,bar_index:n,result:!1},!1}return!1}in_seconds({timeframe:e}={}){const{time:t,__period:r}=this._variables;return N2(e||r,t)}from_seconds({seconds:e=0}){const t=e*1e3,r=_1.duration(t);if(r.years())return"12M";const n=r.asMonths();if(Fo(n))return`${n}M`;const b=r.asWeeks();if(Fo(b))return`${b}W`;const z=r.asDays();if(z>=1)return`${Math.ceil(z)}D`;const i=r.asMinutes();if(i>=1)return`${Math.ceil(i)}`;const s=r.asSeconds();return s<=1?"1S":s<=5?"5S":s<=10?"10S":s<=15?"15S":s<=30?"30S":"1"}_calcTimeOffset(e,t){let r=0;if(t.includes("W")){const z=_1(e).day();t="1D",z!==1&&(r=(8-z)*60*60*24*1e3)}else if(t.includes("M")){const z=_1(e).date();t="1D";const i=_1(e).daysInMonth();z!==1&&(r=(i-z+1)*60*60*24*1e3)}const o=this._variables.getTimeTradingday(e,t),n=N2(t,e)*1e3,b=e-o-Math.floor((e-o)/n)*n;return r?r-b:b}}class l_{constructor(e,t){X(this,"_errorListener");X(this,"_intlNumberFormatter");X(this,"_precision");X(this,"_intlFormat");this._errorListener=e,this._precision=t,this._intlNumberFormatter=new Intl.NumberFormat("en",{notation:"compact",maximumFractionDigits:3}),this._intlFormat=new Intl.NumberFormat("en-US")}pos({source:e="",str:t=""}){return e==null?void 0:e.indexOf(t)}trim({source:e=""}){return e==null?void 0:e.trim()}lower({source:e=""}){return e==null?void 0:e.toLocaleLowerCase()}match({source:e="",regex:t=""}){const r=e==null?void 0:e.match(new RegExp(t));return r?r[0]:""}split({string:e="",separator:t=""}){const r=e==null?void 0:e.split(t),o=new M1;return o._value=r||[],o}upper({source:e=""}){return e==null?void 0:e.toLocaleUpperCase()}format({formatString:e=""},t){return this._strFormat(e,t)}length({string:e=""}){return e==null?void 0:e.length}repeat({source:e="",repeat:t,separator:r=""},o){if(l0(t)){this._errorListener.addError(l1.arrLenErr,o,j0.Error);return}return Array.from(new Array(t),()=>e).join(r)}replace({source:e="",target:t="",replacement:r="",occurrence:o}){l0(o)&&(o=0);let n=-1;for(let b=0;b<o+1&&(n=e.indexOf(t,n+1),n!==-1);b++);return n!==-1?e.substring(0,n)+r+e.substring(n+t.length):e}contains({source:e="",str:t=""}){return e==null?void 0:e.includes(t)}endswith({source:e="",str:t=""}){return e==null?void 0:e.endsWith(t)}tonumber({string:e=""}){if(/[^\d.]/.test(e))return;const t=parseFloat(e);return isNaN(t)?void 0:t}tostring({value:e,format:t}){if(e===void 0)return"NaN";if(typeof e=="object"){if(e.isArray)return this._arrToStr(e._value,t);if(e.isMatrix){const r=[];for(const o of e._matrixArray)r.push(this._arrToStr(o,t));return r.join(`
76
- `)}}if(typeof e=="string")return e;if(typeof e=="boolean")return String(e);if(typeof e=="number")return String(this._toStringFormat(e,t==null?void 0:t.replace(/0/g,"#")))}_arrToStr(e,t){return`[${e.map(o=>typeof o=="number"?this._toStringFormat(o,t):o).toString()}]`}substring({source:e="",begin_pos:t=0,end_pos:r}){return l0(t)&&(t=0),l0(r)&&(r=void 0),e==null?void 0:e.substring(t,r)}startswith({source:e="",str:t=""}){return e==null?void 0:e.startsWith(t)}format_time({time:e,format:t="yyyy-MM-dd'T'HH:mm:ssZ",timezone:r}){return l0(e)&&(e=0),ne(e,r).format(t)}replace_all({source:e="",target:t="",replacement:r=""}){return e==null?void 0:e.replace(new RegExp(t,"g"),r)}_toStringFormat(e,t){if(!t)return Number(e==null?void 0:e.toFixed(10));switch(t){case a1.mintick:return e==null?void 0:e.toFixed(this._precision);case a1.percent:return`${Number(e.toFixed(2))}%`;case a1.volume:return this._intlNumberFormatter.format(Math.round(e));default:return this._formatOthers(e,t)}}_formatOthers(e,t){var z;if(l0(e))return NaN;let[r,o]=t.split(".");t.split("%").length===2&&(e=e*100);let[n,b=""]=String(e).split(".");if(r.includes("#")){if(r.includes(",")){const i=r.split(","),s=((z=i[i.length-1])==null?void 0:z.replace(/[^#]/g,"").length)||0;s&&(n=n.replace(new RegExp(`\\B(?=(\\d{${s}})+(?!\\d))`,"g"),",")),r=i.join("")}n=r.replace(/#/,n).replace(/#/g,"")}else n=`${r}${n}`;if(o&&o.includes("#")){const i=o.split("#").length-1,s=+`${n}.${b}`;if(!isNaN(s)){const O=`${s.toFixed(i)}${o.replace(/#/g,"")}`,a=Number(O);return isNaN(a)?O:a}b=`${b.substring(0,i)}${o.replace(/#/g,"")}`}else b=o||"";if(b){const i=+`${n}.${b}`;return isNaN(i)?`${n}.${b}`:i}else return n}_formatNumber(e,t){if(!t)return Number(e==null?void 0:e.toFixed(this._precision));switch(t){case"integer":return String(Math.round(e));case"currency":return`$${e}`;case"percent":return`${e*100}%`;default:return this._formatOthers(e,t)}}strformat({formatString:e=""},t,r){return this._strFormat(e,t,r)}_strFormat(e,t,r){return e.replace(/{[^{}]+}/g,o=>{if(!o)return o;const n=o.replace(/[{}]/g,"").split(","),b=Number(n[0]);if(isNaN(b)||t.length<=b)return o;const z=t[b];if(n.length===1)return typeof z=="number"?r?this._intlFormat.format(z):Number(z.toFixed(this._precision)):z===void 0?"":z;if(n.length===2){const i=n[1].trim();return i==="number"?r?this._intlFormat.format(z):Number(z.toFixed(this._precision)):i==="date"?_1(z).format("LL"):o}else{const i=n[1].trim(),s=n[2].trim();if(i==="number")return this._formatNumber(z,s);if(i==="date"){let O="YYYY-MM-DD";switch(s){case"long":O="LL";break;case"short":O="L";break;default:s&&(O=s)}return _1(z).format(O)}return o}})}}class q_{constructor(e){X(this,"_errorListener");this._errorListener=e}new(){return new Ap(this._errorListener)}copy({id:e}){return e==null?void 0:e.copy()}get({id:e,key:t}){return e==null?void 0:e.get({key:t})}put({id:e,key:t,value:r}){return e==null?void 0:e.put({key:t,value:r})}keys({id:e}){return e==null?void 0:e.keys()}size({id:e}){return e==null?void 0:e.size()}clear({id:e}){e==null||e.clear()}remove({id:e,key:t}){return e==null?void 0:e.remove({key:t})}values({id:e}){return e==null?void 0:e.values()}put_all({id:e,id2:t}){e==null||e.put_all({id2:t})}contains({id:e,key:t}){return e==null?void 0:e.contains({key:t})}}class Ap{constructor(e){X(this,"_errorListener");X(this,"_mapInstance");this._errorListener=e,this._mapInstance=new Map}get isMap(){return!0}get _value(){return this._mapInstance}_copyMap(e){const t=new Ap(this._errorListener);return t._mapInstance=new Map(e.entries()),t}copy(){return this._copyMap(this._mapInstance)}get({key:e}){return this._mapInstance.get(e)}put({key:e,value:t}){return this._mapInstance.set(e,t)}keys(){const e=new M1(0,void 0,this._errorListener);return e._value=[...this._mapInstance.keys()],e}size(){return this._mapInstance.size}clear(){this._mapInstance.clear()}remove({key:e}){const t=this._mapInstance.get(e);return this._mapInstance.delete(e),t||void 0}values(){const e=new M1(0,void 0,this._errorListener);return e._value=[...this._mapInstance.values()],e}put_all({id2:e}){this._mapInstance=new Map([...this._mapInstance,...e._mapInstance])}contains({key:e}){return this._mapInstance.has(e)}}class d_{constructor(e){X(this,"_variables");this._variables=e}new({price:e,time:t,index:r}){return new Er(e,r,t)}now({price:e}){const{time:t,bar_index:r}=this._variables;return new Er(e,r,t)}copy({id:e}){return e==null?void 0:e.copy()}from_index({price:e,index:t}){return new Er(e,t)}from_time({price:e,time:t}){return new Er(e,void 0,t)}}class Er{constructor(e,t,r){X(this,"_index");X(this,"_price");X(this,"_time");this._index=t&&Math.round(t),this._price=e,this._time=r}get index(){return this._index}set index(e){this._index=e&&Math.round(e)}get price(){return this._price}set price(e){this._price=e}get time(){return this._time}set time(e){this._time=e}copy(){return new Er(this._price,this._index,this._time)}}const h_=["point","text","xloc","yloc","color","style","textcolor","size","textalign","tooltip","text_font_family","force_overlay"],W_=["x","y","text","xloc","yloc","color","style","textcolor","size","textalign","tooltip","text_font_family","force_overlay"];class __{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultLabel",{text:"",xloc:y1.bar_index,yloc:te.price,size:f2.normal,style:E1.styleLabelDown,textalign:S0.alignCenter});this._variables=e,this._errorListener=t}new(e,t,r){B0(this._errorListener,"label.new",this._variables.__requestName,t);const{time:o,high:n,low:b,bar_index:z}=this._variables,i=`label_${t}_${z}`;e=this._parameterHandle(e,r),F1(e,["color","textcolor"]);const s={...this._defaultLabel,...e,id:i,time:o,high:n,low:b,bar_index:z};e.x&&(s.x=e.x&&Math.round(e.x)),e.point&&(s.x=s.xloc===y1.bar_index?e.point.index:e.point.time,s.y=e.point.price),s.yloc===te.abovebar?s.y=n:s.yloc===te.belowbar&&(s.y=b),this._verfiyArgs(e,t);const O=new Ko(i,this._variables,this._errorListener,s);return t.startsWith("export")||this._variables.label.add(i,s,O),O}_parameterHandle(e,t){const{x:r,y:o,point:n,...b}=e;if(typeof n=="object"||typeof r=="number"||typeof o=="number")return e;const z=b;if(t[0]===h_[0]&&(typeof n=="number"||this._preVerfiyArgs(e)))for(const[i,s]of t.entries()){const O=z[s];z[s]=void 0,z[W_[i]]=O}return z}_preVerfiyArgs(e){const{xloc:t,yloc:r,style:o,size:n,textalign:b,text_font_family:z}=e;return this._paramVerfiyHandle(o,Object.values(E1))||this._paramVerfiyHandle(t,Object.values(y1))||this._paramVerfiyHandle(r,Object.values(te))||this._paramVerfiyHandle(n,Object.values(f2))||this._paramVerfiyHandle(b,[S0.alignLeft,S0.alignCenter,S0.alignRight])||this._paramVerfiyHandle(z,Object.values(Ue))}_paramVerfiyHandle(e="",t){return e&&!t.includes(e)}_verfiyArgs(e,t){const{xloc:r,yloc:o,style:n,size:b,textalign:z,text_font_family:i}=e,s="label.new";this._paramVerfiy(n,t,s,Object.values(E1),"style"),this._paramVerfiy(r,t,s,Object.values(y1),"xloc"),this._paramVerfiy(o,t,s,Object.values(te),"yloc"),this._paramVerfiy(b,t,s,Object.values(f2),"size"),this._paramVerfiy(z,t,s,[S0.alignLeft,S0.alignCenter,S0.alignRight],"textalign"),this._paramVerfiy(i,t,s,Object.values(Ue),"text_font_family")}_paramVerfiy(e="",t,r,o,n){this._paramVerfiyHandle(e,o)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}label(e){return e.x}copy({id:e},t){return e==null?void 0:e.copy(t)}get_x({id:e},t){return e==null?void 0:e.get_x(t)}get_y({id:e},t){return e==null?void 0:e.get_y(t)}set_x({id:e,...t},r){e==null||e.set_x(t,r)}set_y({id:e,...t},r){e==null||e.set_y(t,r)}delete({id:e},t){e==null||e.delete(t)}get_text({id:e},t){return e==null?void 0:e.get_text(t)}set_xy({id:e,...t},r){e==null||e.set_xy(t,r)}set_size({id:e,...t},r){e==null||e.set_size(t,r)}set_xloc({id:e,...t},r){e==null||e.set_xloc(t,r)}set_yloc({id:e,...t},r){e==null||e.set_yloc(t,r)}set_style({id:e,...t},r){e==null||e.set_style(t,r)}set_color({id:e,...t},r){e==null||e.set_color(t,r)}set_tooltip({id:e,...t},r){e==null||e.set_tooltip(t,r)}set_point({id:e,...t},r){e==null||e.set_point(t,r)}set_text({id:e,...t},r){e==null||e.set_text(t,r)}set_textcolor({id:e,...t},r){e==null||e.set_textcolor(t,r)}set_textalign({id:e,...t},r){e==null||e.set_textalign(t,r)}set_text_font_family({id:e,...t},r){e==null||e.set_text_font_family(t,r)}}class Ko{constructor(e,t,r,o){X(this,"_id");X(this,"_variables");X(this,"_errorListener");X(this,"_suffix","");X(this,"_preId","");X(this,"_data");this._id=e,this._variables=t,this._errorListener=r,this._data=o}get type(){return C0.LABEL}get id(){return this._id}get preId(){return this._preId}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}set data(e){this._data=e}get data(){return this._variables.label.get(this._id)||this._data}copy(e){B0(this._errorListener,"label.copy",this._variables.__requestName,e);const{bar_index:t}=this._variables,r=`label_${e}_${t}`,o=this._getLabel(e),n={...o||{},id:r,bar_index:t},b=new Ko(r,this._variables,this._errorListener,n);return o&&this._variables.label.add(r,n,b),b}get_x(e){var t;return B0(this._errorListener,"label.get_x",this._variables.__requestName,e),(t=this._getLabel(e))==null?void 0:t.x}get_y(e){var t;return B0(this._errorListener,"label.get_y",this._variables.__requestName,e),(t=this._getLabel(e))==null?void 0:t.y}set_x({x:e},t){B0(this._errorListener,"label.set_x",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.x=e&&Math.round(e))}set_y({y:e},t){B0(this._errorListener,"label.set_y",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.y=e)}delete(e){B0(this._errorListener,"label.delete",this._variables.__requestName,e),this._variables.label.delete(this._id,this._variables.bar_index,this._data.id)}set_xy({x:e,y:t},r){B0(this._errorListener,"label.set_xy",this._variables.__requestName,r);const o=this._getLabel(r);o&&(o.x=e&&Math.round(e),o.y=t)}get_text(e){var t;return B0(this._errorListener,"label.get_text",this._variables.__requestName,e),(t=this._getLabel(e))==null?void 0:t.text}set_size({size:e},t){B0(this._errorListener,"label.set_size",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.size=e),this._paramVerfiy(e,t,"label.set_size",Object.values(f2),"size")}set_text({text:e},t){B0(this._errorListener,"label.set_text",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.text=e)}set_xloc({x:e,xloc:t},r){B0(this._errorListener,"label.set_xloc",this._variables.__requestName,r);const o=this._getLabel(r);o&&(o.x=e&&Math.round(e),o.xloc=t,this._paramVerfiy(t,r,"label.set_xloc",Object.values(y1),"xloc"))}set_yloc({yloc:e},t){B0(this._errorListener,"label.set_yloc",this._variables.__requestName,t);const r=this._getLabel(t),{high:o,low:n}=this._variables;r&&(r.yloc=e,e===te.abovebar?r.y=o:e===te.belowbar&&(r.y=n),this._paramVerfiy(e,t,"label.set_yloc",Object.values(te),"yloc"))}set_color(e,t){B0(this._errorListener,"label.set_color",this._variables.__requestName,t);const r=this._getLabel(t);F1(e,["color"]),r&&(r.color=e.color)}set_point({point:e},t){B0(this._errorListener,"label.set_point",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.x=r.xloc===y1.bar_index?e==null?void 0:e.index:e==null?void 0:e.time,r.y=e==null?void 0:e.price)}set_style({style:e},t){B0(this._errorListener,"label.set_style",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.style=e),this._paramVerfiy(e,t,"label.set_style",Object.values(E1),"style")}set_tooltip({tooltip:e},t){B0(this._errorListener,"label.set_tooltip",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.tooltip=e)}set_textalign({textalign:e},t){B0(this._errorListener,"label.set_textalign",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.textalign=e),this._paramVerfiy(e,t,"label.set_textalign",[S0.alignLeft,S0.alignCenter,S0.alignRight],"textalign")}set_textcolor(e,t){B0(this._errorListener,"label.set_textcolor",this._variables.__requestName,t);const r=this._getLabel(t);F1(e,["textcolor"]),r&&(r.textcolor=e.textcolor)}set_text_font_family({text_font_family:e},t){B0(this._errorListener,"label.set_text_font_family",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.text_font_family=e),this._paramVerfiy(e,t,"label.set_text_font_family",Object.values(Ue),"text_font_family")}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_getLabel(e){const t=this._variables.label.get(this._id)||this._data;return t||console.log(`错误${e}: label 不存在`),t}}const m_={freq_all:le.freqAll,freq_once_per_bar:le.freqOncePerBar,freq_once_per_bar_close:le.freqOncePerBarClose},g_={gaps_off:Pe.gapsOff,gaps_on:Pe.gapsOn,lookahead_off:Pe.lookaheadOff,lookahead_on:Pe.lookaheadOn},Tr={aqua:"#00BCD4",black:"#363A45",blue:"#2962ff",fuchsia:"#E040FB",gray:"#787B86",green:"#4CAF50",lime:"#00E676",maroon:"#880E4F",navy:"#311B92",olive:"#808000",orange:"#FF9800",purple:"#9C27B0",red:"#FF5252",silver:"#B2B5BE",teal:"#00897B",white:"#FFFFFF",yellow:"#FFEB3B"},E3={AUD:"AUD",BTC:"BTC",CAD:"CAD",CHF:"CHF",ETH:"ETH",EUR:"EUR",GBP:"GBP",HKD:"HKD",INR:"INR",JPY:"JPY",KRW:"KRW",MYR:"MYR",NOK:"NOK",NONE:"NONE",NZD:"NZD",RUB:"RUB",SEK:"SEK",SGD:"SGD",TRY:"TRY",USD:"USD",USDT:"USDT",ZAR:"ZAR"},R_={friday:6,monday:2,saturday:7,sunday:1,thursday:5,tuesday:3,wednesday:4},T3={all:[A2.dataWindow,A2.pane,A2.priceScale,A2.statusLine],data_window:[A2.dataWindow],none:[],pane:[A2.pane],price_scale:[A2.priceScale],status_line:[A2.statusLine]},L_={both:P2.both,left:P2.left,none:P2.none,right:P2.right},v_={inherit:a1.inherit,mintick:a1.mintick,percent:a1.percent,price:a1.price,volume:a1.volume},N_={style_solid:kM.styleSolid,style_dashed:kM.styleDashed,style_dotted:kM.styleDotted},y_={style_arrowdown:E1.styleArrowdown,style_arrowup:E1.styleArrowup,style_circle:E1.styleCircle,style_cross:E1.styleCross,style_diamond:E1.styleDiamond,style_flag:E1.styleFlag,style_label_center:E1.styleLabelCenter,style_label_down:E1.styleLabelDown,style_label_left:E1.styleLabelLeft,style_label_lower_left:E1.styleLabelLowerLeft,style_label_lower_right:E1.styleLabelLowerRight,style_label_right:E1.styleLabelRight,style_label_up:E1.styleLabelUp,style_label_upper_left:E1.styleLabelUpperLeft,style_label_upper_right:E1.styleLabelUpperRight,style_none:E1.styleNone,style_square:E1.styleSquare,style_text_outline:E1.styleTextOutline,style_triangledown:E1.styleTriangledown,style_triangleup:E1.styleTriangleup,style_xcross:E1.styleXcross},B_={style_arrow_both:H1.styleArrowBoth,style_arrow_left:H1.styleArrowLeft,style_arrow_right:H1.styleArrowRight,style_dashed:H1.styleDashed,style_dotted:H1.styleDotted,style_solid:H1.styleSolid},w_={abovebar:ke.abovebar,absolute:ke.absolute,belowbar:ke.belowbar,bottom:ke.bottom,top:ke.top},D_={e:2.718281828459045,phi:1.618033988749895,pi:3.141592653589793,rphi:.6180339887498948},X_={style_area:ee.styleArea,style_areabr:ee.styleAreabr,style_circles:ee.styleCircles,style_columns:ee.styleColumns,style_cross:ee.styleCross,style_histogram:ee.styleHistogram,style_line:ee.styleLine,style_linebr:ee.styleLinebr,style_stepline:ee.styleStepline,style_stepline_diamond:ee.styleSteplineDiamond,style_steplinebr:ee.styleSteplinebr},E_={bottom_center:k2.bottomCenter,bottom_left:k2.bottomLeft,bottom_right:k2.bottomRight,middle_center:k2.middleCenter,middle_left:k2.middleLeft,middle_right:k2.middleRight,top_center:k2.topCenter,top_left:k2.topLeft,top_right:k2.topRight},T_={left:$M.left,none:$M.none,right:$M.right},C_={arrowdown:X2.arrowdown,arrowup:X2.arrowup,circle:X2.circle,cross:X2.cross,diamond:X2.diamond,flag:X2.flag,labeldown:X2.labeldown,labelup:X2.labelup,square:X2.square,triangledown:X2.triangledown,triangleup:X2.triangleup,xcross:X2.xcross},x_={auto:f2.auto,huge:f2.huge,large:f2.large,normal:f2.normal,small:f2.small,tiny:f2.tiny},S_={cash:b2.cash,fixed:b2.fixed,percent_of_equity:b2.percentOfEquity,commission:{cash_per_contract:a2.cashPerContract,cash_per_order:a2.cashPerOrder,percent:a2.percent},direction:{all:i1.all,long:i1.long,short:i1.short},oca:{cancel:je.cancel,none:je.none,reduce:je.reduce}},F_={align_bottom:S0.alignBottom,align_center:S0.alignCenter,align_left:S0.alignLeft,align_right:S0.alignRight,align_top:S0.alignTop,wrap_auto:S0.wrapAuto,wrap_none:S0.wrapNone},I_={bar_index:y1.bar_index,bar_time:y1.bar_time},P_={abovebar:te.abovebar,belowbar:te.belowbar,price:te.price},k_={actual:UM.actual,estimate:UM.estimate,standardized:UM.standardized};class fp{constructor(){X(this,"adjustment",{dividends:PM.dividends,none:PM.none,splits:PM.splits});X(this,"alert",m_);X(this,"barmerge",g_);X(this,"color",Tr);X(this,"currency",E3);X(this,"dayofweek",R_);X(this,"earnings",k_);X(this,"display",T3);X(this,"extend",L_);X(this,"font",{family_default:Ue.familyDefault,family_monospace:Ue.familyMonospace});X(this,"format",v_);X(this,"hline",N_);X(this,"label",y_);X(this,"line",B_);X(this,"location",w_);X(this,"math",D_);X(this,"order",{ascending:$e.ascending,descending:$e.descending});X(this,"plot",X_);X(this,"position",E_);X(this,"scale",T_);X(this,"session",{extended:At.extended,regular:At.regular});X(this,"shape",C_);X(this,"size",x_);X(this,"splits",{denominator:"denominator",numerator:"numerator"});X(this,"strategy",S_);X(this,"text",F_);X(this,"xloc",I_);X(this,"yloc",P_)}updateData(){}}class $_{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultPolyline",{curved:!1,closed:!1,xloc:y1.bar_index,line_color:Tr.blue,line_style:H1.styleSolid,line_width:1});this._variables=e,this._errorListener=t}new(e,t){var z;B0(this._errorListener,"polyline.new",this._variables.__requestName,t);const{bar_index:r}=this._variables,o=`polyline_${t}_${r}`,n=Object.assign({},this._defaultPolyline,e,{id:o,bar_index:r,points:(z=e.points)==null?void 0:z._value.map(i=>({time:i.time,index:i.index,price:i.price}))});F1(n,["line_color","fill_color"]);const b=new C3(o,this._variables,n);return this._verfiyArgs(e,t),t.startsWith("export")||this._variables.polyline.add(o,n,b),b}_verfiyArgs(e,t){const{line_style:r,xloc:o}=e,n="polyline.new";this._paramVerfiy(r,t,n,Object.values(H1),"line_style"),this._paramVerfiy(o,t,n,Object.values(y1),"xloc")}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}delete({id:e}){e&&e.delete()}}class C3{constructor(e,t,r){X(this,"_id");X(this,"_variables");X(this,"_suffix");X(this,"_preId","");X(this,"_data");this._variables=t,this._id=e,this._data=r}get type(){return C0.POLYLINE}get id(){return this._id}get preId(){return this._preId}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}set data(e){this._data=e}get data(){return this._variables.polyline.get(this._id)||this._data}delete(){this._variables.polyline.delete(this._id,this._variables.bar_index,this._data.id)}}const U_=["first_point","second_point","xloc","extend","color","style","width","force_overlay"],j_=["x1","y1","x2","y2","xloc","extend","color","style","width","force_overlay"];class H_{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultLine",{xloc:y1.bar_index,extend:P2.none,style:H1.styleSolid});this._variables=e,this._errorListener=t}new(e,t,r){B0(this._errorListener,"line.new",this._variables.__requestName,t);const{bar_index:o}=this._variables,n=`line_${t}_${o}`;e=this._parameterHandle(e,r);const{first_point:b,second_point:z,...i}=e;F1(i,["color"]);const s={...this._defaultLine,...i,id:n,bar_index:o},{x1:O,x2:a}=s;if(O&&(s.x1=O&&Math.round(O)),a&&(s.x2=a&&Math.round(a)),b&&z){const l=s.xloc===y1.bar_index?b==null?void 0:b.index:b==null?void 0:b.time,d=s.xloc===y1.bar_index?z==null?void 0:z.index:z==null?void 0:z.time;Object.assign(s,{x1:l,y1:b==null?void 0:b.price,x2:d,y2:z==null?void 0:z.price})}this._verfiyArgs(i,t);const u=new Jo(n,this._variables,this._errorListener,s);return t.startsWith("export")||this._variables.line.add(n,s,u),u}_parameterHandle(e,t){const{x1:r,y1:o,x2:n,y2:b,first_point:z,second_point:i,...s}=e;if(typeof z=="object"||typeof i=="object"||typeof r=="number"||typeof o=="number"||typeof n=="number"||typeof b=="number")return e;const O=s;if(t[0]===j_[0]&&(typeof r=="object"||typeof o=="object"||typeof n=="string"||typeof b=="string"||this._preVerfiyArgs(e)))for(const[a,u]of t.entries()){const l=O[u];O[u]=void 0,O[U_[a]]=l}return O}_preVerfiyArgs(e){const{extend:t,xloc:r,style:o}=e;return this._paramVerfiyHandle(o,Object.values(H1))||this._paramVerfiyHandle(r,Object.values(y1))||this._paramVerfiyHandle(t,Object.values(P2))}_paramVerfiyHandle(e="",t){return e&&!t.includes(e)}_verfiyArgs(e,t){const{extend:r,xloc:o,style:n}=e,b="line.new";this._paramVerfiy(n,t,b,Object.values(H1),"style"),this._paramVerfiy(r,t,b,Object.values(P2),"extend"),this._paramVerfiy(o,t,b,Object.values(y1),"xloc")}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}line(e){return e.x}copy({id:e},t){return e==null?void 0:e.copy(t)}delete({id:e},t){e==null||e.delete(t)}get_x1({id:e},t){return e==null?void 0:e.get_x1(t)}get_x2({id:e},t){return e==null?void 0:e.get_x2(t)}get_y1({id:e},t){return e==null?void 0:e.get_y1(t)}get_y2({id:e},t){return e==null?void 0:e.get_y2(t)}set_x1({id:e,...t},r){e==null||e.set_x1(t,r)}set_x2({id:e,...t},r){e==null||e.set_x2(t,r)}set_y1({id:e,...t},r){e==null||e.set_y1(t,r)}set_y2({id:e,...t},r){e==null||e.set_y2(t,r)}set_xy1({id:e,...t},r){e==null||e.set_xy1(t,r)}set_xy2({id:e,...t},r){e==null||e.set_xy2(t,r)}set_xloc({id:e,...t},r){e==null||e.set_xloc(t,r)}get_price({id:e,...t},r){return e==null?void 0:e.get_price(t,r)}set_color({id:e,...t},r){e==null||e.set_color(t,r)}set_style({id:e,...t},r){e==null||e.set_style(t,r)}set_width({id:e,...t},r){e==null||e.set_width(t,r)}set_extend({id:e,...t},r){e==null||e.set_extend(t,r)}set_first_point({id:e,...t},r){e==null||e.set_first_point(t,r)}set_second_point({id:e,...t},r){e==null||e.set_second_point(t,r)}}class Jo{constructor(e,t,r,o){X(this,"_variables");X(this,"_id");X(this,"_suffix","");X(this,"_errorListener");X(this,"_fillKeys",[]);X(this,"_preId","");X(this,"_data");this._id=e,this._variables=t,this._errorListener=r,this._data=o}get id(){return this._id}get __fillKeys(){return this._fillKeys}__setFillKeys(e){this._fillKeys.includes(e)||this._fillKeys.push(e)}__updateFillKeys(e,t){const r=this._fillKeys.findIndex(o=>o===e);r!==-1?this._fillKeys.splice(r,1,t):this._fillKeys.push(t)}get preId(){return this._preId}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}get type(){return C0.LINE}set data(e){this._data=e}get data(){return this._variables.line.get(this._id)||this._data}get originData(){return this._data}copy(e){const{bar_index:t}=this._variables,r=`line_${e}_${t}`,o=this._getLine(e,"copy"),n={...o,id:r,bar_index:t,isVar:void 0},b=new Jo(r,this._variables,this._errorListener,n);return o&&this._variables.line.add(r,n,b),b}delete(e){B0(this._errorListener,"line.delete",this._variables.__requestName,e);for(const t of this._fillKeys)this._variables.linefill.delete(t,this._variables.bar_index);this._variables.line.delete(this._id,this._variables.bar_index,this._data.id)}get_price({x:e},t){const r=this._getLine(t,"get_price");if(e===void 0)return e;if(r&&r.xloc===y1.bar_index){const{x1:o,y1:n,x2:b,y2:z}=r;return o===void 0||b===void 0||n===void 0||z===void 0?void 0:(z-n)/(b-o)*(e-o)+n}}get_x1(e){var t;return(t=this._getLine(e,"get_x1"))==null?void 0:t.x1}get_x2(e){var t;return(t=this._getLine(e,"get_x2"))==null?void 0:t.x2}get_y1(e){var t;return(t=this._getLine(e,"get_y1"))==null?void 0:t.y1}get_y2(e){var t;return(t=this._getLine(e,"get_y2"))==null?void 0:t.y2}set_x1({x:e},t){const r=this._getLine(t,"set_x1");r&&(r.x1=e&&Math.round(e))}set_x2({x:e},t){const r=this._getLine(t,"set_x2");r&&(r.x2=e&&Math.round(e))}set_y1({y:e},t){const r=this._getLine(t,"set_y1");r&&(r.y1=e)}set_y2({y:e},t){const r=this._getLine(t,"set_y2");r&&(r.y2=e)}set_xy1({x:e,y:t},r){const o=this._getLine(r,"set_xy1");o&&(o.x1=e&&Math.round(e),o.y1=t)}set_xy2({x:e,y:t},r){const o=this._getLine(r,"set_xy2");o&&(o.x2=e&&Math.round(e),o.y2=t)}set_xloc({xloc:e,x1:t,x2:r},o){const n=this._getLine(o,"set_xloc");n&&(n.xloc=e,n.x1=t&&Math.round(t),n.x2=r&&Math.round(r),this._paramVerfiy(e,o,"line.set_xloc",Object.values(y1),"xloc"))}set_color(e,t){const r=this._getLine(t,"set_color");r&&(F1(e,["color"]),r.color=e.color)}set_style({style:e},t){const r=this._getLine(t,"set_style");r&&(r.style=e,this._paramVerfiy(e,t,"line.set_style",Object.values(H1),"style"))}set_width({width:e},t){const r=this._getLine(t,"set_width");r&&(r.width=e)}set_extend({extend:e},t){const r=this._getLine(t,"set_extend");r&&(r.extend=e,this._paramVerfiy(e,t,"line.set_extend",Object.values(P2),"extend"))}set_first_point({point:e},t){const r=this._getLine(t,"set_first_point");if(r){const{index:o,time:n,price:b}=e||{},z=r.xloc===y1.bar_index?o:n,i=b;z&&(r.x1=z),i&&(r.y1=i)}}set_second_point({point:e},t){const r=this._getLine(t,"set_second_point");if(r){const{index:o,time:n,price:b}=e||{},z=r.xloc===y1.bar_index?o:n,i=b;z&&(r.x2=z),i&&(r.y2=i)}}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_getLine(e,t){B0(this._errorListener,`line.${t}`,this._variables.__requestName,e);const r=this._variables.line.get(this._id)||this._data;return r||console.log(`${e}: line 不存在`),r}}class Y_{constructor(e){X(this,"_variables");this._variables=e}new(e,t){const{line1:r,line2:o}=e,{bar_index:n}=this._variables,b=`linefill_${t}_${n}`,z=r==null?void 0:r.data,i=o==null?void 0:o.data;z&&(z.linefills=z.linefills||[],z.linefills.push(b)),i&&(i.linefills=i.linefills||[],i.linefills.push(b)),F1(e,["color"]),r==null||r.__setFillKeys(b),o==null||o.__setFillKeys(b);const s={line1:z,line2:i,color:e.color,id:b,bar_index:n},O=new x3(this._variables,b,s,r,o);return t.startsWith("export")||(z||i)&&this._variables.linefill.add(b,s,O),O}delete({id:e}){e==null||e.delete()}get_line1({id:e}){return e==null?void 0:e.get_line1()}get_line2({id:e}){return e==null?void 0:e.get_line2()}set_color({id:e,...t}){e==null||e.set_color(t)}}class x3{constructor(e,t,r,o,n){X(this,"_id");X(this,"_line1");X(this,"_line2");X(this,"_variables");X(this,"_suffix");X(this,"_preId","");X(this,"_data");this._variables=e,this._id=t,this._line1=o,this._line2=n,this._data=r}get type(){return C0.LINEFILL}get id(){return this._id}get preId(){return this._preId}updateId(){var o,n;const{bar_index:e,_isRealTimeBar:t}=this._variables,r=this._id;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const b=this._id.split("_");b.pop(),this._id=`${b.join("_")}_${e}`}return(o=this._line1)==null||o.__updateFillKeys(r,this._id),(n=this._line2)==null||n.__updateFillKeys(r,this._id),t||(this._preId=this._id),this._id}set data(e){this._data=e}get data(){return this._variables.linefill.get(this._id)||this._data}linefill(e){return e.x}delete(){var t,r;const e=this._variables.linefill.get(this._id);if(e){const{line1:o,line2:n}=e;o&&(o.linefills=(t=o.linefills)==null?void 0:t.filter(b=>b!==this._id)),n&&(n.linefills=(r=n.linefills)==null?void 0:r.filter(b=>b!==this._id))}this._line1=void 0,this._line2=void 0,this._variables.linefill.delete(this._id,this._variables.bar_index,this._data.id)}get_line1(){return this._line1}get_line2(){return this._line2}set_color(e){const t=this._variables.linefill.get(this._id);t&&(F1(e,["color"]),t.color=e.color)}}const G_=["top_left","bottom_right","border_color","border_width","border_style","extend","xloc","bgcolor","text","text_size","text_color","text_halign","text_valign","text_wrap","text_font_family","force_overlay"],V_=["left","top","right","bottom","border_color","border_width","border_style","extend","xloc","bgcolor","text","text_size","text_color","text_halign","text_valign","text_wrap","text_font_family","force_overlay"];class K_{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultBox",{border_color:Tr.blue,border_width:1,bgcolor:Tr.blue,xloc:y1.bar_index,extend:P2.none,style:H1.styleSolid,text:"",text_size:f2.auto,text_color:Tr.black,text_halign:S0.alignCenter,text_valign:S0.alignCenter,text_wrap:S0.wrapNone});this._variables=e,this._errorListener=t}box({x:e}){return e}new(e,t,r){B0(this._errorListener,"box.new",this._variables.__requestName,t);const{bar_index:o}=this._variables,n=`box_${t}_${o}`;e=this._parameterHandle(e,r);const{top_left:b,bottom_right:z,...i}=e,s={...this._defaultBox,...i,id:n,bar_index:o};F1(s,["border_color","bgcolor","text_color"]);const{left:O,right:a}=s;if(O&&(s.left=O&&Math.round(O)),a&&(s.right=a&&Math.round(a)),b){const{price:l,time:d,index:A}=b;s.top=l,s.left=s.xloc===y1.bar_index?A:d}if(z){const{price:l,time:d,index:A}=z;s.bottom=l,s.right=s.xloc===y1.bar_index?A:d}this._verfiyArgs(i,t);const u=new Qo(this._variables,n,this._errorListener,s);return t.startsWith("export")||this._variables.box.add(n,s,u),u}_parameterHandle(e,t){const{top_left:r,bottom_right:o,top:n,bottom:b,left:z,right:i,...s}=e;if(typeof r=="object"||typeof o=="object"||typeof n=="number"||typeof b=="number"||typeof z=="number"||typeof i=="number")return e;const O=s;if(t[0]===G_[0]&&(typeof r=="number"||typeof o=="number"||this._preVerfiyArgs(e)))for(const[a,u]of t.entries()){const l=O[u];O[u]=void 0,O[V_[a]]=l}return O}_preVerfiyArgs(e){const{border_style:t,extend:r,xloc:o,text_size:n,text_halign:b,text_valign:z,text_wrap:i,text_font_family:s}=e;return this._paramVerfiyHandle(t,[H1.styleDashed,H1.styleDotted,H1.styleSolid])||this._paramVerfiyHandle(r,Object.values(P2))||this._paramVerfiyHandle(o,Object.values(y1))||this._paramVerfiyHandle(n,Object.values(f2))||this._paramVerfiyHandle(b,[S0.alignLeft,S0.alignCenter,S0.alignRight])||this._paramVerfiyHandle(z,[S0.alignBottom,S0.alignCenter,S0.alignTop])||this._paramVerfiyHandle(i,[S0.wrapAuto,S0.wrapNone])||this._paramVerfiyHandle(s,Object.values(Ue))}_paramVerfiyHandle(e="",t){return e&&!t.includes(e)}_verfiyArgs(e,t){const{border_style:r,extend:o,xloc:n,text_size:b,text_halign:z,text_valign:i,text_wrap:s,text_font_family:O}=e,a="box.new";this._paramVerfiy(r,t,a,[H1.styleDashed,H1.styleDotted,H1.styleSolid],"border_style"),this._paramVerfiy(o,t,a,Object.values(P2),"extend"),this._paramVerfiy(n,t,a,Object.values(y1),"xloc"),this._paramVerfiy(b,t,a,Object.values(f2),"text_size"),this._paramVerfiy(z,t,a,[S0.alignLeft,S0.alignCenter,S0.alignRight],"text_halign"),this._paramVerfiy(i,t,a,[S0.alignBottom,S0.alignCenter,S0.alignTop],"text_valign"),this._paramVerfiy(s,t,a,[S0.wrapAuto,S0.wrapNone],"text_wrap"),this._paramVerfiy(O,t,a,Object.values(Ue),"text_font_family")}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}copy({id:e},t){return e==null?void 0:e.copy(t)}delete({id:e},t){e==null||e.delete(t)}get_top({id:e},t){return e==null?void 0:e.get_top(t)}get_bottom({id:e},t){return e==null?void 0:e.get_bottom(t)}get_left({id:e},t){return e==null?void 0:e.get_left(t)}get_right({id:e},t){return e==null?void 0:e.get_right(t)}set_top({id:e,...t},r){e==null||e.set_top(t,r)}set_bottom({id:e,...t},r){e==null||e.set_bottom(t,r)}set_text({id:e,...t},r){e==null||e.set_text(t,r)}set_left({id:e,...t},r){e==null||e.set_left(t,r)}set_right({id:e,...t},r){e==null||e.set_right(t,r)}set_extend({id:e,...t},r){e==null||e.set_extend(t,r)}set_bgcolor({id:e,...t},r){e==null||e.set_bgcolor(t,r)}set_border_color({id:e,...t},r){e==null||e.set_border_color(t,r)}set_border_width({id:e,...t},r){e==null||e.set_border_width(t,r)}set_border_style({id:e,...t},r){e==null||e.set_border_style(t,r)}set_lefttop({id:e,...t},r){e==null||e.set_lefttop(t,r)}set_rightbottom({id:e,...t},r){e==null||e.set_rightbottom(t,r)}set_text_size({id:e,...t},r){e==null||e.set_text_size(t,r)}set_text_wrap({id:e,...t},r){e==null||e.set_text_wrap(t,r)}set_text_color({id:e,...t},r){e==null||e.set_text_color(t,r)}set_text_halign({id:e,...t},r){e==null||e.set_text_halign(t,r)}set_text_valign({id:e,...t},r){e==null||e.set_text_valign(t,r)}set_top_left_point({id:e,...t},r){e==null||e.set_top_left_point(t,r)}set_bottom_right_point({id:e,...t},r){e==null||e.set_bottom_right_point(t,r)}set_text_font_family({id:e,...t},r){e==null||e.set_text_font_family(t,r)}}class Qo{constructor(e,t,r,o){X(this,"_id");X(this,"_variables");X(this,"_errorListener");X(this,"_suffix","");X(this,"_preId","");X(this,"_data");this._variables=e,this._id=t,this._errorListener=r,this._data=o}get type(){return C0.BOX}get id(){return this._id}get preId(){return this._preId}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}set data(e){this._data=e}get data(){return this._variables.box.get(this._id)||this._data}copy(e){B0(this._errorListener,"box.copy",this._variables.__requestName,e);const{bar_index:t}=this._variables,r=`box_${e}_${t}`,o=this._getBox(),n={...o,id:r,bar_index:t},b=new Qo(this._variables,r,this._errorListener,n);return o&&this._variables.box.add(r,n,b),b}delete(e){B0(this._errorListener,"box.delete",this._variables.__requestName,e),this._variables.box.delete(this._id,this._variables.bar_index,this._data.id)}get_top(e){B0(this._errorListener,"box.get_top",this._variables.__requestName,e);const t=this._getBox();return t&&t.top}set_top({top:e},t){B0(this._errorListener,"box.set_top",this._variables.__requestName,t);const r=this._getBox();r&&(r.top=e)}get_left(e){B0(this._errorListener,"box.get_left",this._variables.__requestName,e);const t=this._getBox();return t&&t.left}set_left({left:e},t){B0(this._errorListener,"box.set_left",this._variables.__requestName,t);const r=this._getBox();r&&(r.left=e&&Math.round(e))}set_text({text:e},t){B0(this._errorListener,"box.set_text",this._variables.__requestName,t);const r=this._getBox();r&&(r.text=e)}get_right(e){B0(this._errorListener,"box.get_right",this._variables.__requestName,e);const t=this._getBox();return t&&t.right}set_right({right:e},t){B0(this._errorListener,"box.set_right",this._variables.__requestName,t);const r=this._getBox();r&&(r.right=e&&Math.round(e))}get_bottom(e){B0(this._errorListener,"box.get_bottom",this._variables.__requestName,e);const t=this._getBox();return t&&t.bottom}set_bottom({bottom:e},t){B0(this._errorListener,"box.set_bottom",this._variables.__requestName,t);const r=this._getBox();r&&(r.bottom=e)}set_extend({extend:e},t){B0(this._errorListener,"box.set_extend",this._variables.__requestName,t);const r=this._getBox();r&&(r.extend=e,this._paramVerfiy(e,t,"box.set_extend",Object.values(P2),"extend"))}set_bgcolor({color:e},t){B0(this._errorListener,"box.set_bgcolor",this._variables.__requestName,t);const r=this._getBox();r&&(r.bgcolor=e,F1(r,["bgcolor"]))}set_lefttop({left:e,top:t},r){B0(this._errorListener,"box.set_lefttop",this._variables.__requestName,r);const o=this._getBox();o&&(o.left=e&&Math.round(e),o.top=t)}set_text_size({text_size:e},t){B0(this._errorListener,"box.set_text_size",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_size=e,this._paramVerfiy(e,t,"box.set_text_size",Object.values(f2),"text_size"))}set_text_wrap({text_wrap:e},t){B0(this._errorListener,"box.set_text_wrap",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_wrap=e,this._paramVerfiy(e,t,"box.set_text_wrap",[S0.wrapAuto,S0.wrapNone],"text_wrap"))}set_text_color({text_color:e},t){B0(this._errorListener,"box.set_text_color",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_color=e,F1(r,["text_color"]))}set_rightbottom({right:e,bottom:t},r){B0(this._errorListener,"box.set_rightbottom",this._variables.__requestName,r);const o=this._getBox();o&&(o.right=e&&Math.round(e),o.bottom=t)}set_text_halign({text_halign:e},t){B0(this._errorListener,"box.set_text_halign",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_halign=e,this._paramVerfiy(e,t,"box.set_text_halign",[S0.alignLeft,S0.alignCenter,S0.alignRight],"text_halign"))}set_text_valign({text_valign:e},t){B0(this._errorListener,"box.set_text_valign",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_valign=e,this._paramVerfiy(e,t,"box.set_text_valign",[S0.alignBottom,S0.alignCenter,S0.alignTop],"text_valign"))}set_top_left_point({point:e},t){B0(this._errorListener,"box.set_top_left_point",this._variables.__requestName,t);const r=this._getBox();if(r){const{index:o,price:n,time:b}=e||{};r.top=n,r.left=r.xloc===y1.bar_index?o:b}}set_border_color({color:e},t){B0(this._errorListener,"box.set_border_color",this._variables.__requestName,t);const r=this._getBox();r&&(r.border_color=e,F1(r,["border_color"]))}set_border_style({style:e},t){B0(this._errorListener,"box.set_border_style",this._variables.__requestName,t);const r=this._getBox();r&&(r.border_style=e,this._paramVerfiy(e,t,"box.set_border_style",[H1.styleDashed,H1.styleDotted,H1.styleSolid],"style"))}set_border_width({width:e},t){B0(this._errorListener,"box.set_border_width",this._variables.__requestName,t);const r=this._getBox();r&&(r.border_width=e)}set_bottom_right_point({point:e},t){B0(this._errorListener,"box.set_bottom_right_point",this._variables.__requestName,t);const r=this._getBox();if(r){const{index:o,price:n,time:b}=e||{};r.bottom=n,r.right=r.xloc===y1.bar_index?o:b}}set_text_font_family({text_font_family:e},t){B0(this._errorListener,"box.set_text_font_family",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_font_family=e,this._paramVerfiy(e,t,"box.set_text_font_family",Object.values(Ue),"text_font_family"))}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_getBox(){return this._variables.box.get(this._id)||this._data}}class J_{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultTable",{position:k2.topLeft,columns:0,rows:0,frame_width:0,border_width:0});this._variables=e,this._errorListener=t}table({x:e}){return e}new(e,t){B0(this._errorListener,"table.new",this._variables.__requestName,t);const{bar_index:r}=this._variables,o=`table_${t}_${r}`,{rows:n}=e;F1(e,["text_color","bgcolor","border_color"]);const b=Array.from(Array(n),()=>[]),z=t.split("_"),i=z.pop(),s=z.pop(),O={...this._defaultTable,...e,cell:b,id:o,bar_index:r,line:s,col:i},a=new S3(this._variables,o,this._errorListener,O);return this._paramVerfiy(e.position,t,"table.new",Object.values(k2),"position"),t.startsWith("export")||this._variables.table.add(o,O,a),a}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}cell({table_id:e,...t},r){e==null||e.cell(t,r)}cell_set_bgcolor({table_id:e,...t},r){e==null||e.cell_set_bgcolor(t,r)}cell_set_height({table_id:e,...t},r){e==null||e.cell_set_height(t,r)}cell_set_text({table_id:e,...t},r){e==null||e.cell_set_text(t,r)}cell_set_text_color({table_id:e,...t},r){e==null||e.cell_set_text_color(t,r)}cell_set_text_font_family({table_id:e,...t},r){e==null||e.cell_set_text_font_family(t,r)}cell_set_text_halign({table_id:e,...t},r){e==null||e.cell_set_text_halign(t,r)}cell_set_text_valign({table_id:e,...t},r){e==null||e.cell_set_text_valign(t,r)}cell_set_text_size({table_id:e,...t},r){e==null||e.cell_set_text_size(t,r)}cell_set_tooltip({table_id:e,...t},r){e==null||e.cell_set_tooltip(t,r)}cell_set_width({table_id:e,...t},r){e==null||e.cell_set_width(t,r)}clear({table_id:e,...t},r){e==null||e.clear(t,r)}delete({table_id:e},t){e==null||e.delete(t)}merge_cells({table_id:e,...t},r){e==null||e.merge_cells(t,r)}set_bgcolor({table_id:e,...t},r){e==null||e.set_bgcolor(t,r)}set_border_color({table_id:e,...t},r){e==null||e.set_border_color(t,r)}set_border_width({table_id:e,...t},r){e==null||e.set_border_width(t,r)}set_frame_color({table_id:e,...t},r){e==null||e.set_frame_color(t,r)}set_frame_width({table_id:e,...t},r){e==null||e.set_frame_width(t,r)}set_position({table_id:e,...t},r){e==null||e.set_position(t,r)}}class S3{constructor(e,t,r,o){X(this,"_id");X(this,"_variables");X(this,"_errorListener");X(this,"_suffix","");X(this,"_preId","");X(this,"_defaultCell",{column:0,row:0,text:"",text_color:Tr.black,text_halign:S0.alignCenter,text_valign:S0.alignCenter,text_size:f2.normal});X(this,"_data");this._variables=e,this._id=t,this._errorListener=r,this._data=o}get type(){return C0.TABLE}get id(){return this._id}get preId(){return this._preId}set data(e){this._data=e}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}get data(){return this._variables.table.get(this._id)||this._data}cell(e,t){this._verfiyRequestFunc(t,"cell");const r={...this._defaultCell,...e},{column:o=0,row:n=0}=r,b=this._getTable();if(b){const z=b.cell||[],i=z[n]||[];i[o]=r,z[n]=i,b.cell=z}}cell_set_bgcolor({column:e=0,row:t=0,bgcolor:r},o){this._verfiyRequestFunc(o,"cell_set_bgcolor");const n=this._getTableItem(e,t);n&&(n.bgcolor=r)}cell_set_height({column:e=0,row:t=0,height:r},o){this._verfiyRequestFunc(o,"cell_set_height");const n=this._getTableItem(e,t);n&&(n.height=r)}cell_set_text({column:e=0,row:t=0,text:r},o){this._verfiyRequestFunc(o,"cell_set_text");const n=this._getTableItem(e,t);n&&(n.text=r)}cell_set_text_color({column:e=0,row:t=0,text_color:r},o){this._verfiyRequestFunc(o,"cell_set_text_color");const n=this._getTableItem(e,t);n&&(n.text_color=r,F1(n,["text_color"]))}cell_set_text_font_family({column:e=0,row:t=0,text_font_family:r},o){this._verfiyRequestFunc(o,"cell_set_text_font_family");const n=this._getTableItem(e,t);n&&(n.text_font_family=r)}cell_set_text_halign({column:e=0,row:t=0,text_halign:r},o){this._verfiyRequestFunc(o,"cell_set_text_halign");const n=this._getTableItem(e,t);n&&(n.text_halign=r)}cell_set_text_valign({column:e=0,row:t=0,text_valign:r},o){this._verfiyRequestFunc(o,"cell_set_text_valign");const n=this._getTableItem(e,t);n&&(n.text_valign=r)}cell_set_text_size({column:e=0,row:t=0,text_size:r},o){this._verfiyRequestFunc(o,"cell_set_text_size");const n=this._getTableItem(e,t);n&&(n.text_size=r)}cell_set_tooltip({column:e=0,row:t=0,tooltip:r},o){this._verfiyRequestFunc(o,"cell_set_tooltip");const n=this._getTableItem(e,t);n&&(n.tooltip=r)}cell_set_width({column:e=0,row:t=0,width:r},o){this._verfiyRequestFunc(o,"cell_set_width");const n=this._getTableItem(e,t);n&&(n.width=r)}clear({start_column:e=0,start_row:t=0,end_column:r=0,end_row:o=0},n){this._verfiyRequestFunc(n,"clear");const b=this._getTable();if(b){const z=b.cell;if(z)for(let i=t;i<=o;i++)for(let s=e;s<=r;s++){const O=z[i];O&&(O[s]=void 0)}}}delete(e){this._verfiyRequestFunc(e,"delete"),this._variables.table.delete(this._id,this._variables.bar_index,this._data.id)}merge_cells({start_column:e=0,start_row:t=0,end_column:r=0,end_row:o=0},n){if(this._verfiyRequestFunc(n,"merge_cells"),e>r||t>o){this._errorListener.addError(l1.mergeCellErr,n,j0.Error);return}const b=this._getTable();if(!b)return;const z=b.merge_cells||[];z.push({start_column:e,start_row:t,end_column:r,end_row:o}),b.merge_cells=z}set_bgcolor({bgcolor:e},t){this._verfiyRequestFunc(t,"set_bgcolor");const r=this._getTable();r&&(r.bgcolor=e,F1(r,["bgcolor"]))}set_border_color({border_color:e},t){this._verfiyRequestFunc(t,"set_border_color");const r=this._getTable();r&&(r.border_color=e,F1(r,["border_color"]))}set_border_width({border_width:e},t){this._verfiyRequestFunc(t,"set_border_width");const r=this._getTable();r&&(r.border_width=e)}set_frame_color({frame_color:e},t){this._verfiyRequestFunc(t,"set_frame_color");const r=this._getTable();r&&(r.frame_color=e)}set_frame_width({frame_width:e},t){this._verfiyRequestFunc(t,"set_frame_width");const r=this._getTable();r&&(r.frame_width=e)}set_position({position:e},t){this._verfiyRequestFunc(t,"set_position");const r=this._getTable();r&&(r.position=e,this._paramVerfiy(e,t,"table.set_position",Object.values(k2),"position"))}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_getTableItem(e,t){const r=this._getTable();if(r){const o=r.cell;return o?o[t][e]:void 0}}_getTable(){return this._variables.table.get(this._id)||this._data}_verfiyRequestFunc(e,t){B0(this._errorListener,`table.${t}`,this._variables.__requestName,e)}}class Q_{constructor(e){X(this,"_strategy");this._strategy=e}commission({trade_num:e},t){return this._verifyTradeNum(e,t)&&this._strategy.historyOrders[e].commission||0}entry_bar_index({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].in_index}entry_comment({trade_num:e},t){if(!this._verifyTradeNum(e,t))return"";const{comment:r,id:o}=this._strategy.historyOrders[e];return r||o}entry_id({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].id:""}entry_price({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].in_price}entry_time({trade_num:e},t){if(!this._verifyTradeNum(e,t))return;const{in_time:r,entry_time:o}=this._strategy.historyOrders[e];return o||r}exit_bar_index({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].out_index}exit_comment({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].out_comment:""}exit_id({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].out_id:""}exit_price({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].out_price}exit_time({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].out_time}max_drawdown({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].trading_loss:0}max_drawdown_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].trading_loss_percent:0}max_runup({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].max_profit:0}max_runup_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].max_profit_percent:0}profit({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].profit:0}profit_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].profit_percent:0}size({trade_num:e},t){if(!this._verifyTradeNum(e,t))return 0;const{out_qty:r=0,direction:o}=this._strategy.historyOrders[e];return o===i1.long?r:-r}_verifyTradeNum(e,t){if(this._strategy._verfiyRequestFunc(t,"strategy.closedtrades.*"),typeof e!="number"||e<0)return!1;const r=this._strategy.historyOrders.length;return!(e>=r)}}class Z_{constructor(e){X(this,"_strategy");this._strategy=e}commission({trade_num:e},t){if(!this._verifyTradeNum(e,t))return 0;const{qty:r=0,original_qty:o=0,commission:n=0}=this._strategy.orders[e];return n*r/o}entry_bar_index({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.orders[e].in_index}entry_comment({trade_num:e},t){if(!this._verifyTradeNum(e,t))return"";const{comment:r,id:o}=this._strategy.orders[e];return r||o}entry_id({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].id:""}entry_price({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.orders[e].in_price}entry_time({trade_num:e},t){if(!this._verifyTradeNum(e,t))return;const{in_time:r,entry_time:o}=this._strategy.orders[e];return o||r}max_drawdown({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].trading_loss:0}max_drawdown_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].trading_loss_percent:0}max_runup({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].max_profit:0}max_runup_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].max_profit_percent:0}profit({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].profit:0}profit_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].profit_percent:0}size({trade_num:e},t){if(!this._verifyTradeNum(e,t))return 0;const{qty:r=0,direction:o}=this._strategy.orders[e];return o===i1.long?r:-r}_verifyTradeNum(e,t){if(this._strategy._verfiyRequestFunc(t,"strategy.opentrades.*"),typeof e!="number"||e<0)return!1;const r=this._strategy.orders.length;return!(e>=r)}}class em{constructor(e,t){X(this,"_strategy");X(this,"_errorListener");this._strategy=e,this._errorListener=t}allow_entry_in({value:e},t){this._strategy._verfiyRequestFunc(t,"strategy.risk.*"),this._paramVerfiy(e,t,"strategy.risk.allow_entry_in",Object.values(i1),"value"),this._strategy.updateRisk({allow_entry_in:e})}max_cons_loss_days({count:e},t){this._strategy._verfiyRequestFunc(t,"strategy.risk.*"),this._strategy.updateRisk({max_cons_loss_days:e})}max_drawdown({value:e,type:t},r){this._strategy._verfiyRequestFunc(r,"strategy.risk.*"),this._paramVerfiy(t,r,"strategy.risk.max_drawdown",[b2.percentOfEquity,b2.cash],"type"),t===b2.percentOfEquity&&(e=e>100?100:e),this._strategy.updateRisk({max_drawdown:e,max_drawdown_type:t})}max_intraday_filled_orders({count:e},t){this._strategy._verfiyRequestFunc(t,"strategy.risk.*"),this._strategy.updateRisk({max_intraday_filled_orders:e})}max_intraday_loss({value:e,type:t},r){this._strategy._verfiyRequestFunc(r,"strategy.risk.*"),this._paramVerfiy(t,r,"strategy.risk.max_intraday_loss",[b2.percentOfEquity,b2.cash],"type"),t===b2.percentOfEquity&&(e=e>100?100:e),this._strategy.updateRisk({max_intraday_loss:e,max_intraday_loss_type:t})}max_position_size({contracts:e},t){this._strategy._verfiyRequestFunc(t,"strategy.risk.*"),this._strategy.updateRisk({max_position_size:e})}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}}var tm=20,rm=1,Gt=1e6,F3=1e6,Mm=-7,om=21,nm=!1,WM="[big.js] ",Vt=WM+"Invalid ",Zo=Vt+"decimal places",bm=Vt+"rounding mode",I3=WM+"Division by zero",g1={},xe=void 0,pm=/^-?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i;function P3(){function M(e){var t=this;if(!(t instanceof M))return e===xe?P3():new M(e);if(e instanceof M)t.s=e.s,t.e=e.e,t.c=e.c.slice();else{if(typeof e!="string"){if(M.strict===!0&&typeof e!="bigint")throw TypeError(Vt+"value");e=e===0&&1/e<0?"-0":String(e)}zm(t,e)}t.constructor=M}return M.prototype=g1,M.DP=tm,M.RM=rm,M.NE=Mm,M.PE=om,M.strict=nm,M.roundDown=0,M.roundHalfUp=1,M.roundHalfEven=2,M.roundUp=3,M}function zm(M,e){var t,r,o;if(!pm.test(e))throw Error(Vt+"number");for(M.s=e.charAt(0)=="-"?(e=e.slice(1),-1):1,(t=e.indexOf("."))>-1&&(e=e.replace(".","")),(r=e.search(/e/i))>0?(t<0&&(t=r),t+=+e.slice(r+1),e=e.substring(0,r)):t<0&&(t=e.length),o=e.length,r=0;r<o&&e.charAt(r)=="0";)++r;if(r==o)M.c=[M.e=0];else{for(;o>0&&e.charAt(--o)=="0";);for(M.e=t-r-1,M.c=[],t=0;r<=o;)M.c[t++]=+e.charAt(r++)}return M}function Kt(M,e,t,r){var o=M.c;if(t===xe&&(t=M.constructor.RM),t!==0&&t!==1&&t!==2&&t!==3)throw Error(bm);if(e<1)r=t===3&&(r||!!o[0])||e===0&&(t===1&&o[0]>=5||t===2&&(o[0]>5||o[0]===5&&(r||o[1]!==xe))),o.length=1,r?(M.e=M.e-e+1,o[0]=1):o[0]=M.e=0;else if(e<o.length){if(r=t===1&&o[e]>=5||t===2&&(o[e]>5||o[e]===5&&(r||o[e+1]!==xe||o[e-1]&1))||t===3&&(r||!!o[0]),o.length=e,r){for(;++o[--e]>9;)if(o[e]=0,e===0){++M.e,o.unshift(1);break}}for(e=o.length;!o[--e];)o.pop()}return M}function Jt(M,e,t){var r=M.e,o=M.c.join(""),n=o.length;if(e)o=o.charAt(0)+(n>1?"."+o.slice(1):"")+(r<0?"e":"e+")+r;else if(r<0){for(;++r;)o="0"+o;o="0."+o}else if(r>0)if(++r>n)for(r-=n;r--;)o+="0";else r<n&&(o=o.slice(0,r)+"."+o.slice(r));else n>1&&(o=o.charAt(0)+"."+o.slice(1));return M.s<0&&t?"-"+o:o}g1.abs=function(){var M=new this.constructor(this);return M.s=1,M},g1.cmp=function(M){var e,t=this,r=t.c,o=(M=new t.constructor(M)).c,n=t.s,b=M.s,z=t.e,i=M.e;if(!r[0]||!o[0])return r[0]?n:o[0]?-b:0;if(n!=b)return n;if(e=n<0,z!=i)return z>i^e?1:-1;for(b=(z=r.length)<(i=o.length)?z:i,n=-1;++n<b;)if(r[n]!=o[n])return r[n]>o[n]^e?1:-1;return z==i?0:z>i^e?1:-1},g1.div=function(M){var e=this,t=e.constructor,r=e.c,o=(M=new t(M)).c,n=e.s==M.s?1:-1,b=t.DP;if(b!==~~b||b<0||b>Gt)throw Error(Zo);if(!o[0])throw Error(I3);if(!r[0])return M.s=n,M.c=[M.e=0],M;var z,i,s,O,a,u=o.slice(),l=z=o.length,d=r.length,A=r.slice(0,z),h=A.length,q=M,_=q.c=[],m=0,L=b+(q.e=e.e-M.e)+1;for(q.s=n,n=L<0?0:L,u.unshift(0);h++<z;)A.push(0);do{for(s=0;s<10;s++){if(z!=(h=A.length))O=z>h?1:-1;else for(a=-1,O=0;++a<z;)if(o[a]!=A[a]){O=o[a]>A[a]?1:-1;break}if(O<0){for(i=h==z?o:u;h;){if(A[--h]<i[h]){for(a=h;a&&!A[--a];)A[a]=9;--A[a],A[h]+=10}A[h]-=i[h]}for(;!A[0];)A.shift()}else break}_[m++]=O?s:++s,A[0]&&O?A[h]=r[l]||0:A=[r[l]]}while((l++<d||A[0]!==xe)&&n--);return!_[0]&&m!=1&&(_.shift(),q.e--,L--),m>L&&Kt(q,L,t.RM,A[0]!==xe),q},g1.eq=function(M){return this.cmp(M)===0},g1.gt=function(M){return this.cmp(M)>0},g1.gte=function(M){return this.cmp(M)>-1},g1.lt=function(M){return this.cmp(M)<0},g1.lte=function(M){return this.cmp(M)<1},g1.minus=g1.sub=function(M){var e,t,r,o,n=this,b=n.constructor,z=n.s,i=(M=new b(M)).s;if(z!=i)return M.s=-i,n.plus(M);var s=n.c.slice(),O=n.e,a=M.c,u=M.e;if(!s[0]||!a[0])return a[0]?M.s=-i:s[0]?M=new b(n):M.s=1,M;if(z=O-u){for((o=z<0)?(z=-z,r=s):(u=O,r=a),r.reverse(),i=z;i--;)r.push(0);r.reverse()}else for(t=((o=s.length<a.length)?s:a).length,z=i=0;i<t;i++)if(s[i]!=a[i]){o=s[i]<a[i];break}if(o&&(r=s,s=a,a=r,M.s=-M.s),(i=(t=a.length)-(e=s.length))>0)for(;i--;)s[e++]=0;for(i=e;t>z;){if(s[--t]<a[t]){for(e=t;e&&!s[--e];)s[e]=9;--s[e],s[t]+=10}s[t]-=a[t]}for(;s[--i]===0;)s.pop();for(;s[0]===0;)s.shift(),--u;return s[0]||(M.s=1,s=[u=0]),M.c=s,M.e=u,M},g1.mod=function(M){var e,t=this,r=t.constructor,o=t.s,n=(M=new r(M)).s;if(!M.c[0])throw Error(I3);return t.s=M.s=1,e=M.cmp(t)==1,t.s=o,M.s=n,e?new r(t):(o=r.DP,n=r.RM,r.DP=r.RM=0,t=t.div(M),r.DP=o,r.RM=n,this.minus(t.times(M)))},g1.neg=function(){var M=new this.constructor(this);return M.s=-M.s,M},g1.plus=g1.add=function(M){var e,t,r,o=this,n=o.constructor;if(M=new n(M),o.s!=M.s)return M.s=-M.s,o.minus(M);var b=o.e,z=o.c,i=M.e,s=M.c;if(!z[0]||!s[0])return s[0]||(z[0]?M=new n(o):M.s=o.s),M;if(z=z.slice(),e=b-i){for(e>0?(i=b,r=s):(e=-e,r=z),r.reverse();e--;)r.push(0);r.reverse()}for(z.length-s.length<0&&(r=s,s=z,z=r),e=s.length,t=0;e;z[e]%=10)t=(z[--e]=z[e]+s[e]+t)/10|0;for(t&&(z.unshift(t),++i),e=z.length;z[--e]===0;)z.pop();return M.c=z,M.e=i,M},g1.pow=function(M){var e=this,t=new e.constructor("1"),r=t,o=M<0;if(M!==~~M||M<-F3||M>F3)throw Error(Vt+"exponent");for(o&&(M=-M);M&1&&(r=r.times(e)),M>>=1,!!M;)e=e.times(e);return o?t.div(r):r},g1.prec=function(M,e){if(M!==~~M||M<1||M>Gt)throw Error(Vt+"precision");return Kt(new this.constructor(this),M,e)},g1.round=function(M,e){if(M===xe)M=0;else if(M!==~~M||M<-Gt||M>Gt)throw Error(Zo);return Kt(new this.constructor(this),M+this.e+1,e)},g1.sqrt=function(){var M,e,t,r=this,o=r.constructor,n=r.s,b=r.e,z=new o("0.5");if(!r.c[0])return new o(r);if(n<0)throw Error(WM+"No square root");n=Math.sqrt(+Jt(r,!0,!0)),n===0||n===1/0?(e=r.c.join(""),e.length+b&1||(e+="0"),n=Math.sqrt(e),b=((b+1)/2|0)-(b<0||b&1),M=new o((n==1/0?"5e":(n=n.toExponential()).slice(0,n.indexOf("e")+1))+b)):M=new o(n+""),b=M.e+(o.DP+=4);do t=M,M=z.times(t.plus(r.div(t)));while(t.c.slice(0,b).join("")!==M.c.slice(0,b).join(""));return Kt(M,(o.DP-=4)+M.e+1,o.RM)},g1.times=g1.mul=function(M){var e,t=this,r=t.constructor,o=t.c,n=(M=new r(M)).c,b=o.length,z=n.length,i=t.e,s=M.e;if(M.s=t.s==M.s?1:-1,!o[0]||!n[0])return M.c=[M.e=0],M;for(M.e=i+s,b<z&&(e=o,o=n,n=e,s=b,b=z,z=s),e=new Array(s=b+z);s--;)e[s]=0;for(i=z;i--;){for(z=0,s=b+i;s>i;)z=e[s]+n[i]*o[s-i-1]+z,e[s--]=z%10,z=z/10|0;e[s]=z}for(z?++M.e:e.shift(),i=e.length;!e[--i];)e.pop();return M.c=e,M},g1.toExponential=function(M,e){var t=this,r=t.c[0];if(M!==xe){if(M!==~~M||M<0||M>Gt)throw Error(Zo);for(t=Kt(new t.constructor(t),++M,e);t.c.length<M;)t.c.push(0)}return Jt(t,!0,!!r)},g1.toFixed=function(M,e){var t=this,r=t.c[0];if(M!==xe){if(M!==~~M||M<0||M>Gt)throw Error(Zo);for(t=Kt(new t.constructor(t),M+t.e+1,e),M=M+t.e+1;t.c.length<M;)t.c.push(0)}return Jt(t,!1,!!r)},g1[Symbol.for("nodejs.util.inspect.custom")]=g1.toJSON=g1.toString=function(){var M=this,e=M.constructor;return Jt(M,M.e<=e.NE||M.e>=e.PE,!!M.c[0])},g1.toNumber=function(){var M=+Jt(this,!0,!0);if(this.constructor.strict===!0&&!this.eq(M.toString()))throw Error(WM+"Imprecise conversion");return M},g1.toPrecision=function(M,e){var t=this,r=t.constructor,o=t.c[0];if(M!==xe){if(M!==~~M||M<1||M>Gt)throw Error(Vt+"precision");for(t=Kt(new r(t),M,e);t.c.length<M;)t.c.push(0)}return Jt(t,M<=t.e||t.e<=r.NE||t.e>=r.PE,!!o)},g1.valueOf=function(){var M=this,e=M.constructor;if(e.strict===!0)throw Error(WM+"valueOf disallowed");return Jt(M,M.e<=e.NE||M.e>=e.PE,!0)};var en=P3();function k3(M,e){return en(M).plus(e).toNumber()}function tn(M,e){return en(M).minus(e).toNumber()}function Qt(M,e){return en(M).mul(e).toNumber()}function rn(M,e=5){return Number(M&&en(M).toFixed(e))}let im=class{constructor(e,t,r,o,n){X(this,"_variables");X(this,"_options");X(this,"_totalChangeCapital");X(this,"_historyOrder");X(this,"_orders");X(this,"_exitOrders");X(this,"_pendingOrders");X(this,"_mintick");X(this,"_funcOptions");X(this,"_pendingCloseOrders");X(this,"_errorListener");X(this,"_risk");X(this,"_opentrades");X(this,"_closedtrades");X(this,"_riskNamespace");X(this,"_updateOptions",{});X(this,"_id");X(this,"_maxDrawdownVerifyIndex",0);X(this,"calcOnOrderFillsData",{index:-1});this._variables=e,this._errorListener=o,this._options={overlay:!1,format:a1.inherit,pyramiding:1,calc_on_order_fills:!1,calc_on_every_tick:!1,max_bars_back:0,backtest_fill_limits_assumption:0,default_qty_type:b2.fixed,default_qty_value:1,initial_capital:1e6,currency:E3.NONE,slippage:0,commission_type:a2.percent,commission_value:0,process_orders_on_close:!1,close_entries_rule:"FIFO",margin_long:0,margin_short:0,explicit_plot_zorder:!1,max_lines_count:50,max_labels_count:50,max_boxes_count:50,calc_bars_count:0,risk_free_rate:2,use_bar_magnifier:!1,fill_orders_on_standard_ohlc:!1,max_polylines_count:50},this._funcOptions=t,this._totalChangeCapital=0,this._orders=[],this._pendingOrders=[],this._historyOrder=[],this._exitOrders=[],this._pendingCloseOrders=[],this._mintick=r,this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder),this._variables.strategy.updateStrategyOptions(this._options),this._risk={intradayOrders:0},this._opentrades=new Z_(this),this._closedtrades=new Q_(this),this._riskNamespace=new em(this,o),this._id=`strategy_${n}`}get orders(){return[...this._orders]}get historyOrders(){return[...this._historyOrder]}get _freezeCapital(){const{close:e}=this.calcOnOrderFillsData.data||this._variables;return this._orders.reduce((t,r)=>t+e*(r.qty||0),0)}get opentrades(){return this._opentrades}get closedtrades(){return this._closedtrades}get risk(){return this._riskNamespace}get isCalcOnEveryTick(){return this._options.calc_on_every_tick}updateOptions(e){this._updateOptions=e||{},Object.assign(this._options,this._updateOptions)}update(){this._maxConsLossDaysVerify(),this._ordersHandle(),this._pendingOrderHandle(),this._exitOrdersHandle(),this._maxIntradayFilledOrdersVerify(),this._maxDrawdownVerify();const{open:e,high:t,low:r}=this.calcOnOrderFillsData.data||this._variables,o=this._variables.close;this._variables.strategy.update(this.calcOnOrderFillsData.currentData||{open:e,close:o,high:t,low:r}),!this._options.process_orders_on_close&&this._calcLiquidate(),this._calcProfitAndLoss()}calcCurrentOrder(){this._ordersHandle(),this._pendingOrderHandle(),this._calcProfitAndLoss()}updateRisk(e){Object.assign(this._risk,e)}endExecution(){this._maxIntradayLoss(),this._pendingCloseOrderHandle(),this._options.process_orders_on_close&&this._calcLiquidate()}_maxIntradayLoss(){var l;const{max_intraday_loss:e,max_intraday_loss_type:t,isDisabledOpen:r}=this._risk;if(e===void 0||!t||r)return;const{time_tradingday:o,time:n,strategy:{netprofit:b,initial_capital:z}}=this._variables,{high:i,low:s}=this.calcOnOrderFillsData.data||this._variables;let{preNetprofit:O=0}=this._risk;n===o&&(O=b,this._risk.preNetprofit=b,this._risk.isTemporaryBan=!1);let a=O-b;a+=this._orders.reduce((d,A)=>{const{in_price:h,direction:q,qty:_=0,commission:m=0,original_qty:L=0}=A,g=q===i1.long?1:-1,v=(i-h)*_,y=(s-h)*_,E=g===1?y:-v;return d+E+_/L*m},0);let u=!1;switch(t){case b2.cash:u=e<a;break;case b2.percentOfEquity:const d=a/(z+b)*100;u=e<d;break}if(u){this._risk.isTemporaryBan=!0;const d=(l=this._orders[0])==null?void 0:l.direction;this._closeOrders(this._orders,d===i1.long?s:i,"Close Position (Max intraday Loss)",void 0,"close"),this._pendingOrders=[]}}_maxIntradayFilledOrdersVerify(){const{max_intraday_filled_orders:e,intradayOrders:t=0,isDisabledOpen:r}=this._risk;if(e===void 0||r)return;const{time:o,time_tradingday:n}=this._variables,{open:b}=this.calcOnOrderFillsData.data||this._variables;o===n&&(this._risk.intradayOrders=0,this._risk.isTemporaryBan=!1),e<=t&&(this._risk.isTemporaryBan=!0,this._closeOrders(this._orders,b,"Close Position (Max number of filled orders in one day)",void 0,"close"),this._pendingOrders=[])}_maxConsLossDaysVerify(){const{max_cons_loss_days:e,lossDays:t=0,isDisabledOpen:r,totalProfit:o=0}=this._risk;if(e===void 0||r)return;const{time:n,time_tradingday:b,strategy:z}=this._variables,{open:i}=this.calcOnOrderFillsData.data||this._variables;let s=t;if(n===b){const O=z.netprofit+z.openprofit;O<o?s=0:s++,Object.assign(this._risk,{lossDays:s,totalProfit:O})}e<=s&&this._riskTouchOff(i,"Close Position (Max consecutive loss days)")}_maxDrawdownVerify(){const{max_drawdown:e,max_drawdown_type:t,isDisabledOpen:r}=this._risk;if(r)return;const{bar_index:o}=this._variables,{open:n}=this.calcOnOrderFillsData.data||this._variables;if(e!==void 0&&t&&this._maxDrawdownVerifyIndex===o){const{initial_capital:b}=this._options,i=this._orders.reduce((O,a)=>{const{in_price:u,commission:l=0,qty:d=0,original_qty:A=0,direction:h}=a,q=h===i1.long?1:-1,_=(n-u)*q*d;return O+_+l*d/A},0)+this._totalChangeCapital;let s=!1;switch(t){case b2.percentOfEquity:s=i/b*100<=-e;break;case b2.cash:s=i<=-e;break}s&&this._riskTouchOff(n,"Close Position (Max Drawdown)")}}_riskTouchOff(e,t){this._risk.isDisabledOpen=!0,this._orders.length&&this._closeOrders(this._orders,e,t,"close"),this._pendingOrders=[]}strategy(e,t){if(!this._variables.bar_index){this._paramVerfiy(e.format,t,"strategy",[a1.inherit,a1.price,a1.percent,a1.volume],"format"),this._paramVerfiy(e.default_qty_type,t,"strategy",Object.values(b2),"default_qty_type"),this._paramVerfiy(e.commission_type,t,"strategy",Object.values(a2),"commission_type");const r=self==null?void 0:self.workerStorage.get(this._id),o={...this._updateOptions};if(r)for(const n of Object.keys({...r,...e}))e[n]!==r[n]&&delete o[n];this._variables.max_bars_back=e.max_bars_back||0,self==null||self.workerStorage.set(this._id,e),Object.assign(this._options,e,o),this._variables.updateMaxLength(e),Object.assign(this._funcOptions,{strategy:this._options,userSetStrategyConfig:o,scriptType:"strategy"})}}order(e,t){this._verfiyRequestFunc(t,"order"),!this._risk.isDisabledOpen&&(this._paramVerfiy(e.oca_type,t,"strategy.order",Object.values(je),"oca_type"),this._orderHandle(e))}entry(e,t){this._verfiyRequestFunc(t,"entry"),!this._risk.isDisabledOpen&&(this._paramVerfiy(e.oca_type,t,"strategy.entry",Object.values(je),"oca_type"),this._entryHandle(e))}close(e,t){if(this._verfiyRequestFunc(t,"close"),!this._getCloseOrders(e.id).length)return;const{immediately:o}=e;if(o||this._options.process_orders_on_close){const n=this._pendingCloseOrders.find(b=>b.id===e.id&&b.place_order_type==="close");if(n){Object.assign(n,e);return}this._pendingCloseOrders.push({...e,place_order_type:"close"})}else{const n=this._pendingOrders.find(b=>b.id===e.id&&b.place_order_type==="close");if(n){Object.assign(n,e);return}this._pendingOrders.push({...e,place_order_type:"close"})}}close_all(e,t){if(this._verfiyRequestFunc(t,"close_all"),typeof e=="string"&&(e={}),!this._orders.length)return;const{immediately:r}=e;r||this._options.process_orders_on_close?this._pendingCloseOrders.push({...e,place_order_type:"close_all"}):this._pendingOrders.push({...e,place_order_type:"close_all"})}cancel({id:e},t){this._verfiyRequestFunc(t,"cancel"),this._pendingOrders=this._pendingOrders.filter(r=>!(r.id===e&&r.place_order_type!=="close"))}cancel_all(e){this._verfiyRequestFunc(e,"cancel_all"),this._pendingOrders=this._pendingOrders.filter(t=>t.place_order_type==="close_all")}exit(e,t){this._verfiyRequestFunc(t,"exit"),this._exit(e,t)}convert_to_account({value:e},t){return this._verfiyRequestFunc(t,"convert_to_account"),e}convert_to_symbol({value:e},t){return this._verfiyRequestFunc(t,"convert_to_symbol"),e}default_entry_qty({fill_price:e},t){return this._verfiyRequestFunc(t,"default_entry_qty"),e?this._calcDefaultQty(e):0}_calcDefaultQty(e){const{default_qty_type:t=b2.fixed,default_qty_value:r=1,initial_capital:o,commission_value:n}=this._options;let b=r;switch(t){case b2.cash:b=r/e;break;case b2.percentOfEquity:const z=this._getOrderProfit(e),i=o+z+this._totalChangeCapital;n?b=this._getCommQty(i,e):b=i*r/100/e;break}return Oc(b,this._getLen())}_calcExitQty(e){if(!String(e).includes("."))return e;const t=this._getLen();return Math.ceil(Qt(e,Math.pow(10,t)))}_getCommQty(e,t){const{commission_type:r,commission_value:o=0,default_qty_value:n=0}=this._options;let b=0;switch(r){case a2.percent:b=e*n/(100*t+o*t);break;case a2.cashPerContract:b=e*n/(100*t+o);break;case a2.cashPerOrder:b=(e-o)*n/100/t}return b}_getLen(){const e=5-(this._variables.precision||5);return e<0?0:e}_getCapital(e,t){const{margin_long:r=0,margin_short:o=0}=this._options;return r<100&&r>0&&e===1?t=t*100/r:o<=100&&o>0&&e===-1&&(t=t*100/o),t}_calcProfitAndLoss(){const{close:e}=this.calcOnOrderFillsData.data||this._variables;for(const t of this._orders){const{in_price:r,qty:o=0,direction:n}=t,b=n===i1.long?1:-1,z=(e-r)*b*o,[i,s]=this._calcProfitAndLossHandle(r,o,b);this._calcOrderPercent(t,z,i,s)}}_calcProfitAndLossHandle(e,t,r,o){const{high:n,low:b}=this.calcOnOrderFillsData.data||this._variables,z=((o||n)-e)*t,i=((o||b)-e)*t;let s=r===1?z:-i,O=r===1?i:-z;return[s,O]}_calcOrderPercent(e,t,r,o){const{commission_value:n}=this._options,{close:b}=this.calcOnOrderFillsData.data||this._variables,{original_qty:z=0,qty:i=0,in_price:s,max_profit:O=0,trading_loss:a=0}=e;let{commission:u=0}=e,l=s*i;if(n){const d=this._getCommission(b,i);u=u*i/z,r-=u,o-=u,l+=u,t=t-d-u}r=Math.max(r,O,0),o=Math.min(o,a,0),Object.assign(e,{profit:t,total_profit:this._totalChangeCapital+t,total_profit_percent:t/(this._options.initial_capital+this._totalChangeCapital)*100,max_profit:r,trading_loss:o,profit_percent:t/l*100,max_profit_percent:r/l*100,trading_loss_percent:o/l*100})}_calcLiquidate(){if(!this._orders.length)return;const{time:e}=this._variables,{high:t,low:r}=this.calcOnOrderFillsData.data||this._variables,{initial_capital:o,margin_long:n=0,margin_short:b=0}=this._options,z=this._orders[0].direction===i1.long?1:-1;let i=z===1?r:t;if(z===1&&n===100)return;const s=(z===1?n:b)/100;if(s<=0)return;let O=!1;const[a,u]=this._orders.reduce((h,q)=>{let[_,m]=h;const{in_price:L,qty:g=0,in_time:v}=q;v===e&&(O=!0);const y=L*g,E=i*g;return _+=y,m+=E,[_,m]},[0,0]);let l=0,d=0;const A=o+this._totalChangeCapital;if(O&&(l=A-a*s,l<0&&(i=this._orders[0].in_price,d=Math.abs(Math.trunc(l/s/i)*4),d=Math.max(d,1))),l>=0){const h=z*(u-a);if(l=A+h-u*s,l>=0)return;d=Math.abs(Math.trunc(l/s/i)*4)}d<=0||this._marginCallOrders(i,d,"Margin Call")}_marginCallOrders(e,t,r){const{close_entries_rule:o="FIFO"}=this._options;if(o==="FIFO"){this._processOrders(this._orders,e,t*this._orders.length,r,r,!0);return}for(const n of this.orders)n.position_close_type=n.place_order_type,n.isTiggerClose=!0,this._processOrder(n,e,t,r,r,!0);this._orders=this._orders.filter(n=>!n.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder)}_orderHandle(e){const{process_orders_on_close:t}=this._options,{isMarketPrice:r,quantities:o,close:n,price:b,activePrice:z,isTouch:i}=this._orderArgsParse(e),s=e.direction===i1.long?1:-1;if(o<=0)return;let O=o;if((r||i)&&t){this._pendingCloseOrders.push({...e,in_price:n,qty:o,place_order_type:"order"});return}this._judgeCapitalEnough(o,b,s)&&this._addPendingOrders(e,b,O,r,z)}_orderOnCloseHandle(e){const t=this._orders.filter(_=>_.direction!==e.direction),{slippage:r=0}=this._options;let{direction:o,qty:n=0,id:b,comment:z,oca_type:i,oca_name:s,in_price:O}=e;const a=o===i1.long?1:-1;if(t.length){const _=this._processOrders(t,O,n,b,z,!1,"order");if(_<=0)return;n=_}const u=O-a*r*this._mintick;if(!this._judgeCapitalEnough(n,u,a))return;this._ocaGroupVerify(n,s,i);const{bar_index:d,time:A}=this._variables,{high:h,low:q}=this.calcOnOrderFillsData.data||this._variables;this._calcCurrentOrder({...e,in_price:u,in_high:h,in_low:q,in_index:d,in_time:A,qty:n,place_order_type:"order"})}_judgeCapitalEnough(e,t,r){let o=this._freezeCapital;if(this._orders.some(O=>(O.direction===i1.long?1:-1)!==r)&&(o=0),e<=0)return!1;const{margin_long:n=0,margin_short:b=0}=this._options;if(n===0&&r===1||b===0&&r===-1)return!0;const z=this._getOrderProfit(t),s=this._getCapital(r,this._options.initial_capital+z+this._totalChangeCapital)-o;return e*t<=s}_getOrderProfit(e){return this._orders.reduce((t,r)=>{const{in_price:o,qty:n=0,direction:b}=r,z=b===i1.long?1:-1;return t+(e-o)*n*z},0)}_ocaGroupVerify(e,t,r){if(!t||!r||r===je.none)return!1;let o=!1;switch(r){case je.cancel:this._pendingOrders=this._pendingOrders.filter(n=>{if(n.oca_name===t)n.isCancel=!0,o=!0;else return!0});break;case je.reduce:this._pendingOrders=this._pendingOrders.filter(n=>{const{qty:b=0,oca_name:z}=n;if(t===z){const i=b-e;return o=!0,i<=0?(n.isCancel=!0,!1):(n.qty=i,!0)}else return!0});break}return o}_processOrders(e,t,r,o,n,b=!1,z,i){if(!e.length)return r;let s=r;for(const O of e)if(O.position_close_type=z||O.place_order_type,O.immediately=i,O.isTiggerClose=b||O.position_close_type==="close",s=this._processOrder(O,t,s,o,n,b),s<=0)break;return this._orders=this._orders.filter(O=>!O.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder),s}_addPendingOrders(e,t,r,o,n){const b=this._pendingOrders.find(z=>z.id===e.id&&!z.isMarketPrice);if(b)Object.assign(b,{...e,in_price:t,isMarketPrice:o,qty:r,active_price:n});else{const z={...e,in_price:t,isMarketPrice:o,qty:r,active_price:n,entry_time:this._variables.time,place_order_type:"order"};this._pendingOrders.push(z)}}_orderArgsParse(e){var q,_;const{direction:t,qty:r,stop:o}=e;let n=e.limit||0,{close:b}=this.calcOnOrderFillsData.data||this._variables;(_=(q=this.calcOnOrderFillsData)==null?void 0:q.tradeData)!=null&&_.open&&(b=this.calcOnOrderFillsData.tradeData.open);let z=b,i=!1,s;const O=t===i1.long?1:-1,a=o&&(o-b)*O>=0,{backtest_fill_limits_assumption:u=0}=this._options;u>0&&n&&(n-=u*this._mintick*O);const l=n&&(n-b)*O<=0;let d=!1;a&&l?(o!==b&&(s=o),z=n):a?(z=o,d=o===b):l?(z=n,d=n===b):i=!0;const A=r!==void 0?Oc(r,this._getLen()):this._calcDefaultQty(z);return{orders:this._orders.filter(m=>m.direction!==t),isMarketPrice:i,activePrice:s,quantities:A,close:b,price:z,isTouch:d}}_entryHandle(e){const{process_orders_on_close:t}=this._options,{isMarketPrice:r,quantities:o,close:n,price:b,activePrice:z,isTouch:i}=this._orderArgsParse(e);if(o<=0)return;if((r||i)&&t){this._pendingCloseOrders.push({...e,in_price:n,qty:o,place_order_type:"entry"});return}this._judgeCapitalEnough(o,n,e.direction===i1.long?1:-1)&&this._addPendingEntry(e,b,o,r,z)}_entryOnCloseHandle(e){const{direction:t,in_price:r,qty:o=0}=e,n=this._orders.filter(b=>b.direction!==t);this._entryOrder(n,r,o,e)}_entryOrder(e,t,r,o){const{time:n,bar_index:b}=this._variables,{high:z,low:i}=this.calcOnOrderFillsData.data||this._variables,{slippage:s=0}=this._options,{oca_name:O,oca_type:a,direction:u,comment:l,id:d}=o,A=u===i1.long?1:-1;if(r=this._getAvailablePositionSize(r,u),r<=0)return;const h=t;if(t=t+s*this._mintick*A,!this._judgeCapitalEnough(r,t,A))return;this._closeOrders(e,h,d,l,"entry",void 0,!0);const _={...o,in_price:t,qty:r,in_index:b,in_high:z,in_low:i,in_time:n,place_order_type:"entry"},{orders:m}=this._getEntryOrders(u),L=m.length;L&&L>=(this._options.pyramiding||1)||(this._ocaGroupVerify(r,O,a),this._calcCurrentOrder(_))}_getAvailablePositionSize(e,t){const{max_position_size:r,allow_entry_in:o}=this._risk;if(o&&o!==i1.all&&o!==t)return 0;if(r===void 0)return e;const n=this._orders.reduce((b,z)=>b+(z.qty||0),0);return n?n+e>r?0:e:e>r?e-r:0}_getEntryOrders(e){const t=this._pendingOrders.filter(o=>["entry","order"].includes(o.place_order_type)&&o.direction===e),r=this._orders.filter(o=>o.direction===e);return{pendingOrders:t,orders:r}}_addPendingEntry(e,t,r,o,n){if(r=this._getAvailablePositionSize(r,e.direction),r<=0)return;const{pendingOrders:b}=this._getEntryOrders(e.direction),z=b.find(i=>i.id===e.id&&i.place_order_type==="entry");if(z)Object.assign(z,{...e,in_price:t,isMarketPrice:o,qty:r,active_price:n});else{const i={...e,in_price:t,isMarketPrice:o,qty:r,active_price:n,entry_time:this._variables.time,place_order_type:"entry"};this._pendingOrders.push(i)}}_closeAllOrders(e,t){const{comment:r,immediately:o}=e,{bar_index:n}=this._variables,b=this._orders.filter(z=>z.in_index!==n);b.length&&(this._closeOrders(b,t,"Close position order",r,"close",o),this._orders=[],this._variables.strategy.updateOrders(this._orders))}_closeOrders(e,t,r,o,n,b,z){if(e.length){for(const i of e)i.position_close_type=n,i.immediately=b,i.isTiggerClose=!0,this._closeOrder(i,t,r,o,z);this._orders=this._orders.filter(i=>!i.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder)}}_closeOrder(e,t,r,o,n){const{time:b,bar_index:z}=this._variables,{high:i,low:s}=this.calcOnOrderFillsData.data||this._variables,{slippage:O=0}=this._options,{in_price:a,qty:u=0,direction:l}=e,d=l===i1.long?1:-1;t=t-d*O*this._mintick,e.isDeal=!0;const A=(t-a)*d*u,h={...e,out_price:t,out_id:r,out_index:z,out_high:i,out_low:s,out_time:b,out_comment:o,out_qty:u,profit:A};this._calcPercent(h,n)}_exitOrdersHandle(){if(!this._exitOrders.length)return;let{open:e,low:t,high:r,close:o}=this.calcOnOrderFillsData.data||this._variables;const n=[],b=Math.abs(r-e),z=Math.abs(t-e),i=[],s=this._variables.precision;e=Number(e.toFixed(s)),t=Number(t.toFixed(s)),r=Number(r.toFixed(s)),o=Number(o.toFixed(s));for(const O of this._exitOrders){const{directionNum:a,id:u,comment:l,qty:d,comment_loss:A,comment_profit:h,comment_trailing:q,order:_}=O;if(_.isTiggerClose)continue;let m=b<z||b===z&&a===1;if(_.in_time===this._variables.time&&!this._variables._isRepeated){const{in_price:D}=_;m?D<r&&D>=e?e=D:D<=r&&D>=o?r=D:r=o:D<=e&&D>t?e=D:D<=o&&D>=t?t=D:t=o,e=D}const L=[],[g,v]=this._getLimitPrice(O,e,t,r,m);g&&L.push({order:_,price:g,index:v,isHighFront:m,exitInfo:{id:u,comment:h||l,qty:d}});const[y,E]=this._getStopPrice(O,e,t,r,m);y&&L.push({order:_,price:y,index:E,isHighFront:m,exitInfo:{id:u,comment:A||l,qty:d}});const[T,N]=this._getTrailStopPrice(O,e,t,r,o,m);if(T&&L.push({order:_,price:T,index:N,isHighFront:m,exitInfo:{id:u,comment:q||l,qty:d}}),L.length){this._executesSort(L),n.push(L[0]);continue}i.push(O)}this._exitOrders=i,this._executesSort(n);for(const O of n){const{order:a,price:u,exitInfo:l,isHighFront:d,index:A}=O;d?(r=A===1?u:r,t=A===1?e:u):(r=A===1?e:u,t=A===1?u:t),this._variables.strategy.update({open:u,high:r,low:t,close:o}),this._processExitOnClose(a,u,l)}}_executesSort(e){return e.sort(({price:t,index:r,isHighFront:o},{price:n,index:b})=>r!==b?r-b:o?r===1?t-n:n-t:r===1?n-t:t-n),e}_getLimitPrice(e,t,r,o,n){const{limit:b,directionNum:z}=e;let i,s=1;return b&&((t-b)*z>=0?(i=t,s=1):r<=b&&o>=b&&(i=b,n&&b>t||!n&&b<t?s=1:s=2)),[i,s]}_getStopPrice(e,t,r,o,n){const{stop:b,directionNum:z}=e;let i,s=1;return b&&((t-b)*z<=0?(i=t,s=1):r<=b&&o>=b&&(i=b,n&&b>t||!n&&b<t?s=1:s=2)),[i,s]}_getTrailStopPrice(e,t,r,o,n,b){const{trail_stop_price:z,directionNum:i,active_price:s,trail_offset:O=0}=e;let a=z,u,l=1;if(a)if((a-t)*i>=0)u=t,l=1;else{const[d,A,h]=this._calcTrailStopPrice(a,o,r,n,O,i,b);u=A,l=h||1,e.trail_stop_price=d}if(s&&!u&&s<=o&&s>=r)if(O===0)u=s,b&&s>t||!b&&s<t?l=1:l=2;else{a=tn(s,Qt(O*i,this._mintick));let d=o,A=r;b?s>=t&&s<=o?(d=o,l=1):(b=!1,d=n,l=2):s<t&&s>=r?(A=r,l=1):(b=!0,A=n,l=2);const[h,q,_=1]=this._calcTrailStopPrice(a,d,A,n,O,i,b);delete e.active_price,l<_&&(l=_),e.trail_stop_price=h,u=q}return[u,l]}_ordersHandle(e){const t=this._orders.filter(b=>b.isMarketPriceLimit||b.isMarketPriceStop);if(!t.length)return;const{open:r,close:o}=this.calcOnOrderFillsData.data||this._variables,n=e?o:r;for(const b of t){const{out_comment:z,out_qty:i,out_id:s}=b;this._processExitOnClose(b,n,{id:s,comment:z,qty:i})}}_calcTrailStopPrice(e,t,r,o,n,b,z){let i=e,s;const O=tn(b===1?t:r,Qt(n*b,this._mintick));let a=1;return b===1?z?(i<O&&(i=O),i>=r&&(a=2,s=i)):i>=r?(a=1,s=i):O>i&&(i=O,O>=o&&(a=3,s=O)):z?i<=t?(a=1,s=i):O<i&&(i=O,O<=o&&(a=3,s=O)):(O<i&&(i=O),i<=t&&(a=2,s=i)),[i,s,a]}_pendingOrderHandle(){if(!this._pendingOrders.length)return;const e=[],t=this._pendingOrders.filter(z=>z.place_order_type==="exit");let r=[];for(const z of this._pendingOrders){const{isCancel:i,place_order_type:s,isMarketPrice:O}=z;if(i)continue;let a;switch(s){case"entry":if(!O){r.push(z);continue}this._entryOrderHandle(z);break;case"order":if(!O){r.push(z);continue}this._orderOrderHandle(z);break;case"close":a=this._closeOrderHandle(z);break;case"close_all":const{open:u}=this.calcOnOrderFillsData.data||this._variables;this._closeAllOrders(z,u);break}a&&e.push(a)}const o=this._options.pyramiding||1,n=this._orders.filter(z=>z.direction===i1.long).length<o,b=this._orders.filter(z=>z.direction===i1.short).length<o;r=r.filter(z=>z.direction===i1.long&&n||z.direction===i1.short&&b);for(const z of this._pendingOrderSort(r)){const{place_order_type:i}=z;let s;switch(i){case"entry":s=this._entryOrderHandle(z);break;case"order":s=this._orderOrderHandle(z);break}s&&e.push(s)}for(const z of t){const i=this._exitOrderHandle(z);i&&e.push(i)}this._pendingOrders=e}_pendingOrderSort(e){const{open:t,low:r,high:o}=this.calcOnOrderFillsData.data||this._variables,n=Math.abs(o-t)<=Math.abs(r-t);return e.sort(({in_price:b},{in_price:z})=>{let i=0,s=0;return n?(b>=t&&b<=o?i=1:i=2,z>=t&&z<=o?s=1:s=2):(b<=t&&b>=r?i=1:i=2,z<=t&&z>=r?s=1:s=2),i!==s?i-s:n?i===1?b-z:z-b:i===1?z-b:b-z}),e}_pendingCloseOrderHandle(){if(!this._pendingCloseOrders.length)return;const{close:e}=this.calcOnOrderFillsData.data||this._variables,t=[];for(const r of this._pendingCloseOrders)switch(r.place_order_type){case"close":const o=this._closeOrderHandle(r,!0);o&&t.push(o);break;case"close_all":this._closeAllOrders(r,e);break;case"entry":this._entryOnCloseHandle(r);break;case"order":this._orderOnCloseHandle(r);break}this._pendingCloseOrders=t,this._ordersHandle(!0)}_entryOrderHandle(e){const{open:t,low:r,high:o}=this.calcOnOrderFillsData.data||this._variables,{isMarketPrice:n,qty:b=0,in_price:z,direction:i,active_price:s}=e;if(s&&o>=s&&r<=s)return delete e.active_price,e;let O=z;if(n)O=t;else{let{stop:a,limit:u}=e;const l=i===i1.long?1:-1,d=a&&(a-t)*l>=0,{backtest_fill_limits_assumption:A=0}=this._options;A>0&&u&&(u-=A*this._mintick*l);const h=u&&(u-t)*l<=0;d&&h||(a&&!d||u&&!h)&&(O=t)}if(O<=o&&O>=r){const a=this._orders.filter(u=>u.direction!==i);this._entryOrder(a,O,b,e)}else return e}_orderOrderHandle(e){const{time:t,bar_index:r}=this._variables,{open:o,low:n,high:b}=this.calcOnOrderFillsData.data||this._variables,{slippage:z=0}=this._options,{isMarketPrice:i,qty:s=0,in_price:O,direction:a,comment:u,oca_name:l,oca_type:d,active_price:A,id:h}=e;if(A&&b>=A&&n<=A)return delete e.active_price,e;let q=O,_=s;if(i&&(q=o),q<=b&&q>=n){const m=this._orders.filter(g=>g.direction!==a);if(m.length&&(_=this._processOrders(m,q,s,h,u,!1,"order"),_<=0))return;const L=a===i1.long?1:-1;this._ocaGroupVerify(_,l,d),this._calcCurrentOrder({...e,in_price:q-L*z*this._mintick,in_index:r,in_time:t,in_high:b,in_low:n,qty:_});return}else return e}_getCloseOrders(e){const{close_entries_rule:t="FIFO"}=this._options;let r=[];return t==="FIFO"?r=this._orders.filter(o=>o.id===e):r=this._orders.filter(o=>o.id===e&&!o.close_qty),r}_closeOrderHandle(e,t){const{id:r,qty:o,qty_percent:n=100,comment:b,immediately:z}=e,{close_entries_rule:i="FIFO"}=this._options,s=this._getCloseOrders(r);if(!s.length)return;let O=0;if(o?O=o:(O=s.reduce((l,d)=>l+(d.qty||0),O),O=n/100*O),O<=0)return;const{open:a,close:u}=this.calcOnOrderFillsData.data||this._variables;if(i==="FIFO")this._processOrders(s,t?u:a,O,`Close entry(s) order ${r}`,b,!1,"close",z);else if(this._processCloseOrders(s,t?u:a,O,`Close entry(s) order ${r}`,b,z))return e}_processCloseOrders(e,t,r,o,n,b){let z=!1;for(const i of e)i.close_qty=r,(i.qty||0)>r&&(z=!0),i.immediately=b,i.position_close_type="close",i.isTiggerClose=!0,this._processOrder(i,t,r,o,n);return this._orders=this._orders.filter(i=>!i.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder),z}_exitOrderHandle(e){const{from_entry:t,id:r}=e,o=this._orders.filter(n=>{var b;return(!t||t===n.id)&&!((b=n.exitIds)!=null&&b.includes(r))});if(!(o.length&&!this._ordersToExit(o,e,!0)))return e}_exit(e,t){if(!e.hasOwnProperty("profit")&&!e.hasOwnProperty("loss")&&!e.hasOwnProperty("stop")&&!e.hasOwnProperty("limit")&&(!e.hasOwnProperty("trail_offset")||!e.hasOwnProperty("trail_price")&&!e.hasOwnProperty("trail_points"))){this._errorListener.addError(l1.strategyExitErr,t,j0.Error);return}const{profit:r,loss:o,stop:n,limit:b,trail_offset:z,trail_price:i,trail_points:s,from_entry:O="",id:a}=e;if(this._isNaN(r)&&this._isNaN(o)&&this._isNaN(n)&&this._isNaN(b)&&(this._isNaN(z)||this._isNaN(s)&&this._isNaN(i)))return;const u={...e,place_order_type:"exit"},l=this._orders.filter(q=>{var _;return(!O||O===q.id)&&!((_=q.exitIds)!=null&&_.includes(a))}),d=this._updateExitOrders(u),A=this._pendingOrders.filter(q=>(!O||O===q.id)&&["order","entry"].includes(q.place_order_type||""));if(l.length){if(!this._ordersToExit(l,u,!1))return}else if(!A.length||d)return;const h=this._pendingOrders.find(q=>q.id===a&&q.place_order_type==="exit");h?Object.assign(h,{...e}):this._pendingOrders.push(u)}_updateExitOrders(e){let t=!1;e.qty&&(e.qty=this._calcExitQty(e.qty));const r=this._exitOrders.filter(o=>o.id===e.id&&(o.from_entry===e.from_entry||!e.from_entry));for(const o of r){const{directionNum:n,order:b,qty:z}=o;if(b.isTiggerClose){o.isClose=!0;continue}t=!0;const i={qty:z,...e},s=!0;if(this._stopProfit(b,n,i,s)){o.isClose=!0;continue}if(this._stopLoss(b,n,i,s)){o.isClose=!0;continue}if(this._trailStopLoss(b,n,i,s)){o.isClose=!0;continue}Object.assign(o,i)}return this._exitOrders=this._exitOrders.filter(o=>!o.isClose),t}_ordersToExit(e,t,r){var q;const{qty:o,qty_percent:n=100,id:b,comment:z}=t;let i=o,s=!1;t.comment=z||b;const O=e[0],a={...t},{qty:u=0}=O,l=O.direction===i1.long?1:-1;return i=o?o>=u?u:o:n/100*u,a.qty=this._calcExitQty(i),i<u&&(s=!0),this._stopProfit(O,l,a,r)||this._stopLoss(O,l,a,r)||this._trailStopLoss(O,l,a,r)||(this._exitOrders.push({...a,directionNum:l,order:O}),O.exitIds?(q=O.exitIds)==null||q.push(b):O.exitIds=[b]),s}_addExitPendingCloseOrders(e){const t=this._pendingCloseOrders.find(r=>r.id===e.id);t?Object.assign(t,{...e}):this._pendingCloseOrders.push(e)}_stopProfit(e,t,r,o){var A,h;const{limit:n,profit:b,comment_profit:z,comment:i,id:s,qty:O}=r;let a=n;const{in_price:u}=e,{process_orders_on_close:l}=this._options;if(!this._isNaN(b)&&this._isNaN(n)&&(a=k3(u,Qt(b*t,this._mintick))),a=t===1?Ac(a,this._variables.precision):fc(a,this._variables.precision),r.limit=a,o)return;let{close:d}=this.calcOnOrderFillsData.data||this._variables;if((h=(A=this.calcOnOrderFillsData)==null?void 0:A.tradeData)!=null&&h.open&&(d=this.calcOnOrderFillsData.tradeData.open),a!==void 0&&(a-d)*t<=0)return e.isMarketPriceLimit=!0,r.comment=z||i,Object.assign(e,{out_comment:r.comment,out_id:s,out_qty:O}),l&&this._addExitPendingCloseOrders(r),!0}_stopLoss(e,t,r,o){var A,h;const{stop:n,loss:b,comment_loss:z,comment:i,id:s,qty:O}=r;let a=n;const{in_price:u}=e,{process_orders_on_close:l}=this._options;if(!this._isNaN(b)&&this._isNaN(n)&&(a=tn(u,Qt(b*t,this._mintick))),a=t===1?fc(a,this._variables.precision):Ac(a,this._variables.precision),r.stop=a,o)return;let{close:d}=this.calcOnOrderFillsData.data||this._variables;if((h=(A=this.calcOnOrderFillsData)==null?void 0:A.tradeData)!=null&&h.open&&(d=this.calcOnOrderFillsData.tradeData.open),a!==void 0&&(a-d)*t>=0)return e.isMarketPriceStop=!0,r.comment=z||i,Object.assign(e,{out_comment:r.comment,out_id:s,out_qty:O}),l&&this._addExitPendingCloseOrders(r),!0}_trailStopLoss(e,t,r,o){var u,l;const{trail_offset:n,trail_price:b,trail_points:z,comment_trailing:i,comment:s,id:O,qty:a}=r;if(!this._isNaN(n)){const{in_price:d}=e,{process_orders_on_close:A}=this._options;let h;if(this._isNaN(b)?this._isNaN(z)||(h=k3(d,Qt(z*t,this._mintick))):h=b,r.active_price=h,o)return;let{close:q}=this.calcOnOrderFillsData.data||this._variables;if((l=(u=this.calcOnOrderFillsData)==null?void 0:u.tradeData)!=null&&l.open&&(q=this.calcOnOrderFillsData.tradeData.open),h!==void 0&&(h-q)*t<=0){const _=tn(q,Qt(n*t,this._mintick));if((_-q)*t>=0)return e.isMarketPriceStop=!0,r.comment=i||s,Object.assign(e,{out_comment:r.comment,out_id:O,out_qty:a}),A&&this._addExitPendingCloseOrders(r),!0;r.trail_stop_price=_}}}_processExitOnClose(e,t,r){const{qty:o=0,comment:n,id:b}=r,{close_entries_rule:z="FIFO"}=this._options;if(o)if(e.isTiggerClose=!0,z==="FIFO")this._processExitOrders(this._orders,t,o,b,n);else{if(e.isDeal)return;this._processOrders([e],t,o,b,n,!1,"exit")}}_processExitOrders(e,t,r,o,n){let b=r,z;for(const i of e)if(z=i,i.position_close_type="exit",b=this._processOrder(i,t,b,o,n),b<=0)break;return this._orders=this._orders.filter(i=>!i.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder),z}_processOrder(e,t,r,o,n,b=!1){const{time:z,bar_index:i}=this._variables,{low:s,high:O}=this.calcOnOrderFillsData.data||this._variables,{slippage:a=0}=this._options,{in_price:u,qty:l=0,max_profit:d,trading_loss:A,direction:h,commission:q=0,original_qty:_=0}=e,m=h===i1.long?1:-1;if(t=t-m*a*this._mintick,r<l){const L=l-r,g=(t-u)*m*r,v=d!==void 0?d/l*r:void 0,y=A!==void 0?A/l*r:void 0,E=q*L/_;this._calcPercent({...e,out_price:t,last_commission:E,out_id:o,out_index:i,out_high:O,out_low:s,out_time:z,out_comment:n,profit:g,out_qty:r,max_profit:v,trading_loss:y});const T=(t-u)*m*L-E;Object.assign(e,{qty:L,profit:T,max_profit:d!==void 0?d-(v||0):void 0,trading_loss:A!==void 0?A-(y||0):void 0,total_profit:this._totalChangeCapital+T}),r=0}else{e.isDeal=!0;const L=(t-u)*m*l;this._calcPercent({...e,out_price:t,out_id:o,out_index:i,out_high:O,out_low:s,out_time:z,out_comment:n,out_qty:l,profit:L}),r-=l}return b&&(m===1?this._variables.strategy.marginCallLong++:this._variables.strategy.marginCallShort++),r}_calcPercent(e,t){const{commission_value:r,process_orders_on_close:o}=this._options,{in_price:n,out_qty:b=0,out_price:z=0,original_qty:i=0,direction:s,last_commission:O=0,immediately:a}=e;let{profit:u=0,max_profit:l,trading_loss:d,commission:A=0}=e,h=n*b,q=this._totalChangeCapital+this._options.initial_capital;if(this._totalChangeCapital+=u,r){const g=this._getCommission(z,b);this._totalChangeCapital-=g;let v=A*b/i;h+=v,v+=g,u=u-v,Object.assign(e,{commission:v});const y=this._orders.reduce((E,T)=>{const{qty:N=0,original_qty:D=0,commission:C=0}=T;return E+C*N/D},0);q+=y-O}const _=s===i1.long?1:-1;let[m,L]=this._calcProfitAndLossHandle(n,b,_,z);if(r){const g=A*b/i;m-=g,L-=g}l=Math.max(m,l||0),d=Math.min(L,d||0),u=parseFloat(String(u)),Object.assign(e,{max_profit:l,profit:u,trading_loss:d,total_profit:this._totalChangeCapital,total_profit_percent:u/q*100,profit_percent:u/h*100,max_profit_percent:l/h*100,trading_loss_percent:d/h*100}),this._maxDrawdownVerifyIndex=this._variables.bar_index+(o?1:0),this._risk.intradayOrders+=1,this._historyOrder.push(e),!t&&this._calcOrderFillsHandle(z,s,a)}_getCommission(e,t){const{commission_value:r=0,commission_type:o}=this._options,n=e*t;let b=0;switch(o){case a2.percent:b=n*r/100;break;case a2.cashPerContract:b=t*r;break;case a2.cashPerOrder:b=r;break}return b}_calcCurrentOrder(e){const{commission_value:t}=this._options,{in_price:r,qty:o=0,max_profit:n=0,trading_loss:b=0,direction:z,immediately:i}=e;let{profit:s=0}=e,O=r*o;const a=this._totalChangeCapital+this._options.initial_capital;if(t){const u=this._getCommission(r,o);this._totalChangeCapital-=u,s=s-u,O+=u,Object.assign(e,{commission:u,total_profit:this._totalChangeCapital})}s=parseFloat(String(s)),Object.assign(e,{original_qty:o,profit:s,total_profit_percent:s/a*100,profit_percent:s/O*100,max_profit_percent:n/O*100,trading_loss_percent:b/O*100,stop:void 0,limit:void 0}),this._risk.intradayOrders+=1,this._orders.push(e),this._variables.strategy.updateOrders(this._orders),t&&this._variables.strategy.updateHistoryOrders(this._historyOrder),this._calcOrderFillsHandle(r,z,i)}_calcOrderFillsHandle(e,t,r=!1){const{calc_on_order_fills:o,process_orders_on_close:n,slippage:b=0}=this._options;if(o){const{open:z,high:i,low:s,close:O}=this._variables,a=t===i1.long?1:-1,u=O-a*b*this._mintick;if((r||n)&&e===u)return;const l=z-a*b*this._mintick;let d={open:z,high:i,low:s,close:O},A={open:z,high:i,low:s,close:O},h=this.calcOnOrderFillsData.index;const q=Math.abs(i-z)<=Math.abs(s-z);switch(h){case-1:e===l?(h=0,A={open:z,high:z,low:z,close:z}):e>l?q?(h=1,A={open:z,high:i,low:z,close:i},d={open:i,high:i,low:s,close:O}):(h=2,A={open:z,high:i,low:s,close:i},d={open:i,high:i,low:O,close:O}):q?(h=2,A={open:z,high:i,low:s,close:s},d={open:s,high:O,low:s,close:O}):(h=1,A={open:z,high:z,low:s,close:s},d={open:s,high:i,low:s,close:O});break;case 0:e===l?(h=1,q?(A={open:z,high:i,low:z,close:i},d={open:i,high:i,low:s,close:O}):(A={open:z,high:z,low:s,close:s},d={open:s,high:i,low:s,close:O})):e>l?q?(h=1,A={open:z,high:i,low:z,close:i},d={open:i,high:i,low:s,close:O}):(h=2,A={open:z,high:i,low:s,close:i},d={open:i,high:i,low:O,close:O}):q?(h=2,A={open:z,high:i,low:s,close:s},d={open:s,high:O,low:s,close:O}):(h=1,A={open:z,high:z,low:s,close:s},d={open:s,high:i,low:s,close:O});break;case 1:h=2,q?(A={open:z,high:i,low:s,close:s},d={open:s,high:O,low:s,close:O}):(A={open:z,high:i,low:s,close:i},d={open:i,high:i,low:O,close:O});break;case 2:h=-1,d=void 0;break}this.calcOnOrderFillsData={tradeData:d,index:h,currentData:A}}}_isNaN(e){return e===void 0||isNaN(e)}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_verfiyRequestFunc(e,t){B0(this._errorListener,`strategy.${t}`,this._variables.__requestName,e)}};class lp{constructor(e,t,r){X(this,"array");X(this,"color");X(this,"math");X(this,"str");X(this,"map");X(this,"matrix");X(this,"timeframe");X(this,"ta");X(this,"input");X(this,"_variables");X(this,"_cacheData");X(this,"_options");X(this,"_errorListener");X(this,"_plots");X(this,"_plotshapes");X(this,"_plotbars");X(this,"_plotchars");X(this,"_plotarrows");X(this,"_plotcandles");X(this,"_alerts");X(this,"_bgColors");X(this,"_hlines");X(this,"_fills");X(this,"chart");X(this,"line");X(this,"label");X(this,"polyline");X(this,"box");X(this,"table");X(this,"linefill");X(this,"log");X(this,"runtime");X(this,"strategy");X(this,"request");X(this,"syminfo");X(this,"_count",0);var n;const o=((n=e.toString().split(".")[1])==null?void 0:n.length)||5;this._variables=t,this._errorListener=new um,this.array=new U4(this._errorListener),this.math=new j4(o),this.color=new f6,this.str=new l_(this._errorListener,o),this.map=new q_(this._errorListener),this.timeframe=new f_(t),this.matrix=new A_(this._errorListener),this.ta=new u6(t,this.math,this.timeframe),this._cacheData={},this._options={},this._bgColors={},this._alerts=new Map,this._hlines=new Map,this._fills=new Map,this.input=new A6(t,this._errorListener,r),this._plots=new Map,this._plotshapes=new Map,this._plotbars=new Map,this._plotcandles=new Map,this._plotchars=new Map,this._plotarrows=new Map,this.chart={point:new d_(t)},this.line=new H_(t,this._errorListener),this.label=new __(t,this._errorListener),this.polyline=new $_(t,this._errorListener),this.box=new K_(t,this._errorListener),this.table=new J_(t,this._errorListener),this.linefill=new Y_(t),this.log=new am(t,this.str),this.runtime=new Om(this._errorListener),this.strategy=new im(this._variables,this._options,e,this._errorListener,r),this.request=new cm(this._variables,r,this,this._errorListener),this.syminfo=new sm}get errors(){return this._errorListener.errors}get scriptType(){return this._options.scriptType}clearErrors(){this._errorListener.clear()}addErrors(e,t){this._errorListener.setErrors(e,t)}options(e,t){if(!t)return e.length?this._getDataOfBarindex(e):this._options;const r=this.input.getInputs(),o=this._alerts.size?[...this._alerts.values()]:void 0;this._alerts.clear();const n=Object.keys(this._bgColors);let b;if(n.length){b={};for(const _ of n)b[_]=[...this._bgColors[_].values()]}const z=this._hlines.size?[...this._hlines.values()]:void 0,i=this._fills.size?[...this._fills.values()]:void 0,s=this.log.logs.length?this.log.logs:void 0;this.log.clearLogs(),this._options.scriptType==="strategy"&&Object.assign(this._options,{orders:this.strategy.orders,historyOrders:this.strategy.historyOrders,strategySummary:this._variables.strategy.summaryData});const O=this._plots.size>0?[...this._plots.values()]:void 0,a=this._plotbars.size>0?[...this._plotbars.values()]:void 0,u=this._plotshapes.size>0?[...this._plotshapes.values()]:void 0,l=this._plotarrows.size>0?[...this._plotarrows.values()]:void 0,d=this._plotcandles.size>0?[...this._plotcandles.values()]:void 0,A=this._plotchars.size>0?[...this._plotchars.values()]:void 0,h=this._getDraws(),q=this._variables.chart.isUseBgColor;return Object.assign({},this._options,{inputs:r,plots:O,draws:h,alerts:o,colors:b,hlines:z,fills:i,logs:s,plotshapes:u,plotarrows:l,plotcandles:d,plotchars:A,plotbars:a,isUseBgColor:q})}_getDataOfBarindex(e){const t=this._alerts.size?[...this._alerts.values()]:void 0;this._alerts.clear();const r=Object.keys(this._bgColors);let o;if(r.length){o={};for(const q of r)o[q]=[...this._bgColors[q].values()].map(_=>{const m=[];for(const L of e){const g=_.data[L];g&&m.push(g)}return _.data=m,_})}const n=this._hlines.size?[...this._hlines.values()]:void 0,b=this._fills.size?this._getDataFromBarindex(e,[...this._fills.values()]):void 0,z=this.log.logs.length?this.log.logs:void 0;this.log.clearLogs(),this._options.scriptType==="strategy"&&Object.assign(this._options,{orders:this.strategy.orders,historyOrders:this.strategy.historyOrders});const i=this._getDataFromBarindex(e,[...this._plots.values()]),s=this._plotbars.size>0?this._getDataFromBarindex(e,[...this._plotbars.values()]):void 0,O=this._plotarrows.size>0?this._getDataFromBarindex(e,[...this._plotarrows.values()]):void 0,a=this._plotcandles.size>0?this._getDataFromBarindex(e,[...this._plotcandles.values()]):void 0,u=this._plotchars.size>0?this._getDataFromBarindex(e,[...this._plotchars.values()]):void 0,l=this._plotshapes.size>0?this._getDataFromBarindex(e,[...this._plotshapes.values()]):void 0,d=this._getDrawDeletes(e),A=this._getDrawsFromBarindex(e),h=this._variables.chart.isUseBgColor;return Object.assign({},this._options,{plots:i,plotarrows:O,plotcandles:a,plotchars:u,plotbars:s,draws:A,drawDeletes:d,alerts:t,colors:o,hlines:n,fills:b,logs:z,plotshapes:l,isUseBgColor:h})}_getDataFromBarindex(e,t){return t.map(r=>{const o=[];for(const n of e){const b=r.data[n];b&&o.push(b)}return r.data=o,{...r}})}_getDraws(){const{line:e,linefill:t,table:r,box:o,polyline:n,label:b}=this._variables,z={};return e.size&&(z.lines=e.data),t.size&&(z.linefills=t.data),r.size&&(z.tables=r.data),o.size&&(z.boxes=o.data),n.size&&(z.polylines=n.data),b.size&&(z.labels=b.data),Object.keys(z).length?z:void 0}_getDrawsFromBarindex(e){const{line:t,linefill:r,table:o,box:n,polyline:b,label:z}=this._variables,i={};return t.size&&(i.lines=t.getValOfBarIndex(e)||[]),r.size&&(i.linefills=r.getValOfBarIndex(e)),o.size&&(i.tables=o.getValOfBarIndex(e)),n.size&&(i.boxes=n.getValOfBarIndex(e)),b.size&&(i.polylines=b.getValOfBarIndex(e)),z.size&&(i.labels=z.getValOfBarIndex(e)),Object.keys(i).length?i:void 0}_getDrawDeletes(e){const{line:t,linefill:r,table:o,box:n,polyline:b,label:z}=this._variables,i={},s=t.getDeleteIds(e),O=r.getDeleteIds(e),a=o.getDeleteIds(e),u=n.getDeleteIds(e),l=b.getDeleteIds(e),d=z.getDeleteIds(e);return s.length&&(i.lines=s),O.length&&(i.linefills=O),a.length&&(i.tables=a),u.length&&(i.boxes=u),l.length&&(i.polylines=l),d.length&&(i.labels=d),i}updateOptions(e){var o;const{inputs:t,strategy:r}=e;this.input.update(t),r&&((o=this.strategy)==null||o.updateOptions(r))}update(e){const{barIndex:t}=e;this.strategy.update(),this.math.update(t)}endExecution(){this.strategy.endExecution()}library(e,t){if(!this._variables.bar_index){const r=/^[^\W\d\s][^\W\s]*$/,{title:o}=e;r.test(o)?(wu.includes(o)||Bu.includes(o))&&this._errorListener.addError(M2(l1.libraryTitleIsKeywordErr,{name:o}),t,j0.Error):this._errorListener.addError(l1.libraryTitleErr,t,j0.Error),this._options.scriptType="library",this._options.library=e}}indicator(e,t){if(!this._variables.bar_index){const{format:r,max_bars_back:o=0}=e;this._variables.max_bars_back=o,this._paramVerfiy(r,t,"indicator",[a1.inherit,a1.percent,a1.price,a1.volume]),this._variables.updateMaxLength(e),this._options.scriptType="indicator",this._options.indicator=e}}_paramVerfiy(e="",t,r,o,n="format"){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_lineWidthVerify(e,t){const{linewidth:r=1}=e;r<1&&(this._errorListener.addError(yu.lineWidthWarning,t,j0.Warning),e.linewidth=1)}plot(e,t){const r=["color"];F1(e,r);const{series:o,color:n,...b}=e,{bar_index:z,time:i}=this._variables,s=`plot_${t}`,O=this._plots.get(s),a=(O==null?void 0:O.data)||[],u=o!==void 0&&isNaN(o)?void 0:o;if(a[z]={value:[i,u],barIndex:z,itemStyle:{color:n}},this._seriesColorHandle(e,r,O),!O){this._count++,this._lineWidthVerify(b,t),this._paramVerfiy(e.format,t,"plot",[a1.percent,a1.price,a1.volume]);const l=n?[n]:void 0;this._plots.set(s,{editable:!0,...b,colors:l,data:a,id:s,zIndex:this._count})}return{type:"plot",offset:e.offset||0,key:s}}plotbar(e,t){const r=["color"];F1(e,r);const{open:o,close:n,low:b,high:z,color:i,...s}=e,{bar_index:O,time:a}=this._variables,u=`plotbar_${t}`,l=this._plotbars.get(u),d=(l==null?void 0:l.data)||[],A=n!==void 0&&isNaN(n)?void 0:n,h=o!==void 0&&isNaN(o)?void 0:o,q=b!==void 0&&isNaN(b)?void 0:b,_=z!==void 0&&isNaN(z)?void 0:z,m=[a,h,A,q,_];if(d[O]={value:m,barIndex:O,itemStyle:{color:i}},this._seriesColorHandle(e,r,l),!l){this._count++,this._paramVerfiy(e.format,t,"plotbar",[a1.percent,a1.price,a1.volume]);const L=i?[i]:void 0;this._plotbars.set(u,{editable:!0,...s,colors:L,data:d,id:u,zIndex:this._count})}}_verfiyArgs(e,t,r){const{size:o,format:n,location:b,style:z}=e;this._paramVerfiy(z,r,t,Object.values(X2),"style"),this._paramVerfiy(b,r,t,Object.values(ke),"location"),this._paramVerfiy(o,r,t,Object.values(f2),"size"),this._paramVerfiy(n,r,t,[a1.percent,a1.price,a1.volume],"format")}plotchar(e,t){const r=["color","textcolor"];F1(e,r);const{series:o,color:n,textcolor:b,location:z=ke.abovebar,...i}=e,{bar_index:s,time:O,high:a,low:u}=this._variables,l=`plotchar_${t}`,d=this._plotchars.get(l),A=(d==null?void 0:d.data)||[],h={value:[O,o],barIndex:s,itemStyle:{color:n,textcolor:b},low:u,high:a};A[s]=h,this._seriesColorHandle(e,r,d),d||(this._count++,this._verfiyArgs(e,"plotchar",t),this._plotchars.set(l,{editable:!0,...i,location:z,data:A,id:l,zIndex:this._count}))}plotarrow(e,t){const r=["colorup","colordown"];F1(e,r);const{series:o,colorup:n,colordown:b,...z}=e,{bar_index:i,time:s,low:O,high:a}=this._variables,u=`plotarrow_${t}`,l=this._plotarrows.get(u),d=(l==null?void 0:l.data)||[];d[i]={value:[s,o!==void 0&&isNaN(o)?void 0:o],barIndex:i,itemStyle:{colorup:n,colordown:b},low:O,high:a},this._seriesColorHandle(e,r,l),l||(this._count++,this._paramVerfiy(e.format,t,"plotarrow",[a1.percent,a1.price,a1.volume]),this._plotarrows.set(u,{editable:!0,...z,data:d,id:u,zIndex:this._count}))}plotshape(e,t){const r=["color","textcolor"];F1(e,r);const{series:o,color:n,textcolor:b,location:z=ke.abovebar,...i}=e,{bar_index:s,time:O,low:a,high:u}=this._variables,l=`plotshape_${t}`,d=this._plotshapes.get(l),A=(d==null?void 0:d.data)||[],h={value:o,barIndex:s,color:n,textcolor:b,time:O,low:a,high:u};if(A[s]=h,this._seriesColorHandle(e,r,d),!d){this._count++;const q=n?[n]:void 0;this._verfiyArgs(e,"plotshape",t),this._plotshapes.set(l,{editable:!0,...i,data:A,location:z,id:l,colors:q,zIndex:this._count})}}plotcandle(e,t){const r=["wickcolor","bordercolor","color"];F1(e,r);const{wickcolor:o,bordercolor:n,color:b,close:z,open:i,low:s,high:O,...a}=e,{bar_index:u,time:l}=this._variables,d=`plotcandle_${t}`,A=this._plotcandles.get(d),h=(A==null?void 0:A.data)||[],q=z!==void 0&&isNaN(z)?void 0:z,_=i!==void 0&&isNaN(i)?void 0:i,m=s!==void 0&&isNaN(s)?void 0:s,L=O!==void 0&&isNaN(O)?void 0:O,g=[l,_,q,m,L];h[u]={value:g,barIndex:u,wickcolor:o,bordercolor:n,color:b},this._seriesColorHandle(e,r,A),A||(this._count++,this._paramVerfiy(e.format,t,"plotcandle",[a1.percent,a1.price,a1.volume]),this._plotcandles.set(d,{editable:!0,...a,data:h,id:d,zIndex:this._count}))}hline(e,t){const r=`hline_${t}`;F1(e,["color"]),this._verifyDisplay(e.display,"hline",t);const n=e.display&&!e.display.length?A2.none:A2.all;return this._hlines.has(r)||(this._count++,this._lineWidthVerify(e,t),this._hlines.set(r,{id:r,linewidth:1,editable:!0,display:n,...e,zIndex:this._count})),{type:"hline",key:r}}fill(e,t){var E,T,N,D,C,P,H,G;const r=["color","top_color","bottom_color"];F1(e,r);const{color:o,top_color:n,bottom_color:b,seriesColors:z,hline1:i,hline2:s,plot1:O,plot2:a,top_value:u,bottom_value:l,...d}=e,{bar_index:A,time:h}=this._variables,q=`fill_${t}`,_=this._fills.get(q),m=(_==null?void 0:_.data)||[];this._verifyDisplay(e.display,"fill",t);const L=e.display&&!e.display.length?A2.none:A2.all;let g,v,y="plot";if(i&&s)g=(E=this._hlines.get(i==null?void 0:i.key))==null?void 0:E.price,v=(T=this._hlines.get(s==null?void 0:s.key))==null?void 0:T.price,y="hline";else{const k=this._plots.get(O==null?void 0:O.key),J=this._plots.get(a==null?void 0:a.key),o0=(k==null?void 0:k.data)||[],z0=(J==null?void 0:J.data)||[];if(g=(D=(N=o0[A])==null?void 0:N.value)==null?void 0:D[1],v=(P=(C=z0[A])==null?void 0:C.value)==null?void 0:P[1],!A){const O0=(k==null?void 0:k.force_overlay)&&(J==null?void 0:J.force_overlay);(k!=null&&k.force_overlay||J!=null&&J.force_overlay)&&!O0?this._errorListener.addError(l1.plotFillForceOverlayErr,t,j0.Error):d.force_overlay=O0}}if(m[A]={time:h,color:o,top_color:n,bottom_color:b,barIndex:A,plot1:g,plot2:v,top_value:u,bottom_value:l},this._seriesColorHandle(e,r,_),!_){this._count++;const k=((H=this._options.indicator)==null?void 0:H.explicit_plot_zorder)||((G=this._options.strategy)==null?void 0:G.explicit_plot_zorder),J=o?[o]:void 0,o0=n?[n]:void 0,z0=b?[b]:void 0;this._fills.set(q,{id:q,colors:J,top_colors:o0,bottom_colors:z0,display:L,data:m,type:y,editable:!0,fillgaps:!1,hline1:i,hline2:s,plot1:O,plot2:a,...d,zIndex:k?this._count:void 0})}}alert({message:e,freq:t=le.freqOncePerBar},r){const{bar_index:o,_isRealTimeBar:n,last_bar_index:b}=this._variables,z=`alert_${r}`,i=this._cacheData[z]||{},s=i.barIndex;if(this._paramVerfiy(t,r,"alert",[le.freqAll,le.freqOncePerBar,le.freqOncePerBarClose]),t===le.freqOncePerBar&&o===s){this._alerts.delete(z);return}this._cacheData[z]=i;const O={message:e,freq:t,id:z,type:"alert"};if(n){t!==le.freqOncePerBarClose&&this._alerts.set(z,O),i.barIndex=o;return}if(!n&&t===le.freqOncePerBarClose&&o===s&&b===o-1){this._alerts.set(z,O),i.barIndex=o;return}this._alerts.delete(z)}alertcondition({condition:e,message:t,title:r},o){const{_isRealTimeBar:n}=this._variables,b=`alertcondition_${o}`;n&&e?this._alerts.set(b,{message:t,title:r,id:b,type:"alertcondition"}):this._alerts.delete(b)}barcolor(e,t){this._setColors(e,"barcolor",t)}bgcolor(e,t){this._setColors(e,"bgcolor",t)}_verifyDisplay(e=T3.all,t,r){e.length&&e.length<4&&this._errorListener.addError(M2(l1.displayErr,{func:t,values:"[display.none, display.all]"}),r,j0.Error)}_setColors(e,t,r){F1(e,["color"]);const{color:n,...b}=e;this._verifyDisplay(b.display,t,r);const z=e.display&&!e.display.length?A2.none:A2.all,{bar_index:i,time:s}=this._variables,O=`${t}_${r}`;this._bgColors[t]||(this._bgColors[t]=new Map);const a=this._bgColors[t].get(O),u=(a==null?void 0:a.data)||[],l=(a==null?void 0:a.setColors)||[];n&&!l.includes(n)&&l.push(n),u[i]={color:n,time:s,barIndex:i},a||this._bgColors[t].set(O,{...b,display:z,data:u,setColors:l,id:O})}max_bars_back({num:e,var_name:t}){this._variables.__setBarsBackOfKey(t,e)}float({x:e}){return e}bool({x:e}){return e||!1}string({x:e}){return e}int({x:e}){return e&&Math.trunc(e)}na({x:e}){return!!(e===void 0||typeof e=="number"&&isNaN(e))}fixnan({source:e},t){return e===void 0||typeof e=="number"&&isNaN(e)?this._cacheData[`fixnan_${t}`]:(this._cacheData[`fixnan_${t}`]=e,e)}nz({source:e,replacement:t}){return e!==void 0&&!(typeof e=="number"&&isNaN(e))?e:t||0}time({timeframe:e="",session:t,timezone:r,bars_back:o=0},n){return this._timeHandle(this._variables.time,n,e,t,r,o)}time_close({timeframe:e="",session:t,timezone:r,bars_back:o=0},n){return this._timeHandle(this._variables.time,n,e,t,r,o,!0)}timestamp(e){const{dateString:t,timezone:r,year:o,month:n,day:b,hour:z=0,minute:i=0,second:s=0}=e;if(t)return _1(t).utc(!/GMT|UTC/.test(t)).valueOf();let O=n-1,a=o;if(O<0){const u=Math.ceil(Math.abs(O/12));O=12*u+O,a=o-u}return k4({year:a,month:O,day:b,hour:z,minute:i,second:s},r)}weekofyear({time:e,timezone:t}){return ne(e,t).week()}year({time:e,timezone:t}){return ne(e,t).year()}second({time:e,timezone:t}){return ne(e,t).second()}month({time:e,timezone:t}){return ne(e,t).month()+1}minute({time:e,timezone:t}){return ne(e,t).minute()}hour({time:e,timezone:t}){return ne(e,t).hour()}dayofweek({time:e,timezone:t}){return ne(e,t).weekday()}dayofmonth({time:e,timezone:t}){return ne(e,t).date()}_calcTimeOffset(e,t){const r=this._variables.getTimeTradingday(e,this._variables.timeframe.period),o=N2(t,e)*1e3;return e-r-Math.floor((e-r)/o)*o}_timeHandle(e,t,r="",o,n,b=0,z=!1){const i=r||this._variables.__period,s=N2(i,e),O=N2(this._variables.__period,e);let a;if(s<=O)a=e,z&&(a+=O*1e3);else{const u=`time_${t}`,l=this._cacheData[u];if(l)l.currentTime+s*1e3-l.offset<=e?(a=e,this._cacheData[u]={currentTime:e,offset:0}):a=l.currentTime;else{const d=this._calcTimeOffset(e,i);this._cacheData[u]={currentTime:e,offset:d},a=e}z&&(a+=s*1e3)}if(o&&o!==At.regular&&o!==At.extended){const{timePeriods:u,weeks:l}=this._parserSession(o,t),d=ne(e,n),A=d.format("YYYY-MM-DD HH:mm"),h=d.format("YYYY-MM-DD"),q=a,_=ne(a,n).format("YYYY-MM-DD HH:mm");a=void 0;for(const L of u){const[g,v]=L;let y;if((g===v||Number(g==null?void 0:g.replace(":",""))>Number(v==null?void 0:v.replace(":","")))&&(y=d.add(1,"day").format("YYYY-MM-DD")),_1(A).isBetween(`${h} ${g}`,`${y||h} ${v}`,"hour","[)")){_1(_).isBetween(`${h} ${g}`,`${y||h} ${v}`,"hour","[)")?a=q:a=ne(`${h} ${g}`,n).valueOf();break}}const m=this._variables.dayofweek;a&&!l.includes(m)&&(a=void 0)}return a&&a-b*O*1e3}_seriesColorHandle(e,t,r){var o;if(r&&t!=null&&t.length)for(const n of t){if((o=r.gradientColorKeys)!=null&&o.includes(n))continue;const b=e[n];if(!b)continue;const z=r[`${n}s`]||[];z.includes(b)||(z.push(b),r[`${n}s`]=z,z.length>5&&(r[`${n}s`]=[],r.gradientColorKeys=r.gradientColorKeys||[],r.gradientColorKeys.push(n)))}}_parserSession(e,t){const r=e.split(":"),o=r[0],b=(r[1]||"1234567").split("").map(i=>{const s=parseInt(i,10);if(s<1||s>7){this._errorListener.addError(`Invalid day of week: ${i}`,t,j0.Error);return}return s});return{timePeriods:o.split(",").map(i=>{i===""||i===At.regular?i="0930-1500":i===At.extended&&(i="1500-1830");const s=i.split("-");return s.length!==2?[]:[this._processTime(s[0],t),this._processTime(s[1],t)]}),weeks:b}}_processTime(e,t){const r=e.slice(0,2),o=e.slice(2),n=parseInt(r,10),b=parseInt(o,10);if(!(n>=0&&n<=23)&&b>=0&&b<=59){this._errorListener.addError("Invalid time: Time must be within 00:00 to 23:59",t,j0.Error);return}return`${r}:${o}`}}let cm=class{constructor(e,t,r,o){X(this,"_variables");X(this,"_scriptId");X(this,"_cacheData");X(this,"_funcs");X(this,"_errorListener");this._variables=e,this._scriptId=t,this._cacheData=new Map,this._funcs=r,this._errorListener=o}security(e,t){var d;const r=self.workerStorage.get(`request_${this._scriptId}`),{__requestName:o,__period:n}=this._variables;e.symbol=this._symbolTransform(e.symbol),e.timeframe=e.timeframe||n;let{symbol:b,timeframe:z,paramsExpr:i=[]}=e;z=hr(z);const s=`${b}--${z}`,O=`${o}${t}_${s}`,a=this._getRequestData(e,O);if(r!=null&&r.has(O))return(d=a==null?void 0:a.result)==null?void 0:d[O];const u=this._parseExprCode(e),l=this._runScriptHandle(u,O,i,a,!0);return r==null||r.set(O,{id:O,isRun:!1,strJs:u,dataId:s,interval:z,symbol:b,paramsExpr:i}),l}security_lower_tf(e,t){const r=self.workerStorage.get(`request_${this._scriptId}`),{__period:o,__requestName:n}=this._variables;e.symbol=this._symbolTransform(e.symbol),e.timeframe=e.timeframe||o;let{symbol:b,timeframe:z,paramsExpr:i=[]}=e;z=hr(z);const s=`${b}--${z}`,O=`${n}${t}_${s}`,a=r==null?void 0:r.get(O),u=this._getRequestLowerTfData(e,t,O,a==null?void 0:a.defaultResult),l=new M1(0,void 0,this._errorListener,C0.FLOAT);if(a!=null&&a.strJs)return a!=null&&a.defaultResult?u!=null&&u.length?u.map(q=>{const _=new M1(0,void 0,this._errorListener,C0.FLOAT);return _._value=q,_}):a==null?void 0:a.defaultResult:u&&(l._value=u,l);const d=this._parseExprCode(e),A={id:O,strJs:d,isRun:!1,dataId:s,interval:z,symbol:b,paramsExpr:i,defaultResult:void 0};r==null||r.set(O,A);const h=this._runScriptHandle(d,O,i,u,!0);return Array.isArray(h)?(A.defaultResult=h.map(()=>new M1(0,void 0,this._errorListener,C0.FLOAT)),A.defaultResult):l}_symbolTransform(e){if(!e)return this._variables.syminfo.tickerid;let[t,r]=e.split(":");return r?t=Xu[t]||t:(r=t,t="FX"),`${t}:${r}`}_runScriptHandle(e,t,r,o,n){const{result:b,logs:z,errors:i}=this._runScripts(e,t,n,r,o);return this._funcs.log.mergeLogs(z),this._funcs.addErrors(i,t),b}_getCurrentData(e){let{symbol:t,timeframe:r}=e;const{__period:o,syminfo:{ticker:n,tickerid:b}}=this._variables;if(r=hr(r),(o===r||r==="")&&(t===n||t===b||!t)){const{close:z,open:i,high:s,low:O,bar_index:a,last_bar_index:u,last_bar_time:l,_isRealTimeBar:d,volume:A,time:h,time_tradingday:q,mintick:_,nextBarTime:m}=this._variables;return{barIndex:a,c:z,o:i,h:s,l:O,volume:A,lastBarIndex:u,lastBarTime:l/1e3,nextBarTime:m?m/1e3:void 0,isrealtime:d,time_tradingday:q,time:h/1e3,interval:o,mintick:_}}}_parseExprCode(e){let{expression:t,paramsExpr:r=[]}=e,o=[];t=ac(t);const n=JSON.parse(t),b=n.pop();let z=(b==null?void 0:b.memberCodes)||{},i=(b==null?void 0:b.depends)||[];if(!i.length)return`return ${b==null?void 0:b.code}`;let s=[],O=[],a=[];if(this._getDependCodes(i,n,o,s,O,a),this._getStmtFuncs(o,n,a,s,O),O.length){const h=r.length;for(let q=h-1;q>=0;q--){const _=r[q];let m=JSON.parse(ac(_));const L=[];m=m.map(y=>{const{type:E,code:T,varNames:N,dependSelf:D}=y;return E===2&&!L.includes(N)&&!D&&(y.code=`let ${T}`),N&&L.push(...N.split(", ")),y.memberCodes&&Object.assign(z,{...y.memberCodes}),y});const g=[];let v=O.map(y=>({...y,isArg:!1,isPreArg:!0}));O=[],this._getDependCodes(v,m,o,s,O,g),this._getStmtFuncs(o,m,g,s,O)}}const u=o.filter(h=>!!h).map((h,q)=>{let _=h.join(`
76
+ `)}}if(typeof e=="string")return e;if(typeof e=="boolean")return String(e);if(typeof e=="number")return String(this._toStringFormat(e,t==null?void 0:t.replace(/0/g,"#")))}_arrToStr(e,t){return`[${e.map(o=>typeof o=="number"?this._toStringFormat(o,t):o).toString()}]`}substring({source:e="",begin_pos:t=0,end_pos:r}){return l0(t)&&(t=0),l0(r)&&(r=void 0),e==null?void 0:e.substring(t,r)}startswith({source:e="",str:t=""}){return e==null?void 0:e.startsWith(t)}format_time({time:e,format:t="yyyy-MM-dd'T'HH:mm:ssZ",timezone:r}){return l0(e)&&(e=0),ne(e,r).format(t)}replace_all({source:e="",target:t="",replacement:r=""}){return e==null?void 0:e.replace(new RegExp(t,"g"),r)}_toStringFormat(e,t){if(!t)return Number(e==null?void 0:e.toFixed(10));switch(t){case a1.mintick:return e==null?void 0:e.toFixed(this._precision);case a1.percent:return`${Number(e.toFixed(2))}%`;case a1.volume:return this._intlNumberFormatter.format(Math.round(e));default:return this._formatOthers(e,t)}}_formatOthers(e,t){var z;if(l0(e))return NaN;let[r,o]=t.split(".");t.split("%").length===2&&(e=e*100);let[n,b=""]=String(e).split(".");if(r.includes("#")){if(r.includes(",")){const i=r.split(","),s=((z=i[i.length-1])==null?void 0:z.replace(/[^#]/g,"").length)||0;s&&(n=n.replace(new RegExp(`\\B(?=(\\d{${s}})+(?!\\d))`,"g"),",")),r=i.join("")}n=r.replace(/#/,n).replace(/#/g,"")}else n=`${r}${n}`;if(o&&o.includes("#")){const i=o.split("#").length-1,s=+`${n}.${b}`;if(!isNaN(s)){const O=`${s.toFixed(i)}${o.replace(/#/g,"")}`,a=Number(O);return isNaN(a)?O:a}b=`${b.substring(0,i)}${o.replace(/#/g,"")}`}else b=o||"";if(b){const i=+`${n}.${b}`;return isNaN(i)?`${n}.${b}`:i}else return n}_formatNumber(e,t){if(!t)return Number(e==null?void 0:e.toFixed(this._precision));switch(t){case"integer":return String(Math.round(e));case"currency":return`$${e}`;case"percent":return`${e*100}%`;default:return this._formatOthers(e,t)}}strformat({formatString:e=""},t,r){return this._strFormat(e,t,r)}_strFormat(e,t,r){return e.replace(/{[^{}]+}/g,o=>{if(!o)return o;const n=o.replace(/[{}]/g,"").split(","),b=Number(n[0]);if(isNaN(b)||t.length<=b)return o;const z=t[b];if(n.length===1)return typeof z=="number"?r?this._intlFormat.format(z):Number(z.toFixed(this._precision)):z===void 0?"":z;if(n.length===2){const i=n[1].trim();return i==="number"?r?this._intlFormat.format(z):Number(z.toFixed(this._precision)):i==="date"?_1(z).format("LL"):o}else{const i=n[1].trim(),s=n[2].trim();if(i==="number")return this._formatNumber(z,s);if(i==="date"){let O="YYYY-MM-DD";switch(s){case"long":O="LL";break;case"short":O="L";break;default:s&&(O=s)}return _1(z).format(O)}return o}})}}class q_{constructor(e){X(this,"_errorListener");this._errorListener=e}new(){return new Ap(this._errorListener)}copy({id:e}){return e==null?void 0:e.copy()}get({id:e,key:t}){return e==null?void 0:e.get({key:t})}put({id:e,key:t,value:r}){return e==null?void 0:e.put({key:t,value:r})}keys({id:e}){return e==null?void 0:e.keys()}size({id:e}){return e==null?void 0:e.size()}clear({id:e}){e==null||e.clear()}remove({id:e,key:t}){return e==null?void 0:e.remove({key:t})}values({id:e}){return e==null?void 0:e.values()}put_all({id:e,id2:t}){e==null||e.put_all({id2:t})}contains({id:e,key:t}){return e==null?void 0:e.contains({key:t})}}class Ap{constructor(e){X(this,"_errorListener");X(this,"_mapInstance");this._errorListener=e,this._mapInstance=new Map}get isMap(){return!0}get _value(){return this._mapInstance}_copyMap(e){const t=new Ap(this._errorListener);return t._mapInstance=new Map(e.entries()),t}copy(){return this._copyMap(this._mapInstance)}get({key:e}){return this._mapInstance.get(e)}put({key:e,value:t}){return this._mapInstance.set(e,t)}keys(){const e=new M1(0,void 0,this._errorListener);return e._value=[...this._mapInstance.keys()],e}size(){return this._mapInstance.size}clear(){this._mapInstance.clear()}remove({key:e}){const t=this._mapInstance.get(e);return this._mapInstance.delete(e),t||void 0}values(){const e=new M1(0,void 0,this._errorListener);return e._value=[...this._mapInstance.values()],e}put_all({id2:e}){this._mapInstance=new Map([...this._mapInstance,...e._mapInstance])}contains({key:e}){return this._mapInstance.has(e)}}class d_{constructor(e){X(this,"_variables");this._variables=e}new({price:e,time:t,index:r}){return new Er(e,r,t)}now({price:e}){const{time:t,bar_index:r}=this._variables;return new Er(e,r,t)}copy({id:e}){return e==null?void 0:e.copy()}from_index({price:e,index:t}){return new Er(e,t)}from_time({price:e,time:t}){return new Er(e,void 0,t)}}class Er{constructor(e,t,r){X(this,"_index");X(this,"_price");X(this,"_time");this._index=t&&Math.round(t),this._price=e,this._time=r}get index(){return this._index}set index(e){this._index=e&&Math.round(e)}get price(){return this._price}set price(e){this._price=e}get time(){return this._time}set time(e){this._time=e}copy(){return new Er(this._price,this._index,this._time)}}const h_=["point","text","xloc","yloc","color","style","textcolor","size","textalign","tooltip","text_font_family","force_overlay"],W_=["x","y","text","xloc","yloc","color","style","textcolor","size","textalign","tooltip","text_font_family","force_overlay"];class __{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultLabel",{text:"",xloc:y1.bar_index,yloc:te.price,size:f2.normal,style:E1.styleLabelDown,textalign:S0.alignCenter});this._variables=e,this._errorListener=t}new(e,t,r){B0(this._errorListener,"label.new",this._variables.__requestName,t);const{time:o,high:n,low:b,bar_index:z}=this._variables,i=`label_${t}_${z}`;e=this._parameterHandle(e,r),F1(e,["color","textcolor"]);const s={...this._defaultLabel,...e,id:i,time:o,high:n,low:b,bar_index:z};e.x&&(s.x=e.x&&Math.round(e.x)),e.point&&(s.x=s.xloc===y1.bar_index?e.point.index:e.point.time,s.y=e.point.price),s.yloc===te.abovebar?s.y=n:s.yloc===te.belowbar&&(s.y=b),this._verfiyArgs(e,t);const O=new Ko(i,this._variables,this._errorListener,s);return t.startsWith("export")||this._variables.label.add(i,s,O),O}_parameterHandle(e,t){const{x:r,y:o,point:n,...b}=e;if(typeof n=="object"||typeof r=="number"||typeof o=="number")return e;const z=b;if(t[0]===h_[0]&&(typeof n=="number"||this._preVerfiyArgs(e)))for(const[i,s]of t.entries()){const O=z[s];z[s]=void 0,z[W_[i]]=O}return z}_preVerfiyArgs(e){const{xloc:t,yloc:r,style:o,size:n,textalign:b,text_font_family:z}=e;return this._paramVerfiyHandle(o,Object.values(E1))||this._paramVerfiyHandle(t,Object.values(y1))||this._paramVerfiyHandle(r,Object.values(te))||this._paramVerfiyHandle(n,Object.values(f2))||this._paramVerfiyHandle(b,[S0.alignLeft,S0.alignCenter,S0.alignRight])||this._paramVerfiyHandle(z,Object.values(Ue))}_paramVerfiyHandle(e="",t){return e&&!t.includes(e)}_verfiyArgs(e,t){const{xloc:r,yloc:o,style:n,size:b,textalign:z,text_font_family:i}=e,s="label.new";this._paramVerfiy(n,t,s,Object.values(E1),"style"),this._paramVerfiy(r,t,s,Object.values(y1),"xloc"),this._paramVerfiy(o,t,s,Object.values(te),"yloc"),this._paramVerfiy(b,t,s,Object.values(f2),"size"),this._paramVerfiy(z,t,s,[S0.alignLeft,S0.alignCenter,S0.alignRight],"textalign"),this._paramVerfiy(i,t,s,Object.values(Ue),"text_font_family")}_paramVerfiy(e="",t,r,o,n){this._paramVerfiyHandle(e,o)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}label(e){return e.x}copy({id:e},t){return e==null?void 0:e.copy(t)}get_x({id:e},t){return e==null?void 0:e.get_x(t)}get_y({id:e},t){return e==null?void 0:e.get_y(t)}set_x({id:e,...t},r){e==null||e.set_x(t,r)}set_y({id:e,...t},r){e==null||e.set_y(t,r)}delete({id:e},t){e==null||e.delete(t)}get_text({id:e},t){return e==null?void 0:e.get_text(t)}set_xy({id:e,...t},r){e==null||e.set_xy(t,r)}set_size({id:e,...t},r){e==null||e.set_size(t,r)}set_xloc({id:e,...t},r){e==null||e.set_xloc(t,r)}set_yloc({id:e,...t},r){e==null||e.set_yloc(t,r)}set_style({id:e,...t},r){e==null||e.set_style(t,r)}set_color({id:e,...t},r){e==null||e.set_color(t,r)}set_tooltip({id:e,...t},r){e==null||e.set_tooltip(t,r)}set_point({id:e,...t},r){e==null||e.set_point(t,r)}set_text({id:e,...t},r){e==null||e.set_text(t,r)}set_textcolor({id:e,...t},r){e==null||e.set_textcolor(t,r)}set_textalign({id:e,...t},r){e==null||e.set_textalign(t,r)}set_text_font_family({id:e,...t},r){e==null||e.set_text_font_family(t,r)}}class Ko{constructor(e,t,r,o){X(this,"_id");X(this,"_variables");X(this,"_errorListener");X(this,"_suffix","");X(this,"_preId","");X(this,"_data");this._id=e,this._variables=t,this._errorListener=r,this._data=o}get type(){return C0.LABEL}get id(){return this._id}get preId(){return this._preId}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}set data(e){this._data=e}get data(){return this._variables.label.get(this._id)||this._data}copy(e){B0(this._errorListener,"label.copy",this._variables.__requestName,e);const{bar_index:t}=this._variables,r=`label_${e}_${t}`,o=this._getLabel(e),n={...o||{},id:r,bar_index:t},b=new Ko(r,this._variables,this._errorListener,n);return o&&this._variables.label.add(r,n,b),b}get_x(e){var t;return B0(this._errorListener,"label.get_x",this._variables.__requestName,e),(t=this._getLabel(e))==null?void 0:t.x}get_y(e){var t;return B0(this._errorListener,"label.get_y",this._variables.__requestName,e),(t=this._getLabel(e))==null?void 0:t.y}set_x({x:e},t){B0(this._errorListener,"label.set_x",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.x=e&&Math.round(e))}set_y({y:e},t){B0(this._errorListener,"label.set_y",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.y=e)}delete(e){B0(this._errorListener,"label.delete",this._variables.__requestName,e),this._variables.label.delete(this._id,this._variables.bar_index,this._data.id)}set_xy({x:e,y:t},r){B0(this._errorListener,"label.set_xy",this._variables.__requestName,r);const o=this._getLabel(r);o&&(o.x=e&&Math.round(e),o.y=t)}get_text(e){var t;return B0(this._errorListener,"label.get_text",this._variables.__requestName,e),(t=this._getLabel(e))==null?void 0:t.text}set_size({size:e},t){B0(this._errorListener,"label.set_size",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.size=e),this._paramVerfiy(e,t,"label.set_size",Object.values(f2),"size")}set_text({text:e},t){B0(this._errorListener,"label.set_text",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.text=e)}set_xloc({x:e,xloc:t},r){B0(this._errorListener,"label.set_xloc",this._variables.__requestName,r);const o=this._getLabel(r);o&&(o.x=e&&Math.round(e),o.xloc=t,this._paramVerfiy(t,r,"label.set_xloc",Object.values(y1),"xloc"))}set_yloc({yloc:e},t){B0(this._errorListener,"label.set_yloc",this._variables.__requestName,t);const r=this._getLabel(t),{high:o,low:n}=this._variables;r&&(r.yloc=e,e===te.abovebar?r.y=o:e===te.belowbar&&(r.y=n),this._paramVerfiy(e,t,"label.set_yloc",Object.values(te),"yloc"))}set_color(e,t){B0(this._errorListener,"label.set_color",this._variables.__requestName,t);const r=this._getLabel(t);F1(e,["color"]),r&&(r.color=e.color)}set_point({point:e},t){B0(this._errorListener,"label.set_point",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.x=r.xloc===y1.bar_index?e==null?void 0:e.index:e==null?void 0:e.time,r.y=e==null?void 0:e.price)}set_style({style:e},t){B0(this._errorListener,"label.set_style",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.style=e),this._paramVerfiy(e,t,"label.set_style",Object.values(E1),"style")}set_tooltip({tooltip:e},t){B0(this._errorListener,"label.set_tooltip",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.tooltip=e)}set_textalign({textalign:e},t){B0(this._errorListener,"label.set_textalign",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.textalign=e),this._paramVerfiy(e,t,"label.set_textalign",[S0.alignLeft,S0.alignCenter,S0.alignRight],"textalign")}set_textcolor(e,t){B0(this._errorListener,"label.set_textcolor",this._variables.__requestName,t);const r=this._getLabel(t);F1(e,["textcolor"]),r&&(r.textcolor=e.textcolor)}set_text_font_family({text_font_family:e},t){B0(this._errorListener,"label.set_text_font_family",this._variables.__requestName,t);const r=this._getLabel(t);r&&(r.text_font_family=e),this._paramVerfiy(e,t,"label.set_text_font_family",Object.values(Ue),"text_font_family")}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_getLabel(e){const t=this._variables.label.get(this._id)||this._data;return t||console.log(`错误${e}: label 不存在`),t}}const m_={freq_all:le.freqAll,freq_once_per_bar:le.freqOncePerBar,freq_once_per_bar_close:le.freqOncePerBarClose},g_={gaps_off:Pe.gapsOff,gaps_on:Pe.gapsOn,lookahead_off:Pe.lookaheadOff,lookahead_on:Pe.lookaheadOn},Tr={aqua:"#00BCD4",black:"#363A45",blue:"#2962ff",fuchsia:"#E040FB",gray:"#787B86",green:"#4CAF50",lime:"#00E676",maroon:"#880E4F",navy:"#311B92",olive:"#808000",orange:"#FF9800",purple:"#9C27B0",red:"#FF5252",silver:"#B2B5BE",teal:"#00897B",white:"#FFFFFF",yellow:"#FFEB3B"},E3={AUD:"AUD",BTC:"BTC",CAD:"CAD",CHF:"CHF",ETH:"ETH",EUR:"EUR",GBP:"GBP",HKD:"HKD",INR:"INR",JPY:"JPY",KRW:"KRW",MYR:"MYR",NOK:"NOK",NONE:"NONE",NZD:"NZD",RUB:"RUB",SEK:"SEK",SGD:"SGD",TRY:"TRY",USD:"USD",USDT:"USDT",ZAR:"ZAR"},R_={friday:6,monday:2,saturday:7,sunday:1,thursday:5,tuesday:3,wednesday:4},T3={all:[A2.dataWindow,A2.pane,A2.priceScale,A2.statusLine],data_window:[A2.dataWindow],none:[],pane:[A2.pane],price_scale:[A2.priceScale],status_line:[A2.statusLine]},L_={both:P2.both,left:P2.left,none:P2.none,right:P2.right},v_={inherit:a1.inherit,mintick:a1.mintick,percent:a1.percent,price:a1.price,volume:a1.volume},N_={style_solid:kM.styleSolid,style_dashed:kM.styleDashed,style_dotted:kM.styleDotted},y_={style_arrowdown:E1.styleArrowdown,style_arrowup:E1.styleArrowup,style_circle:E1.styleCircle,style_cross:E1.styleCross,style_diamond:E1.styleDiamond,style_flag:E1.styleFlag,style_label_center:E1.styleLabelCenter,style_label_down:E1.styleLabelDown,style_label_left:E1.styleLabelLeft,style_label_lower_left:E1.styleLabelLowerLeft,style_label_lower_right:E1.styleLabelLowerRight,style_label_right:E1.styleLabelRight,style_label_up:E1.styleLabelUp,style_label_upper_left:E1.styleLabelUpperLeft,style_label_upper_right:E1.styleLabelUpperRight,style_none:E1.styleNone,style_square:E1.styleSquare,style_text_outline:E1.styleTextOutline,style_triangledown:E1.styleTriangledown,style_triangleup:E1.styleTriangleup,style_xcross:E1.styleXcross},B_={style_arrow_both:H1.styleArrowBoth,style_arrow_left:H1.styleArrowLeft,style_arrow_right:H1.styleArrowRight,style_dashed:H1.styleDashed,style_dotted:H1.styleDotted,style_solid:H1.styleSolid},w_={abovebar:ke.abovebar,absolute:ke.absolute,belowbar:ke.belowbar,bottom:ke.bottom,top:ke.top},D_={e:2.718281828459045,phi:1.618033988749895,pi:3.141592653589793,rphi:.6180339887498948},X_={style_area:ee.styleArea,style_areabr:ee.styleAreabr,style_circles:ee.styleCircles,style_columns:ee.styleColumns,style_cross:ee.styleCross,style_histogram:ee.styleHistogram,style_line:ee.styleLine,style_linebr:ee.styleLinebr,style_stepline:ee.styleStepline,style_stepline_diamond:ee.styleSteplineDiamond,style_steplinebr:ee.styleSteplinebr},E_={bottom_center:k2.bottomCenter,bottom_left:k2.bottomLeft,bottom_right:k2.bottomRight,middle_center:k2.middleCenter,middle_left:k2.middleLeft,middle_right:k2.middleRight,top_center:k2.topCenter,top_left:k2.topLeft,top_right:k2.topRight},T_={left:$M.left,none:$M.none,right:$M.right},C_={arrowdown:X2.arrowdown,arrowup:X2.arrowup,circle:X2.circle,cross:X2.cross,diamond:X2.diamond,flag:X2.flag,labeldown:X2.labeldown,labelup:X2.labelup,square:X2.square,triangledown:X2.triangledown,triangleup:X2.triangleup,xcross:X2.xcross},x_={auto:f2.auto,huge:f2.huge,large:f2.large,normal:f2.normal,small:f2.small,tiny:f2.tiny},S_={cash:b2.cash,fixed:b2.fixed,percent_of_equity:b2.percentOfEquity,commission:{cash_per_contract:a2.cashPerContract,cash_per_order:a2.cashPerOrder,percent:a2.percent},direction:{all:i1.all,long:i1.long,short:i1.short},oca:{cancel:je.cancel,none:je.none,reduce:je.reduce}},F_={align_bottom:S0.alignBottom,align_center:S0.alignCenter,align_left:S0.alignLeft,align_right:S0.alignRight,align_top:S0.alignTop,wrap_auto:S0.wrapAuto,wrap_none:S0.wrapNone},I_={bar_index:y1.bar_index,bar_time:y1.bar_time},P_={abovebar:te.abovebar,belowbar:te.belowbar,price:te.price},k_={actual:UM.actual,estimate:UM.estimate,standardized:UM.standardized};class fp{constructor(){X(this,"adjustment",{dividends:PM.dividends,none:PM.none,splits:PM.splits});X(this,"alert",m_);X(this,"barmerge",g_);X(this,"color",Tr);X(this,"currency",E3);X(this,"dayofweek",R_);X(this,"earnings",k_);X(this,"display",T3);X(this,"extend",L_);X(this,"font",{family_default:Ue.familyDefault,family_monospace:Ue.familyMonospace});X(this,"format",v_);X(this,"hline",N_);X(this,"label",y_);X(this,"line",B_);X(this,"location",w_);X(this,"math",D_);X(this,"order",{ascending:$e.ascending,descending:$e.descending});X(this,"plot",X_);X(this,"position",E_);X(this,"scale",T_);X(this,"session",{extended:At.extended,regular:At.regular});X(this,"shape",C_);X(this,"size",x_);X(this,"splits",{denominator:"denominator",numerator:"numerator"});X(this,"strategy",S_);X(this,"text",F_);X(this,"xloc",I_);X(this,"yloc",P_)}updateData(){}}class $_{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultPolyline",{curved:!1,closed:!1,xloc:y1.bar_index,line_color:Tr.blue,line_style:H1.styleSolid,line_width:1});this._variables=e,this._errorListener=t}new(e,t){var z;B0(this._errorListener,"polyline.new",this._variables.__requestName,t);const{bar_index:r}=this._variables,o=`polyline_${t}_${r}`,n=Object.assign({},this._defaultPolyline,e,{id:o,bar_index:r,points:(z=e.points)==null?void 0:z._value.map(i=>({time:i.time,index:i.index,price:i.price}))});F1(n,["line_color","fill_color"]);const b=new C3(o,this._variables,n);return this._verfiyArgs(e,t),t.startsWith("export")||this._variables.polyline.add(o,n,b),b}_verfiyArgs(e,t){const{line_style:r,xloc:o}=e,n="polyline.new";this._paramVerfiy(r,t,n,Object.values(H1),"line_style"),this._paramVerfiy(o,t,n,Object.values(y1),"xloc")}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}delete({id:e}){e&&e.delete()}}class C3{constructor(e,t,r){X(this,"_id");X(this,"_variables");X(this,"_suffix");X(this,"_preId","");X(this,"_data");this._variables=t,this._id=e,this._data=r}get type(){return C0.POLYLINE}get id(){return this._id}get preId(){return this._preId}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}set data(e){this._data=e}get data(){return this._variables.polyline.get(this._id)||this._data}delete(){this._variables.polyline.delete(this._id,this._variables.bar_index,this._data.id)}}const U_=["first_point","second_point","xloc","extend","color","style","width","force_overlay"],j_=["x1","y1","x2","y2","xloc","extend","color","style","width","force_overlay"];class H_{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultLine",{xloc:y1.bar_index,extend:P2.none,style:H1.styleSolid});this._variables=e,this._errorListener=t}new(e,t,r){B0(this._errorListener,"line.new",this._variables.__requestName,t);const{bar_index:o}=this._variables,n=`line_${t}_${o}`;e=this._parameterHandle(e,r);const{first_point:b,second_point:z,...i}=e;F1(i,["color"]);const s={...this._defaultLine,...i,id:n,bar_index:o},{x1:O,x2:a}=s;if(O&&(s.x1=O&&Math.round(O)),a&&(s.x2=a&&Math.round(a)),b&&z){const l=s.xloc===y1.bar_index?b==null?void 0:b.index:b==null?void 0:b.time,d=s.xloc===y1.bar_index?z==null?void 0:z.index:z==null?void 0:z.time;Object.assign(s,{x1:l,y1:b==null?void 0:b.price,x2:d,y2:z==null?void 0:z.price})}this._verfiyArgs(i,t);const u=new Jo(n,this._variables,this._errorListener,s);return t.startsWith("export")||this._variables.line.add(n,s,u),u}_parameterHandle(e,t){const{x1:r,y1:o,x2:n,y2:b,first_point:z,second_point:i,...s}=e;if(typeof z=="object"||typeof i=="object"||typeof r=="number"||typeof o=="number"||typeof n=="number"||typeof b=="number")return e;const O=s;if(t[0]===j_[0]&&(typeof r=="object"||typeof o=="object"||typeof n=="string"||typeof b=="string"||this._preVerfiyArgs(e)))for(const[a,u]of t.entries()){const l=O[u];O[u]=void 0,O[U_[a]]=l}return O}_preVerfiyArgs(e){const{extend:t,xloc:r,style:o}=e;return this._paramVerfiyHandle(o,Object.values(H1))||this._paramVerfiyHandle(r,Object.values(y1))||this._paramVerfiyHandle(t,Object.values(P2))}_paramVerfiyHandle(e="",t){return e&&!t.includes(e)}_verfiyArgs(e,t){const{extend:r,xloc:o,style:n}=e,b="line.new";this._paramVerfiy(n,t,b,Object.values(H1),"style"),this._paramVerfiy(r,t,b,Object.values(P2),"extend"),this._paramVerfiy(o,t,b,Object.values(y1),"xloc")}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}line(e){return e.x}copy({id:e},t){return e==null?void 0:e.copy(t)}delete({id:e},t){e==null||e.delete(t)}get_x1({id:e},t){return e==null?void 0:e.get_x1(t)}get_x2({id:e},t){return e==null?void 0:e.get_x2(t)}get_y1({id:e},t){return e==null?void 0:e.get_y1(t)}get_y2({id:e},t){return e==null?void 0:e.get_y2(t)}set_x1({id:e,...t},r){e==null||e.set_x1(t,r)}set_x2({id:e,...t},r){e==null||e.set_x2(t,r)}set_y1({id:e,...t},r){e==null||e.set_y1(t,r)}set_y2({id:e,...t},r){e==null||e.set_y2(t,r)}set_xy1({id:e,...t},r){e==null||e.set_xy1(t,r)}set_xy2({id:e,...t},r){e==null||e.set_xy2(t,r)}set_xloc({id:e,...t},r){e==null||e.set_xloc(t,r)}get_price({id:e,...t},r){return e==null?void 0:e.get_price(t,r)}set_color({id:e,...t},r){e==null||e.set_color(t,r)}set_style({id:e,...t},r){e==null||e.set_style(t,r)}set_width({id:e,...t},r){e==null||e.set_width(t,r)}set_extend({id:e,...t},r){e==null||e.set_extend(t,r)}set_first_point({id:e,...t},r){e==null||e.set_first_point(t,r)}set_second_point({id:e,...t},r){e==null||e.set_second_point(t,r)}}class Jo{constructor(e,t,r,o){X(this,"_variables");X(this,"_id");X(this,"_suffix","");X(this,"_errorListener");X(this,"_fillKeys",[]);X(this,"_preId","");X(this,"_data");this._id=e,this._variables=t,this._errorListener=r,this._data=o}get id(){return this._id}get __fillKeys(){return this._fillKeys}__setFillKeys(e){this._fillKeys.includes(e)||this._fillKeys.push(e)}__updateFillKeys(e,t){const r=this._fillKeys.findIndex(o=>o===e);r!==-1?this._fillKeys.splice(r,1,t):this._fillKeys.push(t)}get preId(){return this._preId}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}get type(){return C0.LINE}set data(e){this._data=e}get data(){return this._variables.line.get(this._id)||this._data}get originData(){return this._data}copy(e){const{bar_index:t}=this._variables,r=`line_${e}_${t}`,o=this._getLine(e,"copy"),n={...o,id:r,bar_index:t,isVar:void 0},b=new Jo(r,this._variables,this._errorListener,n);return o&&this._variables.line.add(r,n,b),b}delete(e){B0(this._errorListener,"line.delete",this._variables.__requestName,e);for(const t of this._fillKeys)this._variables.linefill.delete(t,this._variables.bar_index);this._variables.line.delete(this._id,this._variables.bar_index,this._data.id)}get_price({x:e},t){const r=this._getLine(t,"get_price");if(e===void 0)return e;if(r&&r.xloc===y1.bar_index){const{x1:o,y1:n,x2:b,y2:z}=r;return o===void 0||b===void 0||n===void 0||z===void 0?void 0:(z-n)/(b-o)*(e-o)+n}}get_x1(e){var t;return(t=this._getLine(e,"get_x1"))==null?void 0:t.x1}get_x2(e){var t;return(t=this._getLine(e,"get_x2"))==null?void 0:t.x2}get_y1(e){var t;return(t=this._getLine(e,"get_y1"))==null?void 0:t.y1}get_y2(e){var t;return(t=this._getLine(e,"get_y2"))==null?void 0:t.y2}set_x1({x:e},t){const r=this._getLine(t,"set_x1");r&&(r.x1=e&&Math.round(e))}set_x2({x:e},t){const r=this._getLine(t,"set_x2");r&&(r.x2=e&&Math.round(e))}set_y1({y:e},t){const r=this._getLine(t,"set_y1");r&&(r.y1=e)}set_y2({y:e},t){const r=this._getLine(t,"set_y2");r&&(r.y2=e)}set_xy1({x:e,y:t},r){const o=this._getLine(r,"set_xy1");o&&(o.x1=e&&Math.round(e),o.y1=t)}set_xy2({x:e,y:t},r){const o=this._getLine(r,"set_xy2");o&&(o.x2=e&&Math.round(e),o.y2=t)}set_xloc({xloc:e,x1:t,x2:r},o){const n=this._getLine(o,"set_xloc");n&&(n.xloc=e,n.x1=t&&Math.round(t),n.x2=r&&Math.round(r),this._paramVerfiy(e,o,"line.set_xloc",Object.values(y1),"xloc"))}set_color(e,t){const r=this._getLine(t,"set_color");r&&(F1(e,["color"]),r.color=e.color)}set_style({style:e},t){const r=this._getLine(t,"set_style");r&&(r.style=e,this._paramVerfiy(e,t,"line.set_style",Object.values(H1),"style"))}set_width({width:e},t){const r=this._getLine(t,"set_width");r&&(r.width=e)}set_extend({extend:e},t){const r=this._getLine(t,"set_extend");r&&(r.extend=e,this._paramVerfiy(e,t,"line.set_extend",Object.values(P2),"extend"))}set_first_point({point:e},t){const r=this._getLine(t,"set_first_point");if(r){const{index:o,time:n,price:b}=e||{},z=r.xloc===y1.bar_index?o:n,i=b;z&&(r.x1=z),i&&(r.y1=i)}}set_second_point({point:e},t){const r=this._getLine(t,"set_second_point");if(r){const{index:o,time:n,price:b}=e||{},z=r.xloc===y1.bar_index?o:n,i=b;z&&(r.x2=z),i&&(r.y2=i)}}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_getLine(e,t){B0(this._errorListener,`line.${t}`,this._variables.__requestName,e);const r=this._variables.line.get(this._id)||this._data;return r||console.log(`${e}: line 不存在`),r}}class Y_{constructor(e){X(this,"_variables");this._variables=e}new(e,t){const{line1:r,line2:o}=e,{bar_index:n}=this._variables,b=`linefill_${t}_${n}`,z=r==null?void 0:r.data,i=o==null?void 0:o.data;z&&(z.linefills=z.linefills||[],z.linefills.push(b)),i&&(i.linefills=i.linefills||[],i.linefills.push(b)),F1(e,["color"]),r==null||r.__setFillKeys(b),o==null||o.__setFillKeys(b);const s={line1:z,line2:i,color:e.color,id:b,bar_index:n},O=new x3(this._variables,b,s,r,o);return t.startsWith("export")||(z||i)&&this._variables.linefill.add(b,s,O),O}delete({id:e}){e==null||e.delete()}get_line1({id:e}){return e==null?void 0:e.get_line1()}get_line2({id:e}){return e==null?void 0:e.get_line2()}set_color({id:e,...t}){e==null||e.set_color(t)}}class x3{constructor(e,t,r,o,n){X(this,"_id");X(this,"_line1");X(this,"_line2");X(this,"_variables");X(this,"_suffix");X(this,"_preId","");X(this,"_data");this._variables=e,this._id=t,this._line1=o,this._line2=n,this._data=r}get type(){return C0.LINEFILL}get id(){return this._id}get preId(){return this._preId}updateId(){var o,n;const{bar_index:e,_isRealTimeBar:t}=this._variables,r=this._id;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const b=this._id.split("_");b.pop(),this._id=`${b.join("_")}_${e}`}return(o=this._line1)==null||o.__updateFillKeys(r,this._id),(n=this._line2)==null||n.__updateFillKeys(r,this._id),t||(this._preId=this._id),this._id}set data(e){this._data=e}get data(){return this._variables.linefill.get(this._id)||this._data}linefill(e){return e.x}delete(){var t,r;const e=this._variables.linefill.get(this._id);if(e){const{line1:o,line2:n}=e;o&&(o.linefills=(t=o.linefills)==null?void 0:t.filter(b=>b!==this._id)),n&&(n.linefills=(r=n.linefills)==null?void 0:r.filter(b=>b!==this._id))}this._line1=void 0,this._line2=void 0,this._variables.linefill.delete(this._id,this._variables.bar_index,this._data.id)}get_line1(){return this._line1}get_line2(){return this._line2}set_color(e){const t=this._variables.linefill.get(this._id);t&&(F1(e,["color"]),t.color=e.color)}}const G_=["top_left","bottom_right","border_color","border_width","border_style","extend","xloc","bgcolor","text","text_size","text_color","text_halign","text_valign","text_wrap","text_font_family","force_overlay"],V_=["left","top","right","bottom","border_color","border_width","border_style","extend","xloc","bgcolor","text","text_size","text_color","text_halign","text_valign","text_wrap","text_font_family","force_overlay"];class K_{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultBox",{border_color:Tr.blue,border_width:1,bgcolor:Tr.blue,xloc:y1.bar_index,extend:P2.none,style:H1.styleSolid,text:"",text_size:f2.auto,text_color:Tr.black,text_halign:S0.alignCenter,text_valign:S0.alignCenter,text_wrap:S0.wrapNone});this._variables=e,this._errorListener=t}box({x:e}){return e}new(e,t,r){B0(this._errorListener,"box.new",this._variables.__requestName,t);const{bar_index:o}=this._variables,n=`box_${t}_${o}`;e=this._parameterHandle(e,r);const{top_left:b,bottom_right:z,...i}=e,s={...this._defaultBox,...i,id:n,bar_index:o};F1(s,["border_color","bgcolor","text_color"]);const{left:O,right:a}=s;if(O&&(s.left=O&&Math.round(O)),a&&(s.right=a&&Math.round(a)),b){const{price:l,time:d,index:A}=b;s.top=l,s.left=s.xloc===y1.bar_index?A:d}if(z){const{price:l,time:d,index:A}=z;s.bottom=l,s.right=s.xloc===y1.bar_index?A:d}this._verfiyArgs(i,t);const u=new Qo(this._variables,n,this._errorListener,s);return t.startsWith("export")||this._variables.box.add(n,s,u),u}_parameterHandle(e,t){const{top_left:r,bottom_right:o,top:n,bottom:b,left:z,right:i,...s}=e;if(typeof r=="object"||typeof o=="object"||typeof n=="number"||typeof b=="number"||typeof z=="number"||typeof i=="number")return e;const O=s;if(t[0]===G_[0]&&(typeof r=="number"||typeof o=="number"||this._preVerfiyArgs(e)))for(const[a,u]of t.entries()){const l=O[u];O[u]=void 0,O[V_[a]]=l}return O}_preVerfiyArgs(e){const{border_style:t,extend:r,xloc:o,text_size:n,text_halign:b,text_valign:z,text_wrap:i,text_font_family:s}=e;return this._paramVerfiyHandle(t,[H1.styleDashed,H1.styleDotted,H1.styleSolid])||this._paramVerfiyHandle(r,Object.values(P2))||this._paramVerfiyHandle(o,Object.values(y1))||this._paramVerfiyHandle(n,Object.values(f2))||this._paramVerfiyHandle(b,[S0.alignLeft,S0.alignCenter,S0.alignRight])||this._paramVerfiyHandle(z,[S0.alignBottom,S0.alignCenter,S0.alignTop])||this._paramVerfiyHandle(i,[S0.wrapAuto,S0.wrapNone])||this._paramVerfiyHandle(s,Object.values(Ue))}_paramVerfiyHandle(e="",t){return e&&!t.includes(e)}_verfiyArgs(e,t){const{border_style:r,extend:o,xloc:n,text_size:b,text_halign:z,text_valign:i,text_wrap:s,text_font_family:O}=e,a="box.new";this._paramVerfiy(r,t,a,[H1.styleDashed,H1.styleDotted,H1.styleSolid],"border_style"),this._paramVerfiy(o,t,a,Object.values(P2),"extend"),this._paramVerfiy(n,t,a,Object.values(y1),"xloc"),this._paramVerfiy(b,t,a,Object.values(f2),"text_size"),this._paramVerfiy(z,t,a,[S0.alignLeft,S0.alignCenter,S0.alignRight],"text_halign"),this._paramVerfiy(i,t,a,[S0.alignBottom,S0.alignCenter,S0.alignTop],"text_valign"),this._paramVerfiy(s,t,a,[S0.wrapAuto,S0.wrapNone],"text_wrap"),this._paramVerfiy(O,t,a,Object.values(Ue),"text_font_family")}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}copy({id:e},t){return e==null?void 0:e.copy(t)}delete({id:e},t){e==null||e.delete(t)}get_top({id:e},t){return e==null?void 0:e.get_top(t)}get_bottom({id:e},t){return e==null?void 0:e.get_bottom(t)}get_left({id:e},t){return e==null?void 0:e.get_left(t)}get_right({id:e},t){return e==null?void 0:e.get_right(t)}set_top({id:e,...t},r){e==null||e.set_top(t,r)}set_bottom({id:e,...t},r){e==null||e.set_bottom(t,r)}set_text({id:e,...t},r){e==null||e.set_text(t,r)}set_left({id:e,...t},r){e==null||e.set_left(t,r)}set_right({id:e,...t},r){e==null||e.set_right(t,r)}set_extend({id:e,...t},r){e==null||e.set_extend(t,r)}set_bgcolor({id:e,...t},r){e==null||e.set_bgcolor(t,r)}set_border_color({id:e,...t},r){e==null||e.set_border_color(t,r)}set_border_width({id:e,...t},r){e==null||e.set_border_width(t,r)}set_border_style({id:e,...t},r){e==null||e.set_border_style(t,r)}set_lefttop({id:e,...t},r){e==null||e.set_lefttop(t,r)}set_rightbottom({id:e,...t},r){e==null||e.set_rightbottom(t,r)}set_text_size({id:e,...t},r){e==null||e.set_text_size(t,r)}set_text_wrap({id:e,...t},r){e==null||e.set_text_wrap(t,r)}set_text_color({id:e,...t},r){e==null||e.set_text_color(t,r)}set_text_halign({id:e,...t},r){e==null||e.set_text_halign(t,r)}set_text_valign({id:e,...t},r){e==null||e.set_text_valign(t,r)}set_top_left_point({id:e,...t},r){e==null||e.set_top_left_point(t,r)}set_bottom_right_point({id:e,...t},r){e==null||e.set_bottom_right_point(t,r)}set_text_font_family({id:e,...t},r){e==null||e.set_text_font_family(t,r)}}class Qo{constructor(e,t,r,o){X(this,"_id");X(this,"_variables");X(this,"_errorListener");X(this,"_suffix","");X(this,"_preId","");X(this,"_data");this._variables=e,this._id=t,this._errorListener=r,this._data=o}get type(){return C0.BOX}get id(){return this._id}get preId(){return this._preId}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}set data(e){this._data=e}get data(){return this._variables.box.get(this._id)||this._data}copy(e){B0(this._errorListener,"box.copy",this._variables.__requestName,e);const{bar_index:t}=this._variables,r=`box_${e}_${t}`,o=this._getBox(),n={...o,id:r,bar_index:t},b=new Qo(this._variables,r,this._errorListener,n);return o&&this._variables.box.add(r,n,b),b}delete(e){B0(this._errorListener,"box.delete",this._variables.__requestName,e),this._variables.box.delete(this._id,this._variables.bar_index,this._data.id)}get_top(e){B0(this._errorListener,"box.get_top",this._variables.__requestName,e);const t=this._getBox();return t&&t.top}set_top({top:e},t){B0(this._errorListener,"box.set_top",this._variables.__requestName,t);const r=this._getBox();r&&(r.top=e)}get_left(e){B0(this._errorListener,"box.get_left",this._variables.__requestName,e);const t=this._getBox();return t&&t.left}set_left({left:e},t){B0(this._errorListener,"box.set_left",this._variables.__requestName,t);const r=this._getBox();r&&(r.left=e&&Math.round(e))}set_text({text:e},t){B0(this._errorListener,"box.set_text",this._variables.__requestName,t);const r=this._getBox();r&&(r.text=e)}get_right(e){B0(this._errorListener,"box.get_right",this._variables.__requestName,e);const t=this._getBox();return t&&t.right}set_right({right:e},t){B0(this._errorListener,"box.set_right",this._variables.__requestName,t);const r=this._getBox();r&&(r.right=e&&Math.round(e))}get_bottom(e){B0(this._errorListener,"box.get_bottom",this._variables.__requestName,e);const t=this._getBox();return t&&t.bottom}set_bottom({bottom:e},t){B0(this._errorListener,"box.set_bottom",this._variables.__requestName,t);const r=this._getBox();r&&(r.bottom=e)}set_extend({extend:e},t){B0(this._errorListener,"box.set_extend",this._variables.__requestName,t);const r=this._getBox();r&&(r.extend=e,this._paramVerfiy(e,t,"box.set_extend",Object.values(P2),"extend"))}set_bgcolor({color:e},t){B0(this._errorListener,"box.set_bgcolor",this._variables.__requestName,t);const r=this._getBox();r&&(r.bgcolor=e,F1(r,["bgcolor"]))}set_lefttop({left:e,top:t},r){B0(this._errorListener,"box.set_lefttop",this._variables.__requestName,r);const o=this._getBox();o&&(o.left=e&&Math.round(e),o.top=t)}set_text_size({text_size:e},t){B0(this._errorListener,"box.set_text_size",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_size=e,this._paramVerfiy(e,t,"box.set_text_size",Object.values(f2),"text_size"))}set_text_wrap({text_wrap:e},t){B0(this._errorListener,"box.set_text_wrap",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_wrap=e,this._paramVerfiy(e,t,"box.set_text_wrap",[S0.wrapAuto,S0.wrapNone],"text_wrap"))}set_text_color({text_color:e},t){B0(this._errorListener,"box.set_text_color",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_color=e,F1(r,["text_color"]))}set_rightbottom({right:e,bottom:t},r){B0(this._errorListener,"box.set_rightbottom",this._variables.__requestName,r);const o=this._getBox();o&&(o.right=e&&Math.round(e),o.bottom=t)}set_text_halign({text_halign:e},t){B0(this._errorListener,"box.set_text_halign",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_halign=e,this._paramVerfiy(e,t,"box.set_text_halign",[S0.alignLeft,S0.alignCenter,S0.alignRight],"text_halign"))}set_text_valign({text_valign:e},t){B0(this._errorListener,"box.set_text_valign",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_valign=e,this._paramVerfiy(e,t,"box.set_text_valign",[S0.alignBottom,S0.alignCenter,S0.alignTop],"text_valign"))}set_top_left_point({point:e},t){B0(this._errorListener,"box.set_top_left_point",this._variables.__requestName,t);const r=this._getBox();if(r){const{index:o,price:n,time:b}=e||{};r.top=n,r.left=r.xloc===y1.bar_index?o:b}}set_border_color({color:e},t){B0(this._errorListener,"box.set_border_color",this._variables.__requestName,t);const r=this._getBox();r&&(r.border_color=e,F1(r,["border_color"]))}set_border_style({style:e},t){B0(this._errorListener,"box.set_border_style",this._variables.__requestName,t);const r=this._getBox();r&&(r.border_style=e,this._paramVerfiy(e,t,"box.set_border_style",[H1.styleDashed,H1.styleDotted,H1.styleSolid],"style"))}set_border_width({width:e},t){B0(this._errorListener,"box.set_border_width",this._variables.__requestName,t);const r=this._getBox();r&&(r.border_width=e)}set_bottom_right_point({point:e},t){B0(this._errorListener,"box.set_bottom_right_point",this._variables.__requestName,t);const r=this._getBox();if(r){const{index:o,price:n,time:b}=e||{};r.bottom=n,r.right=r.xloc===y1.bar_index?o:b}}set_text_font_family({text_font_family:e},t){B0(this._errorListener,"box.set_text_font_family",this._variables.__requestName,t);const r=this._getBox();r&&(r.text_font_family=e,this._paramVerfiy(e,t,"box.set_text_font_family",Object.values(Ue),"text_font_family"))}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_getBox(){return this._variables.box.get(this._id)||this._data}}class J_{constructor(e,t){X(this,"_variables");X(this,"_errorListener");X(this,"_defaultTable",{position:k2.topLeft,columns:0,rows:0,frame_width:0,border_width:0});this._variables=e,this._errorListener=t}table({x:e}){return e}new(e,t){B0(this._errorListener,"table.new",this._variables.__requestName,t);const{bar_index:r}=this._variables,o=`table_${t}_${r}`,{rows:n}=e;F1(e,["text_color","bgcolor","border_color"]);const b=Array.from(Array(n),()=>[]),z=t.split("_"),i=z.pop(),s=z.pop(),O={...this._defaultTable,...e,cell:b,id:o,bar_index:r,line:s,col:i},a=new S3(this._variables,o,this._errorListener,O);return this._paramVerfiy(e.position,t,"table.new",Object.values(k2),"position"),t.startsWith("export")||this._variables.table.add(o,O,a),a}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}cell({table_id:e,...t},r){e==null||e.cell(t,r)}cell_set_bgcolor({table_id:e,...t},r){e==null||e.cell_set_bgcolor(t,r)}cell_set_height({table_id:e,...t},r){e==null||e.cell_set_height(t,r)}cell_set_text({table_id:e,...t},r){e==null||e.cell_set_text(t,r)}cell_set_text_color({table_id:e,...t},r){e==null||e.cell_set_text_color(t,r)}cell_set_text_font_family({table_id:e,...t},r){e==null||e.cell_set_text_font_family(t,r)}cell_set_text_halign({table_id:e,...t},r){e==null||e.cell_set_text_halign(t,r)}cell_set_text_valign({table_id:e,...t},r){e==null||e.cell_set_text_valign(t,r)}cell_set_text_size({table_id:e,...t},r){e==null||e.cell_set_text_size(t,r)}cell_set_tooltip({table_id:e,...t},r){e==null||e.cell_set_tooltip(t,r)}cell_set_width({table_id:e,...t},r){e==null||e.cell_set_width(t,r)}clear({table_id:e,...t},r){e==null||e.clear(t,r)}delete({table_id:e},t){e==null||e.delete(t)}merge_cells({table_id:e,...t},r){e==null||e.merge_cells(t,r)}set_bgcolor({table_id:e,...t},r){e==null||e.set_bgcolor(t,r)}set_border_color({table_id:e,...t},r){e==null||e.set_border_color(t,r)}set_border_width({table_id:e,...t},r){e==null||e.set_border_width(t,r)}set_frame_color({table_id:e,...t},r){e==null||e.set_frame_color(t,r)}set_frame_width({table_id:e,...t},r){e==null||e.set_frame_width(t,r)}set_position({table_id:e,...t},r){e==null||e.set_position(t,r)}}class S3{constructor(e,t,r,o){X(this,"_id");X(this,"_variables");X(this,"_errorListener");X(this,"_suffix","");X(this,"_preId","");X(this,"_defaultCell",{column:0,row:0,text:"",text_color:Tr.black,text_halign:S0.alignCenter,text_valign:S0.alignCenter,text_size:f2.normal});X(this,"_data");this._variables=e,this._id=t,this._errorListener=r,this._data=o}get type(){return C0.TABLE}get id(){return this._id}get preId(){return this._preId}set data(e){this._data=e}updateId(){const{bar_index:e,_isRealTimeBar:t}=this._variables;if(!this._suffix)this._suffix=`_${e}`,this._id=`${this._id}${this._suffix}`;else{const r=this._id.split("_");r.pop(),this._id=`${r.join("_")}_${e}`}return t||(this._preId=this._id),this._id}get data(){return this._variables.table.get(this._id)||this._data}cell(e,t){this._verfiyRequestFunc(t,"cell");const r={...this._defaultCell,...e},{column:o=0,row:n=0}=r,b=this._getTable();if(b){const z=b.cell||[],i=z[n]||[];i[o]=r,z[n]=i,b.cell=z}}cell_set_bgcolor({column:e=0,row:t=0,bgcolor:r},o){this._verfiyRequestFunc(o,"cell_set_bgcolor");const n=this._getTableItem(e,t);n&&(n.bgcolor=r)}cell_set_height({column:e=0,row:t=0,height:r},o){this._verfiyRequestFunc(o,"cell_set_height");const n=this._getTableItem(e,t);n&&(n.height=r)}cell_set_text({column:e=0,row:t=0,text:r},o){this._verfiyRequestFunc(o,"cell_set_text");const n=this._getTableItem(e,t);n&&(n.text=r)}cell_set_text_color({column:e=0,row:t=0,text_color:r},o){this._verfiyRequestFunc(o,"cell_set_text_color");const n=this._getTableItem(e,t);n&&(n.text_color=r,F1(n,["text_color"]))}cell_set_text_font_family({column:e=0,row:t=0,text_font_family:r},o){this._verfiyRequestFunc(o,"cell_set_text_font_family");const n=this._getTableItem(e,t);n&&(n.text_font_family=r)}cell_set_text_halign({column:e=0,row:t=0,text_halign:r},o){this._verfiyRequestFunc(o,"cell_set_text_halign");const n=this._getTableItem(e,t);n&&(n.text_halign=r)}cell_set_text_valign({column:e=0,row:t=0,text_valign:r},o){this._verfiyRequestFunc(o,"cell_set_text_valign");const n=this._getTableItem(e,t);n&&(n.text_valign=r)}cell_set_text_size({column:e=0,row:t=0,text_size:r},o){this._verfiyRequestFunc(o,"cell_set_text_size");const n=this._getTableItem(e,t);n&&(n.text_size=r)}cell_set_tooltip({column:e=0,row:t=0,tooltip:r},o){this._verfiyRequestFunc(o,"cell_set_tooltip");const n=this._getTableItem(e,t);n&&(n.tooltip=r)}cell_set_width({column:e=0,row:t=0,width:r},o){this._verfiyRequestFunc(o,"cell_set_width");const n=this._getTableItem(e,t);n&&(n.width=r)}clear({start_column:e=0,start_row:t=0,end_column:r=0,end_row:o=0},n){this._verfiyRequestFunc(n,"clear");const b=this._getTable();if(b){const z=b.cell;if(z)for(let i=t;i<=o;i++)for(let s=e;s<=r;s++){const O=z[i];O&&(O[s]=void 0)}}}delete(e){this._verfiyRequestFunc(e,"delete"),this._variables.table.delete(this._id,this._variables.bar_index,this._data.id)}merge_cells({start_column:e=0,start_row:t=0,end_column:r=0,end_row:o=0},n){if(this._verfiyRequestFunc(n,"merge_cells"),e>r||t>o){this._errorListener.addError(l1.mergeCellErr,n,j0.Error);return}const b=this._getTable();if(!b)return;const z=b.merge_cells||[];z.push({start_column:e,start_row:t,end_column:r,end_row:o}),b.merge_cells=z}set_bgcolor({bgcolor:e},t){this._verfiyRequestFunc(t,"set_bgcolor");const r=this._getTable();r&&(r.bgcolor=e,F1(r,["bgcolor"]))}set_border_color({border_color:e},t){this._verfiyRequestFunc(t,"set_border_color");const r=this._getTable();r&&(r.border_color=e,F1(r,["border_color"]))}set_border_width({border_width:e},t){this._verfiyRequestFunc(t,"set_border_width");const r=this._getTable();r&&(r.border_width=e)}set_frame_color({frame_color:e},t){this._verfiyRequestFunc(t,"set_frame_color");const r=this._getTable();r&&(r.frame_color=e)}set_frame_width({frame_width:e},t){this._verfiyRequestFunc(t,"set_frame_width");const r=this._getTable();r&&(r.frame_width=e)}set_position({position:e},t){this._verfiyRequestFunc(t,"set_position");const r=this._getTable();r&&(r.position=e,this._paramVerfiy(e,t,"table.set_position",Object.values(k2),"position"))}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_getTableItem(e,t){const r=this._getTable();if(r){const o=r.cell;return o?o[t][e]:void 0}}_getTable(){return this._variables.table.get(this._id)||this._data}_verfiyRequestFunc(e,t){B0(this._errorListener,`table.${t}`,this._variables.__requestName,e)}}class Q_{constructor(e){X(this,"_strategy");this._strategy=e}commission({trade_num:e},t){return this._verifyTradeNum(e,t)&&this._strategy.historyOrders[e].commission||0}entry_bar_index({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].in_index}entry_comment({trade_num:e},t){if(!this._verifyTradeNum(e,t))return"";const{comment:r,id:o}=this._strategy.historyOrders[e];return r||o}entry_id({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].id:""}entry_price({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].in_price}entry_time({trade_num:e},t){if(!this._verifyTradeNum(e,t))return;const{in_time:r,entry_time:o}=this._strategy.historyOrders[e];return o||r}exit_bar_index({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].out_index}exit_comment({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].out_comment:""}exit_id({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].out_id:""}exit_price({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].out_price}exit_time({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.historyOrders[e].out_time}max_drawdown({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].trading_loss:0}max_drawdown_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].trading_loss_percent:0}max_runup({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].max_profit:0}max_runup_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].max_profit_percent:0}profit({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].profit:0}profit_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.historyOrders[e].profit_percent:0}size({trade_num:e},t){if(!this._verifyTradeNum(e,t))return 0;const{out_qty:r=0,direction:o}=this._strategy.historyOrders[e];return o===i1.long?r:-r}_verifyTradeNum(e,t){if(this._strategy._verfiyRequestFunc(t,"strategy.closedtrades.*"),typeof e!="number"||e<0)return!1;const r=this._strategy.historyOrders.length;return!(e>=r)}}class Z_{constructor(e){X(this,"_strategy");this._strategy=e}commission({trade_num:e},t){if(!this._verifyTradeNum(e,t))return 0;const{qty:r=0,original_qty:o=0,commission:n=0}=this._strategy.orders[e];return n*r/o}entry_bar_index({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.orders[e].in_index}entry_comment({trade_num:e},t){if(!this._verifyTradeNum(e,t))return"";const{comment:r,id:o}=this._strategy.orders[e];return r||o}entry_id({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].id:""}entry_price({trade_num:e},t){if(this._verifyTradeNum(e,t))return this._strategy.orders[e].in_price}entry_time({trade_num:e},t){if(!this._verifyTradeNum(e,t))return;const{in_time:r,entry_time:o}=this._strategy.orders[e];return o||r}max_drawdown({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].trading_loss:0}max_drawdown_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].trading_loss_percent:0}max_runup({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].max_profit:0}max_runup_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].max_profit_percent:0}profit({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].profit:0}profit_percent({trade_num:e},t){return this._verifyTradeNum(e,t)?this._strategy.orders[e].profit_percent:0}size({trade_num:e},t){if(!this._verifyTradeNum(e,t))return 0;const{qty:r=0,direction:o}=this._strategy.orders[e];return o===i1.long?r:-r}_verifyTradeNum(e,t){if(this._strategy._verfiyRequestFunc(t,"strategy.opentrades.*"),typeof e!="number"||e<0)return!1;const r=this._strategy.orders.length;return!(e>=r)}}class em{constructor(e,t){X(this,"_strategy");X(this,"_errorListener");this._strategy=e,this._errorListener=t}allow_entry_in({value:e},t){this._strategy._verfiyRequestFunc(t,"strategy.risk.*"),this._paramVerfiy(e,t,"strategy.risk.allow_entry_in",Object.values(i1),"value"),this._strategy.updateRisk({allow_entry_in:e})}max_cons_loss_days({count:e},t){this._strategy._verfiyRequestFunc(t,"strategy.risk.*"),this._strategy.updateRisk({max_cons_loss_days:e})}max_drawdown({value:e,type:t},r){this._strategy._verfiyRequestFunc(r,"strategy.risk.*"),this._paramVerfiy(t,r,"strategy.risk.max_drawdown",[b2.percentOfEquity,b2.cash],"type"),t===b2.percentOfEquity&&(e=e>100?100:e),this._strategy.updateRisk({max_drawdown:e,max_drawdown_type:t})}max_intraday_filled_orders({count:e},t){this._strategy._verfiyRequestFunc(t,"strategy.risk.*"),this._strategy.updateRisk({max_intraday_filled_orders:e})}max_intraday_loss({value:e,type:t},r){this._strategy._verfiyRequestFunc(r,"strategy.risk.*"),this._paramVerfiy(t,r,"strategy.risk.max_intraday_loss",[b2.percentOfEquity,b2.cash],"type"),t===b2.percentOfEquity&&(e=e>100?100:e),this._strategy.updateRisk({max_intraday_loss:e,max_intraday_loss_type:t})}max_position_size({contracts:e},t){this._strategy._verfiyRequestFunc(t,"strategy.risk.*"),this._strategy.updateRisk({max_position_size:e})}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}}var tm=20,rm=1,Gt=1e6,F3=1e6,Mm=-7,om=21,nm=!1,WM="[big.js] ",Vt=WM+"Invalid ",Zo=Vt+"decimal places",bm=Vt+"rounding mode",I3=WM+"Division by zero",g1={},xe=void 0,pm=/^-?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i;function P3(){function M(e){var t=this;if(!(t instanceof M))return e===xe?P3():new M(e);if(e instanceof M)t.s=e.s,t.e=e.e,t.c=e.c.slice();else{if(typeof e!="string"){if(M.strict===!0&&typeof e!="bigint")throw TypeError(Vt+"value");e=e===0&&1/e<0?"-0":String(e)}zm(t,e)}t.constructor=M}return M.prototype=g1,M.DP=tm,M.RM=rm,M.NE=Mm,M.PE=om,M.strict=nm,M.roundDown=0,M.roundHalfUp=1,M.roundHalfEven=2,M.roundUp=3,M}function zm(M,e){var t,r,o;if(!pm.test(e))throw Error(Vt+"number");for(M.s=e.charAt(0)=="-"?(e=e.slice(1),-1):1,(t=e.indexOf("."))>-1&&(e=e.replace(".","")),(r=e.search(/e/i))>0?(t<0&&(t=r),t+=+e.slice(r+1),e=e.substring(0,r)):t<0&&(t=e.length),o=e.length,r=0;r<o&&e.charAt(r)=="0";)++r;if(r==o)M.c=[M.e=0];else{for(;o>0&&e.charAt(--o)=="0";);for(M.e=t-r-1,M.c=[],t=0;r<=o;)M.c[t++]=+e.charAt(r++)}return M}function Kt(M,e,t,r){var o=M.c;if(t===xe&&(t=M.constructor.RM),t!==0&&t!==1&&t!==2&&t!==3)throw Error(bm);if(e<1)r=t===3&&(r||!!o[0])||e===0&&(t===1&&o[0]>=5||t===2&&(o[0]>5||o[0]===5&&(r||o[1]!==xe))),o.length=1,r?(M.e=M.e-e+1,o[0]=1):o[0]=M.e=0;else if(e<o.length){if(r=t===1&&o[e]>=5||t===2&&(o[e]>5||o[e]===5&&(r||o[e+1]!==xe||o[e-1]&1))||t===3&&(r||!!o[0]),o.length=e,r){for(;++o[--e]>9;)if(o[e]=0,e===0){++M.e,o.unshift(1);break}}for(e=o.length;!o[--e];)o.pop()}return M}function Jt(M,e,t){var r=M.e,o=M.c.join(""),n=o.length;if(e)o=o.charAt(0)+(n>1?"."+o.slice(1):"")+(r<0?"e":"e+")+r;else if(r<0){for(;++r;)o="0"+o;o="0."+o}else if(r>0)if(++r>n)for(r-=n;r--;)o+="0";else r<n&&(o=o.slice(0,r)+"."+o.slice(r));else n>1&&(o=o.charAt(0)+"."+o.slice(1));return M.s<0&&t?"-"+o:o}g1.abs=function(){var M=new this.constructor(this);return M.s=1,M},g1.cmp=function(M){var e,t=this,r=t.c,o=(M=new t.constructor(M)).c,n=t.s,b=M.s,z=t.e,i=M.e;if(!r[0]||!o[0])return r[0]?n:o[0]?-b:0;if(n!=b)return n;if(e=n<0,z!=i)return z>i^e?1:-1;for(b=(z=r.length)<(i=o.length)?z:i,n=-1;++n<b;)if(r[n]!=o[n])return r[n]>o[n]^e?1:-1;return z==i?0:z>i^e?1:-1},g1.div=function(M){var e=this,t=e.constructor,r=e.c,o=(M=new t(M)).c,n=e.s==M.s?1:-1,b=t.DP;if(b!==~~b||b<0||b>Gt)throw Error(Zo);if(!o[0])throw Error(I3);if(!r[0])return M.s=n,M.c=[M.e=0],M;var z,i,s,O,a,u=o.slice(),l=z=o.length,d=r.length,A=r.slice(0,z),h=A.length,q=M,_=q.c=[],m=0,L=b+(q.e=e.e-M.e)+1;for(q.s=n,n=L<0?0:L,u.unshift(0);h++<z;)A.push(0);do{for(s=0;s<10;s++){if(z!=(h=A.length))O=z>h?1:-1;else for(a=-1,O=0;++a<z;)if(o[a]!=A[a]){O=o[a]>A[a]?1:-1;break}if(O<0){for(i=h==z?o:u;h;){if(A[--h]<i[h]){for(a=h;a&&!A[--a];)A[a]=9;--A[a],A[h]+=10}A[h]-=i[h]}for(;!A[0];)A.shift()}else break}_[m++]=O?s:++s,A[0]&&O?A[h]=r[l]||0:A=[r[l]]}while((l++<d||A[0]!==xe)&&n--);return!_[0]&&m!=1&&(_.shift(),q.e--,L--),m>L&&Kt(q,L,t.RM,A[0]!==xe),q},g1.eq=function(M){return this.cmp(M)===0},g1.gt=function(M){return this.cmp(M)>0},g1.gte=function(M){return this.cmp(M)>-1},g1.lt=function(M){return this.cmp(M)<0},g1.lte=function(M){return this.cmp(M)<1},g1.minus=g1.sub=function(M){var e,t,r,o,n=this,b=n.constructor,z=n.s,i=(M=new b(M)).s;if(z!=i)return M.s=-i,n.plus(M);var s=n.c.slice(),O=n.e,a=M.c,u=M.e;if(!s[0]||!a[0])return a[0]?M.s=-i:s[0]?M=new b(n):M.s=1,M;if(z=O-u){for((o=z<0)?(z=-z,r=s):(u=O,r=a),r.reverse(),i=z;i--;)r.push(0);r.reverse()}else for(t=((o=s.length<a.length)?s:a).length,z=i=0;i<t;i++)if(s[i]!=a[i]){o=s[i]<a[i];break}if(o&&(r=s,s=a,a=r,M.s=-M.s),(i=(t=a.length)-(e=s.length))>0)for(;i--;)s[e++]=0;for(i=e;t>z;){if(s[--t]<a[t]){for(e=t;e&&!s[--e];)s[e]=9;--s[e],s[t]+=10}s[t]-=a[t]}for(;s[--i]===0;)s.pop();for(;s[0]===0;)s.shift(),--u;return s[0]||(M.s=1,s=[u=0]),M.c=s,M.e=u,M},g1.mod=function(M){var e,t=this,r=t.constructor,o=t.s,n=(M=new r(M)).s;if(!M.c[0])throw Error(I3);return t.s=M.s=1,e=M.cmp(t)==1,t.s=o,M.s=n,e?new r(t):(o=r.DP,n=r.RM,r.DP=r.RM=0,t=t.div(M),r.DP=o,r.RM=n,this.minus(t.times(M)))},g1.neg=function(){var M=new this.constructor(this);return M.s=-M.s,M},g1.plus=g1.add=function(M){var e,t,r,o=this,n=o.constructor;if(M=new n(M),o.s!=M.s)return M.s=-M.s,o.minus(M);var b=o.e,z=o.c,i=M.e,s=M.c;if(!z[0]||!s[0])return s[0]||(z[0]?M=new n(o):M.s=o.s),M;if(z=z.slice(),e=b-i){for(e>0?(i=b,r=s):(e=-e,r=z),r.reverse();e--;)r.push(0);r.reverse()}for(z.length-s.length<0&&(r=s,s=z,z=r),e=s.length,t=0;e;z[e]%=10)t=(z[--e]=z[e]+s[e]+t)/10|0;for(t&&(z.unshift(t),++i),e=z.length;z[--e]===0;)z.pop();return M.c=z,M.e=i,M},g1.pow=function(M){var e=this,t=new e.constructor("1"),r=t,o=M<0;if(M!==~~M||M<-F3||M>F3)throw Error(Vt+"exponent");for(o&&(M=-M);M&1&&(r=r.times(e)),M>>=1,!!M;)e=e.times(e);return o?t.div(r):r},g1.prec=function(M,e){if(M!==~~M||M<1||M>Gt)throw Error(Vt+"precision");return Kt(new this.constructor(this),M,e)},g1.round=function(M,e){if(M===xe)M=0;else if(M!==~~M||M<-Gt||M>Gt)throw Error(Zo);return Kt(new this.constructor(this),M+this.e+1,e)},g1.sqrt=function(){var M,e,t,r=this,o=r.constructor,n=r.s,b=r.e,z=new o("0.5");if(!r.c[0])return new o(r);if(n<0)throw Error(WM+"No square root");n=Math.sqrt(+Jt(r,!0,!0)),n===0||n===1/0?(e=r.c.join(""),e.length+b&1||(e+="0"),n=Math.sqrt(e),b=((b+1)/2|0)-(b<0||b&1),M=new o((n==1/0?"5e":(n=n.toExponential()).slice(0,n.indexOf("e")+1))+b)):M=new o(n+""),b=M.e+(o.DP+=4);do t=M,M=z.times(t.plus(r.div(t)));while(t.c.slice(0,b).join("")!==M.c.slice(0,b).join(""));return Kt(M,(o.DP-=4)+M.e+1,o.RM)},g1.times=g1.mul=function(M){var e,t=this,r=t.constructor,o=t.c,n=(M=new r(M)).c,b=o.length,z=n.length,i=t.e,s=M.e;if(M.s=t.s==M.s?1:-1,!o[0]||!n[0])return M.c=[M.e=0],M;for(M.e=i+s,b<z&&(e=o,o=n,n=e,s=b,b=z,z=s),e=new Array(s=b+z);s--;)e[s]=0;for(i=z;i--;){for(z=0,s=b+i;s>i;)z=e[s]+n[i]*o[s-i-1]+z,e[s--]=z%10,z=z/10|0;e[s]=z}for(z?++M.e:e.shift(),i=e.length;!e[--i];)e.pop();return M.c=e,M},g1.toExponential=function(M,e){var t=this,r=t.c[0];if(M!==xe){if(M!==~~M||M<0||M>Gt)throw Error(Zo);for(t=Kt(new t.constructor(t),++M,e);t.c.length<M;)t.c.push(0)}return Jt(t,!0,!!r)},g1.toFixed=function(M,e){var t=this,r=t.c[0];if(M!==xe){if(M!==~~M||M<0||M>Gt)throw Error(Zo);for(t=Kt(new t.constructor(t),M+t.e+1,e),M=M+t.e+1;t.c.length<M;)t.c.push(0)}return Jt(t,!1,!!r)},g1[Symbol.for("nodejs.util.inspect.custom")]=g1.toJSON=g1.toString=function(){var M=this,e=M.constructor;return Jt(M,M.e<=e.NE||M.e>=e.PE,!!M.c[0])},g1.toNumber=function(){var M=+Jt(this,!0,!0);if(this.constructor.strict===!0&&!this.eq(M.toString()))throw Error(WM+"Imprecise conversion");return M},g1.toPrecision=function(M,e){var t=this,r=t.constructor,o=t.c[0];if(M!==xe){if(M!==~~M||M<1||M>Gt)throw Error(Vt+"precision");for(t=Kt(new r(t),M,e);t.c.length<M;)t.c.push(0)}return Jt(t,M<=t.e||t.e<=r.NE||t.e>=r.PE,!!o)},g1.valueOf=function(){var M=this,e=M.constructor;if(e.strict===!0)throw Error(WM+"valueOf disallowed");return Jt(M,M.e<=e.NE||M.e>=e.PE,!0)};var en=P3();function k3(M,e){return en(M).plus(e).toNumber()}function tn(M,e){return en(M).minus(e).toNumber()}function Qt(M,e){return en(M).mul(e).toNumber()}function rn(M,e=5){return Number(M&&en(M).toFixed(e))}let im=class{constructor(e,t,r,o,n){X(this,"_variables");X(this,"_options");X(this,"_totalChangeCapital");X(this,"_historyOrder");X(this,"_orders");X(this,"_exitOrders");X(this,"_pendingOrders");X(this,"_mintick");X(this,"_funcOptions");X(this,"_pendingCloseOrders");X(this,"_errorListener");X(this,"_risk");X(this,"_opentrades");X(this,"_closedtrades");X(this,"_riskNamespace");X(this,"_updateOptions",{});X(this,"_id");X(this,"_maxDrawdownVerifyIndex",0);X(this,"calcOnOrderFillsData",{index:-1});this._variables=e,this._errorListener=o,this._options={overlay:!1,format:a1.inherit,pyramiding:1,calc_on_order_fills:!1,calc_on_every_tick:!1,max_bars_back:0,backtest_fill_limits_assumption:0,default_qty_type:b2.fixed,default_qty_value:1,initial_capital:1e6,currency:E3.NONE,slippage:0,commission_type:a2.percent,commission_value:0,process_orders_on_close:!1,close_entries_rule:"FIFO",margin_long:0,margin_short:0,explicit_plot_zorder:!1,max_lines_count:50,max_labels_count:50,max_boxes_count:50,calc_bars_count:0,risk_free_rate:2,use_bar_magnifier:!1,fill_orders_on_standard_ohlc:!1,max_polylines_count:50},this._funcOptions=t,this._totalChangeCapital=0,this._orders=[],this._pendingOrders=[],this._historyOrder=[],this._exitOrders=[],this._pendingCloseOrders=[],this._mintick=r,this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder),this._variables.strategy.updateStrategyOptions(this._options),this._risk={intradayOrders:0},this._opentrades=new Z_(this),this._closedtrades=new Q_(this),this._riskNamespace=new em(this,o),this._id=`strategy_${n}`}get orders(){return[...this._orders]}get historyOrders(){return[...this._historyOrder]}get _freezeCapital(){const{close:e}=this.calcOnOrderFillsData.data||this._variables;return this._orders.reduce((t,r)=>t+e*(r.qty||0),0)}get opentrades(){return this._opentrades}get closedtrades(){return this._closedtrades}get risk(){return this._riskNamespace}get isCalcOnEveryTick(){return this._options.calc_on_every_tick}updateOptions(e){this._updateOptions=e||{},Object.assign(this._options,this._updateOptions)}update(){this._maxConsLossDaysVerify(),this._ordersHandle(),this._pendingOrderHandle(),this._exitOrdersHandle(),this._maxIntradayFilledOrdersVerify(),this._maxDrawdownVerify();const{open:e,high:t,low:r}=this.calcOnOrderFillsData.data||this._variables,o=this._variables.close;this._variables.strategy.update(this.calcOnOrderFillsData.currentData||{open:e,close:o,high:t,low:r}),!this._options.process_orders_on_close&&this._calcLiquidate(),this._calcProfitAndLoss()}calcCurrentOrder(){this._ordersHandle(),this._pendingOrderHandle(),this._calcProfitAndLoss()}updateRisk(e){Object.assign(this._risk,e)}endExecution(){this._maxIntradayLoss(),this._pendingCloseOrderHandle(),this._options.process_orders_on_close&&this._calcLiquidate()}_maxIntradayLoss(){var l;const{max_intraday_loss:e,max_intraday_loss_type:t,isDisabledOpen:r}=this._risk;if(e===void 0||!t||r)return;const{time_tradingday:o,time:n,strategy:{netprofit:b,initial_capital:z}}=this._variables,{high:i,low:s}=this.calcOnOrderFillsData.data||this._variables;let{preNetprofit:O=0}=this._risk;n===o&&(O=b,this._risk.preNetprofit=b,this._risk.isTemporaryBan=!1);let a=O-b;a+=this._orders.reduce((d,A)=>{const{in_price:h,direction:q,qty:_=0,commission:m=0,original_qty:L=0}=A,g=q===i1.long?1:-1,v=(i-h)*_,y=(s-h)*_,E=g===1?y:-v;return d+E+_/L*m},0);let u=!1;switch(t){case b2.cash:u=e<a;break;case b2.percentOfEquity:const d=a/(z+b)*100;u=e<d;break}if(u){this._risk.isTemporaryBan=!0;const d=(l=this._orders[0])==null?void 0:l.direction;this._closeOrders(this._orders,d===i1.long?s:i,"Close Position (Max intraday Loss)",void 0,"close"),this._pendingOrders=[]}}_maxIntradayFilledOrdersVerify(){const{max_intraday_filled_orders:e,intradayOrders:t=0,isDisabledOpen:r}=this._risk;if(e===void 0||r)return;const{time:o,time_tradingday:n}=this._variables,{open:b}=this.calcOnOrderFillsData.data||this._variables;o===n&&(this._risk.intradayOrders=0,this._risk.isTemporaryBan=!1),e<=t&&(this._risk.isTemporaryBan=!0,this._closeOrders(this._orders,b,"Close Position (Max number of filled orders in one day)",void 0,"close"),this._pendingOrders=[])}_maxConsLossDaysVerify(){const{max_cons_loss_days:e,lossDays:t=0,isDisabledOpen:r,totalProfit:o=0}=this._risk;if(e===void 0||r)return;const{time:n,time_tradingday:b,strategy:z}=this._variables,{open:i}=this.calcOnOrderFillsData.data||this._variables;let s=t;if(n===b){const O=z.netprofit+z.openprofit;O<o?s=0:s++,Object.assign(this._risk,{lossDays:s,totalProfit:O})}e<=s&&this._riskTouchOff(i,"Close Position (Max consecutive loss days)")}_maxDrawdownVerify(){const{max_drawdown:e,max_drawdown_type:t,isDisabledOpen:r}=this._risk;if(r)return;const{bar_index:o}=this._variables,{open:n}=this.calcOnOrderFillsData.data||this._variables;if(e!==void 0&&t&&this._maxDrawdownVerifyIndex===o){const{initial_capital:b}=this._options,i=this._orders.reduce((O,a)=>{const{in_price:u,commission:l=0,qty:d=0,original_qty:A=0,direction:h}=a,q=h===i1.long?1:-1,_=(n-u)*q*d;return O+_+l*d/A},0)+this._totalChangeCapital;let s=!1;switch(t){case b2.percentOfEquity:s=i/b*100<=-e;break;case b2.cash:s=i<=-e;break}s&&this._riskTouchOff(n,"Close Position (Max Drawdown)")}}_riskTouchOff(e,t){this._risk.isDisabledOpen=!0,this._orders.length&&this._closeOrders(this._orders,e,t,"close"),this._pendingOrders=[]}strategy(e,t){if(!this._variables.bar_index){this._paramVerfiy(e.format,t,"strategy",[a1.inherit,a1.price,a1.percent,a1.volume],"format"),this._paramVerfiy(e.default_qty_type,t,"strategy",Object.values(b2),"default_qty_type"),this._paramVerfiy(e.commission_type,t,"strategy",Object.values(a2),"commission_type");const r=self==null?void 0:self.workerStorage.get(this._id),o={...this._updateOptions};if(r)for(const n of Object.keys({...r,...e}))e[n]!==r[n]&&delete o[n];this._variables.max_bars_back=e.max_bars_back||0,self==null||self.workerStorage.set(this._id,e),Object.assign(this._options,e,o),this._variables.updateMaxLength(e),Object.assign(this._funcOptions,{strategy:this._options,userSetStrategyConfig:o,scriptType:"strategy"})}}order(e,t){this._verfiyRequestFunc(t,"order"),!this._risk.isDisabledOpen&&(this._paramVerfiy(e.oca_type,t,"strategy.order",Object.values(je),"oca_type"),this._orderHandle(e))}entry(e,t){this._verfiyRequestFunc(t,"entry"),!this._risk.isDisabledOpen&&(this._paramVerfiy(e.oca_type,t,"strategy.entry",Object.values(je),"oca_type"),this._entryHandle(e))}close(e,t){if(this._verfiyRequestFunc(t,"close"),!this._getCloseOrders(e.id).length)return;const{immediately:o}=e;if(o||this._options.process_orders_on_close){const n=this._pendingCloseOrders.find(b=>b.id===e.id&&b.place_order_type==="close");if(n){Object.assign(n,e);return}this._pendingCloseOrders.push({...e,place_order_type:"close"})}else{const n=this._pendingOrders.find(b=>b.id===e.id&&b.place_order_type==="close");if(n){Object.assign(n,e);return}this._pendingOrders.push({...e,place_order_type:"close"})}}close_all(e,t){if(this._verfiyRequestFunc(t,"close_all"),typeof e=="string"&&(e={}),!this._orders.length)return;const{immediately:r}=e;r||this._options.process_orders_on_close?this._pendingCloseOrders.push({...e,place_order_type:"close_all"}):this._pendingOrders.push({...e,place_order_type:"close_all"})}cancel({id:e},t){this._verfiyRequestFunc(t,"cancel"),this._pendingOrders=this._pendingOrders.filter(r=>!(r.id===e&&r.place_order_type!=="close"))}cancel_all(e){this._verfiyRequestFunc(e,"cancel_all"),this._pendingOrders=this._pendingOrders.filter(t=>t.place_order_type==="close_all")}exit(e,t){this._verfiyRequestFunc(t,"exit"),this._exit(e,t)}convert_to_account({value:e},t){return this._verfiyRequestFunc(t,"convert_to_account"),e}convert_to_symbol({value:e},t){return this._verfiyRequestFunc(t,"convert_to_symbol"),e}default_entry_qty({fill_price:e},t){return this._verfiyRequestFunc(t,"default_entry_qty"),e?this._calcDefaultQty(e):0}_calcDefaultQty(e){const{default_qty_type:t=b2.fixed,default_qty_value:r=1,initial_capital:o,commission_value:n}=this._options;let b=r;switch(t){case b2.cash:b=r/e;break;case b2.percentOfEquity:const z=this._getOrderProfit(e),i=o+z+this._totalChangeCapital;n?b=this._getCommQty(i,e):b=i*r/100/e;break}return Oc(b,this._getLen())}_calcExitQty(e){if(!String(e).includes("."))return e;const t=this._getLen();return Math.ceil(Qt(e,Math.pow(10,t)))}_getCommQty(e,t){const{commission_type:r,commission_value:o=0,default_qty_value:n=0}=this._options;let b=0;switch(r){case a2.percent:b=e*n/(100*t+o*t);break;case a2.cashPerContract:b=e*n/(100*t+o);break;case a2.cashPerOrder:b=(e-o)*n/100/t}return b}_getLen(){const e=5-(this._variables.precision||5);return e<0?0:e}_getCapital(e,t){const{margin_long:r=0,margin_short:o=0}=this._options;return r<100&&r>0&&e===1?t=t*100/r:o<=100&&o>0&&e===-1&&(t=t*100/o),t}_calcProfitAndLoss(){const{close:e}=this.calcOnOrderFillsData.data||this._variables;for(const t of this._orders){const{in_price:r,qty:o=0,direction:n}=t,b=n===i1.long?1:-1,z=(e-r)*b*o,[i,s]=this._calcProfitAndLossHandle(r,o,b);this._calcOrderPercent(t,z,i,s)}}_calcProfitAndLossHandle(e,t,r,o){const{high:n,low:b}=this.calcOnOrderFillsData.data||this._variables,z=((o||n)-e)*t,i=((o||b)-e)*t;let s=r===1?z:-i,O=r===1?i:-z;return[s,O]}_calcOrderPercent(e,t,r,o){const{commission_value:n}=this._options,{close:b}=this.calcOnOrderFillsData.data||this._variables,{original_qty:z=0,qty:i=0,in_price:s,max_profit:O=0,trading_loss:a=0}=e;let{commission:u=0}=e,l=s*i;if(n){const d=this._getCommission(b,i);u=u*i/z,r-=u,o-=u,l+=u,t=t-d-u}r=Math.max(r,O,0),o=Math.min(o,a,0),Object.assign(e,{profit:t,total_profit:this._totalChangeCapital+t,total_profit_percent:t/(this._options.initial_capital+this._totalChangeCapital)*100,max_profit:r,trading_loss:o,profit_percent:t/l*100,max_profit_percent:r/l*100,trading_loss_percent:o/l*100})}_calcLiquidate(){if(!this._orders.length)return;const{time:e}=this._variables,{high:t,low:r}=this.calcOnOrderFillsData.data||this._variables,{initial_capital:o,margin_long:n=0,margin_short:b=0}=this._options,z=this._orders[0].direction===i1.long?1:-1;let i=z===1?r:t;if(z===1&&n===100)return;const s=(z===1?n:b)/100;if(s<=0)return;let O=!1;const[a,u]=this._orders.reduce((h,q)=>{let[_,m]=h;const{in_price:L,qty:g=0,in_time:v}=q;v===e&&(O=!0);const y=L*g,E=i*g;return _+=y,m+=E,[_,m]},[0,0]);let l=0,d=0;const A=o+this._totalChangeCapital;if(O&&(l=A-a*s,l<0&&(i=this._orders[0].in_price,d=Math.abs(Math.trunc(l/s/i)*4),d=Math.max(d,1))),l>=0){const h=z*(u-a);if(l=A+h-u*s,l>=0)return;d=Math.abs(Math.trunc(l/s/i)*4)}d<=0||this._marginCallOrders(i,d,"Margin Call")}_marginCallOrders(e,t,r){const{close_entries_rule:o="FIFO"}=this._options;if(o==="FIFO"){this._processOrders(this._orders,e,t*this._orders.length,r,r,!0);return}for(const n of this.orders)n.position_close_type=n.place_order_type,n.isTiggerClose=!0,this._processOrder(n,e,t,r,r,!0);this._orders=this._orders.filter(n=>!n.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder)}_orderHandle(e){const{process_orders_on_close:t}=this._options,{isMarketPrice:r,quantities:o,close:n,price:b,activePrice:z,isTouch:i}=this._orderArgsParse(e),s=e.direction===i1.long?1:-1;if(o<=0)return;let O=o;if((r||i)&&t){this._pendingCloseOrders.push({...e,in_price:n,qty:o,place_order_type:"order"});return}this._judgeCapitalEnough(o,b,s)&&this._addPendingOrders(e,b,O,r,z)}_orderOnCloseHandle(e){const t=this._orders.filter(_=>_.direction!==e.direction),{slippage:r=0}=this._options;let{direction:o,qty:n=0,id:b,comment:z,oca_type:i,oca_name:s,in_price:O}=e;const a=o===i1.long?1:-1;if(t.length){const _=this._processOrders(t,O,n,b,z,!1,"order");if(_<=0)return;n=_}const u=O-a*r*this._mintick;if(!this._judgeCapitalEnough(n,u,a))return;this._ocaGroupVerify(n,s,i);const{bar_index:d,time:A}=this._variables,{high:h,low:q}=this.calcOnOrderFillsData.data||this._variables;this._calcCurrentOrder({...e,in_price:u,in_high:h,in_low:q,in_index:d,in_time:A,qty:n,place_order_type:"order"})}_judgeCapitalEnough(e,t,r){let o=this._freezeCapital;if(this._orders.some(O=>(O.direction===i1.long?1:-1)!==r)&&(o=0),e<=0)return!1;const{margin_long:n=0,margin_short:b=0}=this._options;if(n===0&&r===1||b===0&&r===-1)return!0;const z=this._getOrderProfit(t),s=this._getCapital(r,this._options.initial_capital+z+this._totalChangeCapital)-o;return e*t<=s}_getOrderProfit(e){return this._orders.reduce((t,r)=>{const{in_price:o,qty:n=0,direction:b}=r,z=b===i1.long?1:-1;return t+(e-o)*n*z},0)}_ocaGroupVerify(e,t,r){if(!t||!r||r===je.none)return!1;let o=!1;switch(r){case je.cancel:this._pendingOrders=this._pendingOrders.filter(n=>{if(n.oca_name===t)n.isCancel=!0,o=!0;else return!0});break;case je.reduce:this._pendingOrders=this._pendingOrders.filter(n=>{const{qty:b=0,oca_name:z}=n;if(t===z){const i=b-e;return o=!0,i<=0?(n.isCancel=!0,!1):(n.qty=i,!0)}else return!0});break}return o}_processOrders(e,t,r,o,n,b=!1,z,i){if(!e.length)return r;let s=r;for(const O of e)if(O.position_close_type=z||O.place_order_type,O.immediately=i,O.isTiggerClose=b||O.position_close_type==="close",s=this._processOrder(O,t,s,o,n,b),s<=0)break;return this._orders=this._orders.filter(O=>!O.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder),s}_addPendingOrders(e,t,r,o,n){const b=this._pendingOrders.find(z=>z.id===e.id&&!z.isMarketPrice);if(b)Object.assign(b,{...e,in_price:t,isMarketPrice:o,qty:r,active_price:n});else{const z={...e,in_price:t,isMarketPrice:o,qty:r,active_price:n,entry_time:this._variables.time,place_order_type:"order"};this._pendingOrders.push(z)}}_orderArgsParse(e){var q,_;const{direction:t,qty:r,stop:o}=e;let n=e.limit||0,{close:b}=this.calcOnOrderFillsData.data||this._variables;(_=(q=this.calcOnOrderFillsData)==null?void 0:q.tradeData)!=null&&_.open&&(b=this.calcOnOrderFillsData.tradeData.open);let z=b,i=!1,s;const O=t===i1.long?1:-1,a=o&&(o-b)*O>=0,{backtest_fill_limits_assumption:u=0}=this._options;u>0&&n&&(n-=u*this._mintick*O);const l=n&&(n-b)*O<=0;let d=!1;a&&l?(o!==b&&(s=o),z=n):a?(z=o,d=o===b):l?(z=n,d=n===b):i=!0;const A=r!==void 0?Oc(r,this._getLen()):this._calcDefaultQty(z);return{orders:this._orders.filter(m=>m.direction!==t),isMarketPrice:i,activePrice:s,quantities:A,close:b,price:z,isTouch:d}}_entryHandle(e){const{process_orders_on_close:t}=this._options,{isMarketPrice:r,quantities:o,close:n,price:b,activePrice:z,isTouch:i}=this._orderArgsParse(e);if(o<=0)return;if((r||i)&&t){this._pendingCloseOrders.push({...e,in_price:n,qty:o,place_order_type:"entry"});return}this._judgeCapitalEnough(o,n,e.direction===i1.long?1:-1)&&this._addPendingEntry(e,b,o,r,z)}_entryOnCloseHandle(e){const{direction:t,in_price:r,qty:o=0}=e,n=this._orders.filter(b=>b.direction!==t);this._entryOrder(n,r,o,e)}_entryOrder(e,t,r,o){const{time:n,bar_index:b}=this._variables,{high:z,low:i}=this.calcOnOrderFillsData.data||this._variables,{slippage:s=0}=this._options,{oca_name:O,oca_type:a,direction:u,comment:l,id:d}=o,A=u===i1.long?1:-1;if(r=this._getAvailablePositionSize(r,u),r<=0)return;const h=t;if(t=t+s*this._mintick*A,!this._judgeCapitalEnough(r,t,A))return;this._closeOrders(e,h,d,l,"entry",void 0,!0);const _={...o,in_price:t,qty:r,in_index:b,in_high:z,in_low:i,in_time:n,place_order_type:"entry"},{orders:m}=this._getEntryOrders(u),L=m.length;L&&L>=(this._options.pyramiding||1)||(this._ocaGroupVerify(r,O,a),this._calcCurrentOrder(_))}_getAvailablePositionSize(e,t){const{max_position_size:r,allow_entry_in:o}=this._risk;if(o&&o!==i1.all&&o!==t)return 0;if(r===void 0)return e;const n=this._orders.reduce((b,z)=>b+(z.qty||0),0);return n?n+e>r?0:e:e>r?e-r:0}_getEntryOrders(e){const t=this._pendingOrders.filter(o=>["entry","order"].includes(o.place_order_type)&&o.direction===e),r=this._orders.filter(o=>o.direction===e);return{pendingOrders:t,orders:r}}_addPendingEntry(e,t,r,o,n){if(r=this._getAvailablePositionSize(r,e.direction),r<=0)return;const{pendingOrders:b}=this._getEntryOrders(e.direction),z=b.find(i=>i.id===e.id&&i.place_order_type==="entry");if(z)Object.assign(z,{...e,in_price:t,isMarketPrice:o,qty:r,active_price:n});else{const i={...e,in_price:t,isMarketPrice:o,qty:r,active_price:n,entry_time:this._variables.time,place_order_type:"entry"};this._pendingOrders.push(i)}}_closeAllOrders(e,t){const{comment:r,immediately:o}=e,{bar_index:n}=this._variables,b=this._orders.filter(z=>z.in_index!==n);b.length&&(this._closeOrders(b,t,"Close position order",r,"close",o),this._orders=[],this._variables.strategy.updateOrders(this._orders))}_closeOrders(e,t,r,o,n,b,z){if(e.length){for(const i of e)i.position_close_type=n,i.immediately=b,i.isTiggerClose=!0,this._closeOrder(i,t,r,o,z);this._orders=this._orders.filter(i=>!i.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder)}}_closeOrder(e,t,r,o,n){const{time:b,bar_index:z}=this._variables,{high:i,low:s}=this.calcOnOrderFillsData.data||this._variables,{slippage:O=0}=this._options,{in_price:a,qty:u=0,direction:l}=e,d=l===i1.long?1:-1;t=t-d*O*this._mintick,e.isDeal=!0;const A=(t-a)*d*u,h={...e,out_price:t,out_id:r,out_index:z,out_high:i,out_low:s,out_time:b,out_comment:o,out_qty:u,profit:A};this._calcPercent(h,n)}_exitOrdersHandle(){if(!this._exitOrders.length)return;let{open:e,low:t,high:r,close:o}=this.calcOnOrderFillsData.data||this._variables;const n=[],b=Math.abs(r-e),z=Math.abs(t-e),i=[],s=this._variables.precision;e=Number(e.toFixed(s)),t=Number(t.toFixed(s)),r=Number(r.toFixed(s)),o=Number(o.toFixed(s));for(const O of this._exitOrders){const{directionNum:a,id:u,comment:l,qty:d,comment_loss:A,comment_profit:h,comment_trailing:q,order:_}=O;if(_.isTiggerClose)continue;let m=b<z||b===z&&a===1;if(_.in_time===this._variables.time&&!this._variables._isRepeated){const{in_price:D}=_;m?D<r&&D>=e?e=D:D<=r&&D>=o?r=D:r=o:D<=e&&D>t?e=D:D<=o&&D>=t?t=D:t=o,e=D}const L=[],[g,v]=this._getLimitPrice(O,e,t,r,m);g&&L.push({order:_,price:g,index:v,isHighFront:m,exitInfo:{id:u,comment:h||l,qty:d}});const[y,E]=this._getStopPrice(O,e,t,r,m);y&&L.push({order:_,price:y,index:E,isHighFront:m,exitInfo:{id:u,comment:A||l,qty:d}});const[T,N]=this._getTrailStopPrice(O,e,t,r,o,m);if(T&&L.push({order:_,price:T,index:N,isHighFront:m,exitInfo:{id:u,comment:q||l,qty:d}}),L.length){this._executesSort(L),n.push(L[0]);continue}i.push(O)}this._exitOrders=i,this._executesSort(n);for(const O of n){const{order:a,price:u,exitInfo:l,isHighFront:d,index:A}=O;d?(r=A===1?u:r,t=A===1?e:u):(r=A===1?e:u,t=A===1?u:t),this._variables.strategy.update({open:u,high:r,low:t,close:o}),this._processExitOnClose(a,u,l)}}_executesSort(e){return e.sort(({price:t,index:r,isHighFront:o},{price:n,index:b})=>r!==b?r-b:o?r===1?t-n:n-t:r===1?n-t:t-n),e}_getLimitPrice(e,t,r,o,n){const{limit:b,directionNum:z}=e;let i,s=1;return b&&((t-b)*z>=0?(i=t,s=1):r<=b&&o>=b&&(i=b,n&&b>t||!n&&b<t?s=1:s=2)),[i,s]}_getStopPrice(e,t,r,o,n){const{stop:b,directionNum:z}=e;let i,s=1;return b&&((t-b)*z<=0?(i=t,s=1):r<=b&&o>=b&&(i=b,n&&b>t||!n&&b<t?s=1:s=2)),[i,s]}_getTrailStopPrice(e,t,r,o,n,b){const{trail_stop_price:z,directionNum:i,active_price:s,trail_offset:O=0}=e;let a=z,u,l=1;if(a)if((a-t)*i>=0)u=t,l=1;else{const[d,A,h]=this._calcTrailStopPrice(a,o,r,n,O,i,b);u=A,l=h||1,e.trail_stop_price=d}if(s&&!u&&s<=o&&s>=r)if(O===0)u=s,b&&s>t||!b&&s<t?l=1:l=2;else{a=tn(s,Qt(O*i,this._mintick));let d=o,A=r;b?s>=t&&s<=o?(d=o,l=1):(b=!1,d=n,l=2):s<t&&s>=r?(A=r,l=1):(b=!0,A=n,l=2);const[h,q,_=1]=this._calcTrailStopPrice(a,d,A,n,O,i,b);delete e.active_price,l<_&&(l=_),e.trail_stop_price=h,u=q}return[u,l]}_ordersHandle(e){const t=this._orders.filter(b=>b.isMarketPriceLimit||b.isMarketPriceStop);if(!t.length)return;const{open:r,close:o}=this.calcOnOrderFillsData.data||this._variables,n=e?o:r;for(const b of t){const{out_comment:z,out_qty:i,out_id:s}=b;this._processExitOnClose(b,n,{id:s,comment:z,qty:i})}}_calcTrailStopPrice(e,t,r,o,n,b,z){let i=e,s;const O=tn(b===1?t:r,Qt(n*b,this._mintick));let a=1;return b===1?z?(i<O&&(i=O),i>=r&&(a=2,s=i)):i>=r?(a=1,s=i):O>i&&(i=O,O>=o&&(a=3,s=O)):z?i<=t?(a=1,s=i):O<i&&(i=O,O<=o&&(a=3,s=O)):(O<i&&(i=O),i<=t&&(a=2,s=i)),[i,s,a]}_pendingOrderHandle(){if(!this._pendingOrders.length)return;const e=[],t=this._pendingOrders.filter(z=>z.place_order_type==="exit");let r=[];for(const z of this._pendingOrders){const{isCancel:i,place_order_type:s,isMarketPrice:O}=z;if(i)continue;let a;switch(s){case"entry":if(!O){r.push(z);continue}this._entryOrderHandle(z);break;case"order":if(!O){r.push(z);continue}this._orderOrderHandle(z);break;case"close":a=this._closeOrderHandle(z);break;case"close_all":const{open:u}=this.calcOnOrderFillsData.data||this._variables;this._closeAllOrders(z,u);break}a&&e.push(a)}const o=this._options.pyramiding||1,n=this._orders.filter(z=>z.direction===i1.long).length<o,b=this._orders.filter(z=>z.direction===i1.short).length<o;r=r.filter(z=>z.direction===i1.long&&n||z.direction===i1.short&&b);for(const z of this._pendingOrderSort(r)){const{place_order_type:i}=z;let s;switch(i){case"entry":s=this._entryOrderHandle(z);break;case"order":s=this._orderOrderHandle(z);break}s&&e.push(s)}for(const z of t){const i=this._exitOrderHandle(z);i&&e.push(i)}this._pendingOrders=e}_pendingOrderSort(e){const{open:t,low:r,high:o}=this.calcOnOrderFillsData.data||this._variables,n=Math.abs(o-t)<=Math.abs(r-t);return e.sort(({in_price:b},{in_price:z})=>{let i=0,s=0;return n?(b>=t&&b<=o?i=1:i=2,z>=t&&z<=o?s=1:s=2):(b<=t&&b>=r?i=1:i=2,z<=t&&z>=r?s=1:s=2),i!==s?i-s:n?i===1?b-z:z-b:i===1?z-b:b-z}),e}_pendingCloseOrderHandle(){if(!this._pendingCloseOrders.length)return;const{close:e}=this.calcOnOrderFillsData.data||this._variables,t=[];for(const r of this._pendingCloseOrders)switch(r.place_order_type){case"close":const o=this._closeOrderHandle(r,!0);o&&t.push(o);break;case"close_all":this._closeAllOrders(r,e);break;case"entry":this._entryOnCloseHandle(r);break;case"order":this._orderOnCloseHandle(r);break}this._pendingCloseOrders=t,this._ordersHandle(!0)}_entryOrderHandle(e){const{open:t,low:r,high:o}=this.calcOnOrderFillsData.data||this._variables,{isMarketPrice:n,qty:b=0,in_price:z,direction:i,active_price:s}=e;if(s&&o>=s&&r<=s)return delete e.active_price,e;let O=z;if(n)O=t;else{let{stop:a,limit:u}=e;const l=i===i1.long?1:-1,d=a&&(a-t)*l>=0,{backtest_fill_limits_assumption:A=0}=this._options;A>0&&u&&(u-=A*this._mintick*l);const h=u&&(u-t)*l<=0;d&&h||(a&&!d||u&&!h)&&(O=t)}if(O<=o&&O>=r){const a=this._orders.filter(u=>u.direction!==i);this._entryOrder(a,O,b,e)}else return e}_orderOrderHandle(e){const{time:t,bar_index:r}=this._variables,{open:o,low:n,high:b}=this.calcOnOrderFillsData.data||this._variables,{slippage:z=0}=this._options,{isMarketPrice:i,qty:s=0,in_price:O,direction:a,comment:u,oca_name:l,oca_type:d,active_price:A,id:h}=e;if(A&&b>=A&&n<=A)return delete e.active_price,e;let q=O,_=s;if(i&&(q=o),q<=b&&q>=n){const m=this._orders.filter(g=>g.direction!==a);if(m.length&&(_=this._processOrders(m,q,s,h,u,!1,"order"),_<=0))return;const L=a===i1.long?1:-1;this._ocaGroupVerify(_,l,d),this._calcCurrentOrder({...e,in_price:q-L*z*this._mintick,in_index:r,in_time:t,in_high:b,in_low:n,qty:_});return}else return e}_getCloseOrders(e){const{close_entries_rule:t="FIFO"}=this._options;let r=[];return t==="FIFO"?r=this._orders.filter(o=>o.id===e):r=this._orders.filter(o=>o.id===e&&!o.close_qty),r}_closeOrderHandle(e,t){const{id:r,qty:o,qty_percent:n=100,comment:b,immediately:z}=e,{close_entries_rule:i="FIFO"}=this._options,s=this._getCloseOrders(r);if(!s.length)return;let O=0;if(o?O=o:(O=s.reduce((l,d)=>l+(d.qty||0),O),O=n/100*O),O<=0)return;const{open:a,close:u}=this.calcOnOrderFillsData.data||this._variables;if(i==="FIFO")this._processOrders(s,t?u:a,O,`Close entry(s) order ${r}`,b,!1,"close",z);else if(this._processCloseOrders(s,t?u:a,O,`Close entry(s) order ${r}`,b,z))return e}_processCloseOrders(e,t,r,o,n,b){let z=!1;for(const i of e)i.close_qty=r,(i.qty||0)>r&&(z=!0),i.immediately=b,i.position_close_type="close",i.isTiggerClose=!0,this._processOrder(i,t,r,o,n);return this._orders=this._orders.filter(i=>!i.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder),z}_exitOrderHandle(e){const{from_entry:t,id:r}=e,o=this._orders.filter(n=>{var b;return(!t||t===n.id)&&!((b=n.exitIds)!=null&&b.includes(r))});if(!(o.length&&!this._ordersToExit(o,e,!0)))return e}_exit(e,t){if(!e.hasOwnProperty("profit")&&!e.hasOwnProperty("loss")&&!e.hasOwnProperty("stop")&&!e.hasOwnProperty("limit")&&(!e.hasOwnProperty("trail_offset")||!e.hasOwnProperty("trail_price")&&!e.hasOwnProperty("trail_points"))){this._errorListener.addError(l1.strategyExitErr,t,j0.Error);return}const{profit:r,loss:o,stop:n,limit:b,trail_offset:z,trail_price:i,trail_points:s,from_entry:O="",id:a}=e;if(this._isNaN(r)&&this._isNaN(o)&&this._isNaN(n)&&this._isNaN(b)&&(this._isNaN(z)||this._isNaN(s)&&this._isNaN(i)))return;const u={...e,place_order_type:"exit"},l=this._orders.filter(q=>{var _;return(!O||O===q.id)&&!((_=q.exitIds)!=null&&_.includes(a))}),d=this._updateExitOrders(u),A=this._pendingOrders.filter(q=>(!O||O===q.id)&&["order","entry"].includes(q.place_order_type||""));if(l.length){if(!this._ordersToExit(l,u,!1))return}else if(!A.length||d)return;const h=this._pendingOrders.find(q=>q.id===a&&q.place_order_type==="exit");h?Object.assign(h,{...e}):this._pendingOrders.push(u)}_updateExitOrders(e){let t=!1;e.qty&&(e.qty=this._calcExitQty(e.qty));const r=this._exitOrders.filter(o=>o.id===e.id&&(o.from_entry===e.from_entry||!e.from_entry));for(const o of r){const{directionNum:n,order:b,qty:z}=o;if(b.isTiggerClose){o.isClose=!0;continue}t=!0;const i={qty:z,...e},s=!0;if(this._stopProfit(b,n,i,s)){o.isClose=!0;continue}if(this._stopLoss(b,n,i,s)){o.isClose=!0;continue}if(this._trailStopLoss(b,n,i,s)){o.isClose=!0;continue}Object.assign(o,i)}return this._exitOrders=this._exitOrders.filter(o=>!o.isClose),t}_ordersToExit(e,t,r){var q;const{qty:o,qty_percent:n=100,id:b,comment:z}=t;let i=o,s=!1;t.comment=z||b;const O=e[0],a={...t},{qty:u=0}=O,l=O.direction===i1.long?1:-1;return i=o?o>=u?u:o:n/100*u,a.qty=this._calcExitQty(i),i<u&&(s=!0),this._stopProfit(O,l,a,r)||this._stopLoss(O,l,a,r)||this._trailStopLoss(O,l,a,r)||(this._exitOrders.push({...a,directionNum:l,order:O}),O.exitIds?(q=O.exitIds)==null||q.push(b):O.exitIds=[b]),s}_addExitPendingCloseOrders(e){const t=this._pendingCloseOrders.find(r=>r.id===e.id);t?Object.assign(t,{...e}):this._pendingCloseOrders.push(e)}_stopProfit(e,t,r,o){var A,h;const{limit:n,profit:b,comment_profit:z,comment:i,id:s,qty:O}=r;let a=n;const{in_price:u}=e,{process_orders_on_close:l}=this._options;if(!this._isNaN(b)&&this._isNaN(n)&&(a=k3(u,Qt(b*t,this._mintick))),a=t===1?Ac(a,this._variables.precision):fc(a,this._variables.precision),r.limit=a,o)return;let{close:d}=this.calcOnOrderFillsData.data||this._variables;if((h=(A=this.calcOnOrderFillsData)==null?void 0:A.tradeData)!=null&&h.open&&(d=this.calcOnOrderFillsData.tradeData.open),a!==void 0&&(a-d)*t<=0)return e.isMarketPriceLimit=!0,r.comment=z||i,Object.assign(e,{out_comment:r.comment,out_id:s,out_qty:O}),l&&this._addExitPendingCloseOrders(r),!0}_stopLoss(e,t,r,o){var A,h;const{stop:n,loss:b,comment_loss:z,comment:i,id:s,qty:O}=r;let a=n;const{in_price:u}=e,{process_orders_on_close:l}=this._options;if(!this._isNaN(b)&&this._isNaN(n)&&(a=tn(u,Qt(b*t,this._mintick))),a=t===1?fc(a,this._variables.precision):Ac(a,this._variables.precision),r.stop=a,o)return;let{close:d}=this.calcOnOrderFillsData.data||this._variables;if((h=(A=this.calcOnOrderFillsData)==null?void 0:A.tradeData)!=null&&h.open&&(d=this.calcOnOrderFillsData.tradeData.open),a!==void 0&&(a-d)*t>=0)return e.isMarketPriceStop=!0,r.comment=z||i,Object.assign(e,{out_comment:r.comment,out_id:s,out_qty:O}),l&&this._addExitPendingCloseOrders(r),!0}_trailStopLoss(e,t,r,o){var u,l;const{trail_offset:n,trail_price:b,trail_points:z,comment_trailing:i,comment:s,id:O,qty:a}=r;if(!this._isNaN(n)){const{in_price:d}=e,{process_orders_on_close:A}=this._options;let h;if(this._isNaN(b)?this._isNaN(z)||(h=k3(d,Qt(z*t,this._mintick))):h=b,r.active_price=h,o)return;let{close:q}=this.calcOnOrderFillsData.data||this._variables;if((l=(u=this.calcOnOrderFillsData)==null?void 0:u.tradeData)!=null&&l.open&&(q=this.calcOnOrderFillsData.tradeData.open),h!==void 0&&(h-q)*t<=0){const _=tn(q,Qt(n*t,this._mintick));if((_-q)*t>=0)return e.isMarketPriceStop=!0,r.comment=i||s,Object.assign(e,{out_comment:r.comment,out_id:O,out_qty:a}),A&&this._addExitPendingCloseOrders(r),!0;r.trail_stop_price=_}}}_processExitOnClose(e,t,r){const{qty:o=0,comment:n,id:b}=r,{close_entries_rule:z="FIFO"}=this._options;if(o)if(e.isTiggerClose=!0,z==="FIFO")this._processExitOrders(this._orders,t,o,b,n);else{if(e.isDeal)return;this._processOrders([e],t,o,b,n,!1,"exit")}}_processExitOrders(e,t,r,o,n){let b=r,z;for(const i of e)if(z=i,i.position_close_type="exit",b=this._processOrder(i,t,b,o,n),b<=0)break;return this._orders=this._orders.filter(i=>!i.isDeal),this._variables.strategy.updateOrders(this._orders),this._variables.strategy.updateHistoryOrders(this._historyOrder),z}_processOrder(e,t,r,o,n,b=!1){const{time:z,bar_index:i}=this._variables,{low:s,high:O}=this.calcOnOrderFillsData.data||this._variables,{slippage:a=0}=this._options,{in_price:u,qty:l=0,max_profit:d,trading_loss:A,direction:h,commission:q=0,original_qty:_=0}=e,m=h===i1.long?1:-1;if(t=t-m*a*this._mintick,r<l){const L=l-r,g=(t-u)*m*r,v=d!==void 0?d/l*r:void 0,y=A!==void 0?A/l*r:void 0,E=q*L/_;this._calcPercent({...e,out_price:t,last_commission:E,out_id:o,out_index:i,out_high:O,out_low:s,out_time:z,out_comment:n,profit:g,out_qty:r,max_profit:v,trading_loss:y});const T=(t-u)*m*L-E;Object.assign(e,{qty:L,profit:T,max_profit:d!==void 0?d-(v||0):void 0,trading_loss:A!==void 0?A-(y||0):void 0,total_profit:this._totalChangeCapital+T}),r=0}else{e.isDeal=!0;const L=(t-u)*m*l;this._calcPercent({...e,out_price:t,out_id:o,out_index:i,out_high:O,out_low:s,out_time:z,out_comment:n,out_qty:l,profit:L}),r-=l}return b&&(m===1?this._variables.strategy.marginCallLong++:this._variables.strategy.marginCallShort++),r}_calcPercent(e,t){const{commission_value:r,process_orders_on_close:o}=this._options,{in_price:n,out_qty:b=0,out_price:z=0,original_qty:i=0,direction:s,last_commission:O=0,immediately:a}=e;let{profit:u=0,max_profit:l,trading_loss:d,commission:A=0}=e,h=n*b,q=this._totalChangeCapital+this._options.initial_capital;if(this._totalChangeCapital+=u,r){const g=this._getCommission(z,b);this._totalChangeCapital-=g;let v=A*b/i;h+=v,v+=g,u=u-v,Object.assign(e,{commission:v});const y=this._orders.reduce((E,T)=>{const{qty:N=0,original_qty:D=0,commission:C=0}=T;return E+C*N/D},0);q+=y-O}const _=s===i1.long?1:-1;let[m,L]=this._calcProfitAndLossHandle(n,b,_,z);if(r){const g=A*b/i;m-=g,L-=g}l=Math.max(m,l||0),d=Math.min(L,d||0),u=parseFloat(String(u)),Object.assign(e,{max_profit:l,profit:u,trading_loss:d,total_profit:this._totalChangeCapital,total_profit_percent:u/q*100,profit_percent:u/h*100,max_profit_percent:l/h*100,trading_loss_percent:d/h*100}),this._maxDrawdownVerifyIndex=this._variables.bar_index+(o?1:0),this._risk.intradayOrders+=1,this._historyOrder.push(e),!t&&this._calcOrderFillsHandle(z,s,a)}_getCommission(e,t){const{commission_value:r=0,commission_type:o}=this._options,n=e*t;let b=0;switch(o){case a2.percent:b=n*r/100;break;case a2.cashPerContract:b=t*r;break;case a2.cashPerOrder:b=r;break}return b}_calcCurrentOrder(e){const{commission_value:t}=this._options,{in_price:r,qty:o=0,max_profit:n=0,trading_loss:b=0,direction:z,immediately:i}=e;let{profit:s=0}=e,O=r*o;const a=this._totalChangeCapital+this._options.initial_capital;if(t){const u=this._getCommission(r,o);this._totalChangeCapital-=u,s=s-u,O+=u,Object.assign(e,{commission:u,total_profit:this._totalChangeCapital})}s=parseFloat(String(s)),Object.assign(e,{original_qty:o,profit:s,total_profit_percent:s/a*100,profit_percent:s/O*100,max_profit_percent:n/O*100,trading_loss_percent:b/O*100,stop:void 0,limit:void 0}),this._risk.intradayOrders+=1,this._orders.push(e),this._variables.strategy.updateOrders(this._orders),t&&this._variables.strategy.updateHistoryOrders(this._historyOrder),this._calcOrderFillsHandle(r,z,i)}_calcOrderFillsHandle(e,t,r=!1){const{calc_on_order_fills:o,process_orders_on_close:n,slippage:b=0}=this._options;if(o){const{open:z,high:i,low:s,close:O}=this._variables,a=t===i1.long?1:-1,u=O-a*b*this._mintick;if((r||n)&&e===u)return;const l=z-a*b*this._mintick;let d={open:z,high:i,low:s,close:O},A={open:z,high:i,low:s,close:O},h=this.calcOnOrderFillsData.index;const q=Math.abs(i-z)<=Math.abs(s-z);switch(h){case-1:e===l?(h=0,A={open:z,high:z,low:z,close:z}):e>l?q?(h=1,A={open:z,high:i,low:z,close:i},d={open:i,high:i,low:s,close:O}):(h=2,A={open:z,high:i,low:s,close:i},d={open:i,high:i,low:O,close:O}):q?(h=2,A={open:z,high:i,low:s,close:s},d={open:s,high:O,low:s,close:O}):(h=1,A={open:z,high:z,low:s,close:s},d={open:s,high:i,low:s,close:O});break;case 0:e===l?(h=1,q?(A={open:z,high:i,low:z,close:i},d={open:i,high:i,low:s,close:O}):(A={open:z,high:z,low:s,close:s},d={open:s,high:i,low:s,close:O})):e>l?q?(h=1,A={open:z,high:i,low:z,close:i},d={open:i,high:i,low:s,close:O}):(h=2,A={open:z,high:i,low:s,close:i},d={open:i,high:i,low:O,close:O}):q?(h=2,A={open:z,high:i,low:s,close:s},d={open:s,high:O,low:s,close:O}):(h=1,A={open:z,high:z,low:s,close:s},d={open:s,high:i,low:s,close:O});break;case 1:h=2,q?(A={open:z,high:i,low:s,close:s},d={open:s,high:O,low:s,close:O}):(A={open:z,high:i,low:s,close:i},d={open:i,high:i,low:O,close:O});break;case 2:h=-1,d=void 0;break}this.calcOnOrderFillsData={tradeData:d,index:h,currentData:A}}}_isNaN(e){return e===void 0||isNaN(e)}_paramVerfiy(e="",t,r,o,n){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_verfiyRequestFunc(e,t){B0(this._errorListener,`strategy.${t}`,this._variables.__requestName,e)}};class lp{constructor(e,t,r){X(this,"array");X(this,"color");X(this,"math");X(this,"str");X(this,"map");X(this,"matrix");X(this,"timeframe");X(this,"ta");X(this,"input");X(this,"_variables");X(this,"_cacheData");X(this,"_options");X(this,"_errorListener");X(this,"_plots");X(this,"_plotshapes");X(this,"_plotbars");X(this,"_plotchars");X(this,"_plotarrows");X(this,"_plotcandles");X(this,"_alerts");X(this,"_bgColors");X(this,"_hlines");X(this,"_fills");X(this,"chart");X(this,"line");X(this,"label");X(this,"polyline");X(this,"box");X(this,"table");X(this,"linefill");X(this,"log");X(this,"runtime");X(this,"strategy");X(this,"request");X(this,"syminfo");X(this,"_count",0);var n;const o=((n=e.toString().split(".")[1])==null?void 0:n.length)||5;this._variables=t,this._errorListener=new um,this.array=new U4(this._errorListener),this.math=new j4(o),this.color=new f6,this.str=new l_(this._errorListener,o),this.map=new q_(this._errorListener),this.timeframe=new f_(t),this.matrix=new A_(this._errorListener),this.ta=new u6(t,this.math,this.timeframe),this._cacheData={},this._options={},this._bgColors={},this._alerts=new Map,this._hlines=new Map,this._fills=new Map,this.input=new A6(t,this._errorListener,r),this._plots=new Map,this._plotshapes=new Map,this._plotbars=new Map,this._plotcandles=new Map,this._plotchars=new Map,this._plotarrows=new Map,this.chart={point:new d_(t)},this.line=new H_(t,this._errorListener),this.label=new __(t,this._errorListener),this.polyline=new $_(t,this._errorListener),this.box=new K_(t,this._errorListener),this.table=new J_(t,this._errorListener),this.linefill=new Y_(t),this.log=new am(t,this.str),this.runtime=new Om(this._errorListener),this.strategy=new im(this._variables,this._options,e,this._errorListener,r),this.request=new cm(this._variables,r,this,this._errorListener),this.syminfo=new sm}get errors(){return this._errorListener.errors}get scriptType(){return this._options.scriptType}clearErrors(){this._errorListener.clear()}addErrors(e,t){this._errorListener.setErrors(e,t)}options(e,t){if(!t)return e.length?this._getDataOfBarindex(e):this._options;const r=this.input.getInputs(),o=this._alerts.size?[...this._alerts.values()]:void 0;this._alerts.clear();const n=Object.keys(this._bgColors);let b;if(n.length){b={};for(const _ of n)b[_]=[...this._bgColors[_].values()]}const z=this._hlines.size?[...this._hlines.values()]:void 0,i=this._fills.size?[...this._fills.values()]:void 0,s=this.log.logs.length?this.log.logs:void 0;this.log.clearLogs(),this._options.scriptType==="strategy"&&Object.assign(this._options,{orders:this.strategy.orders,historyOrders:this.strategy.historyOrders,strategySummary:this._variables.strategy.summaryData});const O=this._plots.size>0?[...this._plots.values()]:void 0,a=this._plotbars.size>0?[...this._plotbars.values()]:void 0,u=this._plotshapes.size>0?[...this._plotshapes.values()]:void 0,l=this._plotarrows.size>0?[...this._plotarrows.values()]:void 0,d=this._plotcandles.size>0?[...this._plotcandles.values()]:void 0,A=this._plotchars.size>0?[...this._plotchars.values()]:void 0,h=this._getDraws(),q=this._variables.chart.isUseBgColor;return Object.assign({},this._options,{inputs:r,plots:O,draws:h,alerts:o,colors:b,hlines:z,fills:i,logs:s,plotshapes:u,plotarrows:l,plotcandles:d,plotchars:A,plotbars:a,isUseBgColor:q})}_getDataOfBarindex(e){const t=this._alerts.size?[...this._alerts.values()]:void 0;this._alerts.clear();const r=Object.keys(this._bgColors);let o;if(r.length){o={};for(const q of r)o[q]=[...this._bgColors[q].values()].map(_=>{const m=[];for(const L of e){const g=_.data[L];g&&m.push(g)}return _.data=m,_})}const n=this._hlines.size?[...this._hlines.values()]:void 0,b=this._fills.size?this._getDataFromBarindex(e,[...this._fills.values()]):void 0,z=this.log.logs.length?this.log.logs:void 0;this.log.clearLogs(),this._options.scriptType==="strategy"&&Object.assign(this._options,{orders:this.strategy.orders,historyOrders:this.strategy.historyOrders});const i=this._getDataFromBarindex(e,[...this._plots.values()]),s=this._plotbars.size>0?this._getDataFromBarindex(e,[...this._plotbars.values()]):void 0,O=this._plotarrows.size>0?this._getDataFromBarindex(e,[...this._plotarrows.values()]):void 0,a=this._plotcandles.size>0?this._getDataFromBarindex(e,[...this._plotcandles.values()]):void 0,u=this._plotchars.size>0?this._getDataFromBarindex(e,[...this._plotchars.values()]):void 0,l=this._plotshapes.size>0?this._getDataFromBarindex(e,[...this._plotshapes.values()]):void 0,d=this._getDrawDeletes(e),A=this._getDrawsFromBarindex(e),h=this._variables.chart.isUseBgColor;return Object.assign({},this._options,{plots:i,plotarrows:O,plotcandles:a,plotchars:u,plotbars:s,draws:A,drawDeletes:d,alerts:t,colors:o,hlines:n,fills:b,logs:z,plotshapes:l,isUseBgColor:h})}_getDataFromBarindex(e,t){return t.map(r=>{const o=[];for(const n of e){const b=r.data[n];b&&o.push(b)}return r.data=o,{...r}})}_getDraws(){const{line:e,linefill:t,table:r,box:o,polyline:n,label:b}=this._variables,z={};return e.size&&(z.lines=e.data),t.size&&(z.linefills=t.data),r.size&&(z.tables=r.data),o.size&&(z.boxes=o.data),n.size&&(z.polylines=n.data),b.size&&(z.labels=b.data),Object.keys(z).length?z:void 0}_getDrawsFromBarindex(e){const{line:t,linefill:r,table:o,box:n,polyline:b,label:z}=this._variables,i={};return t.size&&(i.lines=t.getValOfBarIndex(e)||[]),r.size&&(i.linefills=r.getValOfBarIndex(e)),o.size&&(i.tables=o.getValOfBarIndex(e)),n.size&&(i.boxes=n.getValOfBarIndex(e)),b.size&&(i.polylines=b.getValOfBarIndex(e)),z.size&&(i.labels=z.getValOfBarIndex(e)),Object.keys(i).length?i:void 0}_getDrawDeletes(e){const{line:t,linefill:r,table:o,box:n,polyline:b,label:z}=this._variables,i={},s=t.getDeleteIds(e),O=r.getDeleteIds(e),a=o.getDeleteIds(e),u=n.getDeleteIds(e),l=b.getDeleteIds(e),d=z.getDeleteIds(e);return s.length&&(i.lines=s),O.length&&(i.linefills=O),a.length&&(i.tables=a),u.length&&(i.boxes=u),l.length&&(i.polylines=l),d.length&&(i.labels=d),i}updateOptions(e){var o;const{inputs:t,strategy:r}=e;this.input.update(t),r&&((o=this.strategy)==null||o.updateOptions(r))}update(e){const{barIndex:t}=e;this.strategy.update(),this.math.update(t)}endExecution(){this.strategy.endExecution()}library(e,t){if(!this._variables.bar_index){const r=/^[^\W\d\s][^\W\s]*$/,{title:o}=e;r.test(o)?(wu.includes(o)||Bu.includes(o))&&this._errorListener.addError(M2(l1.libraryTitleIsKeywordErr,{name:o}),t,j0.Error):this._errorListener.addError(l1.libraryTitleErr,t,j0.Error),this._options.scriptType="library",this._options.library=e}}indicator(e,t){if(!this._variables.bar_index){const{format:r,max_bars_back:o=0}=e;this._variables.max_bars_back=o,this._paramVerfiy(r,t,"indicator",[a1.inherit,a1.percent,a1.price,a1.volume]),this._variables.updateMaxLength(e),this._options.scriptType="indicator",this._options.indicator=e}}_paramVerfiy(e="",t,r,o,n="format"){e&&!o.includes(e)&&this._errorListener.addError(M2(l1.paramsErr,{value:e,func:r,param:n,targetVal:`[${o.join(", ")}]`}),t,j0.Error)}_lineWidthVerify(e,t){const{linewidth:r=1}=e;r<1&&(this._errorListener.addError(yu.lineWidthWarning,t,j0.Warning),e.linewidth=1)}plot(e,t){const r=["color"];F1(e,r);const{series:o,color:n,...b}=e,{bar_index:z,time:i}=this._variables,s=`plot_${t}`,O=this._plots.get(s),a=(O==null?void 0:O.data)||[],u=o!==void 0&&isNaN(o)?void 0:o;if(a[z]={value:[i,u],barIndex:z,itemStyle:{color:n}},this._seriesColorHandle(e,r,O),!O){this._count++,this._lineWidthVerify(b,t),this._paramVerfiy(e.format,t,"plot",[a1.percent,a1.price,a1.volume]);const l=n?[n]:void 0;this._plots.set(s,{editable:!0,...b,colors:l,data:a,id:s,zIndex:this._count})}return{type:"plot",offset:e.offset||0,key:s}}plotbar(e,t){const r=["color"];F1(e,r);const{open:o,close:n,low:b,high:z,color:i,...s}=e,{bar_index:O,time:a}=this._variables,u=`plotbar_${t}`,l=this._plotbars.get(u),d=(l==null?void 0:l.data)||[],A=n!==void 0&&isNaN(n)?void 0:n,h=o!==void 0&&isNaN(o)?void 0:o,q=b!==void 0&&isNaN(b)?void 0:b,_=z!==void 0&&isNaN(z)?void 0:z,m=[a,h,A,q,_];if(d[O]={value:m,barIndex:O,itemStyle:{color:i}},this._seriesColorHandle(e,r,l),!l){this._count++,this._paramVerfiy(e.format,t,"plotbar",[a1.percent,a1.price,a1.volume]);const L=i?[i]:void 0;this._plotbars.set(u,{editable:!0,...s,colors:L,data:d,id:u,zIndex:this._count})}}_verfiyArgs(e,t,r){const{size:o,format:n,location:b,style:z}=e;this._paramVerfiy(z,r,t,Object.values(X2),"style"),this._paramVerfiy(b,r,t,Object.values(ke),"location"),this._paramVerfiy(o,r,t,Object.values(f2),"size"),this._paramVerfiy(n,r,t,[a1.percent,a1.price,a1.volume],"format")}plotchar(e,t){const r=["color","textcolor"];F1(e,r);const{series:o,color:n,textcolor:b,location:z=ke.abovebar,...i}=e,{bar_index:s,time:O,high:a,low:u}=this._variables,l=`plotchar_${t}`,d=this._plotchars.get(l),A=(d==null?void 0:d.data)||[],h={value:[O,o],barIndex:s,itemStyle:{color:n,textcolor:b},low:u,high:a};A[s]=h,this._seriesColorHandle(e,r,d),d||(this._count++,this._verfiyArgs(e,"plotchar",t),this._plotchars.set(l,{editable:!0,...i,location:z,data:A,id:l,zIndex:this._count}))}plotarrow(e,t){const r=["colorup","colordown"];F1(e,r);const{series:o,colorup:n,colordown:b,...z}=e,{bar_index:i,time:s,low:O,high:a}=this._variables,u=`plotarrow_${t}`,l=this._plotarrows.get(u),d=(l==null?void 0:l.data)||[];d[i]={value:[s,o!==void 0&&isNaN(o)?void 0:o],barIndex:i,itemStyle:{colorup:n,colordown:b},low:O,high:a},this._seriesColorHandle(e,r,l),l||(this._count++,this._paramVerfiy(e.format,t,"plotarrow",[a1.percent,a1.price,a1.volume]),this._plotarrows.set(u,{editable:!0,...z,data:d,id:u,zIndex:this._count}))}plotshape(e,t){const r=["color","textcolor"];F1(e,r);const{series:o,color:n,textcolor:b,location:z=ke.abovebar,...i}=e,{bar_index:s,time:O,low:a,high:u}=this._variables,l=`plotshape_${t}`,d=this._plotshapes.get(l),A=(d==null?void 0:d.data)||[],h={value:o,barIndex:s,color:n,textcolor:b,time:O,low:a,high:u};if(A[s]=h,this._seriesColorHandle(e,r,d),!d){this._count++;const q=n?[n]:void 0;this._verfiyArgs(e,"plotshape",t),this._plotshapes.set(l,{editable:!0,...i,data:A,location:z,id:l,colors:q,zIndex:this._count})}}plotcandle(e,t){const r=["wickcolor","bordercolor","color"];F1(e,r);const{wickcolor:o,bordercolor:n,color:b,close:z,open:i,low:s,high:O,...a}=e,{bar_index:u,time:l}=this._variables,d=`plotcandle_${t}`,A=this._plotcandles.get(d),h=(A==null?void 0:A.data)||[],q=z!==void 0&&isNaN(z)?void 0:z,_=i!==void 0&&isNaN(i)?void 0:i,m=s!==void 0&&isNaN(s)?void 0:s,L=O!==void 0&&isNaN(O)?void 0:O,g=[l,_,q,m,L];h[u]={value:g,barIndex:u,wickcolor:o,bordercolor:n,color:b},this._seriesColorHandle(e,r,A),A||(this._count++,this._paramVerfiy(e.format,t,"plotcandle",[a1.percent,a1.price,a1.volume]),this._plotcandles.set(d,{editable:!0,...a,data:h,id:d,zIndex:this._count}))}hline(e,t){const r=`hline_${t}`;F1(e,["color"]),this._verifyDisplay(e.display,"hline",t);const n=e.display&&!e.display.length?A2.none:A2.all;return this._hlines.has(r)||(this._count++,this._lineWidthVerify(e,t),this._hlines.set(r,{id:r,linewidth:1,editable:!0,display:n,...e,zIndex:this._count})),{type:"hline",key:r}}fill(e,t){var E,T,N,D,C,P,H,G;const r=["color","top_color","bottom_color"];F1(e,r);const{color:o,top_color:n,bottom_color:b,seriesColors:z,hline1:i,hline2:s,plot1:O,plot2:a,top_value:u,bottom_value:l,...d}=e,{bar_index:A,time:h}=this._variables,q=`fill_${t}`,_=this._fills.get(q),m=(_==null?void 0:_.data)||[];this._verifyDisplay(e.display,"fill",t);const L=e.display&&!e.display.length?A2.none:A2.all;let g,v,y="plot";if(i&&s)g=(E=this._hlines.get(i==null?void 0:i.key))==null?void 0:E.price,v=(T=this._hlines.get(s==null?void 0:s.key))==null?void 0:T.price,y="hline";else{const k=this._plots.get(O==null?void 0:O.key),J=this._plots.get(a==null?void 0:a.key),o0=(k==null?void 0:k.data)||[],z0=(J==null?void 0:J.data)||[];if(g=(D=(N=o0[A])==null?void 0:N.value)==null?void 0:D[1],v=(P=(C=z0[A])==null?void 0:C.value)==null?void 0:P[1],!A){const O0=(k==null?void 0:k.force_overlay)&&(J==null?void 0:J.force_overlay);(k!=null&&k.force_overlay||J!=null&&J.force_overlay)&&!O0?this._errorListener.addError(l1.plotFillForceOverlayErr,t,j0.Error):d.force_overlay=O0}}if(m[A]={time:h,color:o,top_color:n,bottom_color:b,barIndex:A,plot1:g,plot2:v,top_value:u,bottom_value:l},this._seriesColorHandle(e,r,_),!_){this._count++;const k=((H=this._options.indicator)==null?void 0:H.explicit_plot_zorder)||((G=this._options.strategy)==null?void 0:G.explicit_plot_zorder),J=o?[o]:void 0,o0=n?[n]:void 0,z0=b?[b]:void 0;this._fills.set(q,{id:q,colors:J,top_colors:o0,bottom_colors:z0,display:L,data:m,type:y,editable:!0,fillgaps:!1,hline1:i,hline2:s,plot1:O,plot2:a,...d,zIndex:k?this._count:void 0})}}alert({message:e,freq:t=le.freqOncePerBar},r){const{bar_index:o,_isRealTimeBar:n,last_bar_index:b}=this._variables,z=`alert_${r}`,i=this._cacheData[z]||{},s=i.barIndex;if(this._paramVerfiy(t,r,"alert",[le.freqAll,le.freqOncePerBar,le.freqOncePerBarClose]),t===le.freqOncePerBar&&o===s){this._alerts.delete(z);return}this._cacheData[z]=i;const O={message:e,freq:t,id:z,type:"alert"};if(n){t!==le.freqOncePerBarClose&&this._alerts.set(z,O),i.barIndex=o;return}if(!n&&t===le.freqOncePerBarClose&&o===s&&b===o-1){this._alerts.set(z,O),i.barIndex=o;return}this._alerts.delete(z)}alertcondition({condition:e,message:t,title:r},o){const{_isRealTimeBar:n}=this._variables,b=`alertcondition_${o}`;n&&e?this._alerts.set(b,{message:t,title:r,id:b,type:"alertcondition"}):this._alerts.delete(b)}barcolor(e,t){this._setColors(e,"barcolor",t)}bgcolor(e,t){this._setColors(e,"bgcolor",t)}_verifyDisplay(e=T3.all,t,r){e.length&&e.length<4&&this._errorListener.addError(M2(l1.displayErr,{func:t,values:"[display.none, display.all]"}),r,j0.Error)}_setColors(e,t,r){F1(e,["color"]);const{color:n,...b}=e;this._verifyDisplay(b.display,t,r);const z=e.display&&!e.display.length?A2.none:A2.all,{bar_index:i,time:s}=this._variables,O=`${t}_${r}`;this._bgColors[t]||(this._bgColors[t]=new Map);const a=this._bgColors[t].get(O),u=(a==null?void 0:a.data)||[],l=(a==null?void 0:a.setColors)||[];n&&!l.includes(n)&&l.push(n),u[i]={color:n,time:s,barIndex:i},a||this._bgColors[t].set(O,{...b,display:z,data:u,setColors:l,id:O})}max_bars_back({num:e,var_name:t}){this._variables.__setBarsBackOfKey(t,e)}float({x:e}){return e}bool({x:e}){return e||!1}string({x:e}){return e}int({x:e}){return e&&Math.trunc(e)}na({x:e}){return!!(e===void 0||typeof e=="number"&&isNaN(e))}fixnan({source:e},t){return e===void 0||typeof e=="number"&&isNaN(e)?this._cacheData[`fixnan_${t}`]:(this._cacheData[`fixnan_${t}`]=e,e)}nz({source:e,replacement:t}){return e!==void 0&&!(typeof e=="number"&&isNaN(e))?e:t||0}time({timeframe:e="",session:t,timezone:r,bars_back:o=0},n){return this._timeHandle(this._variables.time,n,e,t,r,o)}time_close({timeframe:e="",session:t,timezone:r,bars_back:o=0},n){return this._timeHandle(this._variables.time,n,e,t,r,o,!0)}timestamp(e){const{dateString:t,timezone:r,year:o,month:n,day:b,hour:z=0,minute:i=0,second:s=0}=e;if(t)return _1(t).utc(!/GMT|UTC/.test(t)).valueOf();let O=n-1,a=o;if(O<0){const u=Math.ceil(Math.abs(O/12));O=12*u+O,a=o-u}return k4({year:a,month:O,day:b,hour:z,minute:i,second:s},r)}weekofyear({time:e,timezone:t}){return ne(e,t).week()}year({time:e,timezone:t}){return ne(e,t).year()}second({time:e,timezone:t}){return ne(e,t).second()}month({time:e,timezone:t}){return ne(e,t).month()+1}minute({time:e,timezone:t}){return ne(e,t).minute()}hour({time:e,timezone:t}){return ne(e,t).hour()}dayofweek({time:e,timezone:t}){return ne(e,t).weekday()}dayofmonth({time:e,timezone:t}){return ne(e,t).date()}_calcTimeOffset(e,t){const r=this._variables.getTimeTradingday(e,this._variables.timeframe.period),o=N2(t,e)*1e3;return e-r-Math.floor((e-r)/o)*o}_timeHandle(e,t,r="",o,n,b=0,z=!1){const i=r||this._variables.__period,s=N2(i,e),O=N2(this._variables.__period,e);let a;if(s<=O)a=e,z&&(a+=O*1e3);else{const u=`time_${t}`,l=this._cacheData[u];if(l)l.currentTime+s*1e3-l.offset<=e?(a=e,this._cacheData[u]={currentTime:e,offset:0}):a=l.currentTime;else{const d=this._calcTimeOffset(e,i);this._cacheData[u]={currentTime:e,offset:d},a=e}z&&(a+=s*1e3)}if(o&&o!==At.regular&&o!==At.extended){const{timePeriods:u,weeks:l}=this._parserSession(o,t),d=ne(e,n),A=d.format("YYYY-MM-DD HH:mm"),h=d.format("YYYY-MM-DD"),q=a,_=ne(a,n).format("YYYY-MM-DD HH:mm");a=void 0;for(const L of u){const[g,v]=L;let y;if((g===v||Number(g==null?void 0:g.replace(":",""))>Number(v==null?void 0:v.replace(":","")))&&(y=d.add(1,"day").format("YYYY-MM-DD")),_1(A).isBetween(`${h} ${g}`,`${y||h} ${v}`,"hour","[)")){_1(_).isBetween(`${h} ${g}`,`${y||h} ${v}`,"hour","[)")?a=q:a=ne(`${h} ${g}`,n).valueOf();break}}const m=this._variables.dayofweek;a&&!l.includes(m)&&(a=void 0)}return Number(a&&a-b*O*1e3)}_seriesColorHandle(e,t,r){var o;if(r&&t!=null&&t.length)for(const n of t){if((o=r.gradientColorKeys)!=null&&o.includes(n))continue;const b=e[n];if(!b)continue;const z=r[`${n}s`]||[];z.includes(b)||(z.push(b),r[`${n}s`]=z,z.length>5&&(r[`${n}s`]=[],r.gradientColorKeys=r.gradientColorKeys||[],r.gradientColorKeys.push(n)))}}_parserSession(e,t){const r=e.split(":"),o=r[0],b=(r[1]||"1234567").split("").map(i=>{const s=parseInt(i,10);if(s<1||s>7){this._errorListener.addError(`Invalid day of week: ${i}`,t,j0.Error);return}return s});return{timePeriods:o.split(",").map(i=>{i===""||i===At.regular?i="0930-1500":i===At.extended&&(i="1500-1830");const s=i.split("-");return s.length!==2?[]:[this._processTime(s[0],t),this._processTime(s[1],t)]}),weeks:b}}_processTime(e,t){const r=e.slice(0,2),o=e.slice(2),n=parseInt(r,10),b=parseInt(o,10);if(!(n>=0&&n<=23)&&b>=0&&b<=59){this._errorListener.addError("Invalid time: Time must be within 00:00 to 23:59",t,j0.Error);return}return`${r}:${o}`}}let cm=class{constructor(e,t,r,o){X(this,"_variables");X(this,"_scriptId");X(this,"_cacheData");X(this,"_funcs");X(this,"_errorListener");this._variables=e,this._scriptId=t,this._cacheData=new Map,this._funcs=r,this._errorListener=o}security(e,t){var d;const r=self.workerStorage.get(`request_${this._scriptId}`),{__requestName:o,__period:n}=this._variables;e.symbol=this._symbolTransform(e.symbol),e.timeframe=e.timeframe||n;let{symbol:b,timeframe:z,paramsExpr:i=[]}=e;z=hr(z);const s=`${b}--${z}`,O=`${o}${t}_${s}`,a=this._getRequestData(e,O);if(r!=null&&r.has(O))return(d=a==null?void 0:a.result)==null?void 0:d[O];const u=this._parseExprCode(e),l=this._runScriptHandle(u,O,i,a,!0);return r==null||r.set(O,{id:O,isRun:!1,strJs:u,dataId:s,interval:z,symbol:b,paramsExpr:i}),l}security_lower_tf(e,t){const r=self.workerStorage.get(`request_${this._scriptId}`),{__period:o,__requestName:n}=this._variables;e.symbol=this._symbolTransform(e.symbol),e.timeframe=e.timeframe||o;let{symbol:b,timeframe:z,paramsExpr:i=[]}=e;z=hr(z);const s=`${b}--${z}`,O=`${n}${t}_${s}`,a=r==null?void 0:r.get(O),u=this._getRequestLowerTfData(e,t,O,a==null?void 0:a.defaultResult),l=new M1(0,void 0,this._errorListener,C0.FLOAT);if(a!=null&&a.strJs)return a!=null&&a.defaultResult?u!=null&&u.length?u.map(q=>{const _=new M1(0,void 0,this._errorListener,C0.FLOAT);return _._value=q,_}):a==null?void 0:a.defaultResult:u&&(l._value=u,l);const d=this._parseExprCode(e),A={id:O,strJs:d,isRun:!1,dataId:s,interval:z,symbol:b,paramsExpr:i,defaultResult:void 0};r==null||r.set(O,A);const h=this._runScriptHandle(d,O,i,u,!0);return Array.isArray(h)?(A.defaultResult=h.map(()=>new M1(0,void 0,this._errorListener,C0.FLOAT)),A.defaultResult):l}_symbolTransform(e){if(!e)return this._variables.syminfo.tickerid;let[t,r]=e.split(":");return r?t=Xu[t]||t:(r=t,t="FX"),`${t}:${r}`}_runScriptHandle(e,t,r,o,n){const{result:b,logs:z,errors:i}=this._runScripts(e,t,n,r,o);return this._funcs.log.mergeLogs(z),this._funcs.addErrors(i,t),b}_getCurrentData(e){let{symbol:t,timeframe:r}=e;const{__period:o,syminfo:{ticker:n,tickerid:b}}=this._variables;if(r=hr(r),(o===r||r==="")&&(t===n||t===b||!t)){const{close:z,open:i,high:s,low:O,bar_index:a,last_bar_index:u,last_bar_time:l,_isRealTimeBar:d,volume:A,time:h,time_tradingday:q,mintick:_,nextBarTime:m}=this._variables;return{barIndex:a,c:z,o:i,h:s,l:O,volume:A,lastBarIndex:u,lastBarTime:l/1e3,nextBarTime:m?m/1e3:void 0,isrealtime:d,time_tradingday:q,time:h/1e3,interval:o,mintick:_}}}_parseExprCode(e){let{expression:t,paramsExpr:r=[]}=e,o=[];t=ac(t);const n=JSON.parse(t),b=n.pop();let z=(b==null?void 0:b.memberCodes)||{},i=(b==null?void 0:b.depends)||[];if(!i.length)return`return ${b==null?void 0:b.code}`;let s=[],O=[],a=[];if(this._getDependCodes(i,n,o,s,O,a),this._getStmtFuncs(o,n,a,s,O),O.length){const h=r.length;for(let q=h-1;q>=0;q--){const _=r[q];let m=JSON.parse(ac(_));const L=[];m=m.map(y=>{const{type:E,code:T,varNames:N,dependSelf:D}=y;return E===2&&!L.includes(N)&&!D&&(y.code=`let ${T}`),N&&L.push(...N.split(", ")),y.memberCodes&&Object.assign(z,{...y.memberCodes}),y});const g=[];let v=O.map(y=>({...y,isArg:!1,isPreArg:!0}));O=[],this._getDependCodes(v,m,o,s,O,g),this._getStmtFuncs(o,m,g,s,O)}}const u=o.filter(h=>!!h).map((h,q)=>{let _=h.join(`
77
77
  `);return q===0&&(_=`${_}
78
78
  ${s.join(`
79
79
  `)}`),_});let l=u.join(`
@@ -82,7 +82,7 @@ ${a.join(`
82
82
  `)}
83
83
  return ${b==null?void 0:b.code}`;d>1;)l=`${l}}`,d--;const A=[];for(const h of Object.keys(z))l.includes(`$_var.getCacheData("${h}"`)&&A.push(z[h]);return A.length&&(l=`${A.join(`
84
84
  `)}
85
- ${l}`),l}_getRequestLowerTfData(e,t,r,o){var L;let{symbol:n,timeframe:b,calc_bars_count:z,ignore_invalid_symbol:i,ignore_invalid_timeframe:s}=e;const{__period:O,time:a,_isRealTimeBar:u}=this._variables;b=hr(b);let l=N2(b,a)*1e3;const d=N2(O,a)*1e3;if(l>d)return!s&&this._errorListener.addError(M2(l1.requestLowerTfPeriodErr,{period:b}),t,j0.Error,25),[];const A=`${n}--${b}`,h=self.workerStorage.get(`request_${this._scriptId}_data`),q=self.workerStorage.get(`request_${this._scriptId}_list`),_=self.workerStorage.get(`request_${this._scriptId}_tmp`),m={id:A,calc_bars_count:z,ignore_invalid_symbol:i,symbol:n,originTimeframe:b,timeframe:ci[b]||cc(b)};if(h!=null&&h.has(A)){_==null||_.delete(A);const{index:g=0,periodStamp:v=d}=this._cacheData.get(r)||{},y=h==null?void 0:h.get(A);if(!y.length)return[];if(y.length-1<0)return[];const T=y.slice(g);let N=a,D=v+N;const C=[];for(const[P,H]of T.entries()){let{time:G}=H;G=G*1e3;let k=g+P;if(G>=D)return!u&&this._cacheData.set(r,{index:k,periodStamp:v}),C;if(N<=G&&G<D){const J=(L=H==null?void 0:H.result)==null?void 0:L[r];if(Array.isArray(J))for(const[o0,z0]of J.entries())C[o0]||(C[o0]=[]),C[o0].push(z0);else o||C.push(J)}}return!u&&this._cacheData.set(r,{index:y.length,periodStamp:v}),C}else(q==null?void 0:q.get(A))||_==null||_.set(A,m);q==null||q.set(A,m)}_getRequestData(e,t){var _,m,L,g,v;let{symbol:r,timeframe:o,calc_bars_count:n,gaps:b,lookahead:z,ignore_invalid_symbol:i}=e;const{__period:s,mintick:O,time:a,nextBarTime:u}=this._variables;o=hr(o),r=r;const l=`${r}--${o}`,d=self.workerStorage.get(`request_${this._scriptId}_data`),A=self.workerStorage.get(`request_${this._scriptId}_list`),h=self.workerStorage.get(`request_${this._scriptId}_tmp`),q={id:l,calc_bars_count:n,ignore_invalid_symbol:i,symbol:r,originTimeframe:o,timeframe:ci[o]||cc(o)};if(d!=null&&d.has(l)){let y=N2(o,a)*1e3;const E=N2(s,a)*1e3;h==null||h.delete(l);const{index:T=0,periodStamp:N=E}=this._cacheData.get(t)||{},D=d==null?void 0:d.get(l);if(!D.length)return;const C=D.slice(T);let P=a,H=N+P;const G=D.length-1;if(G<0)return;const k={lastBarIndex:D[G].barindex||G,lastBarTime:D[G].time,interval:o,mintick:O};if(y>N){let J;if(z===Pe.lookaheadOn?J=this._lookaheadOnHandle(C,o,H,y,k,T,N,t,P,b):J=this._lookaheadOffHandle(C,o,H,y,k,T,N,t,P,u||H,b),J)return J;if(J===null)return}else if(z===Pe.lookaheadOn)for(const[J,o0]of C.entries()){let{time:z0,barindex:O0}=o0;z0=z0*1e3;const v0=((_=C[J+1])==null?void 0:_.time)*1e3||z0+y;let w0=T+J;if(z0>=H){this._cacheData.set(t,{index:w0,periodStamp:N});return}if(z0<=P&&v0>P){const u0=T+J;return this._cacheData.set(t,{index:u0,periodStamp:N}),{...o0,barIndex:O0||u0,nextBarTime:(m=C[J+1])==null?void 0:m.time,...k}}}else for(const[J,o0]of C.entries()){let{time:z0,barindex:O0}=o0;z0=z0*1e3;const v0=((L=C[J+1])==null?void 0:L.time)*1e3||z0+y;let w0=T+J;if(z0>H){this._cacheData.set(t,{index:w0,periodStamp:N});return}if(z0<H&&H<=v0)return this._cacheData.set(t,{index:w0,periodStamp:N}),{...o0,barIndex:O0||w0,nextBarTime:(g=C[J+1])==null?void 0:g.time,...k};if(z0>=P&&z0<=H&&(O0||w0)===k.lastBarIndex)return this._cacheData.set(t,{index:w0,periodStamp:N}),{...o0,barIndex:O0||w0,nextBarTime:(v=C[J+1])==null?void 0:v.time,...k}}this._cacheData.set(t,{index:D.length,periodStamp:N});return}else(A==null?void 0:A.get(l))||h==null||h.set(l,q);A==null||A.set(l,q)}_lookaheadOnHandle(e,t,r,o,n,b,z,i,s,O){var a;for(const[u,l]of e.entries()){let{time:d,barindex:A}=l;d=d*1e3,t.includes("M")&&(o=N2(t,d)*1e3-(_1(d).date()-1)*864e5);const h=d,q=o+h;let _=b+u;if(r<=h)return this._cacheData.set(i,{index:_,periodStamp:z}),null;let m={...l,barIndex:A||_,nextBarTime:(a=e[u+1])==null?void 0:a.time,...n};if(O===Pe.gapsOn){if(r>h&&s<=h)return this._cacheData.set(i,{index:_,periodStamp:z}),m}else{if(r>q)continue;if(r>h)return this._cacheData.set(i,{index:_,periodStamp:z}),m}}}_lookaheadOffHandle(e,t,r,o,n,b,z,i,s,O,a){var u,l;for(const[d,A]of e.entries()){let{time:h,barindex:q}=A;h=h*1e3,t.includes("M")&&(o=N2(t,h)*1e3-(_1(h).date()-1)*864e5);const _=h,m=o+_,L=b+d;if(r<_)return this._cacheData.set(i,{index:L,periodStamp:z}),null;const g={...A,barIndex:q||L,nextBarTime:(u=e[d+1])==null?void 0:u.time,...n};if(r>=m&&s<m||r<m&&O>=m)return a===Pe.gapsOn?(this._cacheData.set(i,{index:L,periodStamp:z}),g):(this._cacheData.set(i,{index:L,data:g,periodStamp:z}),g);if(!(s>m)&&s>=_){let v=(l=this._cacheData.get(i))==null?void 0:l.data;if(!v){const y=e[L-1];if(!y)return null;v={...y,barIndex:y.barindex||L-1,nextBarTime:g.time,...n},this._cacheData.set(i,{index:L,data:v,periodStamp:z})}return v}}}_getDependCodes(e,t,r,o,n,b){for(const z of e){if(!z.isArg){const i=t.filter(O=>{var a;return(a=O==null?void 0:O.depends)==null?void 0:a.some(u=>u.name===z.name&&u.scope===z.scope&&u.isAgainAssign!==!1)});for(const O of i){const{code:a,depends:u,scope:l,funcName:d}=O;r[l]=r[l]||[];const A=r[l];let h=l===0&&d;if(!A.includes(a)){if(h){if(o.includes(a))continue;o.unshift(a)}else A.unshift(a);if(u!=null&&u.length){for(const q of u)q.memberCode&&!h&&b.push(q.memberCode);this._getDependCodes(u,t,r,o,n,b)}}}const s=t.find(O=>{var a;return((a=O.varNames)==null?void 0:a.split(", ").includes(z.name))&&(!z.isPreArg||z.isPreArg&&O.methodName===z.functionName)||O.funcName===z.name});if(s){const{code:O,depends:a,scope:u}=s;r[u]=r[u]||[];const l=r[u],d=l.findIndex(A=>A===O);if(d!==-1){if(z.isFunc)continue;l.splice(d,1)}if(l.unshift(O),a!=null&&a.length){for(const A of a)A.memberCode&&b.push(A.memberCode);this._getDependCodes(a,t,r,o,n,b)}continue}}n.some(i=>i.name===z.name)||n.push(z)}}_getStmtFuncs(e,t,r,o,n){const b=t.filter(z=>z.isStmtFunc);for(const z of b){const{code:i,depends:s,scope:O=0}=z;e[O]=e[O]||[];const a=e[O];if(!a.includes(i)&&(a.push(i),s!=null&&s.length)){for(const u of s)u.memberCode&&r.push(u.memberCode);this._getDependCodes(s.filter(u=>!(u.isFunc&&i.startsWith(u.name))),t,e,o,n,r)}}}runScripts(e,t,r,o,n,b){var u;const z=`${this._scriptId}_${t}`;let{builtInGather:i,buildinConstants:s,buildInFunctions:O,tradingvueFunc:a}=self.workerStorage.get(z)||{};if(r&&(i=new qp(z),s=new fp,O=new lp(this._variables.mintick||1e-5,i,this._scriptId),a=new Function("$_var","$_const","$_func","$paramsExpr","$posStr",e),i.__requestName=t,self.workerStorage.set(z,{builtInGather:i,buildinConstants:s,buildInFunctions:O,tradingvueFunc:a})),o&&o.length){const l=o.length-1,{interval:d,symbol:A=""}=n,{mintick:h,syminfo:q}=this._variables,[_,m]=A.split(":");i.updateOptions({interval:d,mintick:h,syminfo:{...q.__syminfo,tickerid:A||q.tickerid,ticker:m||_||q.ticker}});for(const[v,y]of o.entries()){const{barindex:E}=y,T=Object.assign(y,{barIndex:E||v,lastBarIndex:o[l].barindex||l,lastBarTime:o[l].time,nextBarTime:(u=o[v+1])==null?void 0:u.time});if(i.updateData(T),O.update({barIndex:(T==null?void 0:T.barindex)||0}),y.result=Object.assign(y.result||{},{[t]:a(i,s,O,b||[],t)}),O.endExecution(),O.errors.length&&O.errors.some(N=>N.type===j0.Error))return{logs:[],errors:O.errors}}const L=O.log.logs,g=O.errors;return O.log.clearLogs(),O.clearErrors(),{logs:L,errors:g}}}_runScripts(e,t,r,o,n){const b=`${this._scriptId}_${t}`;let{builtInGather:z,buildinConstants:i,buildInFunctions:s,tradingvueFunc:O}=self.workerStorage.get(b)||{};const{interval:a,...u}=n||{};if(r){z=new qp(b),i=new fp,s=new lp(this._variables.mintick||1e-5,z,this._scriptId),O=new Function("$_var","$_const","$_func","$paramsExpr","$posStr",e);const{mintick:h,syminfo:q}=this._variables;z.updateOptions({interval:a,mintick:h||1e-5,syminfo:{...q.__syminfo}}),z.__requestName=t,self.workerStorage.set(b,{builtInGather:z,buildinConstants:i,buildInFunctions:s,tradingvueFunc:O})}z.updateData(u),s.update({barIndex:(u==null?void 0:u.barindex)||0});const l=O(z,i,s,o||[],t),d=s.log.logs,A=s.errors;return s.log.clearLogs(),s.clearErrors(),s.endExecution(),{result:l,logs:d,errors:A}}},sm=class{constructor(){}prefix(e){var r;const{symbol:t}=e;return((r=t==null?void 0:t.split("."))==null?void 0:r[0])||""}ticker(e){var r;const{symbol:t}=e;return((r=t==null?void 0:t.split("."))==null?void 0:r[1])||""}};class am{constructor(e,t){X(this,"_logs");X(this,"_variables");X(this,"_str");X(this,"_preBar",{barIndex:-1,isrealtime:!1});this._variables=e,this._logs=[],this._str=t}get logs(){return this._logs}clearLogForIndex(e){this._logs=this._logs.filter(t=>t.barIndex!==e)}clearLogs(){this._logs=[]}info(e,t,r){this._addLog(e,t,"info",r)}error(e,t,r){this._addLog(e,t,"error",r)}warning(e,t,r){this._addLog(e,t,"warning",r)}mergeLogs(e){this._logs=this._logs.concat(e)}_addLog(e,t,r,o){if(typeof t=="string"&&(o=t),o.startsWith("export"))return;const{message:n,formatString:b}=e,{time:z,bar_index:i,_isRealTimeBar:s,__isReqRepeated:O}=this._variables;let a=n;b&&Array.isArray(t)&&t.length&&(t=t.map(A=>(typeof A=="object"&&(A.isArray?A=JSON.stringify(A._value):A=A.toString()),A!==void 0?A:"na")),a=this._str.strformat({formatString:b},t,!0));const{isrealtime:u,barIndex:l}=this._preBar;i!==l&&(this._preBar={barIndex:i,isrealtime:s});const d=Date.now();a!==void 0&&this._logs.push({message:`[${_1(u&&!O?d:z).format("YYYY-MM-DDTHH:mm:ss.SSSZ")}]: ${a}`,time:z,id:P4(6),barIndex:i,type:r})}}class Om{constructor(e){X(this,"_errorListener");this._errorListener=e}error({message:e},t){t.startsWith("export")||this._errorListener.addError(e,t,j0.Error)}}class um{constructor(){X(this,"_errors");this._errors=new Map}clear(){this._errors.clear()}get errors(){return D2.flatMap([...this._errors.values()])}setErrors(e,t){this._errors.set(t,e)}addError(e,t,r,o=0){const[n,b]=t.split("_").slice(-2),z=this._errors.get(t),i={message:e,endLineNumber:Number(n),startColumn:Number(b)+1,endColumn:Number(b)+o+1,startLineNumber:Number(n),type:r};z?z.push(i):this._errors.set(t,[i])}}class Am{constructor(){X(this,"_isMarketOpen");X(this,"_currentBarIndex");X(this,"_totalBarIndex");X(this,"_isRealTimeBar");X(this,"_preBarIndex");X(this,"_preIsRealTimeBar");X(this,"_isFirstRun",!1);this._currentBarIndex=0,this._totalBarIndex=0,this._isRealTimeBar=!1,this._preBarIndex=0,this._isMarketOpen=!0,this._preIsRealTimeBar=!1}update(e,t,r,o){this._preBarIndex=this._currentBarIndex,this._preIsRealTimeBar=this._isRealTimeBar,this._currentBarIndex=e,this._totalBarIndex=t,this._isRealTimeBar=r,this._isMarketOpen=o}set isFirstRun(e){this._isFirstRun=e}get isnew(){return this._preBarIndex!==this._currentBarIndex}get islast(){return this._currentBarIndex===this._totalBarIndex||!this._isFirstRun}get isfirst(){return this._currentBarIndex===0}get ishistory(){return!this._isRealTimeBar||this._isFirstRun}get isrealtime(){return this._isRealTimeBar}get isconfirmed(){return!this._isRealTimeBar}get islastconfirmedhistory(){return this._isMarketOpen?this._currentBarIndex===this._totalBarIndex-1&&!this._preIsRealTimeBar||this._currentBarIndex===this._totalBarIndex&&!this._isRealTimeBar:this._currentBarIndex===this._totalBarIndex}}class fm{constructor(e){X(this,"_variables");this._variables=e}get isfirstbar(){return this._variables.timeframe.isdwm?!0:this._variables.time===this._variables.time_tradingday}get isfirstbar_regular(){return this._variables.timeframe.isdwm?!0:this._variables.time===this._variables.time_tradingday}get islastbar(){if(this._variables.timeframe.isdwm)return!0;const{time:e,__period:t}=this._variables,r=N2(t,e);return this._variables.time+r===this._variables.time_tradingday+24*60*60*1e3}get islastbar_regular(){if(this._variables.timeframe.isdwm)return!0;const{time:e,__period:t}=this._variables,r=N2(t,e);return this._variables.time+r===this._variables.time_tradingday+24*60*60*1e3}get ismarket(){return!0}get ispostmarket(){return!1}get ispremarket(){return!1}}class lm{constructor(e){X(this,"_orders");X(this,"_historyOrders");X(this,"_options");X(this,"_max_contracts_held_all",0);X(this,"_max_contracts_held_long",0);X(this,"_max_contracts_held_short",0);X(this,"_max_drawdown",0);X(this,"_max_runup",0);X(this,"_max_runup_percent",0);X(this,"_max_drawdown_percent",0);X(this,"_variables");X(this,"_netprofit",0);X(this,"_eventrades",0);X(this,"_avg_trade_percent");X(this,"_avg_losing_trade_percent");X(this,"_avg_winning_trade_percent");X(this,"_closedtrades",0);X(this,"_losstrades",0);X(this,"_grossloss",0);X(this,"_grossprofit",0);X(this,"_wintrades",0);X(this,"_opentrades_capital_held",0);X(this,"_position_avg_price",0);X(this,"_position_size",0);X(this,"_openprofit",0);X(this,"_preMaxNetValue",0);X(this,"_preMinNetValue",0);X(this,"marginCallLong",0);X(this,"marginCallShort",0);this._orders=[],this._historyOrders=[],this._variables=e}update(e){this._calcMaxDrawdownAndMaxRunup(e)}_calcMaxDrawdownAndMaxRunup(e){if(!this._orders.length&&!this._historyOrders.length)return;let t=0,r=0;const{high:o,low:n,close:b}=e;let z=0;for(const[O,a]of this._orders.entries()){const{in_price:u,qty:l=0,direction:d,commission:A,original_qty:h=1}=a,q=d===i1.long?1:-1,_=(o-u)*l,m=(n-u)*l,L=q===1?_:-m,g=q===1?-m:_;z+=(b-u)*q*l,t+=g,O>0&&A&&(r-=A*l/h),r+=L}this._openprofit=z;const i=this.initial_capital,s=i+this._netprofit;this._preMinNetValue=this._preMinNetValue||i,this._preMaxNetValue=this._preMaxNetValue||i,t=this._preMaxNetValue-s+Math.max(t,0),r=s-this._preMinNetValue+r,this._max_drawdown<t&&(this._max_drawdown=t,this._max_drawdown_percent=t/this._preMaxNetValue*100),r>this._max_runup&&(this._max_runup=r,this._max_runup_percent=r/(this._preMinNetValue+r)*100)}updateOrders(e){this._orders=e,this._calcMaxContracts()}_calcMaxContracts(){const e=this._orders.length;if(!e){this._position_size=0,this._position_avg_price=void 0,this._opentrades_capital_held=0;return}const[t,r,o,n,b,z,i]=this._orders.reduce(([s,O,a,u,l,d,A],h)=>{const{direction:q,qty:_=0,in_price:m,commission:L=0}=h;return q===i1.long?(s+=_,O+=_,d+=_):(s+=_,a+=_,d-=_),u+=_*m,l+=m,A+=L,[s,O,a,u,l,d,A]},[0,0,0,0,0,0,0]);this._historyOrders.length||(this._netprofit=-i,this._grossloss=i),this._position_size=z,this._position_avg_price=b/e,this._opentrades_capital_held=n,this._max_contracts_held_all=Math.max(t,this._max_contracts_held_all),this._max_contracts_held_long=Math.max(r,this._max_contracts_held_long),this._max_contracts_held_short=Math.max(o,this._max_contracts_held_short)}updateHistoryOrders(e){this._historyOrders=e;const t=this._historyOrders.length;this._closedtrades=t;const[r,o,n,b,z,i,s,O]=this._historyOrders.reduce((l,d)=>{let[A,h,q,_,m,L,g,v]=l;const{profit:y=0,profit_percent:E=0}=d;return A+=y,h+=E,y<0?(q+=y,_+=E,g+=1):y>0&&(m+=y,L+=E,v+=1),[A,h,q,_,m,L,g,v]},[0,0,0,0,0,0,0,0]),a=this._orders.reduce((l,d)=>{const{commission:A=0,qty:h=0,original_qty:q=0}=d,_=A*h/q;return l+_},0);this._avg_trade_percent=t?o/t:void 0,this._avg_losing_trade_percent=t?Math.abs(b)/s:void 0,this._avg_winning_trade_percent=t?i/O:void 0,this._netprofit=r-a;const u=this.initial_capital+this._netprofit;this._preMaxNetValue=Math.max(this._preMaxNetValue||this.initial_capital,u),this._preMinNetValue=Math.min(this._preMinNetValue||this.initial_capital,u),this._grossloss=Math.abs(n-a),this._grossprofit=z,this._eventrades=t-s-O,this._losstrades=s,this._wintrades=O}updateStrategyOptions(e){this._options=e}get long(){return"long"}get short(){return"short"}get account_currency(){return"USD"}get closedtrades(){return this._closedtrades}get opentrades(){return{opentrades:this._orders.length,capital_held:this._opentrades_capital_held}}get avg_losing_trade(){const e=this._losstrades;return e?Math.abs(this._grossloss/e):void 0}get avg_losing_trade_percent(){return this._avg_losing_trade_percent}get avg_trade(){if(this._closedtrades)return this._netprofit/this._closedtrades}get equity(){return this.initial_capital+this._netprofit+this._openprofit}get netprofit(){return this._netprofit}get eventrades(){return this._eventrades}get openprofit(){return this._openprofit}get avg_trade_percent(){return this._avg_trade_percent}get avg_winning_trade(){const e=this._wintrades;return e?Math.abs(this._grossprofit/e):void 0}get avg_winning_trade_percent(){return this._avg_winning_trade_percent}get initial_capital(){var e;return((e=this._options)==null?void 0:e.initial_capital)||0}get losstrades(){return this._losstrades}get grossloss(){return this._grossloss}get grossloss_percent(){return this._grossloss/this.initial_capital*100}get grossprofit(){return this._grossprofit}get grossprofit_percent(){return this._grossprofit/this.initial_capital*100}get wintrades(){return this._wintrades}get margin_liquidation_price(){if(!this._options)return;const{initial_capital:e,margin_long:t=0,margin_short:r=0,commission_type:o,commission_value:n=0}=this._options,b=this._orders[0].direction===i1.long?1:-1,z=(b===1?t:r)/100;if(z<=0)return;const{close:i}=this._variables,[s,O]=this._orders.reduce((a,u)=>{let[l,d]=a;const{in_price:A,qty:h=0,original_qty:q=0}=u,_=A*h;if(l+=_,n){let m=0;switch(o){case a2.percent:m=(_+h*i)*n/100;break;case a2.cashPerContract:m=h*n*2;break;case a2.cashPerOrder:m=h/q*n+n;break}d+=m}return[l,d]},[0,0]);return(s-(e+this._netprofit-O))*b/this._position_size/(1-b*z)}get max_contracts_held_all(){return this._max_contracts_held_all}get max_contracts_held_long(){return this._max_contracts_held_long}get max_contracts_held_short(){return this._max_contracts_held_short}get max_drawdown(){return this._max_drawdown}get max_runup(){return this._max_runup}get max_runup_percent(){return this._max_runup_percent}get max_drawdown_percent(){return this._max_drawdown_percent}get netprofit_percent(){return this._netprofit/this.initial_capital*100}get openprofit_percent(){return this._openprofit/(this.initial_capital+this._netprofit)*100}get position_avg_price(){return this._position_avg_price}get position_entry_name(){if(this._orders.length)return this._orders[0].id}get position_size(){return this._position_size}get summaryData(){return{position_size:this.position_size,position_avg_price:this.position_avg_price,position_entry_name:this.position_entry_name,openprofit_percent:this.openprofit_percent,netprofit_percent:this.netprofit_percent,max_drawdown_percent:this.max_drawdown_percent,max_runup_percent:this.max_runup_percent,max_drawdown:this.max_drawdown,max_runup:this.max_runup,max_contracts_held_long:this.max_contracts_held_long,max_contracts_held_short:this.max_contracts_held_short,max_contracts_held_all:this.max_contracts_held_all,avg_winning_trade_percent:this.avg_winning_trade_percent,avg_winning_trade:this.avg_winning_trade,avg_trade_percent:this.avg_trade_percent,avg_trade:this.avg_trade,avg_losing_trade:this.avg_losing_trade,avg_losing_trade_percent:this.avg_losing_trade_percent,wintrades:this.wintrades,losstrades:this.losstrades,eventrades:this.eventrades,grossprofit:this.grossprofit,grossprofit_percent:this.grossprofit_percent,grossloss:this.grossloss,grossloss_percent:this.grossloss_percent,openprofit:this.openprofit,initial_capital:this.initial_capital,netprofit:this.netprofit,closedtrades:this.closedtrades,opentrades:this.opentrades,equity:this.equity,margin_call_long:this.marginCallLong,margin_call_short:this.marginCallShort}}_getCommission(e,t){if(!this._options)return 0;const{commission_value:r=0,commission_type:o}=this._options,n=e*t;let b=0;switch(o){case a2.percent:b=n*r/100;break;case a2.cashPerContract:b=t*r;break;case a2.cashPerOrder:b=r;break}return b}}class qm{constructor(e){X(this,"_preAccdist");X(this,"_preNvi");X(this,"_prePvi");X(this,"_preObv");X(this,"_prePvt");X(this,"_preWad");X(this,"_preVwap");X(this,"_preValue");X(this,"_currentData");X(this,"_preData");X(this,"_id");this._preAccdist=0,this._preNvi=0,this._prePvi=0,this._preObv=0,this._prePvt=0,this._preWad=0,this._preVwap={},this._preValue={},this._currentData={},this._preData={},this._id=e}update(e){this._preValue={},e.barIndex!==this._currentData.barIndex&&(this._preData={...this._currentData}),this._currentData={...e}}get isRealTime(){return this._preData.barIndex===this._currentData.barIndex}get accdist(){if(this._preValue.accdist)return this._preValue.accdist;const{close:e,low:t,high:r,volume:o}=this._currentData;if(r===t)return this._preAccdist;const n=(e-t-(r-e))/(r-t)*o+this._preAccdist;return!this.isRealTime&&(this._preAccdist=n),this._preValue.accdist=n,n}get iii(){if(this._preValue.iii)return this._preValue.iii;const{close:e,low:t,high:r,volume:o}=this._currentData,n=(2*e-r-t)/((r-t)*o);return this._preValue.iii=n,n}get nvi(){return this._preValue.nvi?this._preValue.nvi:this._getNvi()}get wvad(){if(this._preValue.wvad)return this._preValue.wvad;const{close:e,low:t,high:r,volume:o,open:n}=this._currentData,b=(e-n)/(r-t)*o;return this._preValue.wvad=b,b}get obv(){if(this._preValue.obv)return this._preValue.obv;const{close:e,volume:t}=this._currentData,{close:r}=this._preData;if(r===void 0){this._preObv=0;return}const o=Math.sign(e-r)*t+this._preObv;return!this.isRealTime&&(this._preObv=o),this._preValue.obv=o,o}get pvi(){return this._preValue.pvi?this._preValue.pvi:this._getPvi()}get tr(){if(this._preValue.tr)return this._preValue.tr;const{low:e,high:t}=this._currentData,{close:r}=this._preData;if(r===void 0)return;const o=Math.max(t-e,Math.abs(t-r),Math.abs(e-r));return this._preValue.tr=o,o}get pvt(){if(this._preValue.pvt)return this._preValue.pvt;const{close:e,volume:t}=this._currentData,{close:r}=this._preData;if(r===void 0){this._prePvt=0;return}const o=(e-r)/r*t+this._prePvt;return!this.isRealTime&&(this._prePvt=o),this._preValue.pvt=o,o}get wad(){if(this._preValue.wad)return this._preValue.wad;const{close:e,high:t,low:r}=this._currentData,{close:o}=this._preData;if(o===void 0)return this._preWad=0,0;const n=Math.max(t,o),b=Math.min(r,o),z=e-o,s=(z>0?e-b:z<0?e-n:0)+this._preWad;return!this.isRealTime&&(this._preWad=s),this._preValue.wad=s,s}get vwap(){var O,a;if(this._preValue.vwap)return this._preValue.vwap;const{hlc3:e,volume:t}=this._currentData;let{sum:r=0,sumV:o=0,isReset:n}=this._preVwap;if(((a=(O=self.workerStorage)==null?void 0:O.get(this._id))==null?void 0:a.buildInFunctions.timeframe.change({timeframe:"1D"},"vwap_buildin"))&&(n=!0,r=o=0),!n)return;const z=e*t+r,i=t+o;!this.isRealTime&&(this._preVwap={sum:z,sumV:i,isReset:n});const s=z/i;return this._preValue.vwap=s,s}_getNvi(){const e=this._preNvi||1,{close:t=0,volume:r=0}=this._preData,{close:o,volume:n}=this._currentData;let b=1;const z=e||1;return o&&t?b=n<r?z+(o-t)/t*z:z:b=z,!this.isRealTime&&(this._preNvi=b),this._preValue.nvi=b,b}_getPvi(){const e=this._prePvi||1,{close:t=0,volume:r=0}=this._preData,{close:o,volume:n}=this._currentData;let b=1;const z=e||1;return o&&t?b=n>r?z+(o-t)/t*z:z:b=z,!this.isRealTime&&(this._prePvi=b),this._preValue.pvi=b,b}}class dm{constructor(){X(this,"_period");X(this,"_multiplier");X(this,"_unit");this._period="1",this._multiplier=1,this._unit="m"}update(e){if(!e)return;this._period=e;const[t,r]=aM(e);this._multiplier=t,this._unit=r}get isdaily(){return this._unit==="d"}get isdwm(){return["d","w","M"].includes(this._unit)}get isintraday(){return["s","m","h"].includes(this._unit)}get isminutes(){return this._unit==="m"}get ismonthly(){return this._unit==="M"}get isseconds(){return this._unit==="s"}get isweekly(){return this._unit==="w"}get multiplier(){return this._multiplier}get period(){return this._period}}class hm{constructor(){X(this,"_bgColor");X(this,"_fgColor");X(this,"isUseBgColor",!1)}updateOptions(e){e!=null&&e.bg_color&&(this._bgColor=e.bg_color,this._fgColor=this._contrastColor(e.bg_color))}get bg_color(){return this.isUseBgColor=!0,this._bgColor}get fg_color(){return this.isUseBgColor=!0,this._fgColor}get is_heikinashi(){return!1}get is_kagi(){return!1}get is_linebreak(){return!1}get is_pnf(){return!1}get is_range(){return!1}get is_renko(){return!1}get is_standard(){return!0}get left_visible_bar_time(){}get right_visible_bar_time(){}_parseColor(e){let t,r,o,n;if(e.startsWith("#")){t=parseInt(e.substring(1,3),16),r=parseInt(e.substring(3,5),16),o=parseInt(e.substring(5,7),16);const b=e.substring(7);b?n=parseInt(b,16)/255:n=1}else{const b=this._parserRgbColor(e);t=b[0]||0,r=b[1]||0,o=b[2]||0,n=b[3]||1}return{r:t,g:r,b:o,a:n}}_parserRgbColor(e){var t;return((t=e.match(/\d+/g))==null?void 0:t.map(Number))||[]}_contrastColor(e){const{r:t,g:r,b:o}=this._parseColor(e);return(299*t+587*r+114*o)/1e3>128?"#000000":"#ffffff"}}class Wm{constructor(){X(this,"_syminfo",{})}update(e){this._syminfo=e}get __syminfo(){return this._syminfo}get basecurrency(){return this._syminfo.basecurrency||""}get country(){return this._syminfo.country}get currency(){return this._syminfo.currency||"USD"}get description(){return this._syminfo.description||""}get employees(){return this._syminfo.employees||100}get expiration_date(){return this._syminfo.expiration_date}get industry(){return this._syminfo.industry}get minmove(){return this._syminfo.minmove&&Number(this._syminfo.minmove)}get mintick(){return this._syminfo.mintick}get pointvalue(){return this._syminfo.pointvalue&&Number(this._syminfo.pointvalue)}get prefix(){return this.tickerid.replace(`:${this.ticker}`,"")}get pricescale(){return this._syminfo.pricescale&&Number(this._syminfo.pricescale)}get recommendations_buy(){return this._syminfo.recommendations_buy}get recommendations_buy_strong(){return this._syminfo.recommendations_buy_strong}get recommendations_date(){return this._syminfo.recommendations_date}get recommendations_hold(){return this._syminfo.recommendations_hold}get recommendations_sell(){return this._syminfo.recommendations_sell}get recommendations_sell_strong(){return this._syminfo.recommendations_sell_strong}get recommendations_total(){return this._syminfo.recommendations_total}get root(){return this._syminfo.root||""}get sector(){return this._syminfo.sector}get session(){return this._syminfo.session||At.regular}get shareholders(){return this._syminfo.shareholders}get shares_outstanding_float(){return this._syminfo.shares_outstanding_float}get shares_outstanding_total(){return this._syminfo.shares_outstanding_total}get target_price_average(){return this._syminfo.target_price_average}get target_price_date(){return this._syminfo.target_price_date}get target_price_estimates(){return this._syminfo.pricescale}get target_price_high(){return this._syminfo.target_price_high}get target_price_low(){return this._syminfo.target_price_low}get target_price_median(){return this._syminfo.target_price_median}get ticker(){return this._syminfo.ticker||""}get tickerid(){return this._syminfo.tickerid||""}get timezone(){return this._syminfo.timezone||"UTC+8"}get type(){return this._syminfo.type||"forex"}get volumetype(){return this._syminfo.volumetype||"n/a"}}class _m{constructor(e){X(this,"_variables");this._variables=e}get future_amount(){}get future_ex_date(){}get future_pay_date(){}}class mm{constructor(e){X(this,"_variables");this._variables=e}get future_eps(){}get future_period_end_time(){}get future_revenue(){}get future_time(){}}class qp{constructor(e){X(this,"_cacheData");X(this,"_barIndex");X(this,"_isRealTimeBar");X(this,"_barstate");X(this,"_priceVariables");X(this,"_lastBarIndex");X(this,"_currentBarTime");X(this,"_lastBarTime");X(this,"_period");X(this,"_offsetTime");X(this,"_timeframe");X(this,"_ta");X(this,"_polyline");X(this,"_label");X(this,"_line");X(this,"_linefill");X(this,"_box");X(this,"_table");X(this,"_strategy");X(this,"_session");X(this,"syminfo");X(this,"chart");X(this,"earnings");X(this,"dividends");X(this,"_timeTradingday");X(this,"_mintick");X(this,"_cacheSpace");X(this,"_precision");X(this,"_nextBarTime");X(this,"_isRepeated");X(this,"_preCacheData");X(this,"__requestName","");X(this,"__isFirstRun",!1);X(this,"_maxBarsBack",0);X(this,"_maxBarsBackOfKey");X(this,"__isReqRepeated");X(this,"_newCacheData",{});this._cacheData={varData:{},varipData:{}},this._preCacheData={varData:{},varipData:{}},this._barIndex=0,this._lastBarIndex=0,this._currentBarTime=0,this._lastBarTime=0,this._offsetTime=0,this._period="",this._isRealTimeBar=!1,this._barstate=new Am,this._timeframe=new dm,this._priceVariables={close:0,open:0,low:0,high:0,volume:0},this._ta=new qm(e),this._polyline=new Cr(this),this._label=new Cr(this),this._line=new Cr(this,C0.LINE),this._linefill=new Cr(this,C0.LINEFILL),this._box=new Cr(this),this._table=new Cr(this),this._strategy=new lm(this),this._session=new fm(this),this.syminfo=new Wm,this.chart=new hm,this.earnings=new mm(this),this.dividends=new _m(this),this._cacheSpace=new Map,this._maxBarsBackOfKey=new Map}get table(){return this._table}get box(){return this._box}get linefill(){return this._linefill}get line(){return this._line}get polyline(){return this._polyline}get label(){return this._label}get ta(){return this._ta}get strategy(){return this._strategy}get session(){return this._session}get na(){}get last_bar_index(){return this._lastBarIndex}get bar_index(){return this._barIndex}get barstate(){return this._barstate}get close(){return this._priceVariables.close}get low(){return this._priceVariables.low}get open(){return this._priceVariables.open}get high(){return this._priceVariables.high}get volume(){return this._priceVariables.volume}get ohlc4(){const{close:e,open:t,high:r,low:o}=this._priceVariables;return(e+t+r+o)/4}get hl2(){const{high:e,low:t}=this._priceVariables;return(e+t)/2}get hlc3(){const{close:e,high:t,low:r}=this._priceVariables;return(e+t+r)/3}get hlcc4(){const{close:e,high:t,low:r}=this._priceVariables;return(e*2+t+r)/4}get hour(){return _1(this._currentBarTime).hour()}get minute(){return _1(this._currentBarTime).minute()}get second(){return _1(this._currentBarTime).second()}get month(){return _1(this._currentBarTime).month()+1}get year(){return _1(this._currentBarTime).year()}get dayofweek(){return _1(this.time_tradingday).weekday()}get dayofmonth(){return _1(this.time_tradingday).date()}get weekofyear(){return _1(this._currentBarTime).week()}get last_bar_time(){return this._lastBarTime}get time(){return this._currentBarTime}get time_close(){const[e,t]=aM(this._period);return _1(this._currentBarTime).add(e,t).valueOf()}get timenow(){return Date.now()}get time_tradingday(){return this._timeTradingday||this.getTimeTradingday(this._currentBarTime,this._period)}get timeframe(){return this._timeframe}get mintick(){return this._mintick}get __period(){return this._period}get precision(){return this._precision}get nextBarTime(){return this._nextBarTime}set max_bars_back(e){this._maxBarsBack=e}updateMaxLength(e){const{max_lines_count:t,max_labels_count:r,max_boxes_count:o,max_polylines_count:n}=e;o&&this._box.setMaxLen(o),r&&this._label.setMaxLen(r),t&&this._line.setMaxLen(t),n&&this._polyline.setMaxLen(n)}getTimeTradingday(e,t){const[r,o]=aM(t),n=_1(e);return["M","w","y","d"].includes(o)?n.valueOf():(n.subtract(this._offsetTime,"h"),n.startOf("d").add(this._offsetTime,"h").valueOf())}updateOptions(e){var s;const{interval:t="1D",offsetTime:r=5,mintick:o,chart:n,syminfo:b}=e,z=((s=o.toString().split(".")[1])==null?void 0:s.length)||5;this._precision=z;const i=lc(t);this._period=i,this._mintick=o,this._offsetTime=r,this._timeframe.update(i),this.chart.updateOptions(n),this.syminfo.update(b),this._barstate.isFirstRun=this.__isFirstRun}updateData(e,t){const{barIndex:r,c:o,o:n,h:b,l:z,volume:i,time:s,lastBarIndex:O,lastBarTime:a,isrealtime:u,time_tradingday:l,nextBarTime:d}=e;if(this._priceVariables={close:rn(o,this._precision),open:rn(n,this._precision),high:rn(b,this._precision),low:rn(z,this._precision),volume:Number(i)},this._isRealTimeBar=u,this._newCacheData={},r>this._barIndex){const{varData:A,varipData:h}=this._cacheData;this._preCacheData={varData:{},varipData:{}},u?(this._deepCopy(A,this._preCacheData.varData),this._deepCopy(h,this._preCacheData.varipData)):this._preCacheData={varData:{...A},varipData:{...h}}}this._isRepeated=t,this._timeTradingday=l,this._currentBarTime=s*1e3,this._lastBarIndex=O,this._barIndex=r,this._lastBarTime=a*1e3,this._nextBarTime=d*1e3,this._barstate.update(r,O,u,!0),this.ta.update({...this._priceVariables,hlc3:this.hlc3,barIndex:r})}getCacheData(e,t,r){const o=this.setCacheData(e,r),n=this._cacheSpace.get(e)||0;return t=Math.floor(t),n<t&&this._cacheSpace.set(e,t),o[o.length-1-t]}setCacheData(e,t){let r=this._cacheData[e]||{barIndex:-1,data:[]};if(r.barIndex>this._barIndex)return r.data;t=this._cacheCopy(t),r.barIndex===this._barIndex?r.data[r.data.length-1]=t:r.data.push(t);const o=this._cacheSpace.get(e)||0,n=ii.includes(e)?500:50;return o&&r.data.length>(this._maxBarsBackOfKey.get(e)||this._maxBarsBack||o+n)&&r.data.shift(),r.barIndex=this._barIndex,this._cacheData[e]=r,r.data}__setBarsBackOfKey(e,t){this._maxBarsBackOfKey.set(e,t)}__getBarsBackOfKey(e){return this._maxBarsBackOfKey.get(e)}getTypeInstance(e,t){return new Nu(e,t)}verifyVarAndVarip(e,t,r){const o=`${e}_${t.replace(/\$[\d]+_\$/g,"")}`,n=this._isRepeated||this.__isReqRepeated?this._preCacheData:this._cacheData;if(r==="var"&&n.varData.hasOwnProperty(o))return this._upadteChartDraws(n.varData[o]),!0;const b=this.__isReqRepeated?this._preCacheData.varipData:this._cacheData.varipData;return r==="varip"&&b.hasOwnProperty(o)?(this._upadteChartDraws(b[o]),!0):!1}getVarValue(e,t,r){const o=`${e}_${t.replace(/\$[\d]+_\$/g,"")}`;(this._isRepeated||this.__isReqRepeated)&&(this._cacheData.varData[o]=this._preCacheData.varData[o],this.__isReqRepeated&&(this._cacheData.varipData[o]=this._preCacheData.varipData[o]));const n=this._cacheData;if(r==="var"){const b=n.varData[o];return this._isRealTimeBar?this._newCacheData.hasOwnProperty(o)?this._newCacheData[o]:this._cacheCopy(b):b}return this._cacheData.varipData[o]}setVarValue(e,t,r,o){var z;const n=`${e}_${t.replace(/\$[\d]+_\$/g,"")}`;let b;switch(typeof r=="object"&&((z=r==null?void 0:r.varipKeys)!=null&&z.length)&&o!=="varip"&&(o="var",b=r.varipKeys),o){case"var":if(this._isRealTimeBar){if(b&&b.length)for(const i of b)this._cacheData.varData[n][i]=r[i];this._newCacheData[n]=r}else this._chartDrawsHandle(r,this._cacheData.varData[n]),this._cacheData.varData[n]=r;break;case"varip":this._chartDrawsHandle(r,this._cacheData.varipData[n]),this._cacheData.varipData[n]=r;break}return r}_upadteChartDraws(e){const t=this._isRealTimeBar?e==null?void 0:e.preId:e==null?void 0:e.id;if(t)switch(e==null?void 0:e.type){case C0.BOX:this._setChartDraw(t,this._box);break;case C0.LINE:this._setChartDraw(t,this._line);break;case C0.POLYLINE:this._setChartDraw(t,this._polyline);break;case C0.LABEL:this._setChartDraw(t,this._label);break;case C0.LINEFILL:this._setChartDraw(t,this._linefill);break;case C0.TABLE:this._setChartDraw(t,this._table);break}}_deepCopy(e,t){for(const r of Object.keys(e)){const o=e[r];typeof o!="object"||o!=null&&o.type?t[r]=o:o!=null&&o.copy?t[r]=o.copy():(t[r]={},this._deepCopy(o,t[r]))}}_cacheCopy(e){return typeof e!="object"||e!=null&&e.type?e:e!=null&&e.copy?e.copy():Object.assign({},e)}_setChartDraw(e,t){const r=t.getInstance(e);let o=t.get(e);if(!o||!r)return;const n=r.updateId()||e;n===e&&!this._isRealTimeBar||(o=JSON.parse(JSON.stringify(o)),r.data=o,t.deleteHandle(e,!1),t.set(n,o,r))}_chartDrawsHandle(e,t){const r=t==null?void 0:t.id;let o=e==null?void 0:e.id;o&&e.data&&(e.data.isVar=!0),r!==o&&r&&t.data&&(t.data.isVar=!1)}add(e,t){return Array.isArray(e)&&Array.isArray(t)?D2.uniq([...e,...t]):typeof e=="number"||typeof t=="number"?Number(e)+Number(t):(e||"")+(t||"")}sub(e,t){return Array.isArray(e)&&Array.isArray(t)?e.filter(r=>!t.includes(r)):Number(e)-Number(t)}div(e,t){if(t)return e/t}equal(e,t,r,o){if(e!==void 0&&t!==void 0)return e==t;if(!(r.endsWith(C0.BOOL)&&e===void 0))return(r.endsWith(C0.FLOAT)||r.endsWith(C0.INT)||o.endsWith(C0.FLOAT)||o.endsWith(C0.INT))&&e===void 0&&t===void 0?!1:r.endsWith(C0.STRING)&&e===""&&t===void 0||o.endsWith(C0.STRING)&&t===""&&e===void 0?!0:r.endsWith(C0.NA)&&o.endsWith(C0.NA)?!1:e==t}compareDataHandle(e){if(typeof e!="number"||!e)return e;const t=String(e);if(!t.includes(".")&&!/[eE]/.test(t))return e;const[r,o]=e.toFixed(11).split(".");return+`${r}.${o.slice(0,10)}`}againAssignParse(e,t){var o;if(t)return;const r=(o=e==null?void 0:e.constructor)==null?void 0:o.name;if(r)switch(r){case Ko.name:case C3.name:case Qo.name:case S3.name:case Jo.name:case x3.name:e==null||e.delete();break}}}class Cr{constructor(e,t,r=50){X(this,"_all");X(this,"_allInstance");X(this,"_pseudoArrayAll");X(this,"_maxLength");X(this,"_deleteIds");X(this,"_variables");X(this,"_preDeleteIds");X(this,"_againAddItems");X(this,"_tmpData");X(this,"_tmpInstance");X(this,"_type");X(this,"_tmpIds",[]);this._all=new Map,this._allInstance=new Map,this._pseudoArrayAll=new M1,this._maxLength=r,this._deleteIds=new Map,this._variables=e,this._preDeleteIds=new Map,this._againAddItems=[],this._tmpData=new Map,this._tmpInstance=new Map,this._type=t}setMaxLen(e){this._maxLength=e}get size(){return this._all.size+this._tmpData.size}get data(){const e=[],t=D2.flatMap([...this._deleteIds.values()]),r=D2.uniq([...this._tmpData.keys(),...this._all.keys()]),o=[];for(const n of r)if(!t.some(b=>b.key===n)){const b=this._tmpData.get(n)||this._all.get(n),z=b==null?void 0:b.id;b&&!o.includes(z)&&(o.push(z),e.push(b))}return this._variables._isRealTimeBar&&this._preDeleteIds.set(this._variables.last_bar_index,this._deleteIds.get(this._variables.last_bar_index)||[]),this._tmpDataHandle(),this._type===C0.LINEFILL?e:e.slice(-this._maxLength)}get all(){return this._pseudoArrayAll._value=[...this._allInstance.values(),...this._tmpInstance.values()],this._pseudoArrayAll}add(e,t,r){if(this.set(e,t,r),!this._variables._isRealTimeBar&&this._type!==C0.LINEFILL&&this._all.size>this._maxLength){const{bar_index:o}=t;for(const[n,b]of this._all){const{isVar:z,id:i,bar_index:s}=b;if(s===o)break;if(z)continue;this.deleteHandle(i);break}}}getValOfBarIndex(e){let t=[];const r=D2.uniq([...this._all.keys(),...this._tmpData.keys()]),o=D2.flatMap([...this._deleteIds.values()]);for(const n of e){const b=r.filter(z=>z.endsWith(`_${n}`));for(const z of b){if(o.some(s=>s.key===z))continue;const i=this._tmpData.get(z)||this._all.get(z);i&&t.push(i)}}return this._againAddItems.length&&(t=this._againAddItems.concat(t),this._againAddItems=[]),this._tmpDataHandle(),t.length?this._type===C0.LINEFILL?t:t.slice(-this._maxLength):void 0}getDeleteIds(e){let t=[];const{bar_index:r,_isRealTimeBar:o}=this._variables,n=[];for(const z of e){let i=[...this._deleteIds.get(z)||[]];const s=this._preDeleteIds.get(z)||[];if(z===r&&o){let O=[];for(const a of s){const u=i.findIndex(l=>l.id===a.id);if(u===-1){const l=this._all.get(a.key);l&&n.push(l)}else O.push(a),i.splice(u,1)}this._preDeleteIds.set(r,D2.uniqBy([...i,...O],"id"))}else{const O=[];for(const a of i)s.some(u=>u.id===a.id)||O.push(a);i=O,this._preDeleteIds.delete(z)}t=t.concat(i)}const b=[...this._all.values(),...this._tmpData.values()];for(const z of this._tmpIds)b.some(i=>i.id===z.id)||t.push(z);return this._againAddItems=n,D2.uniq(t.map(z=>z.id))}set(e,t,r){this._variables._isRealTimeBar?(this._tmpData.set(e,t),this._tmpInstance.set(e,r)):(this._all.set(e,t),this._allInstance.set(e,r))}get(e){const t=this._all.get(e);let r=this._tmpData.get(e);return this._variables._isRealTimeBar?(r||(r=t?{...t}:void 0,r&&this._tmpData.set(e,r)),r):(this._tmpData.clear(),this._tmpInstance.clear(),t)}getInstance(e){return this._allInstance.get(e)}deleteHandle(e,t=!0){var r;if(this._type===C0.LINE&&t){const o=(r=this._allInstance.get(e))==null?void 0:r.__fillKeys;if(o&&o.length)for(const n of o)this._variables.linefill.deleteHandle(n)}this._variables._isRealTimeBar?(this._tmpData.delete(e),this._tmpInstance.delete(e)):(this._all.delete(e),this._allInstance.delete(e))}delete(e,t,r){const o=this._all.get(e);if(this._variables._isRealTimeBar||this.deleteHandle(e),!(this._variables.__isFirstRun&&!this._variables._isRealTimeBar)&&typeof t=="number"){const n=this._deleteIds.get(t)||[];n.push({key:e,id:(o==null?void 0:o.id)||r}),this._deleteIds.set(t,n)}}_tmpDataHandle(){var e;this._tmpIds=[];for(const[t]of this._tmpInstance){const r=(e=this._tmpData.get(t))==null?void 0:e.id;r&&this._tmpIds.push({id:r,key:t})}this._tmpData.clear(),this._tmpInstance.clear(),this._deleteIds.clear()}}/**
85
+ ${l}`),l}_getRequestLowerTfData(e,t,r,o){var L;let{symbol:n,timeframe:b,calc_bars_count:z,ignore_invalid_symbol:i,ignore_invalid_timeframe:s}=e;const{__period:O,time:a,_isRealTimeBar:u}=this._variables;b=hr(b);let l=N2(b,a)*1e3;const d=N2(O,a)*1e3;if(l>d)return!s&&this._errorListener.addError(M2(l1.requestLowerTfPeriodErr,{period:b}),t,j0.Error,25),[];const A=`${n}--${b}`,h=self.workerStorage.get(`request_${this._scriptId}_data`),q=self.workerStorage.get(`request_${this._scriptId}_list`),_=self.workerStorage.get(`request_${this._scriptId}_tmp`),m={id:A,calc_bars_count:z,ignore_invalid_symbol:i,symbol:n,originTimeframe:b,timeframe:ci[b]||cc(b)};if(h!=null&&h.has(A)){_==null||_.delete(A);const{index:g=0,periodStamp:v=d}=this._cacheData.get(r)||{},y=h==null?void 0:h.get(A);if(!y.length)return[];if(y.length-1<0)return[];const T=y.slice(g);let N=a,D=v+N;const C=[];for(const[P,H]of T.entries()){let{time:G}=H;G=G*1e3;let k=g+P;if(G>=D)return!u&&this._cacheData.set(r,{index:k,periodStamp:v}),C;if(N<=G&&G<D){const J=(L=H==null?void 0:H.result)==null?void 0:L[r];if(Array.isArray(J))for(const[o0,z0]of J.entries())C[o0]||(C[o0]=[]),C[o0].push(z0);else o||C.push(J)}}return!u&&this._cacheData.set(r,{index:y.length,periodStamp:v}),C}else(q==null?void 0:q.get(A))||_==null||_.set(A,m);q==null||q.set(A,m)}_getRequestData(e,t){var _,m,L,g,v;let{symbol:r,timeframe:o,calc_bars_count:n,gaps:b,lookahead:z,ignore_invalid_symbol:i}=e;const{__period:s,mintick:O,time:a,nextBarTime:u}=this._variables;o=hr(o),r=r;const l=`${r}--${o}`,d=self.workerStorage.get(`request_${this._scriptId}_data`),A=self.workerStorage.get(`request_${this._scriptId}_list`),h=self.workerStorage.get(`request_${this._scriptId}_tmp`),q={id:l,calc_bars_count:n,ignore_invalid_symbol:i,symbol:r,originTimeframe:o,timeframe:ci[o]||cc(o)};if(d!=null&&d.has(l)){let y=N2(o,a)*1e3;const E=N2(s,a)*1e3;h==null||h.delete(l);const{index:T=0,periodStamp:N=E}=this._cacheData.get(t)||{},D=d==null?void 0:d.get(l);if(!D.length)return;const C=D.slice(T);let P=a,H=N+P;const G=D.length-1;if(G<0)return;const k={lastBarIndex:D[G].barindex||G,lastBarTime:D[G].time,interval:o,mintick:O};if(y>N){let J;if(z===Pe.lookaheadOn?J=this._lookaheadOnHandle(C,o,H,y,k,T,N,t,P,b):J=this._lookaheadOffHandle(C,o,H,y,k,T,N,t,P,u||H,b),J)return J;if(J===null)return}else if(z===Pe.lookaheadOn)for(const[J,o0]of C.entries()){let{time:z0,barindex:O0}=o0;z0=z0*1e3;const v0=((_=C[J+1])==null?void 0:_.time)*1e3||z0+y;let w0=T+J;if(z0>=H){this._cacheData.set(t,{index:w0,periodStamp:N});return}if(z0<=P&&v0>P){const u0=T+J;return this._cacheData.set(t,{index:u0,periodStamp:N}),{...o0,barIndex:O0||u0,nextBarTime:(m=C[J+1])==null?void 0:m.time,...k}}}else for(const[J,o0]of C.entries()){let{time:z0,barindex:O0}=o0;z0=z0*1e3;const v0=((L=C[J+1])==null?void 0:L.time)*1e3||z0+y;let w0=T+J;if(z0>H){this._cacheData.set(t,{index:w0,periodStamp:N});return}if(z0<H&&H<=v0)return this._cacheData.set(t,{index:w0,periodStamp:N}),{...o0,barIndex:O0||w0,nextBarTime:(g=C[J+1])==null?void 0:g.time,...k};if(z0>=P&&z0<=H&&(O0||w0)===k.lastBarIndex)return this._cacheData.set(t,{index:w0,periodStamp:N}),{...o0,barIndex:O0||w0,nextBarTime:(v=C[J+1])==null?void 0:v.time,...k}}this._cacheData.set(t,{index:D.length,periodStamp:N});return}else(A==null?void 0:A.get(l))||h==null||h.set(l,q);A==null||A.set(l,q)}_lookaheadOnHandle(e,t,r,o,n,b,z,i,s,O){var a;for(const[u,l]of e.entries()){let{time:d,barindex:A}=l;d=d*1e3,t.includes("M")&&(o=N2(t,d)*1e3-(_1(d).date()-1)*864e5);const h=d,q=o+h;let _=b+u;if(r<=h)return this._cacheData.set(i,{index:_,periodStamp:z}),null;let m={...l,barIndex:A||_,nextBarTime:(a=e[u+1])==null?void 0:a.time,...n};if(O===Pe.gapsOn){if(r>h&&s<=h)return this._cacheData.set(i,{index:_,periodStamp:z}),m}else{if(r>q)continue;if(r>h)return this._cacheData.set(i,{index:_,periodStamp:z}),m}}}_lookaheadOffHandle(e,t,r,o,n,b,z,i,s,O,a){var u,l;for(const[d,A]of e.entries()){let{time:h,barindex:q}=A;h=h*1e3,t.includes("M")&&(o=N2(t,h)*1e3-(_1(h).date()-1)*864e5);const _=h,m=o+_,L=b+d;if(r<_)return this._cacheData.set(i,{index:L,periodStamp:z}),null;const g={...A,barIndex:q||L,nextBarTime:(u=e[d+1])==null?void 0:u.time,...n};if(r>=m&&s<m||r<m&&O>=m)return a===Pe.gapsOn?(this._cacheData.set(i,{index:L,periodStamp:z}),g):(this._cacheData.set(i,{index:L,data:g,periodStamp:z}),g);if(!(s>m)&&s>=_){let v=(l=this._cacheData.get(i))==null?void 0:l.data;if(!v){const y=e[L-1];if(!y)return null;v={...y,barIndex:y.barindex||L-1,nextBarTime:g.time,...n},this._cacheData.set(i,{index:L,data:v,periodStamp:z})}return v}}}_getDependCodes(e,t,r,o,n,b){for(const z of e){if(!z.isArg){const i=t.filter(O=>{var a;return(a=O==null?void 0:O.depends)==null?void 0:a.some(u=>u.name===z.name&&u.scope===z.scope&&u.isAgainAssign!==!1)});for(const O of i){const{code:a,depends:u,scope:l,funcName:d}=O;r[l]=r[l]||[];const A=r[l];let h=l===0&&d;if(!A.includes(a)){if(h){if(o.includes(a))continue;o.unshift(a)}else A.unshift(a);if(u!=null&&u.length){for(const q of u)q.memberCode&&!h&&b.push(q.memberCode);this._getDependCodes(u,t,r,o,n,b)}}}const s=t.find(O=>{var a;return((a=O.varNames)==null?void 0:a.split(", ").includes(z.name))&&(!z.isPreArg||z.isPreArg&&O.methodName===z.functionName)||O.funcName===z.name});if(s){const{code:O,depends:a,scope:u}=s;r[u]=r[u]||[];const l=r[u],d=l.findIndex(A=>A===O);if(d!==-1){if(z.isFunc)continue;l.splice(d,1)}if(l.unshift(O),a!=null&&a.length){for(const A of a)A.memberCode&&b.push(A.memberCode);this._getDependCodes(a,t,r,o,n,b)}continue}}n.some(i=>i.name===z.name)||n.push(z)}}_getStmtFuncs(e,t,r,o,n){const b=t.filter(z=>z.isStmtFunc);for(const z of b){const{code:i,depends:s,scope:O=0}=z;e[O]=e[O]||[];const a=e[O];if(!a.includes(i)&&(a.push(i),s!=null&&s.length)){for(const u of s)u.memberCode&&r.push(u.memberCode);this._getDependCodes(s.filter(u=>!(u.isFunc&&i.startsWith(u.name))),t,e,o,n,r)}}}runScripts(e,t,r,o,n,b){var u;const z=`${this._scriptId}_${t}`;let{builtInGather:i,buildinConstants:s,buildInFunctions:O,tradingvueFunc:a}=self.workerStorage.get(z)||{};if(r&&(i=new qp(z),s=new fp,O=new lp(this._variables.mintick||1e-5,i,this._scriptId),a=new Function("$_var","$_const","$_func","$paramsExpr","$posStr",e),i.__requestName=t,self.workerStorage.set(z,{builtInGather:i,buildinConstants:s,buildInFunctions:O,tradingvueFunc:a})),o&&o.length){const l=o.length-1,{interval:d,symbol:A=""}=n,{mintick:h,syminfo:q}=this._variables,[_,m]=A.split(":");i.updateOptions({interval:d,mintick:h,syminfo:{...q.__syminfo,tickerid:A||q.tickerid,ticker:m||_||q.ticker}});for(const[v,y]of o.entries()){const{barindex:E}=y,T=Object.assign(y,{barIndex:E||v,lastBarIndex:o[l].barindex||l,lastBarTime:o[l].time,nextBarTime:(u=o[v+1])==null?void 0:u.time});if(i.updateData(T),O.update({barIndex:(T==null?void 0:T.barindex)||0}),y.result=Object.assign(y.result||{},{[t]:a(i,s,O,b||[],t)}),O.endExecution(),O.errors.length&&O.errors.some(N=>N.type===j0.Error))return{logs:[],errors:O.errors}}const L=O.log.logs,g=O.errors;return O.log.clearLogs(),O.clearErrors(),{logs:L,errors:g}}}_runScripts(e,t,r,o,n){const b=`${this._scriptId}_${t}`;let{builtInGather:z,buildinConstants:i,buildInFunctions:s,tradingvueFunc:O}=self.workerStorage.get(b)||{};const{interval:a,...u}=n||{};if(r){z=new qp(b),i=new fp,s=new lp(this._variables.mintick||1e-5,z,this._scriptId),O=new Function("$_var","$_const","$_func","$paramsExpr","$posStr",e);const{mintick:h,syminfo:q}=this._variables;z.updateOptions({interval:a,mintick:h||1e-5,syminfo:{...q.__syminfo}}),z.__requestName=t,self.workerStorage.set(b,{builtInGather:z,buildinConstants:i,buildInFunctions:s,tradingvueFunc:O})}z.updateData(u),s.update({barIndex:(u==null?void 0:u.barindex)||0});const l=O(z,i,s,o||[],t),d=s.log.logs,A=s.errors;return s.log.clearLogs(),s.clearErrors(),s.endExecution(),{result:l,logs:d,errors:A}}},sm=class{constructor(){}prefix(e){var r;const{symbol:t}=e;return((r=t==null?void 0:t.split("."))==null?void 0:r[0])||""}ticker(e){var r;const{symbol:t}=e;return((r=t==null?void 0:t.split("."))==null?void 0:r[1])||""}};class am{constructor(e,t){X(this,"_logs");X(this,"_variables");X(this,"_str");X(this,"_preBar",{barIndex:-1,isrealtime:!1});this._variables=e,this._logs=[],this._str=t}get logs(){return this._logs}clearLogForIndex(e){this._logs=this._logs.filter(t=>t.barIndex!==e)}clearLogs(){this._logs=[]}info(e,t,r){this._addLog(e,t,"info",r)}error(e,t,r){this._addLog(e,t,"error",r)}warning(e,t,r){this._addLog(e,t,"warning",r)}mergeLogs(e){this._logs=this._logs.concat(e)}_addLog(e,t,r,o){if(typeof t=="string"&&(o=t),o.startsWith("export"))return;const{message:n,formatString:b}=e,{time:z,bar_index:i,_isRealTimeBar:s,__isReqRepeated:O}=this._variables;let a=n;b&&Array.isArray(t)&&t.length&&(t=t.map(A=>(typeof A=="object"&&(A.isArray?A=JSON.stringify(A._value):A=A.toString()),A!==void 0?A:"na")),a=this._str.strformat({formatString:b},t,!0));const{isrealtime:u,barIndex:l}=this._preBar;i!==l&&(this._preBar={barIndex:i,isrealtime:s});const d=Date.now();a!==void 0&&this._logs.push({message:`[${_1(u&&!O?d:z).format("YYYY-MM-DDTHH:mm:ss.SSSZ")}]: ${a}`,time:z,id:P4(6),barIndex:i,type:r})}}class Om{constructor(e){X(this,"_errorListener");this._errorListener=e}error({message:e},t){t.startsWith("export")||this._errorListener.addError(e,t,j0.Error)}}class um{constructor(){X(this,"_errors");this._errors=new Map}clear(){this._errors.clear()}get errors(){return D2.flatMap([...this._errors.values()])}setErrors(e,t){this._errors.set(t,e)}addError(e,t,r,o=0){const[n,b]=t.split("_").slice(-2),z=this._errors.get(t),i={message:e,endLineNumber:Number(n),startColumn:Number(b)+1,endColumn:Number(b)+o+1,startLineNumber:Number(n),type:r};z?z.push(i):this._errors.set(t,[i])}}class Am{constructor(){X(this,"_isMarketOpen");X(this,"_currentBarIndex");X(this,"_totalBarIndex");X(this,"_isRealTimeBar");X(this,"_preBarIndex");X(this,"_preIsRealTimeBar");X(this,"_isFirstRun",!1);this._currentBarIndex=0,this._totalBarIndex=0,this._isRealTimeBar=!1,this._preBarIndex=0,this._isMarketOpen=!0,this._preIsRealTimeBar=!1}update(e,t,r,o){this._preBarIndex=this._currentBarIndex,this._preIsRealTimeBar=this._isRealTimeBar,this._currentBarIndex=e,this._totalBarIndex=t,this._isRealTimeBar=r,this._isMarketOpen=o}set isFirstRun(e){this._isFirstRun=e}get isnew(){return this._preBarIndex!==this._currentBarIndex}get islast(){return this._currentBarIndex===this._totalBarIndex||!this._isFirstRun}get isfirst(){return this._currentBarIndex===0}get ishistory(){return!this._isRealTimeBar||this._isFirstRun}get isrealtime(){return this._isRealTimeBar}get isconfirmed(){return!this._isRealTimeBar}get islastconfirmedhistory(){return this._isMarketOpen?this._currentBarIndex===this._totalBarIndex-1&&!this._preIsRealTimeBar||this._currentBarIndex===this._totalBarIndex&&!this._isRealTimeBar:this._currentBarIndex===this._totalBarIndex}}class fm{constructor(e){X(this,"_variables");this._variables=e}get isfirstbar(){return this._variables.timeframe.isdwm?!0:this._variables.time===this._variables.time_tradingday}get isfirstbar_regular(){return this._variables.timeframe.isdwm?!0:this._variables.time===this._variables.time_tradingday}get islastbar(){if(this._variables.timeframe.isdwm)return!0;const{time:e,__period:t}=this._variables,r=N2(t,e);return this._variables.time+r===this._variables.time_tradingday+24*60*60*1e3}get islastbar_regular(){if(this._variables.timeframe.isdwm)return!0;const{time:e,__period:t}=this._variables,r=N2(t,e);return this._variables.time+r===this._variables.time_tradingday+24*60*60*1e3}get ismarket(){return!0}get ispostmarket(){return!1}get ispremarket(){return!1}}class lm{constructor(e){X(this,"_orders");X(this,"_historyOrders");X(this,"_options");X(this,"_max_contracts_held_all",0);X(this,"_max_contracts_held_long",0);X(this,"_max_contracts_held_short",0);X(this,"_max_drawdown",0);X(this,"_max_runup",0);X(this,"_max_runup_percent",0);X(this,"_max_drawdown_percent",0);X(this,"_variables");X(this,"_netprofit",0);X(this,"_eventrades",0);X(this,"_avg_trade_percent");X(this,"_avg_losing_trade_percent");X(this,"_avg_winning_trade_percent");X(this,"_closedtrades",0);X(this,"_losstrades",0);X(this,"_grossloss",0);X(this,"_grossprofit",0);X(this,"_wintrades",0);X(this,"_opentrades_capital_held",0);X(this,"_position_avg_price",0);X(this,"_position_size",0);X(this,"_openprofit",0);X(this,"_preMaxNetValue",0);X(this,"_preMinNetValue",0);X(this,"marginCallLong",0);X(this,"marginCallShort",0);this._orders=[],this._historyOrders=[],this._variables=e}update(e){this._calcMaxDrawdownAndMaxRunup(e)}_calcMaxDrawdownAndMaxRunup(e){if(!this._orders.length&&!this._historyOrders.length)return;let t=0,r=0;const{high:o,low:n,close:b}=e;let z=0;for(const[O,a]of this._orders.entries()){const{in_price:u,qty:l=0,direction:d,commission:A,original_qty:h=1}=a,q=d===i1.long?1:-1,_=(o-u)*l,m=(n-u)*l,L=q===1?_:-m,g=q===1?-m:_;z+=(b-u)*q*l,t+=g,O>0&&A&&(r-=A*l/h),r+=L}this._openprofit=z;const i=this.initial_capital,s=i+this._netprofit;this._preMinNetValue=this._preMinNetValue||i,this._preMaxNetValue=this._preMaxNetValue||i,t=this._preMaxNetValue-s+Math.max(t,0),r=s-this._preMinNetValue+r,this._max_drawdown<t&&(this._max_drawdown=t,this._max_drawdown_percent=t/this._preMaxNetValue*100),r>this._max_runup&&(this._max_runup=r,this._max_runup_percent=r/(this._preMinNetValue+r)*100)}updateOrders(e){this._orders=e,this._calcMaxContracts()}_calcMaxContracts(){const e=this._orders.length;if(!e){this._position_size=0,this._position_avg_price=void 0,this._opentrades_capital_held=0;return}const[t,r,o,n,b,z,i]=this._orders.reduce(([s,O,a,u,l,d,A],h)=>{const{direction:q,qty:_=0,in_price:m,commission:L=0}=h;return q===i1.long?(s+=_,O+=_,d+=_):(s+=_,a+=_,d-=_),u+=_*m,l+=m,A+=L,[s,O,a,u,l,d,A]},[0,0,0,0,0,0,0]);this._historyOrders.length||(this._netprofit=-i,this._grossloss=i),this._position_size=z,this._position_avg_price=b/e,this._opentrades_capital_held=n,this._max_contracts_held_all=Math.max(t,this._max_contracts_held_all),this._max_contracts_held_long=Math.max(r,this._max_contracts_held_long),this._max_contracts_held_short=Math.max(o,this._max_contracts_held_short)}updateHistoryOrders(e){this._historyOrders=e;const t=this._historyOrders.length;this._closedtrades=t;const[r,o,n,b,z,i,s,O]=this._historyOrders.reduce((l,d)=>{let[A,h,q,_,m,L,g,v]=l;const{profit:y=0,profit_percent:E=0}=d;return A+=y,h+=E,y<0?(q+=y,_+=E,g+=1):y>0&&(m+=y,L+=E,v+=1),[A,h,q,_,m,L,g,v]},[0,0,0,0,0,0,0,0]),a=this._orders.reduce((l,d)=>{const{commission:A=0,qty:h=0,original_qty:q=0}=d,_=A*h/q;return l+_},0);this._avg_trade_percent=t?o/t:void 0,this._avg_losing_trade_percent=t?Math.abs(b)/s:void 0,this._avg_winning_trade_percent=t?i/O:void 0,this._netprofit=r-a;const u=this.initial_capital+this._netprofit;this._preMaxNetValue=Math.max(this._preMaxNetValue||this.initial_capital,u),this._preMinNetValue=Math.min(this._preMinNetValue||this.initial_capital,u),this._grossloss=Math.abs(n-a),this._grossprofit=z,this._eventrades=t-s-O,this._losstrades=s,this._wintrades=O}updateStrategyOptions(e){this._options=e}get long(){return"long"}get short(){return"short"}get account_currency(){return"USD"}get closedtrades(){return this._closedtrades}get opentrades(){return{opentrades:this._orders.length,capital_held:this._opentrades_capital_held}}get avg_losing_trade(){const e=this._losstrades;return e?Math.abs(this._grossloss/e):void 0}get avg_losing_trade_percent(){return this._avg_losing_trade_percent}get avg_trade(){if(this._closedtrades)return this._netprofit/this._closedtrades}get equity(){return this.initial_capital+this._netprofit+this._openprofit}get netprofit(){return this._netprofit}get eventrades(){return this._eventrades}get openprofit(){return this._openprofit}get avg_trade_percent(){return this._avg_trade_percent}get avg_winning_trade(){const e=this._wintrades;return e?Math.abs(this._grossprofit/e):void 0}get avg_winning_trade_percent(){return this._avg_winning_trade_percent}get initial_capital(){var e;return((e=this._options)==null?void 0:e.initial_capital)||0}get losstrades(){return this._losstrades}get grossloss(){return this._grossloss}get grossloss_percent(){return this._grossloss/this.initial_capital*100}get grossprofit(){return this._grossprofit}get grossprofit_percent(){return this._grossprofit/this.initial_capital*100}get wintrades(){return this._wintrades}get margin_liquidation_price(){if(!this._options)return;const{initial_capital:e,margin_long:t=0,margin_short:r=0,commission_type:o,commission_value:n=0}=this._options,b=this._orders[0].direction===i1.long?1:-1,z=(b===1?t:r)/100;if(z<=0)return;const{close:i}=this._variables,[s,O]=this._orders.reduce((a,u)=>{let[l,d]=a;const{in_price:A,qty:h=0,original_qty:q=0}=u,_=A*h;if(l+=_,n){let m=0;switch(o){case a2.percent:m=(_+h*i)*n/100;break;case a2.cashPerContract:m=h*n*2;break;case a2.cashPerOrder:m=h/q*n+n;break}d+=m}return[l,d]},[0,0]);return(s-(e+this._netprofit-O))*b/this._position_size/(1-b*z)}get max_contracts_held_all(){return this._max_contracts_held_all}get max_contracts_held_long(){return this._max_contracts_held_long}get max_contracts_held_short(){return this._max_contracts_held_short}get max_drawdown(){return this._max_drawdown}get max_runup(){return this._max_runup}get max_runup_percent(){return this._max_runup_percent}get max_drawdown_percent(){return this._max_drawdown_percent}get netprofit_percent(){return this._netprofit/this.initial_capital*100}get openprofit_percent(){return this._openprofit/(this.initial_capital+this._netprofit)*100}get position_avg_price(){return this._position_avg_price}get position_entry_name(){if(this._orders.length)return this._orders[0].id}get position_size(){return this._position_size}get summaryData(){return{position_size:this.position_size,position_avg_price:this.position_avg_price,position_entry_name:this.position_entry_name,openprofit_percent:this.openprofit_percent,netprofit_percent:this.netprofit_percent,max_drawdown_percent:this.max_drawdown_percent,max_runup_percent:this.max_runup_percent,max_drawdown:this.max_drawdown,max_runup:this.max_runup,max_contracts_held_long:this.max_contracts_held_long,max_contracts_held_short:this.max_contracts_held_short,max_contracts_held_all:this.max_contracts_held_all,avg_winning_trade_percent:this.avg_winning_trade_percent,avg_winning_trade:this.avg_winning_trade,avg_trade_percent:this.avg_trade_percent,avg_trade:this.avg_trade,avg_losing_trade:this.avg_losing_trade,avg_losing_trade_percent:this.avg_losing_trade_percent,wintrades:this.wintrades,losstrades:this.losstrades,eventrades:this.eventrades,grossprofit:this.grossprofit,grossprofit_percent:this.grossprofit_percent,grossloss:this.grossloss,grossloss_percent:this.grossloss_percent,openprofit:this.openprofit,initial_capital:this.initial_capital,netprofit:this.netprofit,closedtrades:this.closedtrades,opentrades:this.opentrades,equity:this.equity,margin_call_long:this.marginCallLong,margin_call_short:this.marginCallShort}}_getCommission(e,t){if(!this._options)return 0;const{commission_value:r=0,commission_type:o}=this._options,n=e*t;let b=0;switch(o){case a2.percent:b=n*r/100;break;case a2.cashPerContract:b=t*r;break;case a2.cashPerOrder:b=r;break}return b}}class qm{constructor(e){X(this,"_preAccdist");X(this,"_preNvi");X(this,"_prePvi");X(this,"_preObv");X(this,"_prePvt");X(this,"_preWad");X(this,"_preVwap");X(this,"_preValue");X(this,"_currentData");X(this,"_preData");X(this,"_id");this._preAccdist=0,this._preNvi=0,this._prePvi=0,this._preObv=0,this._prePvt=0,this._preWad=0,this._preVwap={},this._preValue={},this._currentData={},this._preData={},this._id=e}update(e){this._preValue={},e.barIndex!==this._currentData.barIndex&&(this._preData={...this._currentData}),this._currentData={...e}}get isRealTime(){return this._preData.barIndex===this._currentData.barIndex}get accdist(){if(this._preValue.accdist)return this._preValue.accdist;const{close:e,low:t,high:r,volume:o}=this._currentData;if(r===t)return this._preAccdist;const n=(e-t-(r-e))/(r-t)*o+this._preAccdist;return!this.isRealTime&&(this._preAccdist=n),this._preValue.accdist=n,n}get iii(){if(this._preValue.iii)return this._preValue.iii;const{close:e,low:t,high:r,volume:o}=this._currentData,n=(2*e-r-t)/((r-t)*o);return this._preValue.iii=n,n}get nvi(){return this._preValue.nvi?this._preValue.nvi:this._getNvi()}get wvad(){if(this._preValue.wvad)return this._preValue.wvad;const{close:e,low:t,high:r,volume:o,open:n}=this._currentData,b=(e-n)/(r-t)*o;return this._preValue.wvad=b,b}get obv(){if(this._preValue.obv)return this._preValue.obv;const{close:e,volume:t}=this._currentData,{close:r}=this._preData;if(r===void 0){this._preObv=0;return}const o=Math.sign(e-r)*t+this._preObv;return!this.isRealTime&&(this._preObv=o),this._preValue.obv=o,o}get pvi(){return this._preValue.pvi?this._preValue.pvi:this._getPvi()}get tr(){if(this._preValue.tr)return this._preValue.tr;const{low:e,high:t}=this._currentData,{close:r}=this._preData;if(r===void 0)return;const o=Math.max(t-e,Math.abs(t-r),Math.abs(e-r));return this._preValue.tr=o,o}get pvt(){if(this._preValue.pvt)return this._preValue.pvt;const{close:e,volume:t}=this._currentData,{close:r}=this._preData;if(r===void 0){this._prePvt=0;return}const o=(e-r)/r*t+this._prePvt;return!this.isRealTime&&(this._prePvt=o),this._preValue.pvt=o,o}get wad(){if(this._preValue.wad)return this._preValue.wad;const{close:e,high:t,low:r}=this._currentData,{close:o}=this._preData;if(o===void 0)return this._preWad=0,0;const n=Math.max(t,o),b=Math.min(r,o),z=e-o,s=(z>0?e-b:z<0?e-n:0)+this._preWad;return!this.isRealTime&&(this._preWad=s),this._preValue.wad=s,s}get vwap(){var O,a;if(this._preValue.vwap)return this._preValue.vwap;const{hlc3:e,volume:t}=this._currentData;let{sum:r=0,sumV:o=0,isReset:n}=this._preVwap;if(((a=(O=self.workerStorage)==null?void 0:O.get(this._id))==null?void 0:a.buildInFunctions.timeframe.change({timeframe:"1D"},"vwap_buildin"))&&(n=!0,r=o=0),!n)return;const z=e*t+r,i=t+o;!this.isRealTime&&(this._preVwap={sum:z,sumV:i,isReset:n});const s=z/i;return this._preValue.vwap=s,s}_getNvi(){const e=this._preNvi||1,{close:t=0,volume:r=0}=this._preData,{close:o,volume:n}=this._currentData;let b=1;const z=e||1;return o&&t?b=n<r?z+(o-t)/t*z:z:b=z,!this.isRealTime&&(this._preNvi=b),this._preValue.nvi=b,b}_getPvi(){const e=this._prePvi||1,{close:t=0,volume:r=0}=this._preData,{close:o,volume:n}=this._currentData;let b=1;const z=e||1;return o&&t?b=n>r?z+(o-t)/t*z:z:b=z,!this.isRealTime&&(this._prePvi=b),this._preValue.pvi=b,b}}class dm{constructor(){X(this,"_period");X(this,"_multiplier");X(this,"_unit");this._period="1",this._multiplier=1,this._unit="m"}update(e){if(!e)return;this._period=e;const[t,r]=aM(e);this._multiplier=t,this._unit=r}get isdaily(){return this._unit==="d"}get isdwm(){return["d","w","M"].includes(this._unit)}get isintraday(){return["s","m","h"].includes(this._unit)}get isminutes(){return this._unit==="m"}get ismonthly(){return this._unit==="M"}get isseconds(){return this._unit==="s"}get isweekly(){return this._unit==="w"}get multiplier(){return this._multiplier}get period(){return this._period}}class hm{constructor(){X(this,"_bgColor");X(this,"_fgColor");X(this,"isUseBgColor",!1)}updateOptions(e){e!=null&&e.bg_color&&(this._bgColor=e.bg_color,this._fgColor=this._contrastColor(e.bg_color))}get bg_color(){return this.isUseBgColor=!0,this._bgColor}get fg_color(){return this.isUseBgColor=!0,this._fgColor}get is_heikinashi(){return!1}get is_kagi(){return!1}get is_linebreak(){return!1}get is_pnf(){return!1}get is_range(){return!1}get is_renko(){return!1}get is_standard(){return!0}get left_visible_bar_time(){}get right_visible_bar_time(){}_parseColor(e){let t,r,o,n;if(e.startsWith("#")){t=parseInt(e.substring(1,3),16),r=parseInt(e.substring(3,5),16),o=parseInt(e.substring(5,7),16);const b=e.substring(7);b?n=parseInt(b,16)/255:n=1}else{const b=this._parserRgbColor(e);t=b[0]||0,r=b[1]||0,o=b[2]||0,n=b[3]||1}return{r:t,g:r,b:o,a:n}}_parserRgbColor(e){var t;return((t=e.match(/\d+/g))==null?void 0:t.map(Number))||[]}_contrastColor(e){const{r:t,g:r,b:o}=this._parseColor(e);return(299*t+587*r+114*o)/1e3>128?"#000000":"#ffffff"}}class Wm{constructor(){X(this,"_syminfo",{})}update(e){this._syminfo=e}get __syminfo(){return this._syminfo}get basecurrency(){return this._syminfo.basecurrency||""}get country(){return this._syminfo.country}get currency(){return this._syminfo.currency||"USD"}get description(){return this._syminfo.description||""}get employees(){return this._syminfo.employees||100}get expiration_date(){return this._syminfo.expiration_date}get industry(){return this._syminfo.industry}get minmove(){return this._syminfo.minmove&&Number(this._syminfo.minmove)}get mintick(){return this._syminfo.mintick}get pointvalue(){return this._syminfo.pointvalue&&Number(this._syminfo.pointvalue)}get prefix(){return this.tickerid.replace(`:${this.ticker}`,"")}get pricescale(){return this._syminfo.pricescale&&Number(this._syminfo.pricescale)}get recommendations_buy(){return this._syminfo.recommendations_buy}get recommendations_buy_strong(){return this._syminfo.recommendations_buy_strong}get recommendations_date(){return this._syminfo.recommendations_date}get recommendations_hold(){return this._syminfo.recommendations_hold}get recommendations_sell(){return this._syminfo.recommendations_sell}get recommendations_sell_strong(){return this._syminfo.recommendations_sell_strong}get recommendations_total(){return this._syminfo.recommendations_total}get root(){return this._syminfo.root||""}get sector(){return this._syminfo.sector}get session(){return this._syminfo.session||At.regular}get shareholders(){return this._syminfo.shareholders}get shares_outstanding_float(){return this._syminfo.shares_outstanding_float}get shares_outstanding_total(){return this._syminfo.shares_outstanding_total}get target_price_average(){return this._syminfo.target_price_average}get target_price_date(){return this._syminfo.target_price_date}get target_price_estimates(){return this._syminfo.pricescale}get target_price_high(){return this._syminfo.target_price_high}get target_price_low(){return this._syminfo.target_price_low}get target_price_median(){return this._syminfo.target_price_median}get ticker(){return this._syminfo.ticker||""}get tickerid(){return this._syminfo.tickerid||""}get timezone(){return this._syminfo.timezone||"UTC+8"}get type(){return this._syminfo.type||"forex"}get volumetype(){return this._syminfo.volumetype||"n/a"}}class _m{constructor(e){X(this,"_variables");this._variables=e}get future_amount(){}get future_ex_date(){}get future_pay_date(){}}class mm{constructor(e){X(this,"_variables");this._variables=e}get future_eps(){}get future_period_end_time(){}get future_revenue(){}get future_time(){}}class qp{constructor(e){X(this,"_cacheData");X(this,"_barIndex");X(this,"_isRealTimeBar");X(this,"_barstate");X(this,"_priceVariables");X(this,"_lastBarIndex");X(this,"_currentBarTime");X(this,"_lastBarTime");X(this,"_period");X(this,"_offsetTime");X(this,"_timeframe");X(this,"_ta");X(this,"_polyline");X(this,"_label");X(this,"_line");X(this,"_linefill");X(this,"_box");X(this,"_table");X(this,"_strategy");X(this,"_session");X(this,"syminfo");X(this,"chart");X(this,"earnings");X(this,"dividends");X(this,"_timeTradingday");X(this,"_mintick");X(this,"_cacheSpace");X(this,"_precision");X(this,"_nextBarTime");X(this,"_isRepeated");X(this,"_preCacheData");X(this,"__requestName","");X(this,"__isFirstRun",!1);X(this,"_maxBarsBack",0);X(this,"_maxBarsBackOfKey");X(this,"__isReqRepeated");X(this,"_newCacheData",{});this._cacheData={varData:{},varipData:{}},this._preCacheData={varData:{},varipData:{}},this._barIndex=0,this._lastBarIndex=0,this._currentBarTime=0,this._lastBarTime=0,this._offsetTime=0,this._period="",this._isRealTimeBar=!1,this._barstate=new Am,this._timeframe=new dm,this._priceVariables={close:0,open:0,low:0,high:0,volume:0},this._ta=new qm(e),this._polyline=new Cr(this),this._label=new Cr(this),this._line=new Cr(this,C0.LINE),this._linefill=new Cr(this,C0.LINEFILL),this._box=new Cr(this),this._table=new Cr(this),this._strategy=new lm(this),this._session=new fm(this),this.syminfo=new Wm,this.chart=new hm,this.earnings=new mm(this),this.dividends=new _m(this),this._cacheSpace=new Map,this._maxBarsBackOfKey=new Map}get table(){return this._table}get box(){return this._box}get linefill(){return this._linefill}get line(){return this._line}get polyline(){return this._polyline}get label(){return this._label}get ta(){return this._ta}get strategy(){return this._strategy}get session(){return this._session}get na(){}get last_bar_index(){return this._lastBarIndex}get bar_index(){return this._barIndex}get barstate(){return this._barstate}get close(){return this._priceVariables.close}get low(){return this._priceVariables.low}get open(){return this._priceVariables.open}get high(){return this._priceVariables.high}get volume(){return this._priceVariables.volume}get ohlc4(){const{close:e,open:t,high:r,low:o}=this._priceVariables;return(e+t+r+o)/4}get hl2(){const{high:e,low:t}=this._priceVariables;return(e+t)/2}get hlc3(){const{close:e,high:t,low:r}=this._priceVariables;return(e+t+r)/3}get hlcc4(){const{close:e,high:t,low:r}=this._priceVariables;return(e*2+t+r)/4}get hour(){return _1(this._currentBarTime).hour()}get minute(){return _1(this._currentBarTime).minute()}get second(){return _1(this._currentBarTime).second()}get month(){return _1(this._currentBarTime).month()+1}get year(){return _1(this._currentBarTime).year()}get dayofweek(){return _1(this.time_tradingday).weekday()}get dayofmonth(){return _1(this.time_tradingday).date()}get weekofyear(){return _1(this._currentBarTime).week()}get last_bar_time(){return this._lastBarTime}get time(){return this._currentBarTime}get time_close(){const[e,t]=aM(this._period);return _1(this._currentBarTime).add(e,t).valueOf()}get timenow(){return Date.now()}get time_tradingday(){return this._timeTradingday||this.getTimeTradingday(this._currentBarTime,this._period)}get timeframe(){return this._timeframe}get mintick(){return this._mintick}get __period(){return this._period}get precision(){return this._precision}get nextBarTime(){return this._nextBarTime}set max_bars_back(e){this._maxBarsBack=e}updateMaxLength(e){const{max_lines_count:t,max_labels_count:r,max_boxes_count:o,max_polylines_count:n}=e;o&&this._box.setMaxLen(o),r&&this._label.setMaxLen(r),t&&this._line.setMaxLen(t),n&&this._polyline.setMaxLen(n)}getTimeTradingday(e,t){const[r,o]=aM(t),n=_1(e);return["M","w","y","d"].includes(o)?n.valueOf():(n.subtract(this._offsetTime,"h"),n.startOf("d").add(this._offsetTime,"h").valueOf())}updateOptions(e){var s;const{interval:t="1D",offsetTime:r=5,mintick:o,chart:n,syminfo:b}=e,z=((s=o.toString().split(".")[1])==null?void 0:s.length)||5;this._precision=z;const i=lc(t);this._period=i,this._mintick=o,this._offsetTime=r,this._timeframe.update(i),this.chart.updateOptions(n),this.syminfo.update(b),this._barstate.isFirstRun=this.__isFirstRun}updateData(e,t){const{barIndex:r,c:o,o:n,h:b,l:z,volume:i,time:s,lastBarIndex:O,lastBarTime:a,isrealtime:u,time_tradingday:l,nextBarTime:d}=e;if(this._priceVariables={close:rn(o,this._precision),open:rn(n,this._precision),high:rn(b,this._precision),low:rn(z,this._precision),volume:Number(i)},this._isRealTimeBar=u,this._newCacheData={},r>this._barIndex){const{varData:A,varipData:h}=this._cacheData;this._preCacheData={varData:{},varipData:{}},u?(this._deepCopy(A,this._preCacheData.varData),this._deepCopy(h,this._preCacheData.varipData)):this._preCacheData={varData:{...A},varipData:{...h}}}this._isRepeated=t,this._timeTradingday=l,this._currentBarTime=s*1e3,this._lastBarIndex=O,this._barIndex=r,this._lastBarTime=a*1e3,this._nextBarTime=d*1e3,this._barstate.update(r,O,u,!0),this.ta.update({...this._priceVariables,hlc3:this.hlc3,barIndex:r})}getCacheData(e,t,r){const o=this.setCacheData(e,r),n=this._cacheSpace.get(e)||0;return t=Math.floor(t),n<t&&this._cacheSpace.set(e,t),o[o.length-1-t]}setCacheData(e,t){let r=this._cacheData[e]||{barIndex:-1,data:[]};if(r.barIndex>this._barIndex)return r.data;t=this._cacheCopy(t),r.barIndex===this._barIndex?r.data[r.data.length-1]=t:r.data.push(t);const o=this._cacheSpace.get(e)||0,n=ii.includes(e)?500:50;return o&&r.data.length>(this._maxBarsBackOfKey.get(e)||this._maxBarsBack||o+n)&&r.data.shift(),r.barIndex=this._barIndex,this._cacheData[e]=r,r.data}__setBarsBackOfKey(e,t){this._maxBarsBackOfKey.set(e,t)}__getBarsBackOfKey(e){return this._maxBarsBackOfKey.get(e)}getTypeInstance(e,t){return new Nu(e,t)}verifyVarAndVarip(e,t,r){const o=`${e}_${t.replace(/\$[\d]+_\$/g,"")}`,n=this._isRepeated||this.__isReqRepeated?this._preCacheData:this._cacheData;if(r==="var"&&n.varData.hasOwnProperty(o))return this._upadteChartDraws(n.varData[o]),!0;const b=this.__isReqRepeated?this._preCacheData.varipData:this._cacheData.varipData;return r==="varip"&&b.hasOwnProperty(o)?(this._upadteChartDraws(b[o]),!0):!1}getVarValue(e,t,r){const o=`${e}_${t.replace(/\$[\d]+_\$/g,"")}`;(this._isRepeated||this.__isReqRepeated)&&(this._cacheData.varData[o]=this._preCacheData.varData[o],this.__isReqRepeated&&(this._cacheData.varipData[o]=this._preCacheData.varipData[o]));const n=this._cacheData;if(r==="var"){const b=n.varData[o];return this._isRealTimeBar?this._newCacheData.hasOwnProperty(o)?this._newCacheData[o]:this._cacheCopy(b):b}return this._cacheData.varipData[o]}setVarValue(e,t,r,o){var z;const n=`${e}_${t.replace(/\$[\d]+_\$/g,"")}`;let b;switch(typeof r=="object"&&((z=r==null?void 0:r.varipKeys)!=null&&z.length)&&o!=="varip"&&(o="var",b=r.varipKeys),o){case"var":if(this._isRealTimeBar){if(b&&b.length)for(const i of b)this._cacheData.varData[n][i]=r[i];this._newCacheData[n]=r}else this._chartDrawsHandle(r,this._cacheData.varData[n]),this._cacheData.varData[n]=r;break;case"varip":this._chartDrawsHandle(r,this._cacheData.varipData[n]),this._cacheData.varipData[n]=r;break}return r}_upadteChartDraws(e){const t=this._isRealTimeBar?e==null?void 0:e.preId:e==null?void 0:e.id;if(t)switch(e==null?void 0:e.type){case C0.BOX:this._setChartDraw(t,this._box);break;case C0.LINE:this._setChartDraw(t,this._line);break;case C0.POLYLINE:this._setChartDraw(t,this._polyline);break;case C0.LABEL:this._setChartDraw(t,this._label);break;case C0.LINEFILL:this._setChartDraw(t,this._linefill);break;case C0.TABLE:this._setChartDraw(t,this._table);break}}_deepCopy(e,t){for(const r of Object.keys(e)){const o=e[r];typeof o!="object"||o!=null&&o.type?t[r]=o:o!=null&&o.copy?t[r]=o.copy():(t[r]={},this._deepCopy(o,t[r]))}}_cacheCopy(e){return typeof e!="object"||e!=null&&e.type?e:e!=null&&e.copy?e.copy():Object.assign({},e)}_setChartDraw(e,t){const r=t.getInstance(e);let o=t.get(e);if(!o||!r)return;const n=r.updateId()||e;n===e&&!this._isRealTimeBar||(o=JSON.parse(JSON.stringify(o)),r.data=o,t.deleteHandle(e,!1),t.set(n,o,r))}_chartDrawsHandle(e,t){const r=t==null?void 0:t.id;let o=e==null?void 0:e.id;o&&e.data&&(e.data.isVar=!0),r!==o&&r&&t.data&&(t.data.isVar=!1)}add(e,t){return Array.isArray(e)&&Array.isArray(t)?D2.uniq([...e,...t]):typeof e=="number"||typeof t=="number"?Number(e)+Number(t):(e||"")+(t||"")}sub(e,t){return Array.isArray(e)&&Array.isArray(t)?e.filter(r=>!t.includes(r)):Number(e)-Number(t)}div(e,t){if(t)return e/t}equal(e,t,r,o){if(isNaN(e)&&t===0||isNaN(t)&&e===0||isNaN(e)&&isNaN(t))return!0;if(e!==void 0&&t!==void 0)return e==t;if(!(r.endsWith(C0.BOOL)&&e===void 0))return(r.endsWith(C0.FLOAT)||r.endsWith(C0.INT)||o.endsWith(C0.FLOAT)||o.endsWith(C0.INT))&&e===void 0&&t===void 0?!1:r.endsWith(C0.STRING)&&e===""&&t===void 0||o.endsWith(C0.STRING)&&t===""&&e===void 0?!0:r.endsWith(C0.NA)&&o.endsWith(C0.NA)?!1:e==t}compareDataHandle(e){if(typeof e!="number"||!e)return e;const t=String(e);if(!t.includes(".")&&!/[eE]/.test(t))return e;const[r,o]=e.toFixed(11).split(".");return+`${r}.${o.slice(0,10)}`}againAssignParse(e,t){var o;if(t)return;const r=(o=e==null?void 0:e.constructor)==null?void 0:o.name;if(r)switch(r){case Ko.name:case C3.name:case Qo.name:case S3.name:case Jo.name:case x3.name:e==null||e.delete();break}}}class Cr{constructor(e,t,r=50){X(this,"_all");X(this,"_allInstance");X(this,"_pseudoArrayAll");X(this,"_maxLength");X(this,"_deleteIds");X(this,"_variables");X(this,"_preDeleteIds");X(this,"_againAddItems");X(this,"_tmpData");X(this,"_tmpInstance");X(this,"_type");X(this,"_tmpIds",[]);this._all=new Map,this._allInstance=new Map,this._pseudoArrayAll=new M1,this._maxLength=r,this._deleteIds=new Map,this._variables=e,this._preDeleteIds=new Map,this._againAddItems=[],this._tmpData=new Map,this._tmpInstance=new Map,this._type=t}setMaxLen(e){this._maxLength=e}get size(){return this._all.size+this._tmpData.size}get data(){const e=[],t=D2.flatMap([...this._deleteIds.values()]),r=D2.uniq([...this._tmpData.keys(),...this._all.keys()]),o=[];for(const n of r)if(!t.some(b=>b.key===n)){const b=this._tmpData.get(n)||this._all.get(n),z=b==null?void 0:b.id;b&&!o.includes(z)&&(o.push(z),e.push(b))}return this._variables._isRealTimeBar&&this._preDeleteIds.set(this._variables.last_bar_index,this._deleteIds.get(this._variables.last_bar_index)||[]),this._tmpDataHandle(),this._type===C0.LINEFILL?e:e.slice(-this._maxLength)}get all(){return this._pseudoArrayAll._value=[...this._allInstance.values(),...this._tmpInstance.values()],this._pseudoArrayAll}add(e,t,r){if(this.set(e,t,r),!this._variables._isRealTimeBar&&this._type!==C0.LINEFILL&&this._all.size>this._maxLength){const{bar_index:o}=t;for(const[n,b]of this._all){const{isVar:z,id:i,bar_index:s}=b;if(s===o)break;if(z)continue;this.deleteHandle(i);break}}}getValOfBarIndex(e){let t=[];const r=D2.uniq([...this._all.keys(),...this._tmpData.keys()]),o=D2.flatMap([...this._deleteIds.values()]);for(const n of e){const b=r.filter(z=>z.endsWith(`_${n}`));for(const z of b){if(o.some(s=>s.key===z))continue;const i=this._tmpData.get(z)||this._all.get(z);i&&t.push(i)}}return this._againAddItems.length&&(t=this._againAddItems.concat(t),this._againAddItems=[]),this._tmpDataHandle(),t.length?this._type===C0.LINEFILL?t:t.slice(-this._maxLength):void 0}getDeleteIds(e){let t=[];const{bar_index:r,_isRealTimeBar:o}=this._variables,n=[];for(const z of e){let i=[...this._deleteIds.get(z)||[]];const s=this._preDeleteIds.get(z)||[];if(z===r&&o){let O=[];for(const a of s){const u=i.findIndex(l=>l.id===a.id);if(u===-1){const l=this._all.get(a.key);l&&n.push(l)}else O.push(a),i.splice(u,1)}this._preDeleteIds.set(r,D2.uniqBy([...i,...O],"id"))}else{const O=[];for(const a of i)s.some(u=>u.id===a.id)||O.push(a);i=O,this._preDeleteIds.delete(z)}t=t.concat(i)}const b=[...this._all.values(),...this._tmpData.values()];for(const z of this._tmpIds)b.some(i=>i.id===z.id)||t.push(z);return this._againAddItems=n,D2.uniq(t.map(z=>z.id))}set(e,t,r){this._variables._isRealTimeBar?(this._tmpData.set(e,t),this._tmpInstance.set(e,r)):(this._all.set(e,t),this._allInstance.set(e,r))}get(e){const t=this._all.get(e);let r=this._tmpData.get(e);return this._variables._isRealTimeBar?(r||(r=t?{...t}:void 0,r&&this._tmpData.set(e,r)),r):(this._tmpData.clear(),this._tmpInstance.clear(),t)}getInstance(e){return this._allInstance.get(e)}deleteHandle(e,t=!0){var r;if(this._type===C0.LINE&&t){const o=(r=this._allInstance.get(e))==null?void 0:r.__fillKeys;if(o&&o.length)for(const n of o)this._variables.linefill.deleteHandle(n)}this._variables._isRealTimeBar?(this._tmpData.delete(e),this._tmpInstance.delete(e)):(this._all.delete(e),this._allInstance.delete(e))}delete(e,t,r){const o=this._all.get(e);if(this._variables._isRealTimeBar||this.deleteHandle(e),!(this._variables.__isFirstRun&&!this._variables._isRealTimeBar)&&typeof t=="number"){const n=this._deleteIds.get(t)||[];n.push({key:e,id:(o==null?void 0:o.id)||r}),this._deleteIds.set(t,n)}}_tmpDataHandle(){var e;this._tmpIds=[];for(const[t]of this._tmpInstance){const r=(e=this._tmpData.get(t))==null?void 0:e.id;r&&this._tmpIds.push({id:r,key:t})}this._tmpData.clear(),this._tmpInstance.clear(),this._deleteIds.clear()}}/**
86
86
  * @license
87
87
  * Copyright 2019 Google LLC
88
88
  * SPDX-License-Identifier: Apache-2.0