diff --git a/links/common.pine.link b/links/common.pine.link index 2853f6176..dbfb6fed6 100644 --- a/links/common.pine.link +++ b/links/common.pine.link @@ -32,6 +32,7 @@ SMA40 = ta.sma(close, 40) plot(SMA40, title='SMA40') SMA50 = ta.sma(close, 50) plot(SMA50, title='SMA50') + SMA75 = ta.sma(close, 75) plot(SMA75, title='SMA75') SMA100 = ta.sma(close, 100) @@ -120,6 +121,12 @@ plot(RSI21[1], title='RSI21[1]') ATR = ta.rma(ta.tr(true), 14) plot(ATR, title='ATR') +ATR := ta.rma(ta.tr(true), 20) +plot(ATR, title='ATR20') + +ATR := ta.rma(ta.tr(true), 1) +plot(ATR, title='ATR1') + // Average True Range Percent (ATRP) plot(ATR / close * 100, title='ATRP') @@ -199,6 +206,10 @@ Mom14 = close - close[14] plot(Mom14, title='Mom_14') plot(Mom14[1], title='Mom_14[1]') +Mom80 = close - close[80] +plot(Mom80, title='Mom_80') +plot(Mom80[1], title='Mom_80[1]') + // study(title="Stochastic", shorttitle="Stoch") lengthStoch = 14 smoothKStoch = 3 @@ -216,6 +227,38 @@ plot(dStoch_14_1_3, title='Stoch.D_14_1_3') plot(kStoch_14_1_3[1], title='Stoch.K[1]_14_1_3') plot(dStoch_14_1_3[1], title='Stoch.D[1]_14_1_3') +lengthStoch := 5 +smoothKStoch := 3 +smoothDStoch := 3 +kStoch_5_1_3 = ta.stoch(close, high, low, lengthStoch) +kStoch := ta.sma(kStoch_5_1_3, smoothKStoch) +dStoch := ta.sma(kStoch, smoothDStoch) +plot(kStoch, title='Stoch5.K') +plot(dStoch, title='Stoch5.D') +plot(kStoch[1], title='Stoch5.K[1]') +plot(dStoch[1], title='Stoch5.D[1]') +dStoch_5_1_3 = ta.sma(kStoch_5_1_3, smoothDStoch) +plot(kStoch_5_1_3, title='Stoch5.K_5_1_3') +plot(dStoch_5_1_3, title='Stoch5.D_5_1_3') +plot(kStoch_5_1_3[1], title='Stoch5.K[1]_5_1_3') +plot(dStoch_5_1_3[1], title='Stoch5.D[1]_5_1_3') + +lengthStoch := 9 +smoothKStoch := 3 +smoothDStoch := 3 +kStoch_9_1_3 = ta.stoch(close, high, low, lengthStoch) +kStoch := ta.sma(kStoch_9_1_3, smoothKStoch) +dStoch := ta.sma(kStoch, smoothDStoch) +plot(kStoch, title='Stoch9.K') +plot(dStoch, title='Stoch9.D') +plot(kStoch[1], title='Stoch9.K[1]') +plot(dStoch[1], title='Stoch9.D[1]') +dStoch_9_1_3 = ta.sma(kStoch_9_1_3, smoothDStoch) +plot(kStoch_9_1_3, title='Stoch9.K_5_1_3') +plot(dStoch_9_1_3, title='Stoch9.D_5_1_3') +plot(kStoch_9_1_3[1], title='Stoch9.K[1]_5_1_3') +plot(dStoch_9_1_3[1], title='Stoch9.D[1]_5_1_3') + // average volume AvgVol = ta.sma(volume, 10) plot(AvgVol, title='average_volume_10d_calc') @@ -229,6 +272,22 @@ CCI = ta.cci(hlc3, 20) plot(CCI, title='CCI20') plot(CCI[1], title='CCI20[1]') +CCI := ta.cci(close, 20) +plot(CCI, title='CCCI20') +plot(CCI[1], title='CCCI20[1]') + +CCI := ta.cci(close, 7) +plot(CCI, title='CCCI7') +plot(CCI[1], title='CCCI7[1]') + +CCI := ta.cci(hlc3, 14) +plot(CCI, title='CCI14') +plot(CCI[1], title='CCI14[1]') + +CCI := ta.cci(hlc3, 100) +plot(CCI, title='CCI100') +plot(CCI[1], title='CCI100[1]') + // Donchian Channels donchLen = 20 donchUpper = ta.highest(donchLen) @@ -237,6 +296,34 @@ plot(donchLower, title='DonchCh20.Lower') plot(donchUpper, title='DonchCh20.Upper') plot(math.avg(donchUpper, donchLower), title='DonchCh20.Middle') +donchLen := 96 +donchUpper := ta.highest(donchLen) +donchLower := ta.lowest(donchLen) +plot(donchLower, title='DonchCh96.Lower') +plot(donchUpper, title='DonchCh96.Upper') +plot(math.avg(donchUpper, donchLower), title='DonchCh96.Middle') + +donchLen := 13 +donchUpper := ta.highest(donchLen) +donchLower := ta.lowest(donchLen) +plot(donchLower, title='DonchCh13.Lower') +plot(donchUpper, title='DonchCh13.Upper') +plot(math.avg(donchUpper, donchLower), title='DonchCh13.Middle') + +donchLen := 10 +donchUpper := ta.highest(donchLen) +donchLower := ta.lowest(donchLen) +plot(donchLower, title='DonchCh10.Lower') +plot(donchUpper, title='DonchCh10.Upper') +plot(math.avg(donchUpper, donchLower), title='DonchCh10.Middle') + +donchLen := 1 +donchUpper := ta.highest(donchLen) +donchLower := ta.lowest(donchLen) +plot(donchLower, title='DonchCh1.Lower') +plot(donchUpper, title='DonchCh1.Upper') +plot(math.avg(donchUpper, donchLower), title='DonchCh1.Middle') + // Hull Moving Average hullMALength = 9 hullMA_n2ma = 2 * ta.wma(close, hullMALength / 2) @@ -244,6 +331,48 @@ hullMA_nma = ta.wma(close, hullMALength) HullMA9 = ta.wma(hullMA_n2ma - hullMA_nma, math.floor(math.sqrt(hullMALength))) plot(HullMA9, title='HullMA9') +hullMALength := 200 +hullMA_n2ma := 2 * ta.wma(close, hullMALength / 2) +hullMA_nma := ta.wma(close, hullMALength) +HullMA200 = ta.wma(hullMA_n2ma - hullMA_nma, math.floor(math.sqrt(hullMALength))) +plot(HullMA200, title='HullMA200') + +hullMALength := 1728 +hullMA_n2ma := 2 * ta.wma(close, hullMALength / 2) +hullMA_nma := ta.wma(close, hullMALength) +HullMA1728 = ta.wma(hullMA_n2ma - hullMA_nma, math.floor(math.sqrt(hullMALength))) +plot(HullMA1728, title='HullMA1728') + +hullMALength := 50 +hullMA_n2ma := 2 * ta.wma(close, hullMALength / 2) +hullMA_nma := ta.wma(close, hullMALength) +HullMA50 = ta.wma(hullMA_n2ma - hullMA_nma, math.floor(math.sqrt(hullMALength))) +plot(HullMA50, title='HullMA50') + +hullMALength := 100 +hullMA_n2ma := 2 * ta.wma(close, hullMALength / 2) +hullMA_nma := ta.wma(close, hullMALength) +HullMA100 = ta.wma(hullMA_n2ma - hullMA_nma, math.floor(math.sqrt(hullMALength))) +plot(HullMA100, title='HullMA100') + +hullMALength := 20 +hullMA_n2ma := 2 * ta.wma(close, hullMALength / 2) +hullMA_nma := ta.wma(close, hullMALength) +HullMA20 = ta.wma(hullMA_n2ma - hullMA_nma, math.floor(math.sqrt(hullMALength))) +plot(HullMA20, title='HullMA20') + +hullMALength := 144 +hullMA_n2ma := 2 * ta.wma(close, hullMALength / 2) +hullMA_nma := ta.wma(close, hullMALength) +HullMA144 = ta.wma(hullMA_n2ma - hullMA_nma, math.floor(math.sqrt(hullMALength))) +plot(HullMA144, title='HullMA144') + +hullMALength := 256 +hullMA_n2ma := 2 * ta.wma(close, hullMALength / 2) +hullMA_nma := ta.wma(close, hullMALength) +HullMA256 = ta.wma(hullMA_n2ma - hullMA_nma, math.floor(math.sqrt(hullMALength))) +plot(HullMA256, title='HullMA256') + // Awesome Oscillator AO = ta.sma(hl2, 5) - ta.sma(hl2, 34) plot(AO, title='AO') @@ -255,6 +384,10 @@ Aroon_length = 14 plot(100 * (ta.highestbars(high, Aroon_length + 1) + Aroon_length) / Aroon_length, title='Aroon.Up') plot(100 * (ta.lowestbars(low, Aroon_length + 1) + Aroon_length) / Aroon_length, title='Aroon.Down') +Aroon_length := 25 +plot(100 * (ta.highestbars(high, Aroon_length + 1) + Aroon_length) / Aroon_length, title='Aroon25.Up') +plot(100 * (ta.lowestbars(low, Aroon_length + 1) + Aroon_length) / Aroon_length, title='Aroon25.Down') + // value traded (dollar volume) plot(volume * close * syminfo.pointvalue, title='Value.Traded') @@ -274,6 +407,9 @@ plot(PSAR, title='P.SAR') lenMF = 14 plot(ta.mfi(hlc3, lenMF), title='MoneyFlow') +lenMF := 12 +plot(ta.mfi(hlc3, lenMF), title='MoneyFlow12') + // study("My Chaikin Money Flow") lenCMF = 20 accdistRaw = not(close == low and close == high or high == low) ? (close - low - (high - close)) / (high - low) * volume : 0 @@ -291,8 +427,23 @@ highest = ta.highest(high, WR_period) WR = (highest - close) / (highest - ta.lowest(low, WR_period)) * -100 plot(WR, title='W.R') +WR_period := 10 +highest := ta.highest(high, WR_period) +WR := (highest - close) / (highest - ta.lowest(low, WR_period)) * -100 +plot(WR, title='W.R14') + +WR_period := 12 +highest := ta.highest(high, WR_period) +WR := (highest - close) / (highest - ta.lowest(low, WR_period)) * -100 +plot(WR, title='W.R12') + // Rate Of Change (ROC) plot(ta.roc(close, 9), title='ROC') +plot(ta.roc(close, 1), title='ROC1') +plot(ta.roc(close, 14), title='ROC14') +plot(ta.roc(close, 2), title='ROC2') +plot(ta.roc(close, 12), title='ROC12') + // Bull / Bear Power BullPower = high - EMA13 @@ -350,6 +501,12 @@ plot(IC_Lead2_20_60_120_30[IC_displacement], title='Ichimoku.Lead2_20_60_120_30' VWMA = ta.vwma(close, 20) plot(VWMA, title='VWMA') +VWMA := ta.vwma(close, 200) +plot(VWMA, title='VWMA200') + +VWMA := ta.vwma(close, 50) +plot(VWMA, title='VWMA50') + // Average Day Range (ADR) smaHigh = ta.sma(high, 14) smaLow = ta.sma(low, 14) diff --git a/scanner.data.bonds.json b/scanner.data.bonds.json index 819fda963..f4c194602 100644 --- a/scanner.data.bonds.json +++ b/scanner.data.bonds.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$4(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$4($0);close~$0;v^high~v^time/1000~v^low~v:if(high\u003e$0){$0=high~$1=time/1000~$2=low~}~v:if(low\u003c$2){$2=low~}~$0~$1~$0~$1~$2~v^low~v^time/1000~v:if(low\u003c$10){$10=low~$11=time/1000~}~$10~$11~$10~$11~v^open~timenow-315532800000~$2($18,i:3652)~timenow-157766400000~$2($20,i:1826)~timenow-94608000000~$2($22,i:1095)~timenow-31449600000~$2($24,i:364)~s2:$0($25,i:364):s2~s2:$1($25,i:364):s2~timenow-15552000000~$2($30,i:180)~s2:$0($31,i:180):s2~s2:$1($31,i:180):s2~timenow-7776000000~$2($36,i:90)~s2:$0($37,i:90):s2~s2:$1($37,i:90):s2~time-2592000000~timenow-2592000000~$2($43,i:30)~$2($42,i:30)~s2:$0($44,i:30):s2~s2:$1($44,i:30):s2~timenow-604800000~time-604800000~$2($50,i:7)~$2($51,i:7)~s2:$0($52,i:7):s2~s2:$1($52,i:7):s2~$3($53)~$3($45)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$2($62,i:365)~$6()~((close-open@4)/open@4)*100~$5($52,i:7)~$5($44,i:30)~$5($37,i:90)~$5($31,i:180)~$5($63,i:365)~$5($23,i:1095)~$5($21,i:1826)~$5($19,i:3652)~time_tradingday/1000~#0~$75~$76-$76@1~na():f~v:if(!($76@1\u003c0)\u0026\u0026!($76\u003c0)){$78=($77/$76@1)*100~}~$78~timenow-86400000~$2($81,i:1)~v:max_bars_back(close,365):v~close@$82~close@$44~close@$63~$5!$6!$7!$8!$9!$13!$14!$15!$16!$17!$26!$27!$28!$29!$32!$33!$34!$35!$38!$39!$40!$41!$46!$47!$48!$49!$54!$56!$58!$59!$60!$61!$65!$66!$67!$68!$69!$70!$71!$72!$73!$64!$74!$76!$77!$80!$84!$85!$86;t:str.substring(ticker,0,str.length(ticker):i-1):t~t:sc(t:syminfo.prefix,t:':',t:$9):t~i:na():f~sym($10,period,period,0,0,1,'NONE',0,0,$11)|$7()|s49:$8($13):s49~$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63", + "defval": "i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$4(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$4($0);close~$0;$7();v^high~v^time/1000~v^low~v:if(high\u003e$0){$0=high~$1=time/1000~$2=low~}~v:if(low\u003c$2){$2=low~}~$0~$1~$0~$1~$2~v^low~v^time/1000~v:if(low\u003c$10){$10=low~$11=time/1000~}~$10~$11~$10~$11~v^open~timenow-315532800000~$2($18,i:3652)~timenow-157766400000~$2($20,i:1826)~timenow-94608000000~$2($22,i:1095)~timenow-31449600000~$2($24,i:364)~s2:$0($25,i:364):s2~s2:$1($25,i:364):s2~timenow-15552000000~$2($30,i:180)~s2:$0($31,i:180):s2~s2:$1($31,i:180):s2~timenow-7776000000~$2($36,i:90)~s2:$0($37,i:90):s2~s2:$1($37,i:90):s2~time-2592000000~timenow-2592000000~$2($43,i:30)~$2($42,i:30)~s2:$0($44,i:30):s2~s2:$1($44,i:30):s2~timenow-604800000~time-604800000~$2($50,i:7)~$2($51,i:7)~s2:$0($52,i:7):s2~s2:$1($52,i:7):s2~$3($53)~$3($45)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$2($62,i:365)~$6()~((close-open@4)/open@4)*100~$5($52,i:7)~$5($44,i:30)~$5($37,i:90)~$5($31,i:180)~$5($63,i:365)~$5($23,i:1095)~$5($21,i:1826)~$5($19,i:3652)~time_tradingday/1000~#0~$75~$76-$76@1~na():f~v:if(!($76@1\u003c0)\u0026\u0026!($76\u003c0)){$78=($77/$76@1)*100~}~$78~timenow-86400000~$2($81,i:1)~v:max_bars_back(close,365):v~close@$82~close@$44~close@$63~$5!$6!$7!$8!$9!$13!$14!$15!$16!$17!$26!$27!$28!$29!$32!$33!$34!$35!$38!$39!$40!$41!$46!$47!$48!$49!$54!$56!$58!$59!$60!$61!$65!$66!$67!$68!$69!$70!$71!$72!$73!$64!$74!$76!$77!$80!$84!$85!$86;t:str.substring(ticker,0,str.length(ticker):i-1):t~t:sc(t:syminfo.prefix,t:':',t:$10):t~i:na():f~sym($11,period,period,0,0,1,'NONE',0,0,$12)|$8()|s49:$9($14):s49~$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64", "isFake": false }, { diff --git a/scanner.data.coin.json b/scanner.data.coin.json index a7c8fd905..a6c75dcce 100644 --- a/scanner.data.coin.json +++ b/scanner.data.coin.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$13(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$13($0);sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\u003c$161~close\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\u003e$147\u0026\u0026close\u003e$146\u0026\u0026close\u003c$145\u0026\u0026close@1\u003c$144\u0026\u0026close\u003e$144,$147\u003e$146\u0026\u0026close\u003c$147\u0026\u0026close\u003e$145\u0026\u0026close@1\u003e$144\u0026\u0026close\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\u003c30\u0026\u0026$190@1\u003c$190,$190\u003e70\u0026\u0026$190@1\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\u003c20\u0026\u0026$102\u003c20\u0026\u0026$101\u003e$102\u0026\u0026$101@1\u003c$102@1,$101\u003e80\u0026\u0026$102\u003e80\u0026\u0026$101\u003c$102\u0026\u0026$101@1\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\u003c(-100)\u0026\u0026$193\u003e$193@1,$193\u003e100\u0026\u0026$193\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\u003e20\u0026\u0026$61@1\u003c$62@1\u0026\u0026$61\u003e$62,$60\u003e20\u0026\u0026$61@1\u003e$62@1\u0026\u0026$61\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\u003e0\u0026\u0026$119@1\u003e0\u0026\u0026$119\u003e$119@1\u0026\u0026$119@2\u003e$119@1,crossunder($119,0)||$119\u003c0\u0026\u0026$119@1\u003c0\u0026\u0026$119\u003c$119@1\u0026\u0026$119@2\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\u003e$96@1,$96\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\u003e$94,$93\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\u0026\u0026$133\u003c20\u0026\u0026$134\u003c20\u0026\u0026$133\u003e$134\u0026\u0026$133@1\u003c$134@1,$163\u0026\u0026$133\u003e80\u0026\u0026$134\u003e80\u0026\u0026$133\u003c$134\u0026\u0026$133@1\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\u003c(-80)\u0026\u0026$136\u003e$136@1,$136\u003e(-20)\u0026\u0026$136\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\u0026\u0026$139\u003c0\u0026\u0026$139\u003e$139@1,$162\u0026\u0026$138\u003e0\u0026\u0026$138\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\u003e70,$141\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\u003c$225~$224\u003e$225~high-$222~$223-low~close\u003c$221~close\u003e$221~$228\u003e0*$224~$229\u003e0*$224~open\u003cclose~open\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\u003c100\u0026\u0026(abs($229-$228)/$228)*100\u003c100~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$223\u003ehl2\u0026\u0026$229\u003e=2.0*$224\u0026\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$222\u003chl2\u0026\u0026$228\u003e=2.0*$224\u0026\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\u0026\u0026$226@1\u0026\u0026$227){v:if_($230\u0026\u0026$235@2\u0026\u0026$222@1\u003c$223@2\u0026\u0026$234\u0026\u0026$222\u003e=$237@2\u0026\u0026$222\u003c$222@2\u0026\u0026$222@1\u003c$223){$253=1.0~}_{v:if($231\u0026\u0026$234@2\u0026\u0026$223@1\u003e$222@2\u0026\u0026$235\u0026\u0026$223\u003c=$237@2\u0026\u0026$223\u003e$223@2\u0026\u0026$223@1\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\u0026\u0026$228\u003c=0*$224\u0026\u0026$229\u003c=0*$224~$260\u0026\u0026$234~$260\u0026\u0026$235~$262?1:0~$261?1:0~$236\u003e0\u0026\u0026$224\u003c=$236*5/100~$265\u0026\u0026$238~$265\u0026\u0026$228\u003c=$224~$265\u0026\u0026$229\u003c=$224~$266\u0026\u0026!$267\u0026\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\u0026\u0026$235@1\u0026\u0026$230@1\u0026\u0026$234\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$227@1\u0026\u0026$234@1\u0026\u0026$231@1\u0026\u0026$235\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$229\u003e($236/100)*75?1:0~$228\u003e($236/100)*75?1:0~$229\u003e=($236/100)*34\u0026\u0026$228\u003e=($236/100)*34\u0026\u0026!$265~$276\u0026\u0026$234?1:0~$276\u0026\u0026$235?1:0~$236*5/100\u003e$228~$236*5/100\u003e$229~0.0~0.0~v:if($227\u0026\u0026$227@1\u0026\u0026$227@2){v:if($234\u0026\u0026$234@1\u0026\u0026$234@2){$281=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$279\u0026\u0026$279@1\u0026\u0026$279@2~}~v:if($235\u0026\u0026$235@1\u0026\u0026$235@2){$282=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$280\u0026\u0026$280@1\u0026\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\u0026\u0026$234\u0026\u0026$227\u0026\u0026$235@1\u0026\u0026$226@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$231\u0026\u0026$235\u0026\u0026$227\u0026\u0026$234@1\u0026\u0026$226@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$230@2\u0026\u0026$235@2\u0026\u0026$265@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$234\u0026\u0026high@1\u003clow?1:0~$231@2\u0026\u0026$234@2\u0026\u0026$265@1\u0026\u0026high@2\u003clow@1\u0026\u0026$235\u0026\u0026low@1\u003ehigh?1:0~$266@2\u0026\u0026$266@1\u0026\u0026$266~$222@1\u003c$223~$223@1\u003e$222~$292\u0026\u0026$230@2\u0026\u0026$294@1\u0026\u0026$293?1:0~$292\u0026\u0026$231@2\u0026\u0026$293@1\u0026\u0026$294?1:0~$262@1\u0026\u0026$261\u0026\u0026high@1\u003clow?1:0~$261@1\u0026\u0026$262\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~v^open~v^high~v^low~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($310!=$310@1){$306=$303~$309=close@1~$307=$304~$308=$305~$303=open~$304=high~$305=low~}_{$304=max($304,high)~$305=min($305,low)~}~($307+$308+$309)/3~$8($312)~$8($312*2-$308)~$8($312*2-$307)~$8($312+1*($307-$308))~$8($312-1*($307-$308))~$8($312+2*($307-$308))~$8($312-2*($307-$308))~$8($312)~$8($312+0.382*($307-$308))~$8($312-0.382*($307-$308))~$8($312+0.618*($307-$308))~$8($312-0.618*($307-$308))~$8($312+1*($307-$308))~$8($312-1*($307-$308))~($307+$308+$303*2)/4~$8($327)~$8($327*2-$308)~$8($327*2-$307)~$8($327+1*($307-$308))~$8($327-1*($307-$308))~$8($307+2*($327-$308))~$8($308-2*($307-$327))~$307+$308*2+$309~v:if($309==$306){$335=$307+$308+$309*2~}~v:if($309\u003e$306){$335=$307*2+$308+$309~}~$8($335/4)~$8($335/2-$308)~$8($335/2-$307)~$8($312)~$8($309+0.09166666666666667*($307-$308))~$8($309-0.09166666666666667*($307-$308))~$8($309+0.18333333333333335*($307-$308))~$8($309-0.18333333333333335*($307-$308))~$8($309+0.275*($307-$308))~$8($309-0.275*($307-$308))~v^high~v^time/1000~v^low~v:if(high\u003e$348){$348=high~$349=time/1000~$350=low~}~v:if(low\u003c$350){$350=low~}~$348~$349~$348~$349~$350~v^low~v^time/1000~v:if(low\u003c$358){$358=low~$359=time/1000~}~$358~$359~$358~$359~v^open~timenow-315532800000~$11($366,i:3652)~timenow-157766400000~$11($368,i:1826)~timenow-94608000000~$11($370,i:1095)~timenow-31449600000~$11($372,i:364)~s2:$9($373,i:364):s2~s2:$10($373,i:364):s2~timenow-15552000000~$11($378,i:180)~s2:$9($379,i:180):s2~s2:$10($379,i:180):s2~timenow-7776000000~$11($384,i:90)~s2:$9($385,i:90):s2~s2:$10($385,i:90):s2~time-2592000000~timenow-2592000000~$11($391,i:30)~$11($390,i:30)~s2:$9($392,i:30):s2~s2:$10($392,i:30):s2~timenow-604800000~time-604800000~$11($398,i:7)~$11($399,i:7)~s2:$9($400,i:7):s2~s2:$10($400,i:7):s2~$12($401)~$12($393)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$11($410,i:365)~$15()~((close-open@4)/open@4)*100~$14($400,i:7)~$14($392,i:30)~$14($385,i:90)~$14($379,i:180)~$14($411,i:365)~$14($371,i:1095)~$14($369,i:1826)~$14($367,i:3652)~time_tradingday/1000~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$328!$329!$330!$331!$332!$333!$334!$338!$339!$340!$341!$342!$343!$344!$345!$346!$347!$353!$354!$355!$356!$357!$361!$362!$363!$364!$365!$374!$375!$376!$377!$380!$381!$382!$383!$386!$387!$388!$389!$394!$395!$396!$397!$402!$404!$406!$407!$408!$409!$413!$414!$415!$416!$417!$418!$419!$420!$421!$412!$422;s258:$16():s258~$17!$18!$19!$20!$21!$22!$23!$24!$25!$102!$27!$28!$29!$30!$105!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$120!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274", + "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$13(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$13($0);sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\u003c$229~close\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\u003e$212\u0026\u0026close\u003e$211\u0026\u0026close\u003c$210\u0026\u0026close@1\u003c$209\u0026\u0026close\u003e$209,$212\u003e$211\u0026\u0026close\u003c$212\u0026\u0026close\u003e$210\u0026\u0026close@1\u003e$209\u0026\u0026close\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\u003c30\u0026\u0026$258@1\u003c$258,$258\u003e70\u0026\u0026$258@1\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\u003c20\u0026\u0026$107\u003c20\u0026\u0026$106\u003e$107\u0026\u0026$106@1\u003c$107@1,$106\u003e80\u0026\u0026$107\u003e80\u0026\u0026$106\u003c$107\u0026\u0026$106@1\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\u003c(-100)\u0026\u0026$261\u003e$261@1,$261\u003e100\u0026\u0026$261\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\u003e20\u0026\u0026$64@1\u003c$65@1\u0026\u0026$64\u003e$65,$63\u003e20\u0026\u0026$64@1\u003e$65@1\u0026\u0026$64\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\u003e0\u0026\u0026$174@1\u003e0\u0026\u0026$174\u003e$174@1\u0026\u0026$174@2\u003e$174@1,crossunder($174,0)||$174\u003c0\u0026\u0026$174@1\u003c0\u0026\u0026$174\u003c$174@1\u0026\u0026$174@2\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\u003e$99@1,$99\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\u003e$97,$96\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\u0026\u0026$191\u003c20\u0026\u0026$192\u003c20\u0026\u0026$191\u003e$192\u0026\u0026$191@1\u003c$192@1,$231\u0026\u0026$191\u003e80\u0026\u0026$192\u003e80\u0026\u0026$191\u003c$192\u0026\u0026$191@1\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\u003c(-80)\u0026\u0026$194\u003e$194@1,$194\u003e(-20)\u0026\u0026$194\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\u0026\u0026$204\u003c0\u0026\u0026$204\u003e$204@1,$230\u0026\u0026$203\u003e0\u0026\u0026$203\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\u003e70,$206\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\u003c$293~$292\u003e$293~high-$290~$291-low~close\u003c$289~close\u003e$289~$296\u003e0*$292~$297\u003e0*$292~open\u003cclose~open\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\u003c100\u0026\u0026(abs($297-$296)/$296)*100\u003c100~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$291\u003ehl2\u0026\u0026$297\u003e=2.0*$292\u0026\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$290\u003chl2\u0026\u0026$296\u003e=2.0*$292\u0026\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\u0026\u0026$294@1\u0026\u0026$295){v:if_($298\u0026\u0026$303@2\u0026\u0026$290@1\u003c$291@2\u0026\u0026$302\u0026\u0026$290\u003e=$305@2\u0026\u0026$290\u003c$290@2\u0026\u0026$290@1\u003c$291){$321=1.0~}_{v:if($299\u0026\u0026$302@2\u0026\u0026$291@1\u003e$290@2\u0026\u0026$303\u0026\u0026$291\u003c=$305@2\u0026\u0026$291\u003e$291@2\u0026\u0026$291@1\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\u0026\u0026$296\u003c=0*$292\u0026\u0026$297\u003c=0*$292~$328\u0026\u0026$302~$328\u0026\u0026$303~$330?1:0~$329?1:0~$304\u003e0\u0026\u0026$292\u003c=$304*5/100~$333\u0026\u0026$306~$333\u0026\u0026$296\u003c=$292~$333\u0026\u0026$297\u003c=$292~$334\u0026\u0026!$335\u0026\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\u0026\u0026$303@1\u0026\u0026$298@1\u0026\u0026$302\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$295@1\u0026\u0026$302@1\u0026\u0026$299@1\u0026\u0026$303\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$297\u003e($304/100)*75?1:0~$296\u003e($304/100)*75?1:0~$297\u003e=($304/100)*34\u0026\u0026$296\u003e=($304/100)*34\u0026\u0026!$333~$344\u0026\u0026$302?1:0~$344\u0026\u0026$303?1:0~$304*5/100\u003e$296~$304*5/100\u003e$297~0.0~0.0~v:if($295\u0026\u0026$295@1\u0026\u0026$295@2){v:if($302\u0026\u0026$302@1\u0026\u0026$302@2){$349=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$347\u0026\u0026$347@1\u0026\u0026$347@2~}~v:if($303\u0026\u0026$303@1\u0026\u0026$303@2){$350=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$348\u0026\u0026$348@1\u0026\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\u0026\u0026$302\u0026\u0026$295\u0026\u0026$303@1\u0026\u0026$294@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$299\u0026\u0026$303\u0026\u0026$295\u0026\u0026$302@1\u0026\u0026$294@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$298@2\u0026\u0026$303@2\u0026\u0026$333@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$302\u0026\u0026high@1\u003clow?1:0~$299@2\u0026\u0026$302@2\u0026\u0026$333@1\u0026\u0026high@2\u003clow@1\u0026\u0026$303\u0026\u0026low@1\u003ehigh?1:0~$334@2\u0026\u0026$334@1\u0026\u0026$334~$290@1\u003c$291~$291@1\u003e$290~$360\u0026\u0026$298@2\u0026\u0026$362@1\u0026\u0026$361?1:0~$360\u0026\u0026$299@2\u0026\u0026$361@1\u0026\u0026$362?1:0~$330@1\u0026\u0026$329\u0026\u0026high@1\u003clow?1:0~$329@1\u0026\u0026$330\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~v^open~v^high~v^low~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($378!=$378@1){$374=$371~$377=close@1~$375=$372~$376=$373~$371=open~$372=high~$373=low~}_{$372=max($372,high)~$373=min($373,low)~}~($375+$376+$377)/3~$8($380)~$8($380*2-$376)~$8($380*2-$375)~$8($380+1*($375-$376))~$8($380-1*($375-$376))~$8($380+2*($375-$376))~$8($380-2*($375-$376))~$8($380)~$8($380+0.382*($375-$376))~$8($380-0.382*($375-$376))~$8($380+0.618*($375-$376))~$8($380-0.618*($375-$376))~$8($380+1*($375-$376))~$8($380-1*($375-$376))~($375+$376+$371*2)/4~$8($395)~$8($395*2-$376)~$8($395*2-$375)~$8($395+1*($375-$376))~$8($395-1*($375-$376))~$8($375+2*($395-$376))~$8($376-2*($375-$395))~$375+$376*2+$377~v:if($377==$374){$403=$375+$376+$377*2~}~v:if($377\u003e$374){$403=$375*2+$376+$377~}~$8($403/4)~$8($403/2-$376)~$8($403/2-$375)~$8($380)~$8($377+0.09166666666666667*($375-$376))~$8($377-0.09166666666666667*($375-$376))~$8($377+0.18333333333333335*($375-$376))~$8($377-0.18333333333333335*($375-$376))~$8($377+0.275*($375-$376))~$8($377-0.275*($375-$376))~v^high~v^time/1000~v^low~v:if(high\u003e$416){$416=high~$417=time/1000~$418=low~}~v:if(low\u003c$418){$418=low~}~$416~$417~$416~$417~$418~v^low~v^time/1000~v:if(low\u003c$426){$426=low~$427=time/1000~}~$426~$427~$426~$427~v^open~timenow-315532800000~$11($434,i:3652)~timenow-157766400000~$11($436,i:1826)~timenow-94608000000~$11($438,i:1095)~timenow-31449600000~$11($440,i:364)~s2:$9($441,i:364):s2~s2:$10($441,i:364):s2~timenow-15552000000~$11($446,i:180)~s2:$9($447,i:180):s2~s2:$10($447,i:180):s2~timenow-7776000000~$11($452,i:90)~s2:$9($453,i:90):s2~s2:$10($453,i:90):s2~time-2592000000~timenow-2592000000~$11($459,i:30)~$11($458,i:30)~s2:$9($460,i:30):s2~s2:$10($460,i:30):s2~timenow-604800000~time-604800000~$11($466,i:7)~$11($467,i:7)~s2:$9($468,i:7):s2~s2:$10($468,i:7):s2~$12($469)~$12($461)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$11($478,i:365)~$15()~((close-open@4)/open@4)*100~$14($468,i:7)~$14($460,i:30)~$14($453,i:90)~$14($447,i:180)~$14($479,i:365)~$14($439,i:1095)~$14($437,i:1826)~$14($435,i:3652)~time_tradingday/1000~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$381!$382!$383!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$396!$397!$398!$399!$400!$401!$402!$406!$407!$408!$409!$410!$411!$412!$413!$414!$415!$421!$422!$423!$424!$425!$429!$430!$431!$432!$433!$442!$443!$444!$445!$448!$449!$450!$451!$454!$455!$456!$457!$462!$463!$464!$465!$470!$472!$474!$475!$476!$477!$481!$482!$483!$484!$485!$486!$487!$488!$489!$480!$490;s316:$16():s316~$17!$18!$19!$20!$21!$22!$23!$24!$25!$104!$27!$28!$29!$30!$107!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295!$296!$297!$298!$299!$300!$301!$302!$303!$304!$305!$306!$307!$308!$309!$310!$311!$312!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$330!$331!$332", "isFake": false }, { @@ -1054,6 +1054,238 @@ { "id": "plot_257", "type": "line" + }, + { + "id": "plot_258", + "type": "line" + }, + { + "id": "plot_259", + "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" + }, + { + "id": "plot_273", + "type": "line" + }, + { + "id": "plot_274", + "type": "line" + }, + { + "id": "plot_275", + "type": "line" + }, + { + "id": "plot_276", + "type": "line" + }, + { + "id": "plot_277", + "type": "line" + }, + { + "id": "plot_278", + "type": "line" + }, + { + "id": "plot_279", + "type": "line" + }, + { + "id": "plot_280", + "type": "line" + }, + { + "id": "plot_281", + "type": "line" + }, + { + "id": "plot_282", + "type": "line" + }, + { + "id": "plot_283", + "type": "line" + }, + { + "id": "plot_284", + "type": "line" + }, + { + "id": "plot_285", + "type": "line" + }, + { + "id": "plot_286", + "type": "line" + }, + { + "id": "plot_287", + "type": "line" + }, + { + "id": "plot_288", + "type": "line" + }, + { + "id": "plot_289", + "type": "line" + }, + { + "id": "plot_290", + "type": "line" + }, + { + "id": "plot_291", + "type": "line" + }, + { + "id": "plot_292", + "type": "line" + }, + { + "id": "plot_293", + "type": "line" + }, + { + "id": "plot_294", + "type": "line" + }, + { + "id": "plot_295", + "type": "line" + }, + { + "id": "plot_296", + "type": "line" + }, + { + "id": "plot_297", + "type": "line" + }, + { + "id": "plot_298", + "type": "line" + }, + { + "id": "plot_299", + "type": "line" + }, + { + "id": "plot_300", + "type": "line" + }, + { + "id": "plot_301", + "type": "line" + }, + { + "id": "plot_302", + "type": "line" + }, + { + "id": "plot_303", + "type": "line" + }, + { + "id": "plot_304", + "type": "line" + }, + { + "id": "plot_305", + "type": "line" + }, + { + "id": "plot_306", + "type": "line" + }, + { + "id": "plot_307", + "type": "line" + }, + { + "id": "plot_308", + "type": "line" + }, + { + "id": "plot_309", + "type": "line" + }, + { + "id": "plot_310", + "type": "line" + }, + { + "id": "plot_311", + "type": "line" + }, + { + "id": "plot_312", + "type": "line" + }, + { + "id": "plot_313", + "type": "line" + }, + { + "id": "plot_314", + "type": "line" + }, + { + "id": "plot_315", + "type": "line" } ], "version": "", @@ -1075,43 +1307,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -1119,43 +1351,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -1163,43 +1395,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1207,43 +1439,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1251,43 +1483,43 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { - "title": "Ichimoku.Lead1_20_60_120_30", + "title": "DonchCh20.Lower", "isHidden": false }, "plot_142": { - "title": "Ichimoku.Lead2_20_60_120_30", + "title": "DonchCh20.Upper", "isHidden": false }, "plot_143": { - "title": "VWMA", + "title": "DonchCh20.Middle", "isHidden": false }, "plot_144": { - "title": "ADR", + "title": "DonchCh96.Lower", "isHidden": false }, "plot_145": { - "title": "ADRP", + "title": "DonchCh96.Upper", "isHidden": false }, "plot_146": { - "title": "Rec.HullMA9", + "title": "DonchCh96.Middle", "isHidden": false }, "plot_147": { - "title": "Rec.VWMA", + "title": "DonchCh13.Lower", "isHidden": false }, "plot_148": { - "title": "Rec.Ichimoku", + "title": "DonchCh13.Upper", "isHidden": false }, "plot_149": { - "title": "Recommend.MA", + "title": "DonchCh13.Middle", "isHidden": false }, "plot_15": { @@ -1295,43 +1527,43 @@ "isHidden": false }, "plot_150": { - "title": "Rec.Stoch.RSI", + "title": "DonchCh10.Lower", "isHidden": false }, "plot_151": { - "title": "Rec.WR", + "title": "DonchCh10.Upper", "isHidden": false }, "plot_152": { - "title": "Rec.BBPower", + "title": "DonchCh10.Middle", "isHidden": false }, "plot_153": { - "title": "Rec.UO", + "title": "DonchCh1.Lower", "isHidden": false }, "plot_154": { - "title": "Recommend.Other", + "title": "DonchCh1.Upper", "isHidden": false }, "plot_155": { - "title": "Recommend.All", + "title": "DonchCh1.Middle", "isHidden": false }, "plot_156": { - "title": "Candle.Hammer", + "title": "HullMA9", "isHidden": false }, "plot_157": { - "title": "Candle.HangingMan", + "title": "HullMA200", "isHidden": false }, "plot_158": { - "title": "Candle.InvertedHammer", + "title": "HullMA1728", "isHidden": false }, "plot_159": { - "title": "Candle.ShootingStar", + "title": "HullMA50", "isHidden": false }, "plot_16": { @@ -1339,43 +1571,43 @@ "isHidden": false }, "plot_160": { - "title": "Candle.MorningStar", + "title": "HullMA100", "isHidden": false }, "plot_161": { - "title": "Candle.EveningStar", + "title": "HullMA20", "isHidden": false }, "plot_162": { - "title": "Candle.Marubozu.Black", + "title": "HullMA144", "isHidden": false }, "plot_163": { - "title": "Candle.Marubozu.White", + "title": "HullMA256", "isHidden": false }, "plot_164": { - "title": "Candle.Doji", + "title": "AO", "isHidden": false }, "plot_165": { - "title": "Candle.Doji.Dragonfly", + "title": "AO[1]", "isHidden": false }, "plot_166": { - "title": "Candle.Doji.Gravestone", + "title": "AO[2]", "isHidden": false }, "plot_167": { - "title": "Candle.Harami.Bullish", + "title": "Aroon.Up", "isHidden": false }, "plot_168": { - "title": "Candle.Harami.Bearish", + "title": "Aroon.Down", "isHidden": false }, "plot_169": { - "title": "Candle.LongShadow.Lower", + "title": "Aroon25.Up", "isHidden": false }, "plot_17": { @@ -1383,43 +1615,43 @@ "isHidden": false }, "plot_170": { - "title": "Candle.LongShadow.Upper", + "title": "Aroon25.Down", "isHidden": false }, "plot_171": { - "title": "Candle.SpinningTop.White", + "title": "Value.Traded", "isHidden": false }, "plot_172": { - "title": "Candle.SpinningTop.Black", + "title": "KltChnl.upper", "isHidden": false }, "plot_173": { - "title": "Candle.3WhiteSoldiers", + "title": "KltChnl.lower", "isHidden": false }, "plot_174": { - "title": "Candle.3BlackCrows", + "title": "KltChnl.basis", "isHidden": false }, "plot_175": { - "title": "Candle.Engulfing.Bullish", + "title": "P.SAR", "isHidden": false }, "plot_176": { - "title": "Candle.Engulfing.Bearish", + "title": "MoneyFlow", "isHidden": false }, "plot_177": { - "title": "Candle.AbandonedBaby.Bullish", + "title": "MoneyFlow12", "isHidden": false }, "plot_178": { - "title": "Candle.AbandonedBaby.Bearish", + "title": "ChaikinMoneyFlow", "isHidden": false }, "plot_179": { - "title": "Candle.TriStar.Bullish", + "title": "Stoch.RSI.K", "isHidden": false }, "plot_18": { @@ -1427,377 +1659,609 @@ "isHidden": false }, "plot_180": { - "title": "Candle.TriStar.Bearish", + "title": "Stoch.RSI.D", "isHidden": false }, "plot_181": { - "title": "Candle.Kicking.Bullish", + "title": "W.R", "isHidden": false }, "plot_182": { - "title": "Candle.Kicking.Bearish", + "title": "W.R14", "isHidden": false }, "plot_183": { - "title": "VWAP", + "title": "W.R12", "isHidden": false }, "plot_184": { - "title": "Pivot.M.Classic.Middle", + "title": "ROC", "isHidden": false }, "plot_185": { - "title": "Pivot.M.Classic.R1", + "title": "ROC1", "isHidden": false }, "plot_186": { + "title": "ROC14", + "isHidden": false + }, + "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { + "title": "Ichimoku.Lead1_20_60_120_30", + "isHidden": false + }, + "plot_198": { + "title": "Ichimoku.Lead2_20_60_120_30", + "isHidden": false + }, + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", + "isHidden": false + }, + "plot_201": { + "title": "VWMA50", + "isHidden": false + }, + "plot_202": { + "title": "ADR", + "isHidden": false + }, + "plot_203": { + "title": "ADRP", + "isHidden": false + }, + "plot_204": { + "title": "Rec.HullMA9", + "isHidden": false + }, + "plot_205": { + "title": "Rec.VWMA", + "isHidden": false + }, + "plot_206": { + "title": "Rec.Ichimoku", + "isHidden": false + }, + "plot_207": { + "title": "Recommend.MA", + "isHidden": false + }, + "plot_208": { + "title": "Rec.Stoch.RSI", + "isHidden": false + }, + "plot_209": { + "title": "Rec.WR", + "isHidden": false + }, + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { + "title": "Rec.BBPower", + "isHidden": false + }, + "plot_211": { + "title": "Rec.UO", + "isHidden": false + }, + "plot_212": { + "title": "Recommend.Other", + "isHidden": false + }, + "plot_213": { + "title": "Recommend.All", + "isHidden": false + }, + "plot_214": { + "title": "Candle.Hammer", + "isHidden": false + }, + "plot_215": { + "title": "Candle.HangingMan", + "isHidden": false + }, + "plot_216": { + "title": "Candle.InvertedHammer", + "isHidden": false + }, + "plot_217": { + "title": "Candle.ShootingStar", + "isHidden": false + }, + "plot_218": { + "title": "Candle.MorningStar", + "isHidden": false + }, + "plot_219": { + "title": "Candle.EveningStar", + "isHidden": false + }, + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { + "title": "Candle.Marubozu.Black", + "isHidden": false + }, + "plot_221": { + "title": "Candle.Marubozu.White", + "isHidden": false + }, + "plot_222": { + "title": "Candle.Doji", + "isHidden": false + }, + "plot_223": { + "title": "Candle.Doji.Dragonfly", + "isHidden": false + }, + "plot_224": { + "title": "Candle.Doji.Gravestone", + "isHidden": false + }, + "plot_225": { + "title": "Candle.Harami.Bullish", + "isHidden": false + }, + "plot_226": { + "title": "Candle.Harami.Bearish", + "isHidden": false + }, + "plot_227": { + "title": "Candle.LongShadow.Lower", + "isHidden": false + }, + "plot_228": { + "title": "Candle.LongShadow.Upper", + "isHidden": false + }, + "plot_229": { + "title": "Candle.SpinningTop.White", + "isHidden": false + }, + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { + "title": "Candle.SpinningTop.Black", + "isHidden": false + }, + "plot_231": { + "title": "Candle.3WhiteSoldiers", + "isHidden": false + }, + "plot_232": { + "title": "Candle.3BlackCrows", + "isHidden": false + }, + "plot_233": { + "title": "Candle.Engulfing.Bullish", + "isHidden": false + }, + "plot_234": { + "title": "Candle.Engulfing.Bearish", + "isHidden": false + }, + "plot_235": { + "title": "Candle.AbandonedBaby.Bullish", + "isHidden": false + }, + "plot_236": { + "title": "Candle.AbandonedBaby.Bearish", + "isHidden": false + }, + "plot_237": { + "title": "Candle.TriStar.Bullish", + "isHidden": false + }, + "plot_238": { + "title": "Candle.TriStar.Bearish", + "isHidden": false + }, + "plot_239": { + "title": "Candle.Kicking.Bullish", + "isHidden": false + }, + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { + "title": "Candle.Kicking.Bearish", + "isHidden": false + }, + "plot_241": { + "title": "VWAP", + "isHidden": false + }, + "plot_242": { + "title": "Pivot.M.Classic.Middle", + "isHidden": false + }, + "plot_243": { + "title": "Pivot.M.Classic.R1", + "isHidden": false + }, + "plot_244": { "title": "Pivot.M.Classic.S1", "isHidden": false }, - "plot_187": { + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_215": { + "plot_273": { "title": "High.All", "isHidden": false }, - "plot_216": { + "plot_274": { "title": "High.All.Date", "isHidden": false }, - "plot_217": { + "plot_275": { "title": "High.All.Calc", "isHidden": false }, - "plot_218": { + "plot_276": { "title": "High.All.Calc.Date", "isHidden": false }, - "plot_219": { + "plot_277": { "title": "Low.After.High.All", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_220": { + "plot_278": { "title": "Low.All", "isHidden": false }, - "plot_221": { + "plot_279": { "title": "Low.All.Date", "isHidden": false }, - "plot_222": { + "plot_28": { + "title": "EMA10", + "isHidden": false + }, + "plot_280": { "title": "Low.All.Calc", "isHidden": false }, - "plot_223": { + "plot_281": { "title": "Low.All.Calc.Date", "isHidden": false }, - "plot_224": { + "plot_282": { "title": "Open.All.Calc", "isHidden": false }, - "plot_225": { + "plot_283": { "title": "price_52_week_low", "isHidden": false }, - "plot_226": { + "plot_284": { "title": "price_52_week_low_date", "isHidden": false }, - "plot_227": { + "plot_285": { "title": "price_52_week_high", "isHidden": false }, - "plot_228": { + "plot_286": { "title": "price_52_week_high_date", "isHidden": false }, - "plot_229": { + "plot_287": { "title": "Low.6M", "isHidden": false }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_230": { + "plot_288": { "title": "Low.6M.Date", "isHidden": false }, - "plot_231": { + "plot_289": { "title": "High.6M", "isHidden": false }, - "plot_232": { + "plot_29": { + "title": "EMA12", + "isHidden": false + }, + "plot_290": { "title": "High.6M.Date", "isHidden": false }, - "plot_233": { + "plot_291": { "title": "Low.3M", "isHidden": false }, - "plot_234": { + "plot_292": { "title": "Low.3M.Date", "isHidden": false }, - "plot_235": { + "plot_293": { "title": "High.3M", "isHidden": false }, - "plot_236": { + "plot_294": { "title": "High.3M.Date", "isHidden": false }, - "plot_237": { + "plot_295": { "title": "Low.1M", "isHidden": false }, - "plot_238": { + "plot_296": { "title": "Low.1M.Date", "isHidden": false }, - "plot_239": { + "plot_297": { "title": "High.1M", "isHidden": false }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_240": { + "plot_298": { "title": "High.1M.Date", "isHidden": false }, - "plot_241": { + "plot_299": { "title": "Low.5D", "isHidden": false }, - "plot_242": { + "plot_3": { + "title": "SMA7", + "isHidden": false + }, + "plot_30": { + "title": "EMA13", + "isHidden": false + }, + "plot_300": { "title": "High.5D", "isHidden": false }, - "plot_243": { + "plot_301": { "title": "Volatility.W", "isHidden": false }, - "plot_244": { + "plot_302": { "title": "Volatility.M", "isHidden": false }, - "plot_245": { + "plot_303": { "title": "Volatility.D", "isHidden": false }, - "plot_246": { + "plot_304": { "title": "first_bar_time", "isHidden": false }, - "plot_247": { + "plot_305": { "title": "Perf.5D", "isHidden": false }, - "plot_248": { + "plot_306": { "title": "Perf.W", "isHidden": false }, - "plot_249": { + "plot_307": { "title": "Perf.1M", "isHidden": false }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_250": { + "plot_308": { "title": "Perf.3M", "isHidden": false }, - "plot_251": { + "plot_309": { "title": "Perf.6M", "isHidden": false }, - "plot_252": { + "plot_31": { + "title": "EMA20", + "isHidden": false + }, + "plot_310": { "title": "Perf.Y", "isHidden": false }, - "plot_253": { + "plot_311": { "title": "Perf.3Y", "isHidden": false }, - "plot_254": { + "plot_312": { "title": "Perf.5Y", "isHidden": false }, - "plot_255": { + "plot_313": { "title": "Perf.10Y", "isHidden": false }, - "plot_256": { + "plot_314": { "title": "Perf.YTD", "isHidden": false }, - "plot_257": { + "plot_315": { "title": "time_business_day", "isHidden": false }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, - "plot_28": { - "title": "EMA10", - "isHidden": false - }, - "plot_29": { - "title": "EMA12", - "isHidden": false - }, - "plot_3": { - "title": "SMA7", - "isHidden": false - }, - "plot_30": { - "title": "EMA13", - "isHidden": false - }, - "plot_31": { - "title": "EMA20", - "isHidden": false - }, "plot_32": { "title": "EMA21", "isHidden": false @@ -1915,7 +2379,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1923,43 +2387,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1967,43 +2431,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -2011,43 +2475,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -2055,43 +2519,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.crypto.json b/scanner.data.crypto.json index 99588054c..2ddfb341d 100644 --- a/scanner.data.crypto.json +++ b/scanner.data.crypto.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$13(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$13($0);sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\u003c$161~close\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\u003e$147\u0026\u0026close\u003e$146\u0026\u0026close\u003c$145\u0026\u0026close@1\u003c$144\u0026\u0026close\u003e$144,$147\u003e$146\u0026\u0026close\u003c$147\u0026\u0026close\u003e$145\u0026\u0026close@1\u003e$144\u0026\u0026close\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\u003c30\u0026\u0026$190@1\u003c$190,$190\u003e70\u0026\u0026$190@1\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\u003c20\u0026\u0026$102\u003c20\u0026\u0026$101\u003e$102\u0026\u0026$101@1\u003c$102@1,$101\u003e80\u0026\u0026$102\u003e80\u0026\u0026$101\u003c$102\u0026\u0026$101@1\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\u003c(-100)\u0026\u0026$193\u003e$193@1,$193\u003e100\u0026\u0026$193\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\u003e20\u0026\u0026$61@1\u003c$62@1\u0026\u0026$61\u003e$62,$60\u003e20\u0026\u0026$61@1\u003e$62@1\u0026\u0026$61\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\u003e0\u0026\u0026$119@1\u003e0\u0026\u0026$119\u003e$119@1\u0026\u0026$119@2\u003e$119@1,crossunder($119,0)||$119\u003c0\u0026\u0026$119@1\u003c0\u0026\u0026$119\u003c$119@1\u0026\u0026$119@2\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\u003e$96@1,$96\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\u003e$94,$93\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\u0026\u0026$133\u003c20\u0026\u0026$134\u003c20\u0026\u0026$133\u003e$134\u0026\u0026$133@1\u003c$134@1,$163\u0026\u0026$133\u003e80\u0026\u0026$134\u003e80\u0026\u0026$133\u003c$134\u0026\u0026$133@1\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\u003c(-80)\u0026\u0026$136\u003e$136@1,$136\u003e(-20)\u0026\u0026$136\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\u0026\u0026$139\u003c0\u0026\u0026$139\u003e$139@1,$162\u0026\u0026$138\u003e0\u0026\u0026$138\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\u003e70,$141\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\u003c$225~$224\u003e$225~high-$222~$223-low~close\u003c$221~close\u003e$221~$228\u003e0*$224~$229\u003e0*$224~open\u003cclose~open\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\u003c100\u0026\u0026(abs($229-$228)/$228)*100\u003c100~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$223\u003ehl2\u0026\u0026$229\u003e=2.0*$224\u0026\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$222\u003chl2\u0026\u0026$228\u003e=2.0*$224\u0026\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\u0026\u0026$226@1\u0026\u0026$227){v:if_($230\u0026\u0026$235@2\u0026\u0026$222@1\u003c$223@2\u0026\u0026$234\u0026\u0026$222\u003e=$237@2\u0026\u0026$222\u003c$222@2\u0026\u0026$222@1\u003c$223){$253=1.0~}_{v:if($231\u0026\u0026$234@2\u0026\u0026$223@1\u003e$222@2\u0026\u0026$235\u0026\u0026$223\u003c=$237@2\u0026\u0026$223\u003e$223@2\u0026\u0026$223@1\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\u0026\u0026$228\u003c=0*$224\u0026\u0026$229\u003c=0*$224~$260\u0026\u0026$234~$260\u0026\u0026$235~$262?1:0~$261?1:0~$236\u003e0\u0026\u0026$224\u003c=$236*5/100~$265\u0026\u0026$238~$265\u0026\u0026$228\u003c=$224~$265\u0026\u0026$229\u003c=$224~$266\u0026\u0026!$267\u0026\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\u0026\u0026$235@1\u0026\u0026$230@1\u0026\u0026$234\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$227@1\u0026\u0026$234@1\u0026\u0026$231@1\u0026\u0026$235\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$229\u003e($236/100)*75?1:0~$228\u003e($236/100)*75?1:0~$229\u003e=($236/100)*34\u0026\u0026$228\u003e=($236/100)*34\u0026\u0026!$265~$276\u0026\u0026$234?1:0~$276\u0026\u0026$235?1:0~$236*5/100\u003e$228~$236*5/100\u003e$229~0.0~0.0~v:if($227\u0026\u0026$227@1\u0026\u0026$227@2){v:if($234\u0026\u0026$234@1\u0026\u0026$234@2){$281=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$279\u0026\u0026$279@1\u0026\u0026$279@2~}~v:if($235\u0026\u0026$235@1\u0026\u0026$235@2){$282=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$280\u0026\u0026$280@1\u0026\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\u0026\u0026$234\u0026\u0026$227\u0026\u0026$235@1\u0026\u0026$226@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$231\u0026\u0026$235\u0026\u0026$227\u0026\u0026$234@1\u0026\u0026$226@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$230@2\u0026\u0026$235@2\u0026\u0026$265@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$234\u0026\u0026high@1\u003clow?1:0~$231@2\u0026\u0026$234@2\u0026\u0026$265@1\u0026\u0026high@2\u003clow@1\u0026\u0026$235\u0026\u0026low@1\u003ehigh?1:0~$266@2\u0026\u0026$266@1\u0026\u0026$266~$222@1\u003c$223~$223@1\u003e$222~$292\u0026\u0026$230@2\u0026\u0026$294@1\u0026\u0026$293?1:0~$292\u0026\u0026$231@2\u0026\u0026$293@1\u0026\u0026$294?1:0~$262@1\u0026\u0026$261\u0026\u0026high@1\u003clow?1:0~$261@1\u0026\u0026$262\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~v^open~v^high~v^low~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($310!=$310@1){$306=$303~$309=close@1~$307=$304~$308=$305~$303=open~$304=high~$305=low~}_{$304=max($304,high)~$305=min($305,low)~}~($307+$308+$309)/3~$8($312)~$8($312*2-$308)~$8($312*2-$307)~$8($312+1*($307-$308))~$8($312-1*($307-$308))~$8($312+2*($307-$308))~$8($312-2*($307-$308))~$8($312)~$8($312+0.382*($307-$308))~$8($312-0.382*($307-$308))~$8($312+0.618*($307-$308))~$8($312-0.618*($307-$308))~$8($312+1*($307-$308))~$8($312-1*($307-$308))~($307+$308+$303*2)/4~$8($327)~$8($327*2-$308)~$8($327*2-$307)~$8($327+1*($307-$308))~$8($327-1*($307-$308))~$8($307+2*($327-$308))~$8($308-2*($307-$327))~$307+$308*2+$309~v:if($309==$306){$335=$307+$308+$309*2~}~v:if($309\u003e$306){$335=$307*2+$308+$309~}~$8($335/4)~$8($335/2-$308)~$8($335/2-$307)~$8($312)~$8($309+0.09166666666666667*($307-$308))~$8($309-0.09166666666666667*($307-$308))~$8($309+0.18333333333333335*($307-$308))~$8($309-0.18333333333333335*($307-$308))~$8($309+0.275*($307-$308))~$8($309-0.275*($307-$308))~v^high~v^time/1000~v^low~v:if(high\u003e$348){$348=high~$349=time/1000~$350=low~}~v:if(low\u003c$350){$350=low~}~$348~$349~$348~$349~$350~v^low~v^time/1000~v:if(low\u003c$358){$358=low~$359=time/1000~}~$358~$359~$358~$359~v^open~timenow-315532800000~$11($366,i:3652)~timenow-157766400000~$11($368,i:1826)~timenow-94608000000~$11($370,i:1095)~timenow-31449600000~$11($372,i:364)~s2:$9($373,i:364):s2~s2:$10($373,i:364):s2~timenow-15552000000~$11($378,i:180)~s2:$9($379,i:180):s2~s2:$10($379,i:180):s2~timenow-7776000000~$11($384,i:90)~s2:$9($385,i:90):s2~s2:$10($385,i:90):s2~time-2592000000~timenow-2592000000~$11($391,i:30)~$11($390,i:30)~s2:$9($392,i:30):s2~s2:$10($392,i:30):s2~timenow-604800000~time-604800000~$11($398,i:7)~$11($399,i:7)~s2:$9($400,i:7):s2~s2:$10($400,i:7):s2~$12($401)~$12($393)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$11($410,i:365)~$15()~((close-open@4)/open@4)*100~$14($400,i:7)~$14($392,i:30)~$14($385,i:90)~$14($379,i:180)~$14($411,i:365)~$14($371,i:1095)~$14($369,i:1826)~$14($367,i:3652)~syminfo.volumetype=='base'?volume:(syminfo.volumetype=='quote')\u0026\u0026close!=0?volume/close:na():f~syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?volume*close:na():f~time_tradingday/1000~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$328!$329!$330!$331!$332!$333!$334!$338!$339!$340!$341!$342!$343!$344!$345!$346!$347!$353!$354!$355!$356!$357!$361!$362!$363!$364!$365!$374!$375!$376!$377!$380!$381!$382!$383!$386!$387!$388!$389!$394!$395!$396!$397!$402!$404!$406!$407!$408!$409!$413!$414!$415!$416!$417!$418!$419!$420!$421!$412!$422!$423!$424;s260:$16():s260~$17!$18!$19!$20!$21!$22!$23!$24!$25!$102!$27!$28!$29!$30!$105!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$120!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276", + "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$13(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$13($0);sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\u003c$229~close\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\u003e$212\u0026\u0026close\u003e$211\u0026\u0026close\u003c$210\u0026\u0026close@1\u003c$209\u0026\u0026close\u003e$209,$212\u003e$211\u0026\u0026close\u003c$212\u0026\u0026close\u003e$210\u0026\u0026close@1\u003e$209\u0026\u0026close\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\u003c30\u0026\u0026$258@1\u003c$258,$258\u003e70\u0026\u0026$258@1\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\u003c20\u0026\u0026$107\u003c20\u0026\u0026$106\u003e$107\u0026\u0026$106@1\u003c$107@1,$106\u003e80\u0026\u0026$107\u003e80\u0026\u0026$106\u003c$107\u0026\u0026$106@1\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\u003c(-100)\u0026\u0026$261\u003e$261@1,$261\u003e100\u0026\u0026$261\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\u003e20\u0026\u0026$64@1\u003c$65@1\u0026\u0026$64\u003e$65,$63\u003e20\u0026\u0026$64@1\u003e$65@1\u0026\u0026$64\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\u003e0\u0026\u0026$174@1\u003e0\u0026\u0026$174\u003e$174@1\u0026\u0026$174@2\u003e$174@1,crossunder($174,0)||$174\u003c0\u0026\u0026$174@1\u003c0\u0026\u0026$174\u003c$174@1\u0026\u0026$174@2\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\u003e$99@1,$99\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\u003e$97,$96\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\u0026\u0026$191\u003c20\u0026\u0026$192\u003c20\u0026\u0026$191\u003e$192\u0026\u0026$191@1\u003c$192@1,$231\u0026\u0026$191\u003e80\u0026\u0026$192\u003e80\u0026\u0026$191\u003c$192\u0026\u0026$191@1\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\u003c(-80)\u0026\u0026$194\u003e$194@1,$194\u003e(-20)\u0026\u0026$194\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\u0026\u0026$204\u003c0\u0026\u0026$204\u003e$204@1,$230\u0026\u0026$203\u003e0\u0026\u0026$203\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\u003e70,$206\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\u003c$293~$292\u003e$293~high-$290~$291-low~close\u003c$289~close\u003e$289~$296\u003e0*$292~$297\u003e0*$292~open\u003cclose~open\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\u003c100\u0026\u0026(abs($297-$296)/$296)*100\u003c100~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$291\u003ehl2\u0026\u0026$297\u003e=2.0*$292\u0026\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$290\u003chl2\u0026\u0026$296\u003e=2.0*$292\u0026\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\u0026\u0026$294@1\u0026\u0026$295){v:if_($298\u0026\u0026$303@2\u0026\u0026$290@1\u003c$291@2\u0026\u0026$302\u0026\u0026$290\u003e=$305@2\u0026\u0026$290\u003c$290@2\u0026\u0026$290@1\u003c$291){$321=1.0~}_{v:if($299\u0026\u0026$302@2\u0026\u0026$291@1\u003e$290@2\u0026\u0026$303\u0026\u0026$291\u003c=$305@2\u0026\u0026$291\u003e$291@2\u0026\u0026$291@1\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\u0026\u0026$296\u003c=0*$292\u0026\u0026$297\u003c=0*$292~$328\u0026\u0026$302~$328\u0026\u0026$303~$330?1:0~$329?1:0~$304\u003e0\u0026\u0026$292\u003c=$304*5/100~$333\u0026\u0026$306~$333\u0026\u0026$296\u003c=$292~$333\u0026\u0026$297\u003c=$292~$334\u0026\u0026!$335\u0026\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\u0026\u0026$303@1\u0026\u0026$298@1\u0026\u0026$302\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$295@1\u0026\u0026$302@1\u0026\u0026$299@1\u0026\u0026$303\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$297\u003e($304/100)*75?1:0~$296\u003e($304/100)*75?1:0~$297\u003e=($304/100)*34\u0026\u0026$296\u003e=($304/100)*34\u0026\u0026!$333~$344\u0026\u0026$302?1:0~$344\u0026\u0026$303?1:0~$304*5/100\u003e$296~$304*5/100\u003e$297~0.0~0.0~v:if($295\u0026\u0026$295@1\u0026\u0026$295@2){v:if($302\u0026\u0026$302@1\u0026\u0026$302@2){$349=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$347\u0026\u0026$347@1\u0026\u0026$347@2~}~v:if($303\u0026\u0026$303@1\u0026\u0026$303@2){$350=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$348\u0026\u0026$348@1\u0026\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\u0026\u0026$302\u0026\u0026$295\u0026\u0026$303@1\u0026\u0026$294@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$299\u0026\u0026$303\u0026\u0026$295\u0026\u0026$302@1\u0026\u0026$294@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$298@2\u0026\u0026$303@2\u0026\u0026$333@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$302\u0026\u0026high@1\u003clow?1:0~$299@2\u0026\u0026$302@2\u0026\u0026$333@1\u0026\u0026high@2\u003clow@1\u0026\u0026$303\u0026\u0026low@1\u003ehigh?1:0~$334@2\u0026\u0026$334@1\u0026\u0026$334~$290@1\u003c$291~$291@1\u003e$290~$360\u0026\u0026$298@2\u0026\u0026$362@1\u0026\u0026$361?1:0~$360\u0026\u0026$299@2\u0026\u0026$361@1\u0026\u0026$362?1:0~$330@1\u0026\u0026$329\u0026\u0026high@1\u003clow?1:0~$329@1\u0026\u0026$330\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~v^open~v^high~v^low~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($378!=$378@1){$374=$371~$377=close@1~$375=$372~$376=$373~$371=open~$372=high~$373=low~}_{$372=max($372,high)~$373=min($373,low)~}~($375+$376+$377)/3~$8($380)~$8($380*2-$376)~$8($380*2-$375)~$8($380+1*($375-$376))~$8($380-1*($375-$376))~$8($380+2*($375-$376))~$8($380-2*($375-$376))~$8($380)~$8($380+0.382*($375-$376))~$8($380-0.382*($375-$376))~$8($380+0.618*($375-$376))~$8($380-0.618*($375-$376))~$8($380+1*($375-$376))~$8($380-1*($375-$376))~($375+$376+$371*2)/4~$8($395)~$8($395*2-$376)~$8($395*2-$375)~$8($395+1*($375-$376))~$8($395-1*($375-$376))~$8($375+2*($395-$376))~$8($376-2*($375-$395))~$375+$376*2+$377~v:if($377==$374){$403=$375+$376+$377*2~}~v:if($377\u003e$374){$403=$375*2+$376+$377~}~$8($403/4)~$8($403/2-$376)~$8($403/2-$375)~$8($380)~$8($377+0.09166666666666667*($375-$376))~$8($377-0.09166666666666667*($375-$376))~$8($377+0.18333333333333335*($375-$376))~$8($377-0.18333333333333335*($375-$376))~$8($377+0.275*($375-$376))~$8($377-0.275*($375-$376))~v^high~v^time/1000~v^low~v:if(high\u003e$416){$416=high~$417=time/1000~$418=low~}~v:if(low\u003c$418){$418=low~}~$416~$417~$416~$417~$418~v^low~v^time/1000~v:if(low\u003c$426){$426=low~$427=time/1000~}~$426~$427~$426~$427~v^open~timenow-315532800000~$11($434,i:3652)~timenow-157766400000~$11($436,i:1826)~timenow-94608000000~$11($438,i:1095)~timenow-31449600000~$11($440,i:364)~s2:$9($441,i:364):s2~s2:$10($441,i:364):s2~timenow-15552000000~$11($446,i:180)~s2:$9($447,i:180):s2~s2:$10($447,i:180):s2~timenow-7776000000~$11($452,i:90)~s2:$9($453,i:90):s2~s2:$10($453,i:90):s2~time-2592000000~timenow-2592000000~$11($459,i:30)~$11($458,i:30)~s2:$9($460,i:30):s2~s2:$10($460,i:30):s2~timenow-604800000~time-604800000~$11($466,i:7)~$11($467,i:7)~s2:$9($468,i:7):s2~s2:$10($468,i:7):s2~$12($469)~$12($461)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$11($478,i:365)~$15()~((close-open@4)/open@4)*100~$14($468,i:7)~$14($460,i:30)~$14($453,i:90)~$14($447,i:180)~$14($479,i:365)~$14($439,i:1095)~$14($437,i:1826)~$14($435,i:3652)~syminfo.volumetype=='base'?volume:(syminfo.volumetype=='quote')\u0026\u0026close!=0?volume/close:na():f~syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?volume*close:na():f~time_tradingday/1000~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$381!$382!$383!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$396!$397!$398!$399!$400!$401!$402!$406!$407!$408!$409!$410!$411!$412!$413!$414!$415!$421!$422!$423!$424!$425!$429!$430!$431!$432!$433!$442!$443!$444!$445!$448!$449!$450!$451!$454!$455!$456!$457!$462!$463!$464!$465!$470!$472!$474!$475!$476!$477!$481!$482!$483!$484!$485!$486!$487!$488!$489!$480!$490!$491!$492;s318:$16():s318~$17!$18!$19!$20!$21!$22!$23!$24!$25!$104!$27!$28!$29!$30!$107!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295!$296!$297!$298!$299!$300!$301!$302!$303!$304!$305!$306!$307!$308!$309!$310!$311!$312!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$330!$331!$332!$333!$334", "isFake": false }, { @@ -1062,6 +1062,238 @@ { "id": "plot_259", "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" + }, + { + "id": "plot_273", + "type": "line" + }, + { + "id": "plot_274", + "type": "line" + }, + { + "id": "plot_275", + "type": "line" + }, + { + "id": "plot_276", + "type": "line" + }, + { + "id": "plot_277", + "type": "line" + }, + { + "id": "plot_278", + "type": "line" + }, + { + "id": "plot_279", + "type": "line" + }, + { + "id": "plot_280", + "type": "line" + }, + { + "id": "plot_281", + "type": "line" + }, + { + "id": "plot_282", + "type": "line" + }, + { + "id": "plot_283", + "type": "line" + }, + { + "id": "plot_284", + "type": "line" + }, + { + "id": "plot_285", + "type": "line" + }, + { + "id": "plot_286", + "type": "line" + }, + { + "id": "plot_287", + "type": "line" + }, + { + "id": "plot_288", + "type": "line" + }, + { + "id": "plot_289", + "type": "line" + }, + { + "id": "plot_290", + "type": "line" + }, + { + "id": "plot_291", + "type": "line" + }, + { + "id": "plot_292", + "type": "line" + }, + { + "id": "plot_293", + "type": "line" + }, + { + "id": "plot_294", + "type": "line" + }, + { + "id": "plot_295", + "type": "line" + }, + { + "id": "plot_296", + "type": "line" + }, + { + "id": "plot_297", + "type": "line" + }, + { + "id": "plot_298", + "type": "line" + }, + { + "id": "plot_299", + "type": "line" + }, + { + "id": "plot_300", + "type": "line" + }, + { + "id": "plot_301", + "type": "line" + }, + { + "id": "plot_302", + "type": "line" + }, + { + "id": "plot_303", + "type": "line" + }, + { + "id": "plot_304", + "type": "line" + }, + { + "id": "plot_305", + "type": "line" + }, + { + "id": "plot_306", + "type": "line" + }, + { + "id": "plot_307", + "type": "line" + }, + { + "id": "plot_308", + "type": "line" + }, + { + "id": "plot_309", + "type": "line" + }, + { + "id": "plot_310", + "type": "line" + }, + { + "id": "plot_311", + "type": "line" + }, + { + "id": "plot_312", + "type": "line" + }, + { + "id": "plot_313", + "type": "line" + }, + { + "id": "plot_314", + "type": "line" + }, + { + "id": "plot_315", + "type": "line" + }, + { + "id": "plot_316", + "type": "line" + }, + { + "id": "plot_317", + "type": "line" } ], "version": "", @@ -1083,43 +1315,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -1127,43 +1359,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -1171,43 +1403,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1215,43 +1447,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1259,43 +1491,43 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { - "title": "Ichimoku.Lead1_20_60_120_30", + "title": "DonchCh20.Lower", "isHidden": false }, "plot_142": { - "title": "Ichimoku.Lead2_20_60_120_30", + "title": "DonchCh20.Upper", "isHidden": false }, "plot_143": { - "title": "VWMA", + "title": "DonchCh20.Middle", "isHidden": false }, "plot_144": { - "title": "ADR", + "title": "DonchCh96.Lower", "isHidden": false }, "plot_145": { - "title": "ADRP", + "title": "DonchCh96.Upper", "isHidden": false }, "plot_146": { - "title": "Rec.HullMA9", + "title": "DonchCh96.Middle", "isHidden": false }, "plot_147": { - "title": "Rec.VWMA", + "title": "DonchCh13.Lower", "isHidden": false }, "plot_148": { - "title": "Rec.Ichimoku", + "title": "DonchCh13.Upper", "isHidden": false }, "plot_149": { - "title": "Recommend.MA", + "title": "DonchCh13.Middle", "isHidden": false }, "plot_15": { @@ -1303,43 +1535,43 @@ "isHidden": false }, "plot_150": { - "title": "Rec.Stoch.RSI", + "title": "DonchCh10.Lower", "isHidden": false }, "plot_151": { - "title": "Rec.WR", + "title": "DonchCh10.Upper", "isHidden": false }, "plot_152": { - "title": "Rec.BBPower", + "title": "DonchCh10.Middle", "isHidden": false }, "plot_153": { - "title": "Rec.UO", + "title": "DonchCh1.Lower", "isHidden": false }, "plot_154": { - "title": "Recommend.Other", + "title": "DonchCh1.Upper", "isHidden": false }, "plot_155": { - "title": "Recommend.All", + "title": "DonchCh1.Middle", "isHidden": false }, "plot_156": { - "title": "Candle.Hammer", + "title": "HullMA9", "isHidden": false }, "plot_157": { - "title": "Candle.HangingMan", + "title": "HullMA200", "isHidden": false }, "plot_158": { - "title": "Candle.InvertedHammer", + "title": "HullMA1728", "isHidden": false }, "plot_159": { - "title": "Candle.ShootingStar", + "title": "HullMA50", "isHidden": false }, "plot_16": { @@ -1347,43 +1579,43 @@ "isHidden": false }, "plot_160": { - "title": "Candle.MorningStar", + "title": "HullMA100", "isHidden": false }, "plot_161": { - "title": "Candle.EveningStar", + "title": "HullMA20", "isHidden": false }, "plot_162": { - "title": "Candle.Marubozu.Black", + "title": "HullMA144", "isHidden": false }, "plot_163": { - "title": "Candle.Marubozu.White", + "title": "HullMA256", "isHidden": false }, "plot_164": { - "title": "Candle.Doji", + "title": "AO", "isHidden": false }, "plot_165": { - "title": "Candle.Doji.Dragonfly", + "title": "AO[1]", "isHidden": false }, "plot_166": { - "title": "Candle.Doji.Gravestone", + "title": "AO[2]", "isHidden": false }, "plot_167": { - "title": "Candle.Harami.Bullish", + "title": "Aroon.Up", "isHidden": false }, "plot_168": { - "title": "Candle.Harami.Bearish", + "title": "Aroon.Down", "isHidden": false }, "plot_169": { - "title": "Candle.LongShadow.Lower", + "title": "Aroon25.Up", "isHidden": false }, "plot_17": { @@ -1391,43 +1623,43 @@ "isHidden": false }, "plot_170": { - "title": "Candle.LongShadow.Upper", + "title": "Aroon25.Down", "isHidden": false }, "plot_171": { - "title": "Candle.SpinningTop.White", + "title": "Value.Traded", "isHidden": false }, "plot_172": { - "title": "Candle.SpinningTop.Black", + "title": "KltChnl.upper", "isHidden": false }, "plot_173": { - "title": "Candle.3WhiteSoldiers", + "title": "KltChnl.lower", "isHidden": false }, "plot_174": { - "title": "Candle.3BlackCrows", + "title": "KltChnl.basis", "isHidden": false }, "plot_175": { - "title": "Candle.Engulfing.Bullish", + "title": "P.SAR", "isHidden": false }, "plot_176": { - "title": "Candle.Engulfing.Bearish", + "title": "MoneyFlow", "isHidden": false }, "plot_177": { - "title": "Candle.AbandonedBaby.Bullish", + "title": "MoneyFlow12", "isHidden": false }, "plot_178": { - "title": "Candle.AbandonedBaby.Bearish", + "title": "ChaikinMoneyFlow", "isHidden": false }, "plot_179": { - "title": "Candle.TriStar.Bullish", + "title": "Stoch.RSI.K", "isHidden": false }, "plot_18": { @@ -1435,385 +1667,617 @@ "isHidden": false }, "plot_180": { - "title": "Candle.TriStar.Bearish", + "title": "Stoch.RSI.D", "isHidden": false }, "plot_181": { - "title": "Candle.Kicking.Bullish", + "title": "W.R", "isHidden": false }, "plot_182": { - "title": "Candle.Kicking.Bearish", + "title": "W.R14", "isHidden": false }, "plot_183": { - "title": "VWAP", + "title": "W.R12", "isHidden": false }, "plot_184": { - "title": "Pivot.M.Classic.Middle", + "title": "ROC", "isHidden": false }, "plot_185": { - "title": "Pivot.M.Classic.R1", + "title": "ROC1", "isHidden": false }, "plot_186": { - "title": "Pivot.M.Classic.S1", + "title": "ROC14", "isHidden": false }, "plot_187": { - "title": "Pivot.M.Classic.R2", + "title": "ROC2", "isHidden": false }, "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { + "title": "Ichimoku.Lead1_20_60_120_30", + "isHidden": false + }, + "plot_198": { + "title": "Ichimoku.Lead2_20_60_120_30", + "isHidden": false + }, + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", + "isHidden": false + }, + "plot_201": { + "title": "VWMA50", + "isHidden": false + }, + "plot_202": { + "title": "ADR", + "isHidden": false + }, + "plot_203": { + "title": "ADRP", + "isHidden": false + }, + "plot_204": { + "title": "Rec.HullMA9", + "isHidden": false + }, + "plot_205": { + "title": "Rec.VWMA", + "isHidden": false + }, + "plot_206": { + "title": "Rec.Ichimoku", + "isHidden": false + }, + "plot_207": { + "title": "Recommend.MA", + "isHidden": false + }, + "plot_208": { + "title": "Rec.Stoch.RSI", + "isHidden": false + }, + "plot_209": { + "title": "Rec.WR", + "isHidden": false + }, + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { + "title": "Rec.BBPower", + "isHidden": false + }, + "plot_211": { + "title": "Rec.UO", + "isHidden": false + }, + "plot_212": { + "title": "Recommend.Other", + "isHidden": false + }, + "plot_213": { + "title": "Recommend.All", + "isHidden": false + }, + "plot_214": { + "title": "Candle.Hammer", + "isHidden": false + }, + "plot_215": { + "title": "Candle.HangingMan", + "isHidden": false + }, + "plot_216": { + "title": "Candle.InvertedHammer", + "isHidden": false + }, + "plot_217": { + "title": "Candle.ShootingStar", + "isHidden": false + }, + "plot_218": { + "title": "Candle.MorningStar", + "isHidden": false + }, + "plot_219": { + "title": "Candle.EveningStar", + "isHidden": false + }, + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { + "title": "Candle.Marubozu.Black", + "isHidden": false + }, + "plot_221": { + "title": "Candle.Marubozu.White", + "isHidden": false + }, + "plot_222": { + "title": "Candle.Doji", + "isHidden": false + }, + "plot_223": { + "title": "Candle.Doji.Dragonfly", + "isHidden": false + }, + "plot_224": { + "title": "Candle.Doji.Gravestone", + "isHidden": false + }, + "plot_225": { + "title": "Candle.Harami.Bullish", + "isHidden": false + }, + "plot_226": { + "title": "Candle.Harami.Bearish", + "isHidden": false + }, + "plot_227": { + "title": "Candle.LongShadow.Lower", + "isHidden": false + }, + "plot_228": { + "title": "Candle.LongShadow.Upper", + "isHidden": false + }, + "plot_229": { + "title": "Candle.SpinningTop.White", + "isHidden": false + }, + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { + "title": "Candle.SpinningTop.Black", + "isHidden": false + }, + "plot_231": { + "title": "Candle.3WhiteSoldiers", + "isHidden": false + }, + "plot_232": { + "title": "Candle.3BlackCrows", + "isHidden": false + }, + "plot_233": { + "title": "Candle.Engulfing.Bullish", + "isHidden": false + }, + "plot_234": { + "title": "Candle.Engulfing.Bearish", + "isHidden": false + }, + "plot_235": { + "title": "Candle.AbandonedBaby.Bullish", + "isHidden": false + }, + "plot_236": { + "title": "Candle.AbandonedBaby.Bearish", + "isHidden": false + }, + "plot_237": { + "title": "Candle.TriStar.Bullish", + "isHidden": false + }, + "plot_238": { + "title": "Candle.TriStar.Bearish", + "isHidden": false + }, + "plot_239": { + "title": "Candle.Kicking.Bullish", + "isHidden": false + }, + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { + "title": "Candle.Kicking.Bearish", + "isHidden": false + }, + "plot_241": { + "title": "VWAP", + "isHidden": false + }, + "plot_242": { + "title": "Pivot.M.Classic.Middle", + "isHidden": false + }, + "plot_243": { + "title": "Pivot.M.Classic.R1", + "isHidden": false + }, + "plot_244": { + "title": "Pivot.M.Classic.S1", + "isHidden": false + }, + "plot_245": { + "title": "Pivot.M.Classic.R2", + "isHidden": false + }, + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_215": { + "plot_273": { "title": "High.All", "isHidden": false }, - "plot_216": { + "plot_274": { "title": "High.All.Date", "isHidden": false }, - "plot_217": { + "plot_275": { "title": "High.All.Calc", "isHidden": false }, - "plot_218": { + "plot_276": { "title": "High.All.Calc.Date", "isHidden": false }, - "plot_219": { + "plot_277": { "title": "Low.After.High.All", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_220": { + "plot_278": { "title": "Low.All", "isHidden": false }, - "plot_221": { + "plot_279": { "title": "Low.All.Date", "isHidden": false }, - "plot_222": { + "plot_28": { + "title": "EMA10", + "isHidden": false + }, + "plot_280": { "title": "Low.All.Calc", "isHidden": false }, - "plot_223": { + "plot_281": { "title": "Low.All.Calc.Date", "isHidden": false }, - "plot_224": { + "plot_282": { "title": "Open.All.Calc", "isHidden": false }, - "plot_225": { + "plot_283": { "title": "price_52_week_low", "isHidden": false }, - "plot_226": { + "plot_284": { "title": "price_52_week_low_date", "isHidden": false }, - "plot_227": { + "plot_285": { "title": "price_52_week_high", "isHidden": false }, - "plot_228": { + "plot_286": { "title": "price_52_week_high_date", "isHidden": false }, - "plot_229": { + "plot_287": { "title": "Low.6M", "isHidden": false }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_230": { + "plot_288": { "title": "Low.6M.Date", "isHidden": false }, - "plot_231": { + "plot_289": { "title": "High.6M", "isHidden": false }, - "plot_232": { + "plot_29": { + "title": "EMA12", + "isHidden": false + }, + "plot_290": { "title": "High.6M.Date", "isHidden": false }, - "plot_233": { + "plot_291": { "title": "Low.3M", "isHidden": false }, - "plot_234": { + "plot_292": { "title": "Low.3M.Date", "isHidden": false }, - "plot_235": { + "plot_293": { "title": "High.3M", "isHidden": false }, - "plot_236": { + "plot_294": { "title": "High.3M.Date", "isHidden": false }, - "plot_237": { + "plot_295": { "title": "Low.1M", "isHidden": false }, - "plot_238": { + "plot_296": { "title": "Low.1M.Date", "isHidden": false }, - "plot_239": { + "plot_297": { "title": "High.1M", "isHidden": false }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_240": { + "plot_298": { "title": "High.1M.Date", "isHidden": false }, - "plot_241": { + "plot_299": { "title": "Low.5D", "isHidden": false }, - "plot_242": { + "plot_3": { + "title": "SMA7", + "isHidden": false + }, + "plot_30": { + "title": "EMA13", + "isHidden": false + }, + "plot_300": { "title": "High.5D", "isHidden": false }, - "plot_243": { + "plot_301": { "title": "Volatility.W", "isHidden": false }, - "plot_244": { + "plot_302": { "title": "Volatility.M", "isHidden": false }, - "plot_245": { + "plot_303": { "title": "Volatility.D", "isHidden": false }, - "plot_246": { + "plot_304": { "title": "first_bar_time", "isHidden": false }, - "plot_247": { + "plot_305": { "title": "Perf.5D", "isHidden": false }, - "plot_248": { + "plot_306": { "title": "Perf.W", "isHidden": false }, - "plot_249": { + "plot_307": { "title": "Perf.1M", "isHidden": false }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_250": { + "plot_308": { "title": "Perf.3M", "isHidden": false }, - "plot_251": { + "plot_309": { "title": "Perf.6M", "isHidden": false }, - "plot_252": { + "plot_31": { + "title": "EMA20", + "isHidden": false + }, + "plot_310": { "title": "Perf.Y", "isHidden": false }, - "plot_253": { + "plot_311": { "title": "Perf.3Y", "isHidden": false }, - "plot_254": { + "plot_312": { "title": "Perf.5Y", "isHidden": false }, - "plot_255": { + "plot_313": { "title": "Perf.10Y", "isHidden": false }, - "plot_256": { + "plot_314": { "title": "Perf.YTD", "isHidden": false }, - "plot_257": { + "plot_315": { "title": "volume_base", "isHidden": false }, - "plot_258": { + "plot_316": { "title": "volume_quote", "isHidden": false }, - "plot_259": { + "plot_317": { "title": "time_business_day", "isHidden": false }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, - "plot_28": { - "title": "EMA10", - "isHidden": false - }, - "plot_29": { - "title": "EMA12", - "isHidden": false - }, - "plot_3": { - "title": "SMA7", - "isHidden": false - }, - "plot_30": { - "title": "EMA13", - "isHidden": false - }, - "plot_31": { - "title": "EMA20", - "isHidden": false - }, "plot_32": { "title": "EMA21", "isHidden": false @@ -1931,7 +2395,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1939,43 +2403,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1983,43 +2447,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -2027,43 +2491,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -2071,43 +2535,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.futures.json b/scanner.data.futures.json index 09537d4df..cc6c0630c 100644 --- a/scanner.data.futures.json +++ b/scanner.data.futures.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$13(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$13($0);close~$0;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\u003c$161~close\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\u003e$147\u0026\u0026close\u003e$146\u0026\u0026close\u003c$145\u0026\u0026close@1\u003c$144\u0026\u0026close\u003e$144,$147\u003e$146\u0026\u0026close\u003c$147\u0026\u0026close\u003e$145\u0026\u0026close@1\u003e$144\u0026\u0026close\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\u003c30\u0026\u0026$190@1\u003c$190,$190\u003e70\u0026\u0026$190@1\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\u003c20\u0026\u0026$102\u003c20\u0026\u0026$101\u003e$102\u0026\u0026$101@1\u003c$102@1,$101\u003e80\u0026\u0026$102\u003e80\u0026\u0026$101\u003c$102\u0026\u0026$101@1\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\u003c(-100)\u0026\u0026$193\u003e$193@1,$193\u003e100\u0026\u0026$193\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\u003e20\u0026\u0026$61@1\u003c$62@1\u0026\u0026$61\u003e$62,$60\u003e20\u0026\u0026$61@1\u003e$62@1\u0026\u0026$61\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\u003e0\u0026\u0026$119@1\u003e0\u0026\u0026$119\u003e$119@1\u0026\u0026$119@2\u003e$119@1,crossunder($119,0)||$119\u003c0\u0026\u0026$119@1\u003c0\u0026\u0026$119\u003c$119@1\u0026\u0026$119@2\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\u003e$96@1,$96\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\u003e$94,$93\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\u0026\u0026$133\u003c20\u0026\u0026$134\u003c20\u0026\u0026$133\u003e$134\u0026\u0026$133@1\u003c$134@1,$163\u0026\u0026$133\u003e80\u0026\u0026$134\u003e80\u0026\u0026$133\u003c$134\u0026\u0026$133@1\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\u003c(-80)\u0026\u0026$136\u003e$136@1,$136\u003e(-20)\u0026\u0026$136\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\u0026\u0026$139\u003c0\u0026\u0026$139\u003e$139@1,$162\u0026\u0026$138\u003e0\u0026\u0026$138\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\u003e70,$141\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\u003c$225~$224\u003e$225~high-$222~$223-low~close\u003c$221~close\u003e$221~$228\u003e0*$224~$229\u003e0*$224~open\u003cclose~open\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\u003c100\u0026\u0026(abs($229-$228)/$228)*100\u003c100~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$223\u003ehl2\u0026\u0026$229\u003e=2.0*$224\u0026\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$222\u003chl2\u0026\u0026$228\u003e=2.0*$224\u0026\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\u0026\u0026$226@1\u0026\u0026$227){v:if_($230\u0026\u0026$235@2\u0026\u0026$222@1\u003c$223@2\u0026\u0026$234\u0026\u0026$222\u003e=$237@2\u0026\u0026$222\u003c$222@2\u0026\u0026$222@1\u003c$223){$253=1.0~}_{v:if($231\u0026\u0026$234@2\u0026\u0026$223@1\u003e$222@2\u0026\u0026$235\u0026\u0026$223\u003c=$237@2\u0026\u0026$223\u003e$223@2\u0026\u0026$223@1\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\u0026\u0026$228\u003c=0*$224\u0026\u0026$229\u003c=0*$224~$260\u0026\u0026$234~$260\u0026\u0026$235~$262?1:0~$261?1:0~$236\u003e0\u0026\u0026$224\u003c=$236*5/100~$265\u0026\u0026$238~$265\u0026\u0026$228\u003c=$224~$265\u0026\u0026$229\u003c=$224~$266\u0026\u0026!$267\u0026\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\u0026\u0026$235@1\u0026\u0026$230@1\u0026\u0026$234\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$227@1\u0026\u0026$234@1\u0026\u0026$231@1\u0026\u0026$235\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$229\u003e($236/100)*75?1:0~$228\u003e($236/100)*75?1:0~$229\u003e=($236/100)*34\u0026\u0026$228\u003e=($236/100)*34\u0026\u0026!$265~$276\u0026\u0026$234?1:0~$276\u0026\u0026$235?1:0~$236*5/100\u003e$228~$236*5/100\u003e$229~0.0~0.0~v:if($227\u0026\u0026$227@1\u0026\u0026$227@2){v:if($234\u0026\u0026$234@1\u0026\u0026$234@2){$281=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$279\u0026\u0026$279@1\u0026\u0026$279@2~}~v:if($235\u0026\u0026$235@1\u0026\u0026$235@2){$282=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$280\u0026\u0026$280@1\u0026\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\u0026\u0026$234\u0026\u0026$227\u0026\u0026$235@1\u0026\u0026$226@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$231\u0026\u0026$235\u0026\u0026$227\u0026\u0026$234@1\u0026\u0026$226@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$230@2\u0026\u0026$235@2\u0026\u0026$265@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$234\u0026\u0026high@1\u003clow?1:0~$231@2\u0026\u0026$234@2\u0026\u0026$265@1\u0026\u0026high@2\u003clow@1\u0026\u0026$235\u0026\u0026low@1\u003ehigh?1:0~$266@2\u0026\u0026$266@1\u0026\u0026$266~$222@1\u003c$223~$223@1\u003e$222~$292\u0026\u0026$230@2\u0026\u0026$294@1\u0026\u0026$293?1:0~$292\u0026\u0026$231@2\u0026\u0026$293@1\u0026\u0026$294?1:0~$262@1\u0026\u0026$261\u0026\u0026high@1\u003clow?1:0~$261@1\u0026\u0026$262\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~v^open~v^high~v^low~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($310!=$310@1){$306=$303~$309=close@1~$307=$304~$308=$305~$303=open~$304=high~$305=low~}_{$304=max($304,high)~$305=min($305,low)~}~($307+$308+$309)/3~$8($312)~$8($312*2-$308)~$8($312*2-$307)~$8($312+1*($307-$308))~$8($312-1*($307-$308))~$8($312+2*($307-$308))~$8($312-2*($307-$308))~$8($312)~$8($312+0.382*($307-$308))~$8($312-0.382*($307-$308))~$8($312+0.618*($307-$308))~$8($312-0.618*($307-$308))~$8($312+1*($307-$308))~$8($312-1*($307-$308))~($307+$308+$303*2)/4~$8($327)~$8($327*2-$308)~$8($327*2-$307)~$8($327+1*($307-$308))~$8($327-1*($307-$308))~$8($307+2*($327-$308))~$8($308-2*($307-$327))~$307+$308*2+$309~v:if($309==$306){$335=$307+$308+$309*2~}~v:if($309\u003e$306){$335=$307*2+$308+$309~}~$8($335/4)~$8($335/2-$308)~$8($335/2-$307)~$8($312)~$8($309+0.09166666666666667*($307-$308))~$8($309-0.09166666666666667*($307-$308))~$8($309+0.18333333333333335*($307-$308))~$8($309-0.18333333333333335*($307-$308))~$8($309+0.275*($307-$308))~$8($309-0.275*($307-$308))~v^high~v^time/1000~v^low~v:if(high\u003e$348){$348=high~$349=time/1000~$350=low~}~v:if(low\u003c$350){$350=low~}~$348~$349~$348~$349~$350~v^low~v^time/1000~v:if(low\u003c$358){$358=low~$359=time/1000~}~$358~$359~$358~$359~v^open~timenow-315532800000~$11($366,i:3652)~timenow-157766400000~$11($368,i:1826)~timenow-94608000000~$11($370,i:1095)~timenow-31449600000~$11($372,i:364)~s2:$9($373,i:364):s2~s2:$10($373,i:364):s2~timenow-15552000000~$11($378,i:180)~s2:$9($379,i:180):s2~s2:$10($379,i:180):s2~timenow-7776000000~$11($384,i:90)~s2:$9($385,i:90):s2~s2:$10($385,i:90):s2~time-2592000000~timenow-2592000000~$11($391,i:30)~$11($390,i:30)~s2:$9($392,i:30):s2~s2:$10($392,i:30):s2~timenow-604800000~time-604800000~$11($398,i:7)~$11($399,i:7)~s2:$9($400,i:7):s2~s2:$10($400,i:7):s2~$12($401)~$12($393)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$11($410,i:365)~$15()~((close-open@4)/open@4)*100~$14($400,i:7)~$14($392,i:30)~$14($385,i:90)~$14($379,i:180)~$14($411,i:365)~$14($371,i:1095)~$14($369,i:1826)~$14($367,i:3652)~time_tradingday/1000~#0~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$328!$329!$330!$331!$332!$333!$334!$338!$339!$340!$341!$342!$343!$344!$345!$346!$347!$353!$354!$355!$356!$357!$361!$362!$363!$364!$365!$374!$375!$376!$377!$380!$381!$382!$383!$386!$387!$388!$389!$394!$395!$396!$397!$402!$404!$406!$407!$408!$409!$413!$414!$415!$416!$417!$418!$419!$420!$421!$412!$422!$423;t:str.format(t:'{0}_{1}',t:ticker.standard(tickerid):t,t:'OI'):t~i:na():f~sym($18,'D','D',0,0,1,'NONE',0,0,$19)|$16()|s259:$17($21):s259~$23!$24!$25!$26!$27!$28!$29!$30!$31!$108!$33!$34!$35!$36!$111!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$126!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281", + "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$13(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$13($0);close~$0;$16();sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\u003c$229~close\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\u003e$212\u0026\u0026close\u003e$211\u0026\u0026close\u003c$210\u0026\u0026close@1\u003c$209\u0026\u0026close\u003e$209,$212\u003e$211\u0026\u0026close\u003c$212\u0026\u0026close\u003e$210\u0026\u0026close@1\u003e$209\u0026\u0026close\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\u003c30\u0026\u0026$258@1\u003c$258,$258\u003e70\u0026\u0026$258@1\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\u003c20\u0026\u0026$107\u003c20\u0026\u0026$106\u003e$107\u0026\u0026$106@1\u003c$107@1,$106\u003e80\u0026\u0026$107\u003e80\u0026\u0026$106\u003c$107\u0026\u0026$106@1\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\u003c(-100)\u0026\u0026$261\u003e$261@1,$261\u003e100\u0026\u0026$261\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\u003e20\u0026\u0026$64@1\u003c$65@1\u0026\u0026$64\u003e$65,$63\u003e20\u0026\u0026$64@1\u003e$65@1\u0026\u0026$64\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\u003e0\u0026\u0026$174@1\u003e0\u0026\u0026$174\u003e$174@1\u0026\u0026$174@2\u003e$174@1,crossunder($174,0)||$174\u003c0\u0026\u0026$174@1\u003c0\u0026\u0026$174\u003c$174@1\u0026\u0026$174@2\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\u003e$99@1,$99\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\u003e$97,$96\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\u0026\u0026$191\u003c20\u0026\u0026$192\u003c20\u0026\u0026$191\u003e$192\u0026\u0026$191@1\u003c$192@1,$231\u0026\u0026$191\u003e80\u0026\u0026$192\u003e80\u0026\u0026$191\u003c$192\u0026\u0026$191@1\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\u003c(-80)\u0026\u0026$194\u003e$194@1,$194\u003e(-20)\u0026\u0026$194\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\u0026\u0026$204\u003c0\u0026\u0026$204\u003e$204@1,$230\u0026\u0026$203\u003e0\u0026\u0026$203\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\u003e70,$206\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\u003c$293~$292\u003e$293~high-$290~$291-low~close\u003c$289~close\u003e$289~$296\u003e0*$292~$297\u003e0*$292~open\u003cclose~open\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\u003c100\u0026\u0026(abs($297-$296)/$296)*100\u003c100~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$291\u003ehl2\u0026\u0026$297\u003e=2.0*$292\u0026\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$290\u003chl2\u0026\u0026$296\u003e=2.0*$292\u0026\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\u0026\u0026$294@1\u0026\u0026$295){v:if_($298\u0026\u0026$303@2\u0026\u0026$290@1\u003c$291@2\u0026\u0026$302\u0026\u0026$290\u003e=$305@2\u0026\u0026$290\u003c$290@2\u0026\u0026$290@1\u003c$291){$321=1.0~}_{v:if($299\u0026\u0026$302@2\u0026\u0026$291@1\u003e$290@2\u0026\u0026$303\u0026\u0026$291\u003c=$305@2\u0026\u0026$291\u003e$291@2\u0026\u0026$291@1\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\u0026\u0026$296\u003c=0*$292\u0026\u0026$297\u003c=0*$292~$328\u0026\u0026$302~$328\u0026\u0026$303~$330?1:0~$329?1:0~$304\u003e0\u0026\u0026$292\u003c=$304*5/100~$333\u0026\u0026$306~$333\u0026\u0026$296\u003c=$292~$333\u0026\u0026$297\u003c=$292~$334\u0026\u0026!$335\u0026\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\u0026\u0026$303@1\u0026\u0026$298@1\u0026\u0026$302\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$295@1\u0026\u0026$302@1\u0026\u0026$299@1\u0026\u0026$303\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$297\u003e($304/100)*75?1:0~$296\u003e($304/100)*75?1:0~$297\u003e=($304/100)*34\u0026\u0026$296\u003e=($304/100)*34\u0026\u0026!$333~$344\u0026\u0026$302?1:0~$344\u0026\u0026$303?1:0~$304*5/100\u003e$296~$304*5/100\u003e$297~0.0~0.0~v:if($295\u0026\u0026$295@1\u0026\u0026$295@2){v:if($302\u0026\u0026$302@1\u0026\u0026$302@2){$349=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$347\u0026\u0026$347@1\u0026\u0026$347@2~}~v:if($303\u0026\u0026$303@1\u0026\u0026$303@2){$350=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$348\u0026\u0026$348@1\u0026\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\u0026\u0026$302\u0026\u0026$295\u0026\u0026$303@1\u0026\u0026$294@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$299\u0026\u0026$303\u0026\u0026$295\u0026\u0026$302@1\u0026\u0026$294@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$298@2\u0026\u0026$303@2\u0026\u0026$333@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$302\u0026\u0026high@1\u003clow?1:0~$299@2\u0026\u0026$302@2\u0026\u0026$333@1\u0026\u0026high@2\u003clow@1\u0026\u0026$303\u0026\u0026low@1\u003ehigh?1:0~$334@2\u0026\u0026$334@1\u0026\u0026$334~$290@1\u003c$291~$291@1\u003e$290~$360\u0026\u0026$298@2\u0026\u0026$362@1\u0026\u0026$361?1:0~$360\u0026\u0026$299@2\u0026\u0026$361@1\u0026\u0026$362?1:0~$330@1\u0026\u0026$329\u0026\u0026high@1\u003clow?1:0~$329@1\u0026\u0026$330\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~v^open~v^high~v^low~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($378!=$378@1){$374=$371~$377=close@1~$375=$372~$376=$373~$371=open~$372=high~$373=low~}_{$372=max($372,high)~$373=min($373,low)~}~($375+$376+$377)/3~$8($380)~$8($380*2-$376)~$8($380*2-$375)~$8($380+1*($375-$376))~$8($380-1*($375-$376))~$8($380+2*($375-$376))~$8($380-2*($375-$376))~$8($380)~$8($380+0.382*($375-$376))~$8($380-0.382*($375-$376))~$8($380+0.618*($375-$376))~$8($380-0.618*($375-$376))~$8($380+1*($375-$376))~$8($380-1*($375-$376))~($375+$376+$371*2)/4~$8($395)~$8($395*2-$376)~$8($395*2-$375)~$8($395+1*($375-$376))~$8($395-1*($375-$376))~$8($375+2*($395-$376))~$8($376-2*($375-$395))~$375+$376*2+$377~v:if($377==$374){$403=$375+$376+$377*2~}~v:if($377\u003e$374){$403=$375*2+$376+$377~}~$8($403/4)~$8($403/2-$376)~$8($403/2-$375)~$8($380)~$8($377+0.09166666666666667*($375-$376))~$8($377-0.09166666666666667*($375-$376))~$8($377+0.18333333333333335*($375-$376))~$8($377-0.18333333333333335*($375-$376))~$8($377+0.275*($375-$376))~$8($377-0.275*($375-$376))~v^high~v^time/1000~v^low~v:if(high\u003e$416){$416=high~$417=time/1000~$418=low~}~v:if(low\u003c$418){$418=low~}~$416~$417~$416~$417~$418~v^low~v^time/1000~v:if(low\u003c$426){$426=low~$427=time/1000~}~$426~$427~$426~$427~v^open~timenow-315532800000~$11($434,i:3652)~timenow-157766400000~$11($436,i:1826)~timenow-94608000000~$11($438,i:1095)~timenow-31449600000~$11($440,i:364)~s2:$9($441,i:364):s2~s2:$10($441,i:364):s2~timenow-15552000000~$11($446,i:180)~s2:$9($447,i:180):s2~s2:$10($447,i:180):s2~timenow-7776000000~$11($452,i:90)~s2:$9($453,i:90):s2~s2:$10($453,i:90):s2~time-2592000000~timenow-2592000000~$11($459,i:30)~$11($458,i:30)~s2:$9($460,i:30):s2~s2:$10($460,i:30):s2~timenow-604800000~time-604800000~$11($466,i:7)~$11($467,i:7)~s2:$9($468,i:7):s2~s2:$10($468,i:7):s2~$12($469)~$12($461)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$11($478,i:365)~$15()~((close-open@4)/open@4)*100~$14($468,i:7)~$14($460,i:30)~$14($453,i:90)~$14($447,i:180)~$14($479,i:365)~$14($439,i:1095)~$14($437,i:1826)~$14($435,i:3652)~time_tradingday/1000~#0~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$381!$382!$383!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$396!$397!$398!$399!$400!$401!$402!$406!$407!$408!$409!$410!$411!$412!$413!$414!$415!$421!$422!$423!$424!$425!$429!$430!$431!$432!$433!$442!$443!$444!$445!$448!$449!$450!$451!$454!$455!$456!$457!$462!$463!$464!$465!$470!$472!$474!$475!$476!$477!$481!$482!$483!$484!$485!$486!$487!$488!$489!$480!$490!$491;t:str.format(t:'{0}_{1}',t:ticker.standard(tickerid):t,t:'OI'):t~i:na():f~sym($19,'D','D',0,0,1,'NONE',0,0,$20)|$17()|s317:$18($22):s317~$24!$25!$26!$27!$28!$29!$30!$31!$32!$111!$34!$35!$36!$37!$114!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295!$296!$297!$298!$299!$300!$301!$302!$303!$304!$305!$306!$307!$308!$309!$310!$311!$312!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$330!$331!$332!$333!$334!$335!$336!$337!$338!$339!$340", "isFake": false }, { @@ -1058,6 +1058,238 @@ { "id": "plot_258", "type": "line" + }, + { + "id": "plot_259", + "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" + }, + { + "id": "plot_273", + "type": "line" + }, + { + "id": "plot_274", + "type": "line" + }, + { + "id": "plot_275", + "type": "line" + }, + { + "id": "plot_276", + "type": "line" + }, + { + "id": "plot_277", + "type": "line" + }, + { + "id": "plot_278", + "type": "line" + }, + { + "id": "plot_279", + "type": "line" + }, + { + "id": "plot_280", + "type": "line" + }, + { + "id": "plot_281", + "type": "line" + }, + { + "id": "plot_282", + "type": "line" + }, + { + "id": "plot_283", + "type": "line" + }, + { + "id": "plot_284", + "type": "line" + }, + { + "id": "plot_285", + "type": "line" + }, + { + "id": "plot_286", + "type": "line" + }, + { + "id": "plot_287", + "type": "line" + }, + { + "id": "plot_288", + "type": "line" + }, + { + "id": "plot_289", + "type": "line" + }, + { + "id": "plot_290", + "type": "line" + }, + { + "id": "plot_291", + "type": "line" + }, + { + "id": "plot_292", + "type": "line" + }, + { + "id": "plot_293", + "type": "line" + }, + { + "id": "plot_294", + "type": "line" + }, + { + "id": "plot_295", + "type": "line" + }, + { + "id": "plot_296", + "type": "line" + }, + { + "id": "plot_297", + "type": "line" + }, + { + "id": "plot_298", + "type": "line" + }, + { + "id": "plot_299", + "type": "line" + }, + { + "id": "plot_300", + "type": "line" + }, + { + "id": "plot_301", + "type": "line" + }, + { + "id": "plot_302", + "type": "line" + }, + { + "id": "plot_303", + "type": "line" + }, + { + "id": "plot_304", + "type": "line" + }, + { + "id": "plot_305", + "type": "line" + }, + { + "id": "plot_306", + "type": "line" + }, + { + "id": "plot_307", + "type": "line" + }, + { + "id": "plot_308", + "type": "line" + }, + { + "id": "plot_309", + "type": "line" + }, + { + "id": "plot_310", + "type": "line" + }, + { + "id": "plot_311", + "type": "line" + }, + { + "id": "plot_312", + "type": "line" + }, + { + "id": "plot_313", + "type": "line" + }, + { + "id": "plot_314", + "type": "line" + }, + { + "id": "plot_315", + "type": "line" + }, + { + "id": "plot_316", + "type": "line" } ], "version": "", @@ -1079,43 +1311,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -1123,43 +1355,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -1167,43 +1399,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1211,43 +1443,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1255,43 +1487,43 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { - "title": "Ichimoku.Lead1_20_60_120_30", + "title": "DonchCh20.Lower", "isHidden": false }, "plot_142": { - "title": "Ichimoku.Lead2_20_60_120_30", + "title": "DonchCh20.Upper", "isHidden": false }, "plot_143": { - "title": "VWMA", + "title": "DonchCh20.Middle", "isHidden": false }, "plot_144": { - "title": "ADR", + "title": "DonchCh96.Lower", "isHidden": false }, "plot_145": { - "title": "ADRP", + "title": "DonchCh96.Upper", "isHidden": false }, "plot_146": { - "title": "Rec.HullMA9", + "title": "DonchCh96.Middle", "isHidden": false }, "plot_147": { - "title": "Rec.VWMA", + "title": "DonchCh13.Lower", "isHidden": false }, "plot_148": { - "title": "Rec.Ichimoku", + "title": "DonchCh13.Upper", "isHidden": false }, "plot_149": { - "title": "Recommend.MA", + "title": "DonchCh13.Middle", "isHidden": false }, "plot_15": { @@ -1299,43 +1531,43 @@ "isHidden": false }, "plot_150": { - "title": "Rec.Stoch.RSI", + "title": "DonchCh10.Lower", "isHidden": false }, "plot_151": { - "title": "Rec.WR", + "title": "DonchCh10.Upper", "isHidden": false }, "plot_152": { - "title": "Rec.BBPower", + "title": "DonchCh10.Middle", "isHidden": false }, "plot_153": { - "title": "Rec.UO", + "title": "DonchCh1.Lower", "isHidden": false }, "plot_154": { - "title": "Recommend.Other", + "title": "DonchCh1.Upper", "isHidden": false }, "plot_155": { - "title": "Recommend.All", + "title": "DonchCh1.Middle", "isHidden": false }, "plot_156": { - "title": "Candle.Hammer", + "title": "HullMA9", "isHidden": false }, "plot_157": { - "title": "Candle.HangingMan", + "title": "HullMA200", "isHidden": false }, "plot_158": { - "title": "Candle.InvertedHammer", + "title": "HullMA1728", "isHidden": false }, "plot_159": { - "title": "Candle.ShootingStar", + "title": "HullMA50", "isHidden": false }, "plot_16": { @@ -1343,43 +1575,43 @@ "isHidden": false }, "plot_160": { - "title": "Candle.MorningStar", + "title": "HullMA100", "isHidden": false }, "plot_161": { - "title": "Candle.EveningStar", + "title": "HullMA20", "isHidden": false }, "plot_162": { - "title": "Candle.Marubozu.Black", + "title": "HullMA144", "isHidden": false }, "plot_163": { - "title": "Candle.Marubozu.White", + "title": "HullMA256", "isHidden": false }, "plot_164": { - "title": "Candle.Doji", + "title": "AO", "isHidden": false }, "plot_165": { - "title": "Candle.Doji.Dragonfly", + "title": "AO[1]", "isHidden": false }, "plot_166": { - "title": "Candle.Doji.Gravestone", + "title": "AO[2]", "isHidden": false }, "plot_167": { - "title": "Candle.Harami.Bullish", + "title": "Aroon.Up", "isHidden": false }, "plot_168": { - "title": "Candle.Harami.Bearish", + "title": "Aroon.Down", "isHidden": false }, "plot_169": { - "title": "Candle.LongShadow.Lower", + "title": "Aroon25.Up", "isHidden": false }, "plot_17": { @@ -1387,43 +1619,43 @@ "isHidden": false }, "plot_170": { - "title": "Candle.LongShadow.Upper", + "title": "Aroon25.Down", "isHidden": false }, "plot_171": { - "title": "Candle.SpinningTop.White", + "title": "Value.Traded", "isHidden": false }, "plot_172": { - "title": "Candle.SpinningTop.Black", + "title": "KltChnl.upper", "isHidden": false }, "plot_173": { - "title": "Candle.3WhiteSoldiers", + "title": "KltChnl.lower", "isHidden": false }, "plot_174": { - "title": "Candle.3BlackCrows", + "title": "KltChnl.basis", "isHidden": false }, "plot_175": { - "title": "Candle.Engulfing.Bullish", + "title": "P.SAR", "isHidden": false }, "plot_176": { - "title": "Candle.Engulfing.Bearish", + "title": "MoneyFlow", "isHidden": false }, "plot_177": { - "title": "Candle.AbandonedBaby.Bullish", + "title": "MoneyFlow12", "isHidden": false }, "plot_178": { - "title": "Candle.AbandonedBaby.Bearish", + "title": "ChaikinMoneyFlow", "isHidden": false }, "plot_179": { - "title": "Candle.TriStar.Bullish", + "title": "Stoch.RSI.K", "isHidden": false }, "plot_18": { @@ -1431,381 +1663,613 @@ "isHidden": false }, "plot_180": { - "title": "Candle.TriStar.Bearish", + "title": "Stoch.RSI.D", "isHidden": false }, "plot_181": { - "title": "Candle.Kicking.Bullish", + "title": "W.R", "isHidden": false }, "plot_182": { - "title": "Candle.Kicking.Bearish", + "title": "W.R14", "isHidden": false }, "plot_183": { - "title": "VWAP", + "title": "W.R12", "isHidden": false }, "plot_184": { - "title": "Pivot.M.Classic.Middle", + "title": "ROC", "isHidden": false }, "plot_185": { - "title": "Pivot.M.Classic.R1", + "title": "ROC1", "isHidden": false }, "plot_186": { - "title": "Pivot.M.Classic.S1", + "title": "ROC14", "isHidden": false }, "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { + "title": "Ichimoku.Lead1_20_60_120_30", + "isHidden": false + }, + "plot_198": { + "title": "Ichimoku.Lead2_20_60_120_30", + "isHidden": false + }, + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", + "isHidden": false + }, + "plot_201": { + "title": "VWMA50", + "isHidden": false + }, + "plot_202": { + "title": "ADR", + "isHidden": false + }, + "plot_203": { + "title": "ADRP", + "isHidden": false + }, + "plot_204": { + "title": "Rec.HullMA9", + "isHidden": false + }, + "plot_205": { + "title": "Rec.VWMA", + "isHidden": false + }, + "plot_206": { + "title": "Rec.Ichimoku", + "isHidden": false + }, + "plot_207": { + "title": "Recommend.MA", + "isHidden": false + }, + "plot_208": { + "title": "Rec.Stoch.RSI", + "isHidden": false + }, + "plot_209": { + "title": "Rec.WR", + "isHidden": false + }, + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { + "title": "Rec.BBPower", + "isHidden": false + }, + "plot_211": { + "title": "Rec.UO", + "isHidden": false + }, + "plot_212": { + "title": "Recommend.Other", + "isHidden": false + }, + "plot_213": { + "title": "Recommend.All", + "isHidden": false + }, + "plot_214": { + "title": "Candle.Hammer", + "isHidden": false + }, + "plot_215": { + "title": "Candle.HangingMan", + "isHidden": false + }, + "plot_216": { + "title": "Candle.InvertedHammer", + "isHidden": false + }, + "plot_217": { + "title": "Candle.ShootingStar", + "isHidden": false + }, + "plot_218": { + "title": "Candle.MorningStar", + "isHidden": false + }, + "plot_219": { + "title": "Candle.EveningStar", + "isHidden": false + }, + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { + "title": "Candle.Marubozu.Black", + "isHidden": false + }, + "plot_221": { + "title": "Candle.Marubozu.White", + "isHidden": false + }, + "plot_222": { + "title": "Candle.Doji", + "isHidden": false + }, + "plot_223": { + "title": "Candle.Doji.Dragonfly", + "isHidden": false + }, + "plot_224": { + "title": "Candle.Doji.Gravestone", + "isHidden": false + }, + "plot_225": { + "title": "Candle.Harami.Bullish", + "isHidden": false + }, + "plot_226": { + "title": "Candle.Harami.Bearish", + "isHidden": false + }, + "plot_227": { + "title": "Candle.LongShadow.Lower", + "isHidden": false + }, + "plot_228": { + "title": "Candle.LongShadow.Upper", + "isHidden": false + }, + "plot_229": { + "title": "Candle.SpinningTop.White", + "isHidden": false + }, + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { + "title": "Candle.SpinningTop.Black", + "isHidden": false + }, + "plot_231": { + "title": "Candle.3WhiteSoldiers", + "isHidden": false + }, + "plot_232": { + "title": "Candle.3BlackCrows", + "isHidden": false + }, + "plot_233": { + "title": "Candle.Engulfing.Bullish", + "isHidden": false + }, + "plot_234": { + "title": "Candle.Engulfing.Bearish", + "isHidden": false + }, + "plot_235": { + "title": "Candle.AbandonedBaby.Bullish", + "isHidden": false + }, + "plot_236": { + "title": "Candle.AbandonedBaby.Bearish", + "isHidden": false + }, + "plot_237": { + "title": "Candle.TriStar.Bullish", + "isHidden": false + }, + "plot_238": { + "title": "Candle.TriStar.Bearish", + "isHidden": false + }, + "plot_239": { + "title": "Candle.Kicking.Bullish", + "isHidden": false + }, + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { + "title": "Candle.Kicking.Bearish", + "isHidden": false + }, + "plot_241": { + "title": "VWAP", + "isHidden": false + }, + "plot_242": { + "title": "Pivot.M.Classic.Middle", + "isHidden": false + }, + "plot_243": { + "title": "Pivot.M.Classic.R1", + "isHidden": false + }, + "plot_244": { + "title": "Pivot.M.Classic.S1", + "isHidden": false + }, + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_215": { + "plot_273": { "title": "High.All", "isHidden": false }, - "plot_216": { + "plot_274": { "title": "High.All.Date", "isHidden": false }, - "plot_217": { + "plot_275": { "title": "High.All.Calc", "isHidden": false }, - "plot_218": { + "plot_276": { "title": "High.All.Calc.Date", "isHidden": false }, - "plot_219": { + "plot_277": { "title": "Low.After.High.All", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_220": { + "plot_278": { "title": "Low.All", "isHidden": false }, - "plot_221": { + "plot_279": { "title": "Low.All.Date", "isHidden": false }, - "plot_222": { + "plot_28": { + "title": "EMA10", + "isHidden": false + }, + "plot_280": { "title": "Low.All.Calc", "isHidden": false }, - "plot_223": { + "plot_281": { "title": "Low.All.Calc.Date", "isHidden": false }, - "plot_224": { + "plot_282": { "title": "Open.All.Calc", "isHidden": false }, - "plot_225": { + "plot_283": { "title": "price_52_week_low", "isHidden": false }, - "plot_226": { + "plot_284": { "title": "price_52_week_low_date", "isHidden": false }, - "plot_227": { + "plot_285": { "title": "price_52_week_high", "isHidden": false }, - "plot_228": { + "plot_286": { "title": "price_52_week_high_date", "isHidden": false }, - "plot_229": { + "plot_287": { "title": "Low.6M", "isHidden": false }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_230": { + "plot_288": { "title": "Low.6M.Date", "isHidden": false }, - "plot_231": { + "plot_289": { "title": "High.6M", "isHidden": false }, - "plot_232": { + "plot_29": { + "title": "EMA12", + "isHidden": false + }, + "plot_290": { "title": "High.6M.Date", "isHidden": false }, - "plot_233": { + "plot_291": { "title": "Low.3M", "isHidden": false }, - "plot_234": { + "plot_292": { "title": "Low.3M.Date", "isHidden": false }, - "plot_235": { + "plot_293": { "title": "High.3M", "isHidden": false }, - "plot_236": { + "plot_294": { "title": "High.3M.Date", "isHidden": false }, - "plot_237": { + "plot_295": { "title": "Low.1M", "isHidden": false }, - "plot_238": { + "plot_296": { "title": "Low.1M.Date", "isHidden": false }, - "plot_239": { + "plot_297": { "title": "High.1M", "isHidden": false }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_240": { + "plot_298": { "title": "High.1M.Date", "isHidden": false }, - "plot_241": { + "plot_299": { "title": "Low.5D", "isHidden": false }, - "plot_242": { + "plot_3": { + "title": "SMA7", + "isHidden": false + }, + "plot_30": { + "title": "EMA13", + "isHidden": false + }, + "plot_300": { "title": "High.5D", "isHidden": false }, - "plot_243": { + "plot_301": { "title": "Volatility.W", "isHidden": false }, - "plot_244": { + "plot_302": { "title": "Volatility.M", "isHidden": false }, - "plot_245": { + "plot_303": { "title": "Volatility.D", "isHidden": false }, - "plot_246": { + "plot_304": { "title": "first_bar_time", "isHidden": false }, - "plot_247": { + "plot_305": { "title": "Perf.5D", "isHidden": false }, - "plot_248": { + "plot_306": { "title": "Perf.W", "isHidden": false }, - "plot_249": { + "plot_307": { "title": "Perf.1M", "isHidden": false }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_250": { + "plot_308": { "title": "Perf.3M", "isHidden": false }, - "plot_251": { + "plot_309": { "title": "Perf.6M", "isHidden": false }, - "plot_252": { + "plot_31": { + "title": "EMA20", + "isHidden": false + }, + "plot_310": { "title": "Perf.Y", "isHidden": false }, - "plot_253": { + "plot_311": { "title": "Perf.3Y", "isHidden": false }, - "plot_254": { + "plot_312": { "title": "Perf.5Y", "isHidden": false }, - "plot_255": { + "plot_313": { "title": "Perf.10Y", "isHidden": false }, - "plot_256": { + "plot_314": { "title": "Perf.YTD", "isHidden": false }, - "plot_257": { + "plot_315": { "title": "time_business_day", "isHidden": false }, - "plot_258": { + "plot_316": { "title": "open_interest", "isHidden": false }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, - "plot_28": { - "title": "EMA10", - "isHidden": false - }, - "plot_29": { - "title": "EMA12", - "isHidden": false - }, - "plot_3": { - "title": "SMA7", - "isHidden": false - }, - "plot_30": { - "title": "EMA13", - "isHidden": false - }, - "plot_31": { - "title": "EMA20", - "isHidden": false - }, "plot_32": { "title": "EMA21", "isHidden": false @@ -1923,7 +2387,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1931,43 +2395,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1975,43 +2439,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -2019,43 +2483,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -2063,43 +2527,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.json b/scanner.data.json index 4a2d54a0f..c4d0a140c 100644 --- a/scanner.data.json +++ b/scanner.data.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$13(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$13($0);time_closeV5('D',syminfo.session,syminfo.timezone,0)-(#0*86400000);$16(i:#0)~if_(time\u003c$0){na():f}_{0~v:for(0;n;1){v:if(time@$3\u003c$0){$2=$3-1~break~}~}~if(time@$2-$0\u003c#1*86400000){if_(close@$2\u003c0\u0026\u0026close\u003e0||close@$2==0){na():f}_{(close-close@$2)*100/abs(close@$2)}}~$9};v:max_bars_back(time,730):v~v:max_bars_back(close,730):v~0~v:for(1;n;1){v:if(year(time@$3)\u003cyear){$2=$3-1~break~}~}~if_(close@$2\u003c0\u0026\u0026close\u003e0||close@$2==0){na():f}_{(close-close@$2)*100/abs(close@$2)}~$8;v^time~$16(i:#0)~if_($1\u003c$0){na():f}_{0.0~v:for(0;n;1){v:if(time@$4\u003c$1){break~}~$3=$3+close@$4~}~$3};v^year(time,syminfo.timezone)~if_(year(timenow,syminfo.timezone)==$0){na():f}_{v^0.0~v:if(year(time@1,syminfo.timezone)\u003cyear(time,syminfo.timezone)){$2=0~}~$2=$2+close~$2};t:#0==''?tickerid:#0;close~$0;$17(i:7,i:10)~$17(i:30,i:10)~$17(i:90,i:10)~$17(i:180,i:10)~$17(i:365,i:10)~$17(i:1826,i:10)~$18()~$0!$1!$2!$3!$4!$5!$6;$19(i:30)~$19(i:90)~$19(i:365)~$19(i:1095)~$19(i:1826)~$20()~$0!$1!$2!$3!$4!$5;$17(i:30,i:10)~$17(i:90,i:10)~$17(i:365,i:10)~$17(i:1095,i:10)~$17(i:1826,i:10)~$18()~$0!$1!$2!$3!$4!$5;$17(i:30,i:10)~$17(i:90,i:10)~$17(i:180,i:10)~$17(i:365,i:10)~$17(i:1095,i:10)~$17(i:1826,i:10)~$18()~$0!$1!$2!$3!$4!$5!$6;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\u003c$161~close\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\u003e$147\u0026\u0026close\u003e$146\u0026\u0026close\u003c$145\u0026\u0026close@1\u003c$144\u0026\u0026close\u003e$144,$147\u003e$146\u0026\u0026close\u003c$147\u0026\u0026close\u003e$145\u0026\u0026close@1\u003e$144\u0026\u0026close\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\u003c30\u0026\u0026$190@1\u003c$190,$190\u003e70\u0026\u0026$190@1\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\u003c20\u0026\u0026$102\u003c20\u0026\u0026$101\u003e$102\u0026\u0026$101@1\u003c$102@1,$101\u003e80\u0026\u0026$102\u003e80\u0026\u0026$101\u003c$102\u0026\u0026$101@1\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\u003c(-100)\u0026\u0026$193\u003e$193@1,$193\u003e100\u0026\u0026$193\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\u003e20\u0026\u0026$61@1\u003c$62@1\u0026\u0026$61\u003e$62,$60\u003e20\u0026\u0026$61@1\u003e$62@1\u0026\u0026$61\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\u003e0\u0026\u0026$119@1\u003e0\u0026\u0026$119\u003e$119@1\u0026\u0026$119@2\u003e$119@1,crossunder($119,0)||$119\u003c0\u0026\u0026$119@1\u003c0\u0026\u0026$119\u003c$119@1\u0026\u0026$119@2\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\u003e$96@1,$96\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\u003e$94,$93\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\u0026\u0026$133\u003c20\u0026\u0026$134\u003c20\u0026\u0026$133\u003e$134\u0026\u0026$133@1\u003c$134@1,$163\u0026\u0026$133\u003e80\u0026\u0026$134\u003e80\u0026\u0026$133\u003c$134\u0026\u0026$133@1\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\u003c(-80)\u0026\u0026$136\u003e$136@1,$136\u003e(-20)\u0026\u0026$136\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\u0026\u0026$139\u003c0\u0026\u0026$139\u003e$139@1,$162\u0026\u0026$138\u003e0\u0026\u0026$138\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\u003e70,$141\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\u003c$225~$224\u003e$225~high-$222~$223-low~close\u003c$221~close\u003e$221~$228\u003e0*$224~$229\u003e0*$224~open\u003cclose~open\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\u003c100\u0026\u0026(abs($229-$228)/$228)*100\u003c100~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$223\u003ehl2\u0026\u0026$229\u003e=2.0*$224\u0026\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$222\u003chl2\u0026\u0026$228\u003e=2.0*$224\u0026\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\u0026\u0026$226@1\u0026\u0026$227){v:if_($230\u0026\u0026$235@2\u0026\u0026$222@1\u003c$223@2\u0026\u0026$234\u0026\u0026$222\u003e=$237@2\u0026\u0026$222\u003c$222@2\u0026\u0026$222@1\u003c$223){$253=1.0~}_{v:if($231\u0026\u0026$234@2\u0026\u0026$223@1\u003e$222@2\u0026\u0026$235\u0026\u0026$223\u003c=$237@2\u0026\u0026$223\u003e$223@2\u0026\u0026$223@1\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\u0026\u0026$228\u003c=0*$224\u0026\u0026$229\u003c=0*$224~$260\u0026\u0026$234~$260\u0026\u0026$235~$262?1:0~$261?1:0~$236\u003e0\u0026\u0026$224\u003c=$236*5/100~$265\u0026\u0026$238~$265\u0026\u0026$228\u003c=$224~$265\u0026\u0026$229\u003c=$224~$266\u0026\u0026!$267\u0026\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\u0026\u0026$235@1\u0026\u0026$230@1\u0026\u0026$234\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$227@1\u0026\u0026$234@1\u0026\u0026$231@1\u0026\u0026$235\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$229\u003e($236/100)*75?1:0~$228\u003e($236/100)*75?1:0~$229\u003e=($236/100)*34\u0026\u0026$228\u003e=($236/100)*34\u0026\u0026!$265~$276\u0026\u0026$234?1:0~$276\u0026\u0026$235?1:0~$236*5/100\u003e$228~$236*5/100\u003e$229~0.0~0.0~v:if($227\u0026\u0026$227@1\u0026\u0026$227@2){v:if($234\u0026\u0026$234@1\u0026\u0026$234@2){$281=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$279\u0026\u0026$279@1\u0026\u0026$279@2~}~v:if($235\u0026\u0026$235@1\u0026\u0026$235@2){$282=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$280\u0026\u0026$280@1\u0026\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\u0026\u0026$234\u0026\u0026$227\u0026\u0026$235@1\u0026\u0026$226@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$231\u0026\u0026$235\u0026\u0026$227\u0026\u0026$234@1\u0026\u0026$226@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$230@2\u0026\u0026$235@2\u0026\u0026$265@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$234\u0026\u0026high@1\u003clow?1:0~$231@2\u0026\u0026$234@2\u0026\u0026$265@1\u0026\u0026high@2\u003clow@1\u0026\u0026$235\u0026\u0026low@1\u003ehigh?1:0~$266@2\u0026\u0026$266@1\u0026\u0026$266~$222@1\u003c$223~$223@1\u003e$222~$292\u0026\u0026$230@2\u0026\u0026$294@1\u0026\u0026$293?1:0~$292\u0026\u0026$231@2\u0026\u0026$293@1\u0026\u0026$294?1:0~$262@1\u0026\u0026$261\u0026\u0026high@1\u003clow?1:0~$261@1\u0026\u0026$262\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~v^open~v^high~v^low~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($310!=$310@1){$306=$303~$309=close@1~$307=$304~$308=$305~$303=open~$304=high~$305=low~}_{$304=max($304,high)~$305=min($305,low)~}~($307+$308+$309)/3~$8($312)~$8($312*2-$308)~$8($312*2-$307)~$8($312+1*($307-$308))~$8($312-1*($307-$308))~$8($312+2*($307-$308))~$8($312-2*($307-$308))~$8($312)~$8($312+0.382*($307-$308))~$8($312-0.382*($307-$308))~$8($312+0.618*($307-$308))~$8($312-0.618*($307-$308))~$8($312+1*($307-$308))~$8($312-1*($307-$308))~($307+$308+$303*2)/4~$8($327)~$8($327*2-$308)~$8($327*2-$307)~$8($327+1*($307-$308))~$8($327-1*($307-$308))~$8($307+2*($327-$308))~$8($308-2*($307-$327))~$307+$308*2+$309~v:if($309==$306){$335=$307+$308+$309*2~}~v:if($309\u003e$306){$335=$307*2+$308+$309~}~$8($335/4)~$8($335/2-$308)~$8($335/2-$307)~$8($312)~$8($309+0.09166666666666667*($307-$308))~$8($309-0.09166666666666667*($307-$308))~$8($309+0.18333333333333335*($307-$308))~$8($309-0.18333333333333335*($307-$308))~$8($309+0.275*($307-$308))~$8($309-0.275*($307-$308))~v^high~v^time/1000~v^low~v:if(high\u003e$348){$348=high~$349=time/1000~$350=low~}~v:if(low\u003c$350){$350=low~}~$348~$349~$348~$349~$350~v^low~v^time/1000~v:if(low\u003c$358){$358=low~$359=time/1000~}~$358~$359~$358~$359~v^open~timenow-315532800000~$11($366,i:3652)~timenow-157766400000~$11($368,i:1826)~timenow-94608000000~$11($370,i:1095)~timenow-31449600000~$11($372,i:364)~s2:$9($373,i:364):s2~s2:$10($373,i:364):s2~timenow-15552000000~$11($378,i:180)~s2:$9($379,i:180):s2~s2:$10($379,i:180):s2~timenow-7776000000~$11($384,i:90)~s2:$9($385,i:90):s2~s2:$10($385,i:90):s2~time-2592000000~timenow-2592000000~$11($391,i:30)~$11($390,i:30)~s2:$9($392,i:30):s2~s2:$10($392,i:30):s2~timenow-604800000~time-604800000~$11($398,i:7)~$11($399,i:7)~s2:$9($400,i:7):s2~s2:$10($400,i:7):s2~$12($401)~$12($393)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$11($410,i:365)~$15()~((close-open@4)/open@4)*100~$14($400,i:7)~$14($392,i:30)~$14($385,i:90)~$14($379,i:180)~$14($411,i:365)~$14($371,i:1095)~$14($369,i:1826)~$14($367,i:3652)~time_tradingday/1000~#0~#1~#2~#3~#4~#5~#6~#7~#8~#9~#10~#11~#12~#13~#14~#15~#16~#17~#18~#19~#20~#21~#22~#23~#24~#25~#26~#27~#28~#29~#30~#31~#32~#33~v^na():f~v:if(!na($456)){$457=(close/$456-1)*100~}~$457~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$328!$329!$330!$331!$332!$333!$334!$338!$339!$340!$341!$342!$343!$344!$345!$346!$347!$353!$354!$355!$356!$357!$361!$362!$363!$364!$365!$374!$375!$376!$377!$380!$381!$382!$383!$386!$387!$388!$389!$394!$395!$396!$397!$402!$404!$406!$407!$408!$409!$413!$414!$415!$416!$417!$418!$419!$420!$421!$412!$422!$423!$424!$425!$426!$427!$428!$429!$430!$431!$432!$433!$434!$435!$436!$437!$438!$439!$440!$441!$442!$443!$444!$445!$446!$447!$448!$449!$450!$451!$452!$453!$454!$455!$459;t:str.format(t:'{0}_{1}',t:ticker.standard(tickerid):t,t:'OI'):t~i:na():f~sym($28,'D','D',0,0,1,'NONE',0,0,$29)|$22()|t:__financial_tickerid(tickerid,'MARKET_CAP_BASIC','D'):t~t:isintraday?'D':period~sym($33,$34,$34,0,0,1,'NONE',0,0,$29)|$23():s7|t:__financial_tickerid(tickerid,'FUND_FLOWS','D'):t~sym($44,$34,$34,0,0,1,'NONE',0,0,$29)|$24():s6|t:__financial_tickerid(tickerid,'NAV','D'):t~sym($53,$34,$34,0,0,1,'NONE',0,0,$29)|$25():s6|t:__financial_tickerid(tickerid,'AUM','D'):t~sym($62,$34,$34,0,0,1,'NONE',0,0,$29)|$25():s6|t:__financial_tickerid(tickerid,'NAV_ALL','D'):t~sym($71,$34,$34,0,0,1,'NONE',0,0,$29)|$26():s7|t:input('in_0','')~t:__financial_tickerid($21(t:$81):t,'NAV','D'):t~sym($82,'D','D',1,0,1,'NONE',0,0,$29)|$22()|s292:$27($31,$36,$37,$38,$39,$40,$41,$42,$46,$47,$48,$49,$50,$51,$55,$56,$57,$58,$59,$60,$64,$65,$66,$67,$68,$69,$73,$74,$75,$76,$77,$78,$79,$84):s292~$86!$87!$88!$89!$90!$91!$92!$93!$94!$171!$96!$97!$98!$99!$174!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$189!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295!$296!$297!$298!$299!$300!$301!$302!$303!$304!$305!$306!$307!$308!$309!$310!$311!$312!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$330!$331!$332!$333!$334!$335!$336!$337!$338!$339!$340!$341!$342!$343!$344!$345!$346!$347!$348!$349!$350!$351!$352!$353!$354!$355!$356!$357!$358!$359!$360!$361!$362!$363!$364!$365!$366!$367!$368!$369!$370!$371!$372!$373!$374!$375!$376!$377", + "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;i:#1+1~low@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){low!time/1000}_{#0~#0+1~v:if(!na(low@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(low@$10\u003clow@$9){$9=$10~}~}~low@$9!time@$9/1000};i:#1+1~high@$0*time@$0~s2:ifelif_(#0==0){na():f+$1!na():f}elif(#0==1){high!time/1000}_{#0~#0+1~v:if(!na(high@$7)){$6=$6-1~}~0~v:for(0;$6;1){v:if(high@$10\u003ehigh@$9){$9=$10~}~}~high@$9!time@$9/1000};0*time@#1~min(n,#1)~0~if_(time\u003c#0){i:0}_{v:for(0;9;1){$0=ceil(($2+$1)/2)~v:ifelif_($2==$1){break~}elif(time@$0\u003c#0){$1=$0~continue~}elif(time@$0\u003e#0){$2=$0~continue~}_{break~}~}~$0};#0~v:if(n==0){$0=365~}~if_($0==0){na():f}_{sum(((high-low)/abs(low))*100/$0,$0)~if_(#0==0){na():f}_{$3}};if_(#0\u003c0\u0026\u0026close\u003e0){na():f}_{(close-#0)*100/abs(#0)};open@#1*0+#0==0?na():f:$13(open@#0);v^open~year~v:if(year\u003e$1@1){$0=open~}~$13($0);time_closeV5('D',syminfo.session,syminfo.timezone,0)-(#0*86400000);$16(i:#0)~if_(time\u003c$0){na():f}_{0~v:for(0;n;1){v:if(time@$3\u003c$0){$2=$3-1~break~}~}~if(time@$2-$0\u003c#1*86400000){if_(close@$2\u003c0\u0026\u0026close\u003e0||close@$2==0){na():f}_{(close-close@$2)*100/abs(close@$2)}}~$9};v:max_bars_back(time,730):v~v:max_bars_back(close,730):v~0~v:for(1;n;1){v:if(year(time@$3)\u003cyear){$2=$3-1~break~}~}~if_(close@$2\u003c0\u0026\u0026close\u003e0||close@$2==0){na():f}_{(close-close@$2)*100/abs(close@$2)}~$8;v^time~$16(i:#0)~if_($1\u003c$0){na():f}_{0.0~v:for(0;n;1){v:if(time@$4\u003c$1){break~}~$3=$3+close@$4~}~$3};v^year(time,syminfo.timezone)~if_(year(timenow,syminfo.timezone)==$0){na():f}_{v^0.0~v:if(year(time@1,syminfo.timezone)\u003cyear(time,syminfo.timezone)){$2=0~}~$2=$2+close~$2};t:#0==''?tickerid:#0;close~$0;$22();$17(i:7,i:10)~$17(i:30,i:10)~$17(i:90,i:10)~$17(i:180,i:10)~$17(i:365,i:10)~$17(i:1826,i:10)~$18()~$0!$1!$2!$3!$4!$5!$6;s7:$24():s7;$19(i:30)~$19(i:90)~$19(i:365)~$19(i:1095)~$19(i:1826)~$20()~$0!$1!$2!$3!$4!$5;s6:$26():s6;$17(i:30,i:10)~$17(i:90,i:10)~$17(i:365,i:10)~$17(i:1095,i:10)~$17(i:1826,i:10)~$18()~$0!$1!$2!$3!$4!$5;s6:$28():s6;s6:$28():s6;$17(i:30,i:10)~$17(i:90,i:10)~$17(i:180,i:10)~$17(i:365,i:10)~$17(i:1095,i:10)~$17(i:1826,i:10)~$18()~$0!$1!$2!$3!$4!$5!$6;s7:$31():s7;$22();sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\u003c$229~close\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\u003e$212\u0026\u0026close\u003e$211\u0026\u0026close\u003c$210\u0026\u0026close@1\u003c$209\u0026\u0026close\u003e$209,$212\u003e$211\u0026\u0026close\u003c$212\u0026\u0026close\u003e$210\u0026\u0026close@1\u003e$209\u0026\u0026close\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\u003c30\u0026\u0026$258@1\u003c$258,$258\u003e70\u0026\u0026$258@1\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\u003c20\u0026\u0026$107\u003c20\u0026\u0026$106\u003e$107\u0026\u0026$106@1\u003c$107@1,$106\u003e80\u0026\u0026$107\u003e80\u0026\u0026$106\u003c$107\u0026\u0026$106@1\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\u003c(-100)\u0026\u0026$261\u003e$261@1,$261\u003e100\u0026\u0026$261\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\u003e20\u0026\u0026$64@1\u003c$65@1\u0026\u0026$64\u003e$65,$63\u003e20\u0026\u0026$64@1\u003e$65@1\u0026\u0026$64\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\u003e0\u0026\u0026$174@1\u003e0\u0026\u0026$174\u003e$174@1\u0026\u0026$174@2\u003e$174@1,crossunder($174,0)||$174\u003c0\u0026\u0026$174@1\u003c0\u0026\u0026$174\u003c$174@1\u0026\u0026$174@2\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\u003e$99@1,$99\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\u003e$97,$96\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\u0026\u0026$191\u003c20\u0026\u0026$192\u003c20\u0026\u0026$191\u003e$192\u0026\u0026$191@1\u003c$192@1,$231\u0026\u0026$191\u003e80\u0026\u0026$192\u003e80\u0026\u0026$191\u003c$192\u0026\u0026$191@1\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\u003c(-80)\u0026\u0026$194\u003e$194@1,$194\u003e(-20)\u0026\u0026$194\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\u0026\u0026$204\u003c0\u0026\u0026$204\u003e$204@1,$230\u0026\u0026$203\u003e0\u0026\u0026$203\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\u003e70,$206\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\u003c$293~$292\u003e$293~high-$290~$291-low~close\u003c$289~close\u003e$289~$296\u003e0*$292~$297\u003e0*$292~open\u003cclose~open\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\u003c100\u0026\u0026(abs($297-$296)/$296)*100\u003c100~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$291\u003ehl2\u0026\u0026$297\u003e=2.0*$292\u0026\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$290\u003chl2\u0026\u0026$296\u003e=2.0*$292\u0026\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\u0026\u0026$294@1\u0026\u0026$295){v:if_($298\u0026\u0026$303@2\u0026\u0026$290@1\u003c$291@2\u0026\u0026$302\u0026\u0026$290\u003e=$305@2\u0026\u0026$290\u003c$290@2\u0026\u0026$290@1\u003c$291){$321=1.0~}_{v:if($299\u0026\u0026$302@2\u0026\u0026$291@1\u003e$290@2\u0026\u0026$303\u0026\u0026$291\u003c=$305@2\u0026\u0026$291\u003e$291@2\u0026\u0026$291@1\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\u0026\u0026$296\u003c=0*$292\u0026\u0026$297\u003c=0*$292~$328\u0026\u0026$302~$328\u0026\u0026$303~$330?1:0~$329?1:0~$304\u003e0\u0026\u0026$292\u003c=$304*5/100~$333\u0026\u0026$306~$333\u0026\u0026$296\u003c=$292~$333\u0026\u0026$297\u003c=$292~$334\u0026\u0026!$335\u0026\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\u0026\u0026$303@1\u0026\u0026$298@1\u0026\u0026$302\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$295@1\u0026\u0026$302@1\u0026\u0026$299@1\u0026\u0026$303\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$297\u003e($304/100)*75?1:0~$296\u003e($304/100)*75?1:0~$297\u003e=($304/100)*34\u0026\u0026$296\u003e=($304/100)*34\u0026\u0026!$333~$344\u0026\u0026$302?1:0~$344\u0026\u0026$303?1:0~$304*5/100\u003e$296~$304*5/100\u003e$297~0.0~0.0~v:if($295\u0026\u0026$295@1\u0026\u0026$295@2){v:if($302\u0026\u0026$302@1\u0026\u0026$302@2){$349=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$347\u0026\u0026$347@1\u0026\u0026$347@2~}~v:if($303\u0026\u0026$303@1\u0026\u0026$303@2){$350=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$348\u0026\u0026$348@1\u0026\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\u0026\u0026$302\u0026\u0026$295\u0026\u0026$303@1\u0026\u0026$294@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$299\u0026\u0026$303\u0026\u0026$295\u0026\u0026$302@1\u0026\u0026$294@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$298@2\u0026\u0026$303@2\u0026\u0026$333@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$302\u0026\u0026high@1\u003clow?1:0~$299@2\u0026\u0026$302@2\u0026\u0026$333@1\u0026\u0026high@2\u003clow@1\u0026\u0026$303\u0026\u0026low@1\u003ehigh?1:0~$334@2\u0026\u0026$334@1\u0026\u0026$334~$290@1\u003c$291~$291@1\u003e$290~$360\u0026\u0026$298@2\u0026\u0026$362@1\u0026\u0026$361?1:0~$360\u0026\u0026$299@2\u0026\u0026$361@1\u0026\u0026$362?1:0~$330@1\u0026\u0026$329\u0026\u0026high@1\u003clow?1:0~$329@1\u0026\u0026$330\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~v^open~v^high~v^low~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($378!=$378@1){$374=$371~$377=close@1~$375=$372~$376=$373~$371=open~$372=high~$373=low~}_{$372=max($372,high)~$373=min($373,low)~}~($375+$376+$377)/3~$8($380)~$8($380*2-$376)~$8($380*2-$375)~$8($380+1*($375-$376))~$8($380-1*($375-$376))~$8($380+2*($375-$376))~$8($380-2*($375-$376))~$8($380)~$8($380+0.382*($375-$376))~$8($380-0.382*($375-$376))~$8($380+0.618*($375-$376))~$8($380-0.618*($375-$376))~$8($380+1*($375-$376))~$8($380-1*($375-$376))~($375+$376+$371*2)/4~$8($395)~$8($395*2-$376)~$8($395*2-$375)~$8($395+1*($375-$376))~$8($395-1*($375-$376))~$8($375+2*($395-$376))~$8($376-2*($375-$395))~$375+$376*2+$377~v:if($377==$374){$403=$375+$376+$377*2~}~v:if($377\u003e$374){$403=$375*2+$376+$377~}~$8($403/4)~$8($403/2-$376)~$8($403/2-$375)~$8($380)~$8($377+0.09166666666666667*($375-$376))~$8($377-0.09166666666666667*($375-$376))~$8($377+0.18333333333333335*($375-$376))~$8($377-0.18333333333333335*($375-$376))~$8($377+0.275*($375-$376))~$8($377-0.275*($375-$376))~v^high~v^time/1000~v^low~v:if(high\u003e$416){$416=high~$417=time/1000~$418=low~}~v:if(low\u003c$418){$418=low~}~$416~$417~$416~$417~$418~v^low~v^time/1000~v:if(low\u003c$426){$426=low~$427=time/1000~}~$426~$427~$426~$427~v^open~timenow-315532800000~$11($434,i:3652)~timenow-157766400000~$11($436,i:1826)~timenow-94608000000~$11($438,i:1095)~timenow-31449600000~$11($440,i:364)~s2:$9($441,i:364):s2~s2:$10($441,i:364):s2~timenow-15552000000~$11($446,i:180)~s2:$9($447,i:180):s2~s2:$10($447,i:180):s2~timenow-7776000000~$11($452,i:90)~s2:$9($453,i:90):s2~s2:$10($453,i:90):s2~time-2592000000~timenow-2592000000~$11($459,i:30)~$11($458,i:30)~s2:$9($460,i:30):s2~s2:$10($460,i:30):s2~timenow-604800000~time-604800000~$11($466,i:7)~$11($467,i:7)~s2:$9($468,i:7):s2~s2:$10($468,i:7):s2~$12($469)~$12($461)~tr(1.0)*100/abs(low)~v^time/1000~timenow-31536000000~$11($478,i:365)~$15()~((close-open@4)/open@4)*100~$14($468,i:7)~$14($460,i:30)~$14($453,i:90)~$14($447,i:180)~$14($479,i:365)~$14($439,i:1095)~$14($437,i:1826)~$14($435,i:3652)~time_tradingday/1000~#0~#1~#2~#3~#4~#5~#6~#7~#8~#9~#10~#11~#12~#13~#14~#15~#16~#17~#18~#19~#20~#21~#22~#23~#24~#25~#26~#27~#28~#29~#30~#31~#32~#33~v^na():f~v:if(!na($524)){$525=(close/$524-1)*100~}~$525~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$381!$382!$383!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$396!$397!$398!$399!$400!$401!$402!$406!$407!$408!$409!$410!$411!$412!$413!$414!$415!$421!$422!$423!$424!$425!$429!$430!$431!$432!$433!$442!$443!$444!$445!$448!$449!$450!$451!$454!$455!$456!$457!$462!$463!$464!$465!$470!$472!$474!$475!$476!$477!$481!$482!$483!$484!$485!$486!$487!$488!$489!$480!$490!$491!$492!$493!$494!$495!$496!$497!$498!$499!$500!$501!$502!$503!$504!$505!$506!$507!$508!$509!$510!$511!$512!$513!$514!$515!$516!$517!$518!$519!$520!$521!$522!$523!$527;t:str.format(t:'{0}_{1}',t:ticker.standard(tickerid):t,t:'OI'):t~i:na():f~sym($35,'D','D',0,0,1,'NONE',0,0,$36)|$23()|t:__financial_tickerid(tickerid,'MARKET_CAP_BASIC','D'):t~t:isintraday?'D':period~sym($40,$41,$41,0,0,1,'NONE',0,0,$36)|$25():s7|t:__financial_tickerid(tickerid,'FUND_FLOWS','D'):t~sym($51,$41,$41,0,0,1,'NONE',0,0,$36)|$27():s6|t:__financial_tickerid(tickerid,'NAV','D'):t~sym($60,$41,$41,0,0,1,'NONE',0,0,$36)|$29():s6|t:__financial_tickerid(tickerid,'AUM','D'):t~sym($69,$41,$41,0,0,1,'NONE',0,0,$36)|$30():s6|t:__financial_tickerid(tickerid,'NAV_ALL','D'):t~sym($78,$41,$41,0,0,1,'NONE',0,0,$36)|$32():s7|t:input('in_0','')~t:__financial_tickerid($21(t:$88):t,'NAV','D'):t~sym($89,'D','D',1,0,1,'NONE',0,0,$36)|$33()|s350:$34($38,$43,$44,$45,$46,$47,$48,$49,$53,$54,$55,$56,$57,$58,$62,$63,$64,$65,$66,$67,$71,$72,$73,$74,$75,$76,$80,$81,$82,$83,$84,$85,$86,$91):s350~$93!$94!$95!$96!$97!$98!$99!$100!$101!$180!$103!$104!$105!$106!$183!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295!$296!$297!$298!$299!$300!$301!$302!$303!$304!$305!$306!$307!$308!$309!$310!$311!$312!$313!$314!$315!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$330!$331!$332!$333!$334!$335!$336!$337!$338!$339!$340!$341!$342!$343!$344!$345!$346!$347!$348!$349!$350!$351!$352!$353!$354!$355!$356!$357!$358!$359!$360!$361!$362!$363!$364!$365!$366!$367!$368!$369!$370!$371!$372!$373!$374!$375!$376!$377!$378!$379!$380!$381!$382!$383!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$395!$396!$397!$398!$399!$400!$401!$402!$403!$404!$405!$406!$407!$408!$409!$410!$411!$412!$413!$414!$415!$416!$417!$418!$419!$420!$421!$422!$423!$424!$425!$426!$427!$428!$429!$430!$431!$432!$433!$434!$435!$436!$437!$438!$439!$440!$441!$442", "isFake": false }, { @@ -1190,6 +1190,238 @@ { "id": "plot_291", "type": "line" + }, + { + "id": "plot_292", + "type": "line" + }, + { + "id": "plot_293", + "type": "line" + }, + { + "id": "plot_294", + "type": "line" + }, + { + "id": "plot_295", + "type": "line" + }, + { + "id": "plot_296", + "type": "line" + }, + { + "id": "plot_297", + "type": "line" + }, + { + "id": "plot_298", + "type": "line" + }, + { + "id": "plot_299", + "type": "line" + }, + { + "id": "plot_300", + "type": "line" + }, + { + "id": "plot_301", + "type": "line" + }, + { + "id": "plot_302", + "type": "line" + }, + { + "id": "plot_303", + "type": "line" + }, + { + "id": "plot_304", + "type": "line" + }, + { + "id": "plot_305", + "type": "line" + }, + { + "id": "plot_306", + "type": "line" + }, + { + "id": "plot_307", + "type": "line" + }, + { + "id": "plot_308", + "type": "line" + }, + { + "id": "plot_309", + "type": "line" + }, + { + "id": "plot_310", + "type": "line" + }, + { + "id": "plot_311", + "type": "line" + }, + { + "id": "plot_312", + "type": "line" + }, + { + "id": "plot_313", + "type": "line" + }, + { + "id": "plot_314", + "type": "line" + }, + { + "id": "plot_315", + "type": "line" + }, + { + "id": "plot_316", + "type": "line" + }, + { + "id": "plot_317", + "type": "line" + }, + { + "id": "plot_318", + "type": "line" + }, + { + "id": "plot_319", + "type": "line" + }, + { + "id": "plot_320", + "type": "line" + }, + { + "id": "plot_321", + "type": "line" + }, + { + "id": "plot_322", + "type": "line" + }, + { + "id": "plot_323", + "type": "line" + }, + { + "id": "plot_324", + "type": "line" + }, + { + "id": "plot_325", + "type": "line" + }, + { + "id": "plot_326", + "type": "line" + }, + { + "id": "plot_327", + "type": "line" + }, + { + "id": "plot_328", + "type": "line" + }, + { + "id": "plot_329", + "type": "line" + }, + { + "id": "plot_330", + "type": "line" + }, + { + "id": "plot_331", + "type": "line" + }, + { + "id": "plot_332", + "type": "line" + }, + { + "id": "plot_333", + "type": "line" + }, + { + "id": "plot_334", + "type": "line" + }, + { + "id": "plot_335", + "type": "line" + }, + { + "id": "plot_336", + "type": "line" + }, + { + "id": "plot_337", + "type": "line" + }, + { + "id": "plot_338", + "type": "line" + }, + { + "id": "plot_339", + "type": "line" + }, + { + "id": "plot_340", + "type": "line" + }, + { + "id": "plot_341", + "type": "line" + }, + { + "id": "plot_342", + "type": "line" + }, + { + "id": "plot_343", + "type": "line" + }, + { + "id": "plot_344", + "type": "line" + }, + { + "id": "plot_345", + "type": "line" + }, + { + "id": "plot_346", + "type": "line" + }, + { + "id": "plot_347", + "type": "line" + }, + { + "id": "plot_348", + "type": "line" + }, + { + "id": "plot_349", + "type": "line" } ], "version": "", @@ -1211,43 +1443,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -1255,43 +1487,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -1299,43 +1531,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1343,745 +1575,977 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { + "title": "CCI20", + "isHidden": false + }, + "plot_132": { + "title": "CCI20[1]", + "isHidden": false + }, + "plot_133": { + "title": "CCCI20", + "isHidden": false + }, + "plot_134": { + "title": "CCCI20[1]", + "isHidden": false + }, + "plot_135": { + "title": "CCCI7", + "isHidden": false + }, + "plot_136": { + "title": "CCCI7[1]", + "isHidden": false + }, + "plot_137": { + "title": "CCI14", + "isHidden": false + }, + "plot_138": { + "title": "CCI14[1]", + "isHidden": false + }, + "plot_139": { + "title": "CCI100", + "isHidden": false + }, + "plot_14": { + "title": "SMA50", + "isHidden": false + }, + "plot_140": { + "title": "CCI100[1]", + "isHidden": false + }, + "plot_141": { + "title": "DonchCh20.Lower", + "isHidden": false + }, + "plot_142": { + "title": "DonchCh20.Upper", + "isHidden": false + }, + "plot_143": { + "title": "DonchCh20.Middle", + "isHidden": false + }, + "plot_144": { + "title": "DonchCh96.Lower", + "isHidden": false + }, + "plot_145": { + "title": "DonchCh96.Upper", + "isHidden": false + }, + "plot_146": { + "title": "DonchCh96.Middle", + "isHidden": false + }, + "plot_147": { + "title": "DonchCh13.Lower", + "isHidden": false + }, + "plot_148": { + "title": "DonchCh13.Upper", + "isHidden": false + }, + "plot_149": { + "title": "DonchCh13.Middle", + "isHidden": false + }, + "plot_15": { + "title": "SMA75", + "isHidden": false + }, + "plot_150": { + "title": "DonchCh10.Lower", + "isHidden": false + }, + "plot_151": { + "title": "DonchCh10.Upper", + "isHidden": false + }, + "plot_152": { + "title": "DonchCh10.Middle", + "isHidden": false + }, + "plot_153": { + "title": "DonchCh1.Lower", + "isHidden": false + }, + "plot_154": { + "title": "DonchCh1.Upper", + "isHidden": false + }, + "plot_155": { + "title": "DonchCh1.Middle", + "isHidden": false + }, + "plot_156": { + "title": "HullMA9", + "isHidden": false + }, + "plot_157": { + "title": "HullMA200", + "isHidden": false + }, + "plot_158": { + "title": "HullMA1728", + "isHidden": false + }, + "plot_159": { + "title": "HullMA50", + "isHidden": false + }, + "plot_16": { + "title": "SMA100", + "isHidden": false + }, + "plot_160": { + "title": "HullMA100", + "isHidden": false + }, + "plot_161": { + "title": "HullMA20", + "isHidden": false + }, + "plot_162": { + "title": "HullMA144", + "isHidden": false + }, + "plot_163": { + "title": "HullMA256", + "isHidden": false + }, + "plot_164": { + "title": "AO", + "isHidden": false + }, + "plot_165": { + "title": "AO[1]", + "isHidden": false + }, + "plot_166": { + "title": "AO[2]", + "isHidden": false + }, + "plot_167": { + "title": "Aroon.Up", + "isHidden": false + }, + "plot_168": { + "title": "Aroon.Down", + "isHidden": false + }, + "plot_169": { + "title": "Aroon25.Up", + "isHidden": false + }, + "plot_17": { + "title": "SMA120", + "isHidden": false + }, + "plot_170": { + "title": "Aroon25.Down", + "isHidden": false + }, + "plot_171": { + "title": "Value.Traded", + "isHidden": false + }, + "plot_172": { + "title": "KltChnl.upper", + "isHidden": false + }, + "plot_173": { + "title": "KltChnl.lower", + "isHidden": false + }, + "plot_174": { + "title": "KltChnl.basis", + "isHidden": false + }, + "plot_175": { + "title": "P.SAR", + "isHidden": false + }, + "plot_176": { + "title": "MoneyFlow", + "isHidden": false + }, + "plot_177": { + "title": "MoneyFlow12", + "isHidden": false + }, + "plot_178": { + "title": "ChaikinMoneyFlow", + "isHidden": false + }, + "plot_179": { + "title": "Stoch.RSI.K", + "isHidden": false + }, + "plot_18": { + "title": "SMA150", + "isHidden": false + }, + "plot_180": { + "title": "Stoch.RSI.D", + "isHidden": false + }, + "plot_181": { "title": "W.R", "isHidden": false }, - "plot_132": { - "title": "ROC", + "plot_182": { + "title": "W.R14", + "isHidden": false + }, + "plot_183": { + "title": "W.R12", + "isHidden": false + }, + "plot_184": { + "title": "ROC", + "isHidden": false + }, + "plot_185": { + "title": "ROC1", + "isHidden": false + }, + "plot_186": { + "title": "ROC14", + "isHidden": false + }, + "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", "isHidden": false }, - "plot_133": { - "title": "BBPower", + "plot_19": { + "title": "SMA200", "isHidden": false }, - "plot_134": { + "plot_190": { "title": "UO", "isHidden": false }, - "plot_135": { + "plot_191": { "title": "Ichimoku.CLine", "isHidden": false }, - "plot_136": { + "plot_192": { "title": "Ichimoku.BLine", "isHidden": false }, - "plot_137": { + "plot_193": { "title": "Ichimoku.Lead1", "isHidden": false }, - "plot_138": { + "plot_194": { "title": "Ichimoku.Lead2", "isHidden": false }, - "plot_139": { + "plot_195": { "title": "Ichimoku.CLine_20_60_120_30", "isHidden": false }, - "plot_14": { - "title": "SMA50", - "isHidden": false - }, - "plot_140": { + "plot_196": { "title": "Ichimoku.BLine_20_60_120_30", "isHidden": false }, - "plot_141": { + "plot_197": { "title": "Ichimoku.Lead1_20_60_120_30", "isHidden": false }, - "plot_142": { + "plot_198": { "title": "Ichimoku.Lead2_20_60_120_30", "isHidden": false }, - "plot_143": { + "plot_199": { "title": "VWMA", "isHidden": false }, - "plot_144": { + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", + "isHidden": false + }, + "plot_201": { + "title": "VWMA50", + "isHidden": false + }, + "plot_202": { "title": "ADR", "isHidden": false }, - "plot_145": { + "plot_203": { "title": "ADRP", "isHidden": false }, - "plot_146": { + "plot_204": { "title": "Rec.HullMA9", "isHidden": false }, - "plot_147": { + "plot_205": { "title": "Rec.VWMA", "isHidden": false }, - "plot_148": { + "plot_206": { "title": "Rec.Ichimoku", "isHidden": false }, - "plot_149": { + "plot_207": { "title": "Recommend.MA", "isHidden": false }, - "plot_15": { - "title": "SMA75", - "isHidden": false - }, - "plot_150": { + "plot_208": { "title": "Rec.Stoch.RSI", "isHidden": false }, - "plot_151": { + "plot_209": { "title": "Rec.WR", "isHidden": false }, - "plot_152": { + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { "title": "Rec.BBPower", "isHidden": false }, - "plot_153": { + "plot_211": { "title": "Rec.UO", "isHidden": false }, - "plot_154": { + "plot_212": { "title": "Recommend.Other", "isHidden": false }, - "plot_155": { + "plot_213": { "title": "Recommend.All", "isHidden": false }, - "plot_156": { + "plot_214": { "title": "Candle.Hammer", "isHidden": false }, - "plot_157": { + "plot_215": { "title": "Candle.HangingMan", "isHidden": false }, - "plot_158": { + "plot_216": { "title": "Candle.InvertedHammer", "isHidden": false }, - "plot_159": { + "plot_217": { "title": "Candle.ShootingStar", "isHidden": false }, - "plot_16": { - "title": "SMA100", - "isHidden": false - }, - "plot_160": { + "plot_218": { "title": "Candle.MorningStar", "isHidden": false }, - "plot_161": { + "plot_219": { "title": "Candle.EveningStar", "isHidden": false }, - "plot_162": { + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { "title": "Candle.Marubozu.Black", "isHidden": false }, - "plot_163": { + "plot_221": { "title": "Candle.Marubozu.White", "isHidden": false }, - "plot_164": { + "plot_222": { "title": "Candle.Doji", "isHidden": false }, - "plot_165": { + "plot_223": { "title": "Candle.Doji.Dragonfly", "isHidden": false }, - "plot_166": { + "plot_224": { "title": "Candle.Doji.Gravestone", "isHidden": false }, - "plot_167": { + "plot_225": { "title": "Candle.Harami.Bullish", "isHidden": false }, - "plot_168": { + "plot_226": { "title": "Candle.Harami.Bearish", "isHidden": false }, - "plot_169": { + "plot_227": { "title": "Candle.LongShadow.Lower", "isHidden": false }, - "plot_17": { - "title": "SMA120", - "isHidden": false - }, - "plot_170": { + "plot_228": { "title": "Candle.LongShadow.Upper", "isHidden": false }, - "plot_171": { + "plot_229": { "title": "Candle.SpinningTop.White", "isHidden": false }, - "plot_172": { + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { "title": "Candle.SpinningTop.Black", "isHidden": false }, - "plot_173": { + "plot_231": { "title": "Candle.3WhiteSoldiers", "isHidden": false }, - "plot_174": { + "plot_232": { "title": "Candle.3BlackCrows", "isHidden": false }, - "plot_175": { + "plot_233": { "title": "Candle.Engulfing.Bullish", "isHidden": false }, - "plot_176": { + "plot_234": { "title": "Candle.Engulfing.Bearish", "isHidden": false }, - "plot_177": { + "plot_235": { "title": "Candle.AbandonedBaby.Bullish", "isHidden": false }, - "plot_178": { + "plot_236": { "title": "Candle.AbandonedBaby.Bearish", "isHidden": false }, - "plot_179": { + "plot_237": { "title": "Candle.TriStar.Bullish", "isHidden": false }, - "plot_18": { - "title": "SMA150", - "isHidden": false - }, - "plot_180": { + "plot_238": { "title": "Candle.TriStar.Bearish", "isHidden": false }, - "plot_181": { + "plot_239": { "title": "Candle.Kicking.Bullish", "isHidden": false }, - "plot_182": { + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { "title": "Candle.Kicking.Bearish", "isHidden": false }, - "plot_183": { + "plot_241": { "title": "VWAP", "isHidden": false }, - "plot_184": { + "plot_242": { "title": "Pivot.M.Classic.Middle", "isHidden": false }, - "plot_185": { + "plot_243": { "title": "Pivot.M.Classic.R1", "isHidden": false }, - "plot_186": { + "plot_244": { "title": "Pivot.M.Classic.S1", "isHidden": false }, - "plot_187": { + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_215": { + "plot_273": { "title": "High.All", "isHidden": false }, - "plot_216": { + "plot_274": { "title": "High.All.Date", "isHidden": false }, - "plot_217": { + "plot_275": { "title": "High.All.Calc", "isHidden": false }, - "plot_218": { + "plot_276": { "title": "High.All.Calc.Date", "isHidden": false }, - "plot_219": { + "plot_277": { "title": "Low.After.High.All", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_220": { + "plot_278": { "title": "Low.All", "isHidden": false }, - "plot_221": { + "plot_279": { "title": "Low.All.Date", "isHidden": false }, - "plot_222": { + "plot_28": { + "title": "EMA10", + "isHidden": false + }, + "plot_280": { "title": "Low.All.Calc", "isHidden": false }, - "plot_223": { + "plot_281": { "title": "Low.All.Calc.Date", "isHidden": false }, - "plot_224": { + "plot_282": { "title": "Open.All.Calc", "isHidden": false }, - "plot_225": { + "plot_283": { "title": "price_52_week_low", "isHidden": false }, - "plot_226": { + "plot_284": { "title": "price_52_week_low_date", "isHidden": false }, - "plot_227": { + "plot_285": { "title": "price_52_week_high", "isHidden": false }, - "plot_228": { + "plot_286": { "title": "price_52_week_high_date", "isHidden": false }, - "plot_229": { + "plot_287": { "title": "Low.6M", "isHidden": false }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_230": { + "plot_288": { "title": "Low.6M.Date", "isHidden": false }, - "plot_231": { + "plot_289": { "title": "High.6M", "isHidden": false }, - "plot_232": { + "plot_29": { + "title": "EMA12", + "isHidden": false + }, + "plot_290": { "title": "High.6M.Date", "isHidden": false }, - "plot_233": { + "plot_291": { "title": "Low.3M", "isHidden": false }, - "plot_234": { + "plot_292": { "title": "Low.3M.Date", "isHidden": false }, - "plot_235": { + "plot_293": { "title": "High.3M", "isHidden": false }, - "plot_236": { + "plot_294": { "title": "High.3M.Date", "isHidden": false }, - "plot_237": { + "plot_295": { "title": "Low.1M", "isHidden": false }, - "plot_238": { + "plot_296": { "title": "Low.1M.Date", "isHidden": false }, - "plot_239": { + "plot_297": { "title": "High.1M", "isHidden": false }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_240": { + "plot_298": { "title": "High.1M.Date", "isHidden": false }, - "plot_241": { + "plot_299": { "title": "Low.5D", "isHidden": false }, - "plot_242": { + "plot_3": { + "title": "SMA7", + "isHidden": false + }, + "plot_30": { + "title": "EMA13", + "isHidden": false + }, + "plot_300": { "title": "High.5D", "isHidden": false }, - "plot_243": { + "plot_301": { "title": "Volatility.W", "isHidden": false }, - "plot_244": { + "plot_302": { "title": "Volatility.M", "isHidden": false }, - "plot_245": { + "plot_303": { "title": "Volatility.D", "isHidden": false }, - "plot_246": { + "plot_304": { "title": "first_bar_time", "isHidden": false }, - "plot_247": { + "plot_305": { "title": "Perf.5D", "isHidden": false }, - "plot_248": { + "plot_306": { "title": "Perf.W", "isHidden": false }, - "plot_249": { + "plot_307": { "title": "Perf.1M", "isHidden": false }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_250": { + "plot_308": { "title": "Perf.3M", "isHidden": false }, - "plot_251": { + "plot_309": { "title": "Perf.6M", "isHidden": false }, - "plot_252": { + "plot_31": { + "title": "EMA20", + "isHidden": false + }, + "plot_310": { "title": "Perf.Y", "isHidden": false }, - "plot_253": { + "plot_311": { "title": "Perf.3Y", "isHidden": false }, - "plot_254": { + "plot_312": { "title": "Perf.5Y", "isHidden": false }, - "plot_255": { + "plot_313": { "title": "Perf.10Y", "isHidden": false }, - "plot_256": { + "plot_314": { "title": "Perf.YTD", "isHidden": false }, - "plot_257": { + "plot_315": { "title": "time_business_day", "isHidden": false }, - "plot_258": { + "plot_316": { "title": "open_interest", "isHidden": false }, - "plot_259": { + "plot_317": { "title": "Perf.1W.MarketCap", "isHidden": false }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_260": { + "plot_318": { "title": "Perf.1M.MarketCap", "isHidden": false }, - "plot_261": { + "plot_319": { "title": "Perf.3M.MarketCap", "isHidden": false }, - "plot_262": { + "plot_32": { + "title": "EMA21", + "isHidden": false + }, + "plot_320": { "title": "Perf.6M.MarketCap", "isHidden": false }, - "plot_263": { + "plot_321": { "title": "Perf.1Y.MarketCap", "isHidden": false }, - "plot_264": { + "plot_322": { "title": "Perf.5Y.MarketCap", "isHidden": false }, - "plot_265": { + "plot_323": { "title": "Perf.YTD.MarketCap", "isHidden": false }, - "plot_266": { + "plot_324": { "title": "fund_flows.1M", "isHidden": false }, - "plot_267": { + "plot_325": { "title": "fund_flows.3M", "isHidden": false }, - "plot_268": { + "plot_326": { "title": "fund_flows.1Y", "isHidden": false }, - "plot_269": { + "plot_327": { "title": "fund_flows.3Y", "isHidden": false }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, - "plot_270": { + "plot_328": { "title": "fund_flows.5Y", "isHidden": false }, - "plot_271": { + "plot_329": { "title": "fund_flows.YTD", "isHidden": false }, - "plot_272": { + "plot_33": { + "title": "EMA25", + "isHidden": false + }, + "plot_330": { "title": "nav_perf.1M", "isHidden": false }, - "plot_273": { + "plot_331": { "title": "nav_perf.3M", "isHidden": false }, - "plot_274": { + "plot_332": { "title": "nav_perf.1Y", "isHidden": false }, - "plot_275": { + "plot_333": { "title": "nav_perf.3Y", "isHidden": false }, - "plot_276": { + "plot_334": { "title": "nav_perf.5Y", "isHidden": false }, - "plot_277": { + "plot_335": { "title": "nav_perf.YTD", "isHidden": false }, - "plot_278": { + "plot_336": { "title": "aum_perf.1M", "isHidden": false }, - "plot_279": { + "plot_337": { "title": "aum_perf.3M", "isHidden": false }, - "plot_28": { - "title": "EMA10", - "isHidden": false - }, - "plot_280": { + "plot_338": { "title": "aum_perf.1Y", "isHidden": false }, - "plot_281": { + "plot_339": { "title": "aum_perf.3Y", "isHidden": false }, - "plot_282": { + "plot_34": { + "title": "EMA30", + "isHidden": false + }, + "plot_340": { "title": "aum_perf.5Y", "isHidden": false }, - "plot_283": { + "plot_341": { "title": "aum_perf.YTD", "isHidden": false }, - "plot_284": { + "plot_342": { "title": "nav_total_return.1M", "isHidden": false }, - "plot_285": { + "plot_343": { "title": "nav_total_return.3M", "isHidden": false }, - "plot_286": { + "plot_344": { "title": "nav_total_return.6M", "isHidden": false }, - "plot_287": { + "plot_345": { "title": "nav_total_return.1Y", "isHidden": false }, - "plot_288": { + "plot_346": { "title": "nav_total_return.3Y", "isHidden": false }, - "plot_289": { + "plot_347": { "title": "nav_total_return.5Y", "isHidden": false }, - "plot_29": { - "title": "EMA12", - "isHidden": false - }, - "plot_290": { + "plot_348": { "title": "nav_total_return.YTD", "isHidden": false }, - "plot_291": { + "plot_349": { "title": "nav_discount_premium", "isHidden": false }, - "plot_3": { - "title": "SMA7", - "isHidden": false - }, - "plot_30": { - "title": "EMA13", - "isHidden": false - }, - "plot_31": { - "title": "EMA20", - "isHidden": false - }, - "plot_32": { - "title": "EMA21", - "isHidden": false - }, - "plot_33": { - "title": "EMA25", - "isHidden": false - }, - "plot_34": { - "title": "EMA30", - "isHidden": false - }, "plot_35": { "title": "EMA40", "isHidden": false @@ -2187,7 +2651,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -2195,43 +2659,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -2239,43 +2703,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -2283,43 +2747,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -2327,43 +2791,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.simple.5.json b/scanner.data.simple.5.json index a6423da10..90a06f0ac 100644 --- a/scanner.data.simple.5.json +++ b/scanner.data.simple.5.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "{\"IL\":\"change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\\u003e$1\\u0026\\u0026$0\\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\\u003e$0\\u0026\\u0026$1\\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\\u0026\\u0026$1!=0\\u0026\\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\\u003c=0?na():f:#0;open~high~low~$0!$1!$2;$0.5(volume,i:10,t:'1D',b:1.0)~$0.3(volume,timeframe.change('1D'),b:1.0)~$1/$0~$2;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\\u0026\\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\\u003c$161~close\\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\\u003e$147\\u0026\\u0026close\\u003e$146\\u0026\\u0026close\\u003c$145\\u0026\\u0026close@1\\u003c$144\\u0026\\u0026close\\u003e$144,$147\\u003e$146\\u0026\\u0026close\\u003c$147\\u0026\\u0026close\\u003e$145\\u0026\\u0026close@1\\u003e$144\\u0026\\u0026close\\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\\u003c30\\u0026\\u0026$190@1\\u003c$190,$190\\u003e70\\u0026\\u0026$190@1\\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\\u003c20\\u0026\\u0026$102\\u003c20\\u0026\\u0026$101\\u003e$102\\u0026\\u0026$101@1\\u003c$102@1,$101\\u003e80\\u0026\\u0026$102\\u003e80\\u0026\\u0026$101\\u003c$102\\u0026\\u0026$101@1\\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\\u003c(-100)\\u0026\\u0026$193\\u003e$193@1,$193\\u003e100\\u0026\\u0026$193\\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\\u003e20\\u0026\\u0026$61@1\\u003c$62@1\\u0026\\u0026$61\\u003e$62,$60\\u003e20\\u0026\\u0026$61@1\\u003e$62@1\\u0026\\u0026$61\\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\\u003e0\\u0026\\u0026$119@1\\u003e0\\u0026\\u0026$119\\u003e$119@1\\u0026\\u0026$119@2\\u003e$119@1,crossunder($119,0)||$119\\u003c0\\u0026\\u0026$119@1\\u003c0\\u0026\\u0026$119\\u003c$119@1\\u0026\\u0026$119@2\\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\\u003e$96@1,$96\\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\\u003e$94,$93\\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\\u0026\\u0026$133\\u003c20\\u0026\\u0026$134\\u003c20\\u0026\\u0026$133\\u003e$134\\u0026\\u0026$133@1\\u003c$134@1,$163\\u0026\\u0026$133\\u003e80\\u0026\\u0026$134\\u003e80\\u0026\\u0026$133\\u003c$134\\u0026\\u0026$133@1\\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\\u003c(-80)\\u0026\\u0026$136\\u003e$136@1,$136\\u003e(-20)\\u0026\\u0026$136\\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\\u0026\\u0026$139\\u003c0\\u0026\\u0026$139\\u003e$139@1,$162\\u0026\\u0026$138\\u003e0\\u0026\\u0026$138\\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\\u003e70,$141\\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\\u003c$225~$224\\u003e$225~high-$222~$223-low~close\\u003c$221~close\\u003e$221~$228\\u003e0*$224~$229\\u003e0*$224~open\\u003cclose~open\\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\\u003c100\\u0026\\u0026(abs($229-$228)/$228)*100\\u003c100~0.0~0.0~v:if($226\\u0026\\u0026$224\\u003e0\\u0026\\u0026$223\\u003ehl2\\u0026\\u0026$229\\u003e=2.0*$224\\u0026\\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\\u0026\\u0026$224\\u003e0\\u0026\\u0026$222\\u003chl2\\u0026\\u0026$228\\u003e=2.0*$224\\u0026\\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\\u0026\\u0026$226@1\\u0026\\u0026$227){v:if_($230\\u0026\\u0026$235@2\\u0026\\u0026$222@1\\u003c$223@2\\u0026\\u0026$234\\u0026\\u0026$222\\u003e=$237@2\\u0026\\u0026$222\\u003c$222@2\\u0026\\u0026$222@1\\u003c$223){$253=1.0~}_{v:if($231\\u0026\\u0026$234@2\\u0026\\u0026$223@1\\u003e$222@2\\u0026\\u0026$235\\u0026\\u0026$223\\u003c=$237@2\\u0026\\u0026$223\\u003e$223@2\\u0026\\u0026$223@1\\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\\u0026\\u0026$228\\u003c=0*$224\\u0026\\u0026$229\\u003c=0*$224~$260\\u0026\\u0026$234~$260\\u0026\\u0026$235~$262?1:0~$261?1:0~$236\\u003e0\\u0026\\u0026$224\\u003c=$236*5/100~$265\\u0026\\u0026$238~$265\\u0026\\u0026$228\\u003c=$224~$265\\u0026\\u0026$229\\u003c=$224~$266\\u0026\\u0026!$267\\u0026\\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\\u0026\\u0026$235@1\\u0026\\u0026$230@1\\u0026\\u0026$234\\u0026\\u0026$226\\u0026\\u0026high\\u003c=$222@1\\u0026\\u0026low\\u003e=$223@1?1:0~$227@1\\u0026\\u0026$234@1\\u0026\\u0026$231@1\\u0026\\u0026$235\\u0026\\u0026$226\\u0026\\u0026high\\u003c=$222@1\\u0026\\u0026low\\u003e=$223@1?1:0~$229\\u003e($236/100)*75?1:0~$228\\u003e($236/100)*75?1:0~$229\\u003e=($236/100)*34\\u0026\\u0026$228\\u003e=($236/100)*34\\u0026\\u0026!$265~$276\\u0026\\u0026$234?1:0~$276\\u0026\\u0026$235?1:0~$236*5/100\\u003e$228~$236*5/100\\u003e$229~0.0~0.0~v:if($227\\u0026\\u0026$227@1\\u0026\\u0026$227@2){v:if($234\\u0026\\u0026$234@1\\u0026\\u0026$234@2){$281=close\\u003eclose@1\\u0026\\u0026close@1\\u003eclose@2\\u0026\\u0026open\\u003cclose@1\\u0026\\u0026open\\u003eopen@1\\u0026\\u0026open@1\\u003cclose@2\\u0026\\u0026open@1\\u003eopen@2\\u0026\\u0026$279\\u0026\\u0026$279@1\\u0026\\u0026$279@2~}~v:if($235\\u0026\\u0026$235@1\\u0026\\u0026$235@2){$282=close\\u003cclose@1\\u0026\\u0026close@1\\u003cclose@2\\u0026\\u0026open\\u003eclose@1\\u0026\\u0026open\\u003copen@1\\u0026\\u0026open@1\\u003eclose@2\\u0026\\u0026open@1\\u003copen@2\\u0026\\u0026$280\\u0026\\u0026$280@1\\u0026\\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\\u0026\\u0026$234\\u0026\\u0026$227\\u0026\\u0026$235@1\\u0026\\u0026$226@1\\u0026\\u0026close\\u003e=open@1\\u0026\\u0026open\\u003c=close@1\\u0026\\u0026(close\\u003eopen@1||open\\u003cclose@1)?1:0~$231\\u0026\\u0026$235\\u0026\\u0026$227\\u0026\\u0026$234@1\\u0026\\u0026$226@1\\u0026\\u0026close\\u003c=open@1\\u0026\\u0026open\\u003e=close@1\\u0026\\u0026(close\\u003copen@1||open\\u003eclose@1)?1:0~$230@2\\u0026\\u0026$235@2\\u0026\\u0026$265@1\\u0026\\u0026low@2\\u003ehigh@1\\u0026\\u0026$234\\u0026\\u0026high@1\\u003clow?1:0~$231@2\\u0026\\u0026$234@2\\u0026\\u0026$265@1\\u0026\\u0026high@2\\u003clow@1\\u0026\\u0026$235\\u0026\\u0026low@1\\u003ehigh?1:0~$266@2\\u0026\\u0026$266@1\\u0026\\u0026$266~$222@1\\u003c$223~$223@1\\u003e$222~$292\\u0026\\u0026$230@2\\u0026\\u0026$294@1\\u0026\\u0026$293?1:0~$292\\u0026\\u0026$231@2\\u0026\\u0026$293@1\\u0026\\u0026$294?1:0~$262@1\\u0026\\u0026$261\\u0026\\u0026high@1\\u003clow?1:0~$261@1\\u0026\\u0026$262\\u0026\\u0026low@1\\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$303@1~$304@1~$305@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($313!=$313@1){$309=$306~$312=close@1~$310=$307~$311=$308~$306=open~}_{}~($310+$311+$312)/3~$8($315)~$8($315*2-$311)~$8($315*2-$310)~$8($315+1*($310-$311))~$8($315-1*($310-$311))~$8($315+2*($310-$311))~$8($315-2*($310-$311))~$8($315)~$8($315+0.382*($310-$311))~$8($315-0.382*($310-$311))~$8($315+0.618*($310-$311))~$8($315-0.618*($310-$311))~$8($315+1*($310-$311))~$8($315-1*($310-$311))~($310+$311+$306*2)/4~$8($330)~$8($330*2-$311)~$8($330*2-$310)~$8($330+1*($310-$311))~$8($330-1*($310-$311))~$8($310+2*($330-$311))~$8($311-2*($310-$330))~$310+$311*2+$312~v:if($312==$309){$338=$310+$311+$312*2~}~v:if($312\\u003e$309){$338=$310*2+$311+$312~}~$8($338/4)~$8($338/2-$311)~$8($338/2-$310)~$8($315)~$8($312+0.09166666666666667*($310-$311))~$8($312-0.09166666666666667*($310-$311))~$8($312+0.18333333333333335*($310-$311))~$8($312-0.18333333333333335*($310-$311))~$8($312+0.275*($310-$311))~$8($312-0.275*($310-$311))~#3~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$331!$332!$333!$334!$335!$336!$337!$341!$342!$343!$344!$345!$346!$347!$348!$349!$350!$351;t:if_(isintraday){t:interval\\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$14,$14,0,1,0,'NONE',0,0,$15)|$9():s3|sym(tickerid,'5','5',0,0,1,'NONE',0,0,3200)|$10()|s216:$11($17,$18,$19,$22):s216~$24!$25!$26!$27!$28!$29!$30!$31!$32!$109!$34!$35!$36!$37!$112!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$127!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239\",\"ILImports\":[{\"IL\":\"c$0:new():c$0~$0#0=s_a\\u003cf\\u003e:#0~$0#1=s_a\\u003ci\\u003e:#1~$0#2=#2~c$0:$0;v:array.push(#0,#2):v~c$0:if(array.size(#0)\\u003e#1){c$0:array.shift(#0):c$0};0.0~v:foreach(s_a\\u003cc$0\\u003e:#0):c$0{$1#2~array.binary_search_leftmost($1#1,$2+#1)~array.size($1#0)-1\\u003e=$3?array.get($1#0,$3):array.last($1#0)~$0=$0+$4~}~$0/array.size(#0)~$6;v^0.0~v^na():f~v:if(#1){$0=0.0~$1=time~}~$0=$0+#0~v:if(#2\\u0026\\u0026!barstate.isconfirmed){min(timenow,time_close)-$1~time_close-$1~$0/$3~$0=$5*$4~}~$0~$7;v^s_a\\u003cc$0\\u003e:array.new(0,na():c$0):s_a\\u003cc$0\\u003e~v^c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,na():f):c$0~#3?$3(#0,#2,b:0.0):#0~v:if(#2){c$0:$1(s_a\\u003cc$0\\u003e:$0,i:#1,c$0:$1):c$0~$1=c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,time):c$0~}~v:array.push($1#1,time):v~v:array.push($1#0,$2):v~$2(s_a\\u003cc$0\\u003e:$0,time-$1#2)~$7;v^s_a\\u003cc$0\\u003e:array.new(0,na():c$0):s_a\\u003cc$0\\u003e~v^c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,timeV5(#2,0)):c$0~timeframe.change(#2)~#3?$3(#0,$2,b:0.0):#0~v:if($2){c$0:$1(s_a\\u003cc$0\\u003e:$0,i:#1,c$0:$1):c$0~$1=c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,timeV5(#2,0)):c$0~}~v:array.push($1#1,time):v~v:array.push($1#0,$3):v~$2(s_a\\u003cc$0\\u003e:$0,time-$1#2)~$8;b:(#0=='On')~timeframe.change(#1)~b:(#2=='Cumulative')~$5(volume,i:#3,t:#1,b:$2)~$2?$3(volume,$1,b:$0):volume~$4/$3~$5\\u003e=1?0:1~close\\u003e=open?0:1~$5!$3!$4!$6!$7;v:SRP('is_library','1'):v~t:input('in_0','D')~i:input('in_1',5)~t:input('in_2','Cumulative')~t:input('in_4','Off')~s5:$6(t:$11,t:$8,t:$10,i:$9):s5~$12!$15!$13!$14!$16\",\"clsIL\":\"collectedData~s_a\\u003cf\\u003e:data~s_a\\u003ci\\u003e:times~startTime;\"}]}", + "defval": "{\"IL\":\"change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\\u003e$1\\u0026\\u0026$0\\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\\u003e$0\\u0026\\u0026$1\\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\\u0026\\u0026$1!=0\\u0026\\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\\u003c=0?na():f:#0;open~high~low~$0!$1!$2;s3:$9():s3;$0.5(volume,i:10,t:'1D',b:1.0)~$0.3(volume,timeframe.change('1D'),b:1.0)~$1/$0~$2;$11();sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\\u0026\\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\\u003c$229~close\\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\\u003e$212\\u0026\\u0026close\\u003e$211\\u0026\\u0026close\\u003c$210\\u0026\\u0026close@1\\u003c$209\\u0026\\u0026close\\u003e$209,$212\\u003e$211\\u0026\\u0026close\\u003c$212\\u0026\\u0026close\\u003e$210\\u0026\\u0026close@1\\u003e$209\\u0026\\u0026close\\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\\u003c30\\u0026\\u0026$258@1\\u003c$258,$258\\u003e70\\u0026\\u0026$258@1\\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\\u003c20\\u0026\\u0026$107\\u003c20\\u0026\\u0026$106\\u003e$107\\u0026\\u0026$106@1\\u003c$107@1,$106\\u003e80\\u0026\\u0026$107\\u003e80\\u0026\\u0026$106\\u003c$107\\u0026\\u0026$106@1\\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\\u003c(-100)\\u0026\\u0026$261\\u003e$261@1,$261\\u003e100\\u0026\\u0026$261\\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\\u003e20\\u0026\\u0026$64@1\\u003c$65@1\\u0026\\u0026$64\\u003e$65,$63\\u003e20\\u0026\\u0026$64@1\\u003e$65@1\\u0026\\u0026$64\\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\\u003e0\\u0026\\u0026$174@1\\u003e0\\u0026\\u0026$174\\u003e$174@1\\u0026\\u0026$174@2\\u003e$174@1,crossunder($174,0)||$174\\u003c0\\u0026\\u0026$174@1\\u003c0\\u0026\\u0026$174\\u003c$174@1\\u0026\\u0026$174@2\\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\\u003e$99@1,$99\\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\\u003e$97,$96\\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\\u0026\\u0026$191\\u003c20\\u0026\\u0026$192\\u003c20\\u0026\\u0026$191\\u003e$192\\u0026\\u0026$191@1\\u003c$192@1,$231\\u0026\\u0026$191\\u003e80\\u0026\\u0026$192\\u003e80\\u0026\\u0026$191\\u003c$192\\u0026\\u0026$191@1\\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\\u003c(-80)\\u0026\\u0026$194\\u003e$194@1,$194\\u003e(-20)\\u0026\\u0026$194\\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\\u0026\\u0026$204\\u003c0\\u0026\\u0026$204\\u003e$204@1,$230\\u0026\\u0026$203\\u003e0\\u0026\\u0026$203\\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\\u003e70,$206\\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\\u003c$293~$292\\u003e$293~high-$290~$291-low~close\\u003c$289~close\\u003e$289~$296\\u003e0*$292~$297\\u003e0*$292~open\\u003cclose~open\\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\\u003c100\\u0026\\u0026(abs($297-$296)/$296)*100\\u003c100~0.0~0.0~v:if($294\\u0026\\u0026$292\\u003e0\\u0026\\u0026$291\\u003ehl2\\u0026\\u0026$297\\u003e=2.0*$292\\u0026\\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\\u0026\\u0026$292\\u003e0\\u0026\\u0026$290\\u003chl2\\u0026\\u0026$296\\u003e=2.0*$292\\u0026\\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\\u0026\\u0026$294@1\\u0026\\u0026$295){v:if_($298\\u0026\\u0026$303@2\\u0026\\u0026$290@1\\u003c$291@2\\u0026\\u0026$302\\u0026\\u0026$290\\u003e=$305@2\\u0026\\u0026$290\\u003c$290@2\\u0026\\u0026$290@1\\u003c$291){$321=1.0~}_{v:if($299\\u0026\\u0026$302@2\\u0026\\u0026$291@1\\u003e$290@2\\u0026\\u0026$303\\u0026\\u0026$291\\u003c=$305@2\\u0026\\u0026$291\\u003e$291@2\\u0026\\u0026$291@1\\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\\u0026\\u0026$296\\u003c=0*$292\\u0026\\u0026$297\\u003c=0*$292~$328\\u0026\\u0026$302~$328\\u0026\\u0026$303~$330?1:0~$329?1:0~$304\\u003e0\\u0026\\u0026$292\\u003c=$304*5/100~$333\\u0026\\u0026$306~$333\\u0026\\u0026$296\\u003c=$292~$333\\u0026\\u0026$297\\u003c=$292~$334\\u0026\\u0026!$335\\u0026\\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\\u0026\\u0026$303@1\\u0026\\u0026$298@1\\u0026\\u0026$302\\u0026\\u0026$294\\u0026\\u0026high\\u003c=$290@1\\u0026\\u0026low\\u003e=$291@1?1:0~$295@1\\u0026\\u0026$302@1\\u0026\\u0026$299@1\\u0026\\u0026$303\\u0026\\u0026$294\\u0026\\u0026high\\u003c=$290@1\\u0026\\u0026low\\u003e=$291@1?1:0~$297\\u003e($304/100)*75?1:0~$296\\u003e($304/100)*75?1:0~$297\\u003e=($304/100)*34\\u0026\\u0026$296\\u003e=($304/100)*34\\u0026\\u0026!$333~$344\\u0026\\u0026$302?1:0~$344\\u0026\\u0026$303?1:0~$304*5/100\\u003e$296~$304*5/100\\u003e$297~0.0~0.0~v:if($295\\u0026\\u0026$295@1\\u0026\\u0026$295@2){v:if($302\\u0026\\u0026$302@1\\u0026\\u0026$302@2){$349=close\\u003eclose@1\\u0026\\u0026close@1\\u003eclose@2\\u0026\\u0026open\\u003cclose@1\\u0026\\u0026open\\u003eopen@1\\u0026\\u0026open@1\\u003cclose@2\\u0026\\u0026open@1\\u003eopen@2\\u0026\\u0026$347\\u0026\\u0026$347@1\\u0026\\u0026$347@2~}~v:if($303\\u0026\\u0026$303@1\\u0026\\u0026$303@2){$350=close\\u003cclose@1\\u0026\\u0026close@1\\u003cclose@2\\u0026\\u0026open\\u003eclose@1\\u0026\\u0026open\\u003copen@1\\u0026\\u0026open@1\\u003eclose@2\\u0026\\u0026open@1\\u003copen@2\\u0026\\u0026$348\\u0026\\u0026$348@1\\u0026\\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\\u0026\\u0026$302\\u0026\\u0026$295\\u0026\\u0026$303@1\\u0026\\u0026$294@1\\u0026\\u0026close\\u003e=open@1\\u0026\\u0026open\\u003c=close@1\\u0026\\u0026(close\\u003eopen@1||open\\u003cclose@1)?1:0~$299\\u0026\\u0026$303\\u0026\\u0026$295\\u0026\\u0026$302@1\\u0026\\u0026$294@1\\u0026\\u0026close\\u003c=open@1\\u0026\\u0026open\\u003e=close@1\\u0026\\u0026(close\\u003copen@1||open\\u003eclose@1)?1:0~$298@2\\u0026\\u0026$303@2\\u0026\\u0026$333@1\\u0026\\u0026low@2\\u003ehigh@1\\u0026\\u0026$302\\u0026\\u0026high@1\\u003clow?1:0~$299@2\\u0026\\u0026$302@2\\u0026\\u0026$333@1\\u0026\\u0026high@2\\u003clow@1\\u0026\\u0026$303\\u0026\\u0026low@1\\u003ehigh?1:0~$334@2\\u0026\\u0026$334@1\\u0026\\u0026$334~$290@1\\u003c$291~$291@1\\u003e$290~$360\\u0026\\u0026$298@2\\u0026\\u0026$362@1\\u0026\\u0026$361?1:0~$360\\u0026\\u0026$299@2\\u0026\\u0026$361@1\\u0026\\u0026$362?1:0~$330@1\\u0026\\u0026$329\\u0026\\u0026high@1\\u003clow?1:0~$329@1\\u0026\\u0026$330\\u0026\\u0026low@1\\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$371@1~$372@1~$373@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($381!=$381@1){$377=$374~$380=close@1~$378=$375~$379=$376~$374=open~}_{}~($378+$379+$380)/3~$8($383)~$8($383*2-$379)~$8($383*2-$378)~$8($383+1*($378-$379))~$8($383-1*($378-$379))~$8($383+2*($378-$379))~$8($383-2*($378-$379))~$8($383)~$8($383+0.382*($378-$379))~$8($383-0.382*($378-$379))~$8($383+0.618*($378-$379))~$8($383-0.618*($378-$379))~$8($383+1*($378-$379))~$8($383-1*($378-$379))~($378+$379+$374*2)/4~$8($398)~$8($398*2-$379)~$8($398*2-$378)~$8($398+1*($378-$379))~$8($398-1*($378-$379))~$8($378+2*($398-$379))~$8($379-2*($378-$398))~$378+$379*2+$380~v:if($380==$377){$406=$378+$379+$380*2~}~v:if($380\\u003e$377){$406=$378*2+$379+$380~}~$8($406/4)~$8($406/2-$379)~$8($406/2-$378)~$8($383)~$8($380+0.09166666666666667*($378-$379))~$8($380-0.09166666666666667*($378-$379))~$8($380+0.18333333333333335*($378-$379))~$8($380-0.18333333333333335*($378-$379))~$8($380+0.275*($378-$379))~$8($380-0.275*($378-$379))~#3~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$395!$396!$397!$399!$400!$401!$402!$403!$404!$405!$409!$410!$411!$412!$413!$414!$415!$416!$417!$418!$419;t:if_(isintraday){t:interval\\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$16,$16,0,1,0,'NONE',0,0,$17)|$10():s3|sym(tickerid,'5','5',0,0,1,'NONE',0,0,3200)|$12()|s274:$13($19,$20,$21,$24):s274~$26!$27!$28!$29!$30!$31!$32!$33!$34!$113!$36!$37!$38!$39!$116!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295!$296!$297!$298!$299\",\"ILImports\":[{\"IL\":\"c$0:new():c$0~$0#0=s_a\\u003cf\\u003e:#0~$0#1=s_a\\u003ci\\u003e:#1~$0#2=#2~c$0:$0;v:array.push(#0,#2):v~c$0:if(array.size(#0)\\u003e#1){c$0:array.shift(#0):c$0};0.0~v:foreach(s_a\\u003cc$0\\u003e:#0):c$0{$1#2~array.binary_search_leftmost($1#1,$2+#1)~array.size($1#0)-1\\u003e=$3?array.get($1#0,$3):array.last($1#0)~$0=$0+$4~}~$0/array.size(#0)~$6;v^0.0~v^na():f~v:if(#1){$0=0.0~$1=time~}~$0=$0+#0~v:if(#2\\u0026\\u0026!barstate.isconfirmed){min(timenow,time_close)-$1~time_close-$1~$0/$3~$0=$5*$4~}~$0~$7;v^s_a\\u003cc$0\\u003e:array.new(0,na():c$0):s_a\\u003cc$0\\u003e~v^c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,na():f):c$0~#3?$3(#0,#2,b:0.0):#0~v:if(#2){c$0:$1(s_a\\u003cc$0\\u003e:$0,i:#1,c$0:$1):c$0~$1=c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,time):c$0~}~v:array.push($1#1,time):v~v:array.push($1#0,$2):v~$2(s_a\\u003cc$0\\u003e:$0,time-$1#2)~$7;v^s_a\\u003cc$0\\u003e:array.new(0,na():c$0):s_a\\u003cc$0\\u003e~v^c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,timeV5(#2,0)):c$0~timeframe.change(#2)~#3?$3(#0,$2,b:0.0):#0~v:if($2){c$0:$1(s_a\\u003cc$0\\u003e:$0,i:#1,c$0:$1):c$0~$1=c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,timeV5(#2,0)):c$0~}~v:array.push($1#1,time):v~v:array.push($1#0,$3):v~$2(s_a\\u003cc$0\\u003e:$0,time-$1#2)~$8;b:(#0=='On')~timeframe.change(#1)~b:(#2=='Cumulative')~$5(volume,i:#3,t:#1,b:$2)~$2?$3(volume,$1,b:$0):volume~$4/$3~$5\\u003e=1?0:1~close\\u003e=open?0:1~$5!$3!$4!$6!$7;v:SRP('is_library','1'):v~t:input('in_0','D')~i:input('in_1',5)~t:input('in_2','Cumulative')~t:input('in_4','Off')~s5:$6(t:$11,t:$8,t:$10,i:$9):s5~$12!$15!$13!$14!$16\",\"clsIL\":\"collectedData~s_a\\u003cf\\u003e:data~s_a\\u003ci\\u003e:times~startTime;\"}]}", "isFake": false }, { @@ -886,6 +886,238 @@ { "id": "plot_215", "type": "line" + }, + { + "id": "plot_216", + "type": "line" + }, + { + "id": "plot_217", + "type": "line" + }, + { + "id": "plot_218", + "type": "line" + }, + { + "id": "plot_219", + "type": "line" + }, + { + "id": "plot_220", + "type": "line" + }, + { + "id": "plot_221", + "type": "line" + }, + { + "id": "plot_222", + "type": "line" + }, + { + "id": "plot_223", + "type": "line" + }, + { + "id": "plot_224", + "type": "line" + }, + { + "id": "plot_225", + "type": "line" + }, + { + "id": "plot_226", + "type": "line" + }, + { + "id": "plot_227", + "type": "line" + }, + { + "id": "plot_228", + "type": "line" + }, + { + "id": "plot_229", + "type": "line" + }, + { + "id": "plot_230", + "type": "line" + }, + { + "id": "plot_231", + "type": "line" + }, + { + "id": "plot_232", + "type": "line" + }, + { + "id": "plot_233", + "type": "line" + }, + { + "id": "plot_234", + "type": "line" + }, + { + "id": "plot_235", + "type": "line" + }, + { + "id": "plot_236", + "type": "line" + }, + { + "id": "plot_237", + "type": "line" + }, + { + "id": "plot_238", + "type": "line" + }, + { + "id": "plot_239", + "type": "line" + }, + { + "id": "plot_240", + "type": "line" + }, + { + "id": "plot_241", + "type": "line" + }, + { + "id": "plot_242", + "type": "line" + }, + { + "id": "plot_243", + "type": "line" + }, + { + "id": "plot_244", + "type": "line" + }, + { + "id": "plot_245", + "type": "line" + }, + { + "id": "plot_246", + "type": "line" + }, + { + "id": "plot_247", + "type": "line" + }, + { + "id": "plot_248", + "type": "line" + }, + { + "id": "plot_249", + "type": "line" + }, + { + "id": "plot_250", + "type": "line" + }, + { + "id": "plot_251", + "type": "line" + }, + { + "id": "plot_252", + "type": "line" + }, + { + "id": "plot_253", + "type": "line" + }, + { + "id": "plot_254", + "type": "line" + }, + { + "id": "plot_255", + "type": "line" + }, + { + "id": "plot_256", + "type": "line" + }, + { + "id": "plot_257", + "type": "line" + }, + { + "id": "plot_258", + "type": "line" + }, + { + "id": "plot_259", + "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" + }, + { + "id": "plot_273", + "type": "line" } ], "version": "", @@ -907,43 +1139,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -951,43 +1183,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -995,43 +1227,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1039,43 +1271,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1083,365 +1315,597 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { + "title": "DonchCh20.Lower", + "isHidden": false + }, + "plot_142": { + "title": "DonchCh20.Upper", + "isHidden": false + }, + "plot_143": { + "title": "DonchCh20.Middle", + "isHidden": false + }, + "plot_144": { + "title": "DonchCh96.Lower", + "isHidden": false + }, + "plot_145": { + "title": "DonchCh96.Upper", + "isHidden": false + }, + "plot_146": { + "title": "DonchCh96.Middle", + "isHidden": false + }, + "plot_147": { + "title": "DonchCh13.Lower", + "isHidden": false + }, + "plot_148": { + "title": "DonchCh13.Upper", + "isHidden": false + }, + "plot_149": { + "title": "DonchCh13.Middle", + "isHidden": false + }, + "plot_15": { + "title": "SMA75", + "isHidden": false + }, + "plot_150": { + "title": "DonchCh10.Lower", + "isHidden": false + }, + "plot_151": { + "title": "DonchCh10.Upper", + "isHidden": false + }, + "plot_152": { + "title": "DonchCh10.Middle", + "isHidden": false + }, + "plot_153": { + "title": "DonchCh1.Lower", + "isHidden": false + }, + "plot_154": { + "title": "DonchCh1.Upper", + "isHidden": false + }, + "plot_155": { + "title": "DonchCh1.Middle", + "isHidden": false + }, + "plot_156": { + "title": "HullMA9", + "isHidden": false + }, + "plot_157": { + "title": "HullMA200", + "isHidden": false + }, + "plot_158": { + "title": "HullMA1728", + "isHidden": false + }, + "plot_159": { + "title": "HullMA50", + "isHidden": false + }, + "plot_16": { + "title": "SMA100", + "isHidden": false + }, + "plot_160": { + "title": "HullMA100", + "isHidden": false + }, + "plot_161": { + "title": "HullMA20", + "isHidden": false + }, + "plot_162": { + "title": "HullMA144", + "isHidden": false + }, + "plot_163": { + "title": "HullMA256", + "isHidden": false + }, + "plot_164": { + "title": "AO", + "isHidden": false + }, + "plot_165": { + "title": "AO[1]", + "isHidden": false + }, + "plot_166": { + "title": "AO[2]", + "isHidden": false + }, + "plot_167": { + "title": "Aroon.Up", + "isHidden": false + }, + "plot_168": { + "title": "Aroon.Down", + "isHidden": false + }, + "plot_169": { + "title": "Aroon25.Up", + "isHidden": false + }, + "plot_17": { + "title": "SMA120", + "isHidden": false + }, + "plot_170": { + "title": "Aroon25.Down", + "isHidden": false + }, + "plot_171": { + "title": "Value.Traded", + "isHidden": false + }, + "plot_172": { + "title": "KltChnl.upper", + "isHidden": false + }, + "plot_173": { + "title": "KltChnl.lower", + "isHidden": false + }, + "plot_174": { + "title": "KltChnl.basis", + "isHidden": false + }, + "plot_175": { + "title": "P.SAR", + "isHidden": false + }, + "plot_176": { + "title": "MoneyFlow", + "isHidden": false + }, + "plot_177": { + "title": "MoneyFlow12", + "isHidden": false + }, + "plot_178": { + "title": "ChaikinMoneyFlow", + "isHidden": false + }, + "plot_179": { + "title": "Stoch.RSI.K", + "isHidden": false + }, + "plot_18": { + "title": "SMA150", + "isHidden": false + }, + "plot_180": { + "title": "Stoch.RSI.D", + "isHidden": false + }, + "plot_181": { + "title": "W.R", + "isHidden": false + }, + "plot_182": { + "title": "W.R14", + "isHidden": false + }, + "plot_183": { + "title": "W.R12", + "isHidden": false + }, + "plot_184": { + "title": "ROC", + "isHidden": false + }, + "plot_185": { + "title": "ROC1", + "isHidden": false + }, + "plot_186": { + "title": "ROC14", + "isHidden": false + }, + "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { "title": "Ichimoku.Lead1_20_60_120_30", "isHidden": false }, - "plot_142": { - "title": "Ichimoku.Lead2_20_60_120_30", + "plot_198": { + "title": "Ichimoku.Lead2_20_60_120_30", + "isHidden": false + }, + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", "isHidden": false }, - "plot_143": { - "title": "VWMA", + "plot_201": { + "title": "VWMA50", "isHidden": false }, - "plot_144": { + "plot_202": { "title": "ADR", "isHidden": false }, - "plot_145": { + "plot_203": { "title": "ADRP", "isHidden": false }, - "plot_146": { + "plot_204": { "title": "Rec.HullMA9", "isHidden": false }, - "plot_147": { + "plot_205": { "title": "Rec.VWMA", "isHidden": false }, - "plot_148": { + "plot_206": { "title": "Rec.Ichimoku", "isHidden": false }, - "plot_149": { + "plot_207": { "title": "Recommend.MA", "isHidden": false }, - "plot_15": { - "title": "SMA75", - "isHidden": false - }, - "plot_150": { + "plot_208": { "title": "Rec.Stoch.RSI", "isHidden": false }, - "plot_151": { + "plot_209": { "title": "Rec.WR", "isHidden": false }, - "plot_152": { + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { "title": "Rec.BBPower", "isHidden": false }, - "plot_153": { + "plot_211": { "title": "Rec.UO", "isHidden": false }, - "plot_154": { + "plot_212": { "title": "Recommend.Other", "isHidden": false }, - "plot_155": { + "plot_213": { "title": "Recommend.All", "isHidden": false }, - "plot_156": { + "plot_214": { "title": "Candle.Hammer", "isHidden": false }, - "plot_157": { + "plot_215": { "title": "Candle.HangingMan", "isHidden": false }, - "plot_158": { + "plot_216": { "title": "Candle.InvertedHammer", "isHidden": false }, - "plot_159": { + "plot_217": { "title": "Candle.ShootingStar", "isHidden": false }, - "plot_16": { - "title": "SMA100", - "isHidden": false - }, - "plot_160": { + "plot_218": { "title": "Candle.MorningStar", "isHidden": false }, - "plot_161": { + "plot_219": { "title": "Candle.EveningStar", "isHidden": false }, - "plot_162": { + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { "title": "Candle.Marubozu.Black", "isHidden": false }, - "plot_163": { + "plot_221": { "title": "Candle.Marubozu.White", "isHidden": false }, - "plot_164": { + "plot_222": { "title": "Candle.Doji", "isHidden": false }, - "plot_165": { + "plot_223": { "title": "Candle.Doji.Dragonfly", "isHidden": false }, - "plot_166": { + "plot_224": { "title": "Candle.Doji.Gravestone", "isHidden": false }, - "plot_167": { + "plot_225": { "title": "Candle.Harami.Bullish", "isHidden": false }, - "plot_168": { + "plot_226": { "title": "Candle.Harami.Bearish", "isHidden": false }, - "plot_169": { + "plot_227": { "title": "Candle.LongShadow.Lower", "isHidden": false }, - "plot_17": { - "title": "SMA120", - "isHidden": false - }, - "plot_170": { + "plot_228": { "title": "Candle.LongShadow.Upper", "isHidden": false }, - "plot_171": { + "plot_229": { "title": "Candle.SpinningTop.White", "isHidden": false }, - "plot_172": { + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { "title": "Candle.SpinningTop.Black", "isHidden": false }, - "plot_173": { + "plot_231": { "title": "Candle.3WhiteSoldiers", "isHidden": false }, - "plot_174": { + "plot_232": { "title": "Candle.3BlackCrows", "isHidden": false }, - "plot_175": { + "plot_233": { "title": "Candle.Engulfing.Bullish", "isHidden": false }, - "plot_176": { + "plot_234": { "title": "Candle.Engulfing.Bearish", "isHidden": false }, - "plot_177": { + "plot_235": { "title": "Candle.AbandonedBaby.Bullish", "isHidden": false }, - "plot_178": { + "plot_236": { "title": "Candle.AbandonedBaby.Bearish", "isHidden": false }, - "plot_179": { + "plot_237": { "title": "Candle.TriStar.Bullish", "isHidden": false }, - "plot_18": { - "title": "SMA150", - "isHidden": false - }, - "plot_180": { + "plot_238": { "title": "Candle.TriStar.Bearish", "isHidden": false }, - "plot_181": { + "plot_239": { "title": "Candle.Kicking.Bullish", "isHidden": false }, - "plot_182": { + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { "title": "Candle.Kicking.Bearish", "isHidden": false }, - "plot_183": { + "plot_241": { "title": "VWAP", "isHidden": false }, - "plot_184": { + "plot_242": { "title": "Pivot.M.Classic.Middle", "isHidden": false }, - "plot_185": { + "plot_243": { "title": "Pivot.M.Classic.R1", "isHidden": false }, - "plot_186": { + "plot_244": { "title": "Pivot.M.Classic.S1", "isHidden": false }, - "plot_187": { + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_215": { + "plot_273": { "title": "relative_volume_intraday", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, "plot_28": { "title": "EMA10", "isHidden": false @@ -1579,7 +2043,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1587,43 +2051,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1631,43 +2095,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -1675,43 +2139,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -1719,43 +2183,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.simple.bonds.json b/scanner.data.simple.bonds.json index 9c8080e1d..8f86dd5d9 100644 --- a/scanner.data.simple.bonds.json +++ b/scanner.data.simple.bonds.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "close~$0;#0~$0~$1-$1@1~na():f~v:if(!($1@1\u003c0)\u0026\u0026!($1\u003c0)){$3=($2/$1@1)*100~}~$3~$1!$2!$5;t:str.substring(ticker,0,str.length(ticker):i-1):t~t:sc(t:syminfo.prefix,t:':',t:$2):t~i:na():f~sym($3,period,period,0,0,1,'NONE',0,0,$4)|$0()|s3:$1($6):s3~$8!$9!$10", + "defval": "close~$0;$0();#0~$0~$1-$1@1~na():f~v:if(!($1@1\u003c0)\u0026\u0026!($1\u003c0)){$3=($2/$1@1)*100~}~$3~$1!$2!$5;t:str.substring(ticker,0,str.length(ticker):i-1):t~t:sc(t:syminfo.prefix,t:':',t:$3):t~i:na():f~sym($4,period,period,0,0,1,'NONE',0,0,$5)|$1()|s3:$2($7):s3~$9!$10!$11", "isFake": false }, { diff --git a/scanner.data.simple.coin.5.json b/scanner.data.simple.coin.5.json index 32a1bd0f4..cd659ea63 100644 --- a/scanner.data.simple.coin.5.json +++ b/scanner.data.simple.coin.5.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;v^s_a_f:array.new_float(0,na():f):s_a_f~v^s_a_i:array.new_int(0,na():f):s_a_i~v:if(#2){v:array.push($0,#0):v~v:array.push($1,time):v~}~v:if(array.size($0)\u003e0){while(time-array.get($1,0)\u003e=#1\u0026\u0026array.size($0)\u003e#3){array.shift($0)~array.shift($1)}~}~s_a_f:$0~s_a_f:$9;s_a_f:$9(#0,i:86400000,1.0,i:1):s_a_f~array.sum($0);#0~v:max_bars_back($0,576):v~v:max_bars_back(time,576):v~na():f~v:for(0;288;1){v:if(time-time@$4\u003e=86400000){v:if(time-time@$4==86400000){$3=$4~}~break~}~$3=$4~}~$0@$3;open~high~low~$0!$1!$2;syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?close*volume:na():f~#0~$10($0*$1)~$2;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\u003c$161~close\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\u003e$147\u0026\u0026close\u003e$146\u0026\u0026close\u003c$145\u0026\u0026close@1\u003c$144\u0026\u0026close\u003e$144,$147\u003e$146\u0026\u0026close\u003c$147\u0026\u0026close\u003e$145\u0026\u0026close@1\u003e$144\u0026\u0026close\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\u003c30\u0026\u0026$190@1\u003c$190,$190\u003e70\u0026\u0026$190@1\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\u003c20\u0026\u0026$102\u003c20\u0026\u0026$101\u003e$102\u0026\u0026$101@1\u003c$102@1,$101\u003e80\u0026\u0026$102\u003e80\u0026\u0026$101\u003c$102\u0026\u0026$101@1\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\u003c(-100)\u0026\u0026$193\u003e$193@1,$193\u003e100\u0026\u0026$193\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\u003e20\u0026\u0026$61@1\u003c$62@1\u0026\u0026$61\u003e$62,$60\u003e20\u0026\u0026$61@1\u003e$62@1\u0026\u0026$61\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\u003e0\u0026\u0026$119@1\u003e0\u0026\u0026$119\u003e$119@1\u0026\u0026$119@2\u003e$119@1,crossunder($119,0)||$119\u003c0\u0026\u0026$119@1\u003c0\u0026\u0026$119\u003c$119@1\u0026\u0026$119@2\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\u003e$96@1,$96\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\u003e$94,$93\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\u0026\u0026$133\u003c20\u0026\u0026$134\u003c20\u0026\u0026$133\u003e$134\u0026\u0026$133@1\u003c$134@1,$163\u0026\u0026$133\u003e80\u0026\u0026$134\u003e80\u0026\u0026$133\u003c$134\u0026\u0026$133@1\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\u003c(-80)\u0026\u0026$136\u003e$136@1,$136\u003e(-20)\u0026\u0026$136\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\u0026\u0026$139\u003c0\u0026\u0026$139\u003e$139@1,$162\u0026\u0026$138\u003e0\u0026\u0026$138\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\u003e70,$141\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\u003c$225~$224\u003e$225~high-$222~$223-low~close\u003c$221~close\u003e$221~$228\u003e0*$224~$229\u003e0*$224~open\u003cclose~open\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\u003c100\u0026\u0026(abs($229-$228)/$228)*100\u003c100~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$223\u003ehl2\u0026\u0026$229\u003e=2.0*$224\u0026\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$222\u003chl2\u0026\u0026$228\u003e=2.0*$224\u0026\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\u0026\u0026$226@1\u0026\u0026$227){v:if_($230\u0026\u0026$235@2\u0026\u0026$222@1\u003c$223@2\u0026\u0026$234\u0026\u0026$222\u003e=$237@2\u0026\u0026$222\u003c$222@2\u0026\u0026$222@1\u003c$223){$253=1.0~}_{v:if($231\u0026\u0026$234@2\u0026\u0026$223@1\u003e$222@2\u0026\u0026$235\u0026\u0026$223\u003c=$237@2\u0026\u0026$223\u003e$223@2\u0026\u0026$223@1\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\u0026\u0026$228\u003c=0*$224\u0026\u0026$229\u003c=0*$224~$260\u0026\u0026$234~$260\u0026\u0026$235~$262?1:0~$261?1:0~$236\u003e0\u0026\u0026$224\u003c=$236*5/100~$265\u0026\u0026$238~$265\u0026\u0026$228\u003c=$224~$265\u0026\u0026$229\u003c=$224~$266\u0026\u0026!$267\u0026\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\u0026\u0026$235@1\u0026\u0026$230@1\u0026\u0026$234\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$227@1\u0026\u0026$234@1\u0026\u0026$231@1\u0026\u0026$235\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$229\u003e($236/100)*75?1:0~$228\u003e($236/100)*75?1:0~$229\u003e=($236/100)*34\u0026\u0026$228\u003e=($236/100)*34\u0026\u0026!$265~$276\u0026\u0026$234?1:0~$276\u0026\u0026$235?1:0~$236*5/100\u003e$228~$236*5/100\u003e$229~0.0~0.0~v:if($227\u0026\u0026$227@1\u0026\u0026$227@2){v:if($234\u0026\u0026$234@1\u0026\u0026$234@2){$281=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$279\u0026\u0026$279@1\u0026\u0026$279@2~}~v:if($235\u0026\u0026$235@1\u0026\u0026$235@2){$282=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$280\u0026\u0026$280@1\u0026\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\u0026\u0026$234\u0026\u0026$227\u0026\u0026$235@1\u0026\u0026$226@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$231\u0026\u0026$235\u0026\u0026$227\u0026\u0026$234@1\u0026\u0026$226@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$230@2\u0026\u0026$235@2\u0026\u0026$265@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$234\u0026\u0026high@1\u003clow?1:0~$231@2\u0026\u0026$234@2\u0026\u0026$265@1\u0026\u0026high@2\u003clow@1\u0026\u0026$235\u0026\u0026low@1\u003ehigh?1:0~$266@2\u0026\u0026$266@1\u0026\u0026$266~$222@1\u003c$223~$223@1\u003e$222~$292\u0026\u0026$230@2\u0026\u0026$294@1\u0026\u0026$293?1:0~$292\u0026\u0026$231@2\u0026\u0026$293@1\u0026\u0026$294?1:0~$262@1\u0026\u0026$261\u0026\u0026high@1\u003clow?1:0~$261@1\u0026\u0026$262\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$303@1~$304@1~$305@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($313!=$313@1){$309=$306~$312=close@1~$310=$307~$311=$308~$306=open~}_{}~($310+$311+$312)/3~$8($315)~$8($315*2-$311)~$8($315*2-$310)~$8($315+1*($310-$311))~$8($315-1*($310-$311))~$8($315+2*($310-$311))~$8($315-2*($310-$311))~$8($315)~$8($315+0.382*($310-$311))~$8($315-0.382*($310-$311))~$8($315+0.618*($310-$311))~$8($315-0.618*($310-$311))~$8($315+1*($310-$311))~$8($315-1*($310-$311))~($310+$311+$306*2)/4~$8($330)~$8($330*2-$311)~$8($330*2-$310)~$8($330+1*($310-$311))~$8($330-1*($310-$311))~$8($310+2*($330-$311))~$8($311-2*($310-$330))~$310+$311*2+$312~v:if($312==$309){$338=$310+$311+$312*2~}~v:if($312\u003e$309){$338=$310*2+$311+$312~}~$8($338/4)~$8($338/2-$311)~$8($338/2-$310)~$8($315)~$8($312+0.09166666666666667*($310-$311))~$8($312-0.09166666666666667*($310-$311))~$8($312+0.18333333333333335*($310-$311))~$8($312-0.18333333333333335*($310-$311))~$8($312+0.275*($310-$311))~$8($312-0.275*($310-$311))~v^0.0~$351=$351+nz(volume)~#3~v:if(barstate.islast){v:if((syminfo.volumetype=='tick'\u0026\u0026syminfo.type=='crypto')||$351==0){$352=na():f~}~}~$352~syminfo.volumetype=='base'?volume:(syminfo.volumetype=='quote')\u0026\u0026close!=0?volume/close:na():f~syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?volume*close:na():f~$11($352)~na():f~v:if(!na($352)\u0026\u0026!na($358)){$359=$352-$358~}~$359~na():f~v:if(!na($359)\u0026\u0026$358!=0){$362=($359/abs($358))*100~}~$362~$11(close)~na():f~v:if(!na(close)\u0026\u0026!na($365)){$366=close-$365~}~$366~na():f~v:if_(na($366)||$365==0||$365\u003c0\u0026\u0026close\u003e0){}_{$369=($366/abs($365))*100~}~$369~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$331!$332!$333!$334!$335!$336!$337!$341!$342!$343!$344!$345!$346!$347!$348!$349!$350!$355!$356!$357!$358!$361!$364!$365!$368!$371;t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$17,$17,0,1,0,'NONE',0,0,$18)|$12():s3|rate(syminfo.currency,'USD',1.0)~sym(tickerid,'5','5',0,0,1,'NONE',0,0,$18)|$13($24)|s224:$14($20,$21,$22,$26):s224~$28!$29!$30!$31!$32!$33!$34!$35!$36!$113!$38!$39!$40!$41!$116!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$131!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251", + "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;v^s_a_f:array.new_float(0,na():f):s_a_f~v^s_a_i:array.new_int(0,na():f):s_a_i~v:if(#2){v:array.push($0,#0):v~v:array.push($1,time):v~}~v:if(array.size($0)\u003e0){while(time-array.get($1,0)\u003e=#1\u0026\u0026array.size($0)\u003e#3){array.shift($0)~array.shift($1)}~}~s_a_f:$0~s_a_f:$9;s_a_f:$9(#0,i:86400000,1.0,i:1):s_a_f~array.sum($0);#0~v:max_bars_back($0,576):v~v:max_bars_back(time,576):v~na():f~v:for(0;288;1){v:if(time-time@$4\u003e=86400000){v:if(time-time@$4==86400000){$3=$4~}~break~}~$3=$4~}~$0@$3;open~high~low~$0!$1!$2;s3:$12():s3;syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?close*volume:na():f~#0~$10($0*$1)~$2;$14(#0);sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\u003c$229~close\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\u003e$212\u0026\u0026close\u003e$211\u0026\u0026close\u003c$210\u0026\u0026close@1\u003c$209\u0026\u0026close\u003e$209,$212\u003e$211\u0026\u0026close\u003c$212\u0026\u0026close\u003e$210\u0026\u0026close@1\u003e$209\u0026\u0026close\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\u003c30\u0026\u0026$258@1\u003c$258,$258\u003e70\u0026\u0026$258@1\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\u003c20\u0026\u0026$107\u003c20\u0026\u0026$106\u003e$107\u0026\u0026$106@1\u003c$107@1,$106\u003e80\u0026\u0026$107\u003e80\u0026\u0026$106\u003c$107\u0026\u0026$106@1\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\u003c(-100)\u0026\u0026$261\u003e$261@1,$261\u003e100\u0026\u0026$261\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\u003e20\u0026\u0026$64@1\u003c$65@1\u0026\u0026$64\u003e$65,$63\u003e20\u0026\u0026$64@1\u003e$65@1\u0026\u0026$64\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\u003e0\u0026\u0026$174@1\u003e0\u0026\u0026$174\u003e$174@1\u0026\u0026$174@2\u003e$174@1,crossunder($174,0)||$174\u003c0\u0026\u0026$174@1\u003c0\u0026\u0026$174\u003c$174@1\u0026\u0026$174@2\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\u003e$99@1,$99\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\u003e$97,$96\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\u0026\u0026$191\u003c20\u0026\u0026$192\u003c20\u0026\u0026$191\u003e$192\u0026\u0026$191@1\u003c$192@1,$231\u0026\u0026$191\u003e80\u0026\u0026$192\u003e80\u0026\u0026$191\u003c$192\u0026\u0026$191@1\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\u003c(-80)\u0026\u0026$194\u003e$194@1,$194\u003e(-20)\u0026\u0026$194\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\u0026\u0026$204\u003c0\u0026\u0026$204\u003e$204@1,$230\u0026\u0026$203\u003e0\u0026\u0026$203\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\u003e70,$206\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\u003c$293~$292\u003e$293~high-$290~$291-low~close\u003c$289~close\u003e$289~$296\u003e0*$292~$297\u003e0*$292~open\u003cclose~open\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\u003c100\u0026\u0026(abs($297-$296)/$296)*100\u003c100~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$291\u003ehl2\u0026\u0026$297\u003e=2.0*$292\u0026\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$290\u003chl2\u0026\u0026$296\u003e=2.0*$292\u0026\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\u0026\u0026$294@1\u0026\u0026$295){v:if_($298\u0026\u0026$303@2\u0026\u0026$290@1\u003c$291@2\u0026\u0026$302\u0026\u0026$290\u003e=$305@2\u0026\u0026$290\u003c$290@2\u0026\u0026$290@1\u003c$291){$321=1.0~}_{v:if($299\u0026\u0026$302@2\u0026\u0026$291@1\u003e$290@2\u0026\u0026$303\u0026\u0026$291\u003c=$305@2\u0026\u0026$291\u003e$291@2\u0026\u0026$291@1\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\u0026\u0026$296\u003c=0*$292\u0026\u0026$297\u003c=0*$292~$328\u0026\u0026$302~$328\u0026\u0026$303~$330?1:0~$329?1:0~$304\u003e0\u0026\u0026$292\u003c=$304*5/100~$333\u0026\u0026$306~$333\u0026\u0026$296\u003c=$292~$333\u0026\u0026$297\u003c=$292~$334\u0026\u0026!$335\u0026\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\u0026\u0026$303@1\u0026\u0026$298@1\u0026\u0026$302\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$295@1\u0026\u0026$302@1\u0026\u0026$299@1\u0026\u0026$303\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$297\u003e($304/100)*75?1:0~$296\u003e($304/100)*75?1:0~$297\u003e=($304/100)*34\u0026\u0026$296\u003e=($304/100)*34\u0026\u0026!$333~$344\u0026\u0026$302?1:0~$344\u0026\u0026$303?1:0~$304*5/100\u003e$296~$304*5/100\u003e$297~0.0~0.0~v:if($295\u0026\u0026$295@1\u0026\u0026$295@2){v:if($302\u0026\u0026$302@1\u0026\u0026$302@2){$349=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$347\u0026\u0026$347@1\u0026\u0026$347@2~}~v:if($303\u0026\u0026$303@1\u0026\u0026$303@2){$350=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$348\u0026\u0026$348@1\u0026\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\u0026\u0026$302\u0026\u0026$295\u0026\u0026$303@1\u0026\u0026$294@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$299\u0026\u0026$303\u0026\u0026$295\u0026\u0026$302@1\u0026\u0026$294@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$298@2\u0026\u0026$303@2\u0026\u0026$333@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$302\u0026\u0026high@1\u003clow?1:0~$299@2\u0026\u0026$302@2\u0026\u0026$333@1\u0026\u0026high@2\u003clow@1\u0026\u0026$303\u0026\u0026low@1\u003ehigh?1:0~$334@2\u0026\u0026$334@1\u0026\u0026$334~$290@1\u003c$291~$291@1\u003e$290~$360\u0026\u0026$298@2\u0026\u0026$362@1\u0026\u0026$361?1:0~$360\u0026\u0026$299@2\u0026\u0026$361@1\u0026\u0026$362?1:0~$330@1\u0026\u0026$329\u0026\u0026high@1\u003clow?1:0~$329@1\u0026\u0026$330\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$371@1~$372@1~$373@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($381!=$381@1){$377=$374~$380=close@1~$378=$375~$379=$376~$374=open~}_{}~($378+$379+$380)/3~$8($383)~$8($383*2-$379)~$8($383*2-$378)~$8($383+1*($378-$379))~$8($383-1*($378-$379))~$8($383+2*($378-$379))~$8($383-2*($378-$379))~$8($383)~$8($383+0.382*($378-$379))~$8($383-0.382*($378-$379))~$8($383+0.618*($378-$379))~$8($383-0.618*($378-$379))~$8($383+1*($378-$379))~$8($383-1*($378-$379))~($378+$379+$374*2)/4~$8($398)~$8($398*2-$379)~$8($398*2-$378)~$8($398+1*($378-$379))~$8($398-1*($378-$379))~$8($378+2*($398-$379))~$8($379-2*($378-$398))~$378+$379*2+$380~v:if($380==$377){$406=$378+$379+$380*2~}~v:if($380\u003e$377){$406=$378*2+$379+$380~}~$8($406/4)~$8($406/2-$379)~$8($406/2-$378)~$8($383)~$8($380+0.09166666666666667*($378-$379))~$8($380-0.09166666666666667*($378-$379))~$8($380+0.18333333333333335*($378-$379))~$8($380-0.18333333333333335*($378-$379))~$8($380+0.275*($378-$379))~$8($380-0.275*($378-$379))~v^0.0~$419=$419+nz(volume)~#3~v:if(barstate.islast){v:if((syminfo.volumetype=='tick'\u0026\u0026syminfo.type=='crypto')||$419==0){$420=na():f~}~}~$420~syminfo.volumetype=='base'?volume:(syminfo.volumetype=='quote')\u0026\u0026close!=0?volume/close:na():f~syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?volume*close:na():f~$11($420)~na():f~v:if(!na($420)\u0026\u0026!na($426)){$427=$420-$426~}~$427~na():f~v:if(!na($427)\u0026\u0026$426!=0){$430=($427/abs($426))*100~}~$430~$11(close)~na():f~v:if(!na(close)\u0026\u0026!na($433)){$434=close-$433~}~$434~na():f~v:if_(na($434)||$433==0||$433\u003c0\u0026\u0026close\u003e0){}_{$437=($434/abs($433))*100~}~$437~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$395!$396!$397!$399!$400!$401!$402!$403!$404!$405!$409!$410!$411!$412!$413!$414!$415!$416!$417!$418!$423!$424!$425!$426!$429!$432!$433!$436!$439;t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$19,$19,0,1,0,'NONE',0,0,$20)|$13():s3|rate(syminfo.currency,'USD',1.0)~sym(tickerid,'5','5',0,0,1,'NONE',0,0,$20)|$15($26)|s282:$16($22,$23,$24,$28):s282~$30!$31!$32!$33!$34!$35!$36!$37!$38!$117!$40!$41!$42!$43!$120!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295!$296!$297!$298!$299!$300!$301!$302!$303!$304!$305!$306!$307!$308!$309!$310!$311", "isFake": false }, { @@ -918,6 +918,238 @@ { "id": "plot_223", "type": "line" + }, + { + "id": "plot_224", + "type": "line" + }, + { + "id": "plot_225", + "type": "line" + }, + { + "id": "plot_226", + "type": "line" + }, + { + "id": "plot_227", + "type": "line" + }, + { + "id": "plot_228", + "type": "line" + }, + { + "id": "plot_229", + "type": "line" + }, + { + "id": "plot_230", + "type": "line" + }, + { + "id": "plot_231", + "type": "line" + }, + { + "id": "plot_232", + "type": "line" + }, + { + "id": "plot_233", + "type": "line" + }, + { + "id": "plot_234", + "type": "line" + }, + { + "id": "plot_235", + "type": "line" + }, + { + "id": "plot_236", + "type": "line" + }, + { + "id": "plot_237", + "type": "line" + }, + { + "id": "plot_238", + "type": "line" + }, + { + "id": "plot_239", + "type": "line" + }, + { + "id": "plot_240", + "type": "line" + }, + { + "id": "plot_241", + "type": "line" + }, + { + "id": "plot_242", + "type": "line" + }, + { + "id": "plot_243", + "type": "line" + }, + { + "id": "plot_244", + "type": "line" + }, + { + "id": "plot_245", + "type": "line" + }, + { + "id": "plot_246", + "type": "line" + }, + { + "id": "plot_247", + "type": "line" + }, + { + "id": "plot_248", + "type": "line" + }, + { + "id": "plot_249", + "type": "line" + }, + { + "id": "plot_250", + "type": "line" + }, + { + "id": "plot_251", + "type": "line" + }, + { + "id": "plot_252", + "type": "line" + }, + { + "id": "plot_253", + "type": "line" + }, + { + "id": "plot_254", + "type": "line" + }, + { + "id": "plot_255", + "type": "line" + }, + { + "id": "plot_256", + "type": "line" + }, + { + "id": "plot_257", + "type": "line" + }, + { + "id": "plot_258", + "type": "line" + }, + { + "id": "plot_259", + "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" + }, + { + "id": "plot_273", + "type": "line" + }, + { + "id": "plot_274", + "type": "line" + }, + { + "id": "plot_275", + "type": "line" + }, + { + "id": "plot_276", + "type": "line" + }, + { + "id": "plot_277", + "type": "line" + }, + { + "id": "plot_278", + "type": "line" + }, + { + "id": "plot_279", + "type": "line" + }, + { + "id": "plot_280", + "type": "line" + }, + { + "id": "plot_281", + "type": "line" } ], "version": "", @@ -939,43 +1171,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -983,43 +1215,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -1027,43 +1259,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1071,43 +1303,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1115,43 +1347,43 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { - "title": "Ichimoku.Lead1_20_60_120_30", + "title": "DonchCh20.Lower", "isHidden": false }, "plot_142": { - "title": "Ichimoku.Lead2_20_60_120_30", + "title": "DonchCh20.Upper", "isHidden": false }, "plot_143": { - "title": "VWMA", + "title": "DonchCh20.Middle", "isHidden": false }, "plot_144": { - "title": "ADR", + "title": "DonchCh96.Lower", "isHidden": false }, "plot_145": { - "title": "ADRP", + "title": "DonchCh96.Upper", "isHidden": false }, "plot_146": { - "title": "Rec.HullMA9", + "title": "DonchCh96.Middle", "isHidden": false }, "plot_147": { - "title": "Rec.VWMA", + "title": "DonchCh13.Lower", "isHidden": false }, "plot_148": { - "title": "Rec.Ichimoku", + "title": "DonchCh13.Upper", "isHidden": false }, "plot_149": { - "title": "Recommend.MA", + "title": "DonchCh13.Middle", "isHidden": false }, "plot_15": { @@ -1159,355 +1391,587 @@ "isHidden": false }, "plot_150": { + "title": "DonchCh10.Lower", + "isHidden": false + }, + "plot_151": { + "title": "DonchCh10.Upper", + "isHidden": false + }, + "plot_152": { + "title": "DonchCh10.Middle", + "isHidden": false + }, + "plot_153": { + "title": "DonchCh1.Lower", + "isHidden": false + }, + "plot_154": { + "title": "DonchCh1.Upper", + "isHidden": false + }, + "plot_155": { + "title": "DonchCh1.Middle", + "isHidden": false + }, + "plot_156": { + "title": "HullMA9", + "isHidden": false + }, + "plot_157": { + "title": "HullMA200", + "isHidden": false + }, + "plot_158": { + "title": "HullMA1728", + "isHidden": false + }, + "plot_159": { + "title": "HullMA50", + "isHidden": false + }, + "plot_16": { + "title": "SMA100", + "isHidden": false + }, + "plot_160": { + "title": "HullMA100", + "isHidden": false + }, + "plot_161": { + "title": "HullMA20", + "isHidden": false + }, + "plot_162": { + "title": "HullMA144", + "isHidden": false + }, + "plot_163": { + "title": "HullMA256", + "isHidden": false + }, + "plot_164": { + "title": "AO", + "isHidden": false + }, + "plot_165": { + "title": "AO[1]", + "isHidden": false + }, + "plot_166": { + "title": "AO[2]", + "isHidden": false + }, + "plot_167": { + "title": "Aroon.Up", + "isHidden": false + }, + "plot_168": { + "title": "Aroon.Down", + "isHidden": false + }, + "plot_169": { + "title": "Aroon25.Up", + "isHidden": false + }, + "plot_17": { + "title": "SMA120", + "isHidden": false + }, + "plot_170": { + "title": "Aroon25.Down", + "isHidden": false + }, + "plot_171": { + "title": "Value.Traded", + "isHidden": false + }, + "plot_172": { + "title": "KltChnl.upper", + "isHidden": false + }, + "plot_173": { + "title": "KltChnl.lower", + "isHidden": false + }, + "plot_174": { + "title": "KltChnl.basis", + "isHidden": false + }, + "plot_175": { + "title": "P.SAR", + "isHidden": false + }, + "plot_176": { + "title": "MoneyFlow", + "isHidden": false + }, + "plot_177": { + "title": "MoneyFlow12", + "isHidden": false + }, + "plot_178": { + "title": "ChaikinMoneyFlow", + "isHidden": false + }, + "plot_179": { + "title": "Stoch.RSI.K", + "isHidden": false + }, + "plot_18": { + "title": "SMA150", + "isHidden": false + }, + "plot_180": { + "title": "Stoch.RSI.D", + "isHidden": false + }, + "plot_181": { + "title": "W.R", + "isHidden": false + }, + "plot_182": { + "title": "W.R14", + "isHidden": false + }, + "plot_183": { + "title": "W.R12", + "isHidden": false + }, + "plot_184": { + "title": "ROC", + "isHidden": false + }, + "plot_185": { + "title": "ROC1", + "isHidden": false + }, + "plot_186": { + "title": "ROC14", + "isHidden": false + }, + "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { + "title": "Ichimoku.Lead1_20_60_120_30", + "isHidden": false + }, + "plot_198": { + "title": "Ichimoku.Lead2_20_60_120_30", + "isHidden": false + }, + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", + "isHidden": false + }, + "plot_201": { + "title": "VWMA50", + "isHidden": false + }, + "plot_202": { + "title": "ADR", + "isHidden": false + }, + "plot_203": { + "title": "ADRP", + "isHidden": false + }, + "plot_204": { + "title": "Rec.HullMA9", + "isHidden": false + }, + "plot_205": { + "title": "Rec.VWMA", + "isHidden": false + }, + "plot_206": { + "title": "Rec.Ichimoku", + "isHidden": false + }, + "plot_207": { + "title": "Recommend.MA", + "isHidden": false + }, + "plot_208": { "title": "Rec.Stoch.RSI", "isHidden": false }, - "plot_151": { + "plot_209": { "title": "Rec.WR", "isHidden": false }, - "plot_152": { + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { "title": "Rec.BBPower", "isHidden": false }, - "plot_153": { + "plot_211": { "title": "Rec.UO", "isHidden": false }, - "plot_154": { + "plot_212": { "title": "Recommend.Other", "isHidden": false }, - "plot_155": { + "plot_213": { "title": "Recommend.All", "isHidden": false }, - "plot_156": { + "plot_214": { "title": "Candle.Hammer", "isHidden": false }, - "plot_157": { + "plot_215": { "title": "Candle.HangingMan", "isHidden": false }, - "plot_158": { + "plot_216": { "title": "Candle.InvertedHammer", "isHidden": false }, - "plot_159": { + "plot_217": { "title": "Candle.ShootingStar", "isHidden": false }, - "plot_16": { - "title": "SMA100", - "isHidden": false - }, - "plot_160": { + "plot_218": { "title": "Candle.MorningStar", "isHidden": false }, - "plot_161": { + "plot_219": { "title": "Candle.EveningStar", "isHidden": false }, - "plot_162": { + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { "title": "Candle.Marubozu.Black", "isHidden": false }, - "plot_163": { + "plot_221": { "title": "Candle.Marubozu.White", "isHidden": false }, - "plot_164": { + "plot_222": { "title": "Candle.Doji", "isHidden": false }, - "plot_165": { + "plot_223": { "title": "Candle.Doji.Dragonfly", "isHidden": false }, - "plot_166": { + "plot_224": { "title": "Candle.Doji.Gravestone", "isHidden": false }, - "plot_167": { + "plot_225": { "title": "Candle.Harami.Bullish", "isHidden": false }, - "plot_168": { + "plot_226": { "title": "Candle.Harami.Bearish", "isHidden": false }, - "plot_169": { + "plot_227": { "title": "Candle.LongShadow.Lower", "isHidden": false }, - "plot_17": { - "title": "SMA120", - "isHidden": false - }, - "plot_170": { + "plot_228": { "title": "Candle.LongShadow.Upper", "isHidden": false }, - "plot_171": { + "plot_229": { "title": "Candle.SpinningTop.White", "isHidden": false }, - "plot_172": { + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { "title": "Candle.SpinningTop.Black", "isHidden": false }, - "plot_173": { + "plot_231": { "title": "Candle.3WhiteSoldiers", "isHidden": false }, - "plot_174": { + "plot_232": { "title": "Candle.3BlackCrows", "isHidden": false }, - "plot_175": { + "plot_233": { "title": "Candle.Engulfing.Bullish", "isHidden": false }, - "plot_176": { + "plot_234": { "title": "Candle.Engulfing.Bearish", "isHidden": false }, - "plot_177": { + "plot_235": { "title": "Candle.AbandonedBaby.Bullish", "isHidden": false }, - "plot_178": { + "plot_236": { "title": "Candle.AbandonedBaby.Bearish", "isHidden": false }, - "plot_179": { + "plot_237": { "title": "Candle.TriStar.Bullish", "isHidden": false }, - "plot_18": { - "title": "SMA150", - "isHidden": false - }, - "plot_180": { + "plot_238": { "title": "Candle.TriStar.Bearish", "isHidden": false }, - "plot_181": { + "plot_239": { "title": "Candle.Kicking.Bullish", "isHidden": false }, - "plot_182": { + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { "title": "Candle.Kicking.Bearish", "isHidden": false }, - "plot_183": { + "plot_241": { "title": "VWAP", "isHidden": false }, - "plot_184": { + "plot_242": { "title": "Pivot.M.Classic.Middle", "isHidden": false }, - "plot_185": { + "plot_243": { "title": "Pivot.M.Classic.R1", "isHidden": false }, - "plot_186": { + "plot_244": { "title": "Pivot.M.Classic.S1", "isHidden": false }, - "plot_187": { + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_215": { + "plot_273": { "title": "24h_vol", "isHidden": false }, - "plot_216": { + "plot_274": { "title": "volume_base", "isHidden": false }, - "plot_217": { + "plot_275": { "title": "volume_quote", "isHidden": false }, - "plot_218": { + "plot_276": { "title": "24h_vol_prev", "isHidden": false }, - "plot_219": { + "plot_277": { "title": "24h_vol_change_abs", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_220": { + "plot_278": { "title": "24h_vol_change", "isHidden": false }, - "plot_221": { + "plot_279": { "title": "24h_close_prev", "isHidden": false }, - "plot_222": { - "title": "24h_close_change_abs", - "isHidden": false - }, - "plot_223": { - "title": "24h_close_change", - "isHidden": false - }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_26": { - "title": "EMA8", + "plot_28": { + "title": "EMA10", "isHidden": false }, - "plot_27": { - "title": "EMA9", + "plot_280": { + "title": "24h_close_change_abs", "isHidden": false }, - "plot_28": { - "title": "EMA10", + "plot_281": { + "title": "24h_close_change", "isHidden": false }, "plot_29": { @@ -1643,7 +2107,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1651,43 +2115,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1695,43 +2159,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -1739,43 +2203,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -1783,43 +2247,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.simple.coin.json b/scanner.data.simple.coin.json index 222e3e23f..35319b8a0 100644 --- a/scanner.data.simple.coin.json +++ b/scanner.data.simple.coin.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;open~high~low~$0!$1!$2;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\u003c$161~close\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\u003e$147\u0026\u0026close\u003e$146\u0026\u0026close\u003c$145\u0026\u0026close@1\u003c$144\u0026\u0026close\u003e$144,$147\u003e$146\u0026\u0026close\u003c$147\u0026\u0026close\u003e$145\u0026\u0026close@1\u003e$144\u0026\u0026close\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\u003c30\u0026\u0026$190@1\u003c$190,$190\u003e70\u0026\u0026$190@1\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\u003c20\u0026\u0026$102\u003c20\u0026\u0026$101\u003e$102\u0026\u0026$101@1\u003c$102@1,$101\u003e80\u0026\u0026$102\u003e80\u0026\u0026$101\u003c$102\u0026\u0026$101@1\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\u003c(-100)\u0026\u0026$193\u003e$193@1,$193\u003e100\u0026\u0026$193\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\u003e20\u0026\u0026$61@1\u003c$62@1\u0026\u0026$61\u003e$62,$60\u003e20\u0026\u0026$61@1\u003e$62@1\u0026\u0026$61\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\u003e0\u0026\u0026$119@1\u003e0\u0026\u0026$119\u003e$119@1\u0026\u0026$119@2\u003e$119@1,crossunder($119,0)||$119\u003c0\u0026\u0026$119@1\u003c0\u0026\u0026$119\u003c$119@1\u0026\u0026$119@2\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\u003e$96@1,$96\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\u003e$94,$93\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\u0026\u0026$133\u003c20\u0026\u0026$134\u003c20\u0026\u0026$133\u003e$134\u0026\u0026$133@1\u003c$134@1,$163\u0026\u0026$133\u003e80\u0026\u0026$134\u003e80\u0026\u0026$133\u003c$134\u0026\u0026$133@1\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\u003c(-80)\u0026\u0026$136\u003e$136@1,$136\u003e(-20)\u0026\u0026$136\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\u0026\u0026$139\u003c0\u0026\u0026$139\u003e$139@1,$162\u0026\u0026$138\u003e0\u0026\u0026$138\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\u003e70,$141\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\u003c$225~$224\u003e$225~high-$222~$223-low~close\u003c$221~close\u003e$221~$228\u003e0*$224~$229\u003e0*$224~open\u003cclose~open\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\u003c100\u0026\u0026(abs($229-$228)/$228)*100\u003c100~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$223\u003ehl2\u0026\u0026$229\u003e=2.0*$224\u0026\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$222\u003chl2\u0026\u0026$228\u003e=2.0*$224\u0026\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\u0026\u0026$226@1\u0026\u0026$227){v:if_($230\u0026\u0026$235@2\u0026\u0026$222@1\u003c$223@2\u0026\u0026$234\u0026\u0026$222\u003e=$237@2\u0026\u0026$222\u003c$222@2\u0026\u0026$222@1\u003c$223){$253=1.0~}_{v:if($231\u0026\u0026$234@2\u0026\u0026$223@1\u003e$222@2\u0026\u0026$235\u0026\u0026$223\u003c=$237@2\u0026\u0026$223\u003e$223@2\u0026\u0026$223@1\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\u0026\u0026$228\u003c=0*$224\u0026\u0026$229\u003c=0*$224~$260\u0026\u0026$234~$260\u0026\u0026$235~$262?1:0~$261?1:0~$236\u003e0\u0026\u0026$224\u003c=$236*5/100~$265\u0026\u0026$238~$265\u0026\u0026$228\u003c=$224~$265\u0026\u0026$229\u003c=$224~$266\u0026\u0026!$267\u0026\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\u0026\u0026$235@1\u0026\u0026$230@1\u0026\u0026$234\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$227@1\u0026\u0026$234@1\u0026\u0026$231@1\u0026\u0026$235\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$229\u003e($236/100)*75?1:0~$228\u003e($236/100)*75?1:0~$229\u003e=($236/100)*34\u0026\u0026$228\u003e=($236/100)*34\u0026\u0026!$265~$276\u0026\u0026$234?1:0~$276\u0026\u0026$235?1:0~$236*5/100\u003e$228~$236*5/100\u003e$229~0.0~0.0~v:if($227\u0026\u0026$227@1\u0026\u0026$227@2){v:if($234\u0026\u0026$234@1\u0026\u0026$234@2){$281=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$279\u0026\u0026$279@1\u0026\u0026$279@2~}~v:if($235\u0026\u0026$235@1\u0026\u0026$235@2){$282=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$280\u0026\u0026$280@1\u0026\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\u0026\u0026$234\u0026\u0026$227\u0026\u0026$235@1\u0026\u0026$226@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$231\u0026\u0026$235\u0026\u0026$227\u0026\u0026$234@1\u0026\u0026$226@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$230@2\u0026\u0026$235@2\u0026\u0026$265@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$234\u0026\u0026high@1\u003clow?1:0~$231@2\u0026\u0026$234@2\u0026\u0026$265@1\u0026\u0026high@2\u003clow@1\u0026\u0026$235\u0026\u0026low@1\u003ehigh?1:0~$266@2\u0026\u0026$266@1\u0026\u0026$266~$222@1\u003c$223~$223@1\u003e$222~$292\u0026\u0026$230@2\u0026\u0026$294@1\u0026\u0026$293?1:0~$292\u0026\u0026$231@2\u0026\u0026$293@1\u0026\u0026$294?1:0~$262@1\u0026\u0026$261\u0026\u0026high@1\u003clow?1:0~$261@1\u0026\u0026$262\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$303@1~$304@1~$305@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($313!=$313@1){$309=$306~$312=close@1~$310=$307~$311=$308~$306=open~}_{}~($310+$311+$312)/3~$8($315)~$8($315*2-$311)~$8($315*2-$310)~$8($315+1*($310-$311))~$8($315-1*($310-$311))~$8($315+2*($310-$311))~$8($315-2*($310-$311))~$8($315)~$8($315+0.382*($310-$311))~$8($315-0.382*($310-$311))~$8($315+0.618*($310-$311))~$8($315-0.618*($310-$311))~$8($315+1*($310-$311))~$8($315-1*($310-$311))~($310+$311+$306*2)/4~$8($330)~$8($330*2-$311)~$8($330*2-$310)~$8($330+1*($310-$311))~$8($330-1*($310-$311))~$8($310+2*($330-$311))~$8($311-2*($310-$330))~$310+$311*2+$312~v:if($312==$309){$338=$310+$311+$312*2~}~v:if($312\u003e$309){$338=$310*2+$311+$312~}~$8($338/4)~$8($338/2-$311)~$8($338/2-$310)~$8($315)~$8($312+0.09166666666666667*($310-$311))~$8($312-0.09166666666666667*($310-$311))~$8($312+0.18333333333333335*($310-$311))~$8($312-0.18333333333333335*($310-$311))~$8($312+0.275*($310-$311))~$8($312-0.275*($310-$311))~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$331!$332!$333!$334!$335!$336!$337!$341!$342!$343!$344!$345!$346!$347!$348!$349!$350;t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$13,$13,0,1,0,'NONE',0,0,$14)|$9():s3|s215:$10($16,$17,$18):s215~$20!$21!$22!$23!$24!$25!$26!$27!$28!$105!$30!$31!$32!$33!$108!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$123!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234", + "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;open~high~low~$0!$1!$2;s3:$9():s3;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\u003c$229~close\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\u003e$212\u0026\u0026close\u003e$211\u0026\u0026close\u003c$210\u0026\u0026close@1\u003c$209\u0026\u0026close\u003e$209,$212\u003e$211\u0026\u0026close\u003c$212\u0026\u0026close\u003e$210\u0026\u0026close@1\u003e$209\u0026\u0026close\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\u003c30\u0026\u0026$258@1\u003c$258,$258\u003e70\u0026\u0026$258@1\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\u003c20\u0026\u0026$107\u003c20\u0026\u0026$106\u003e$107\u0026\u0026$106@1\u003c$107@1,$106\u003e80\u0026\u0026$107\u003e80\u0026\u0026$106\u003c$107\u0026\u0026$106@1\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\u003c(-100)\u0026\u0026$261\u003e$261@1,$261\u003e100\u0026\u0026$261\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\u003e20\u0026\u0026$64@1\u003c$65@1\u0026\u0026$64\u003e$65,$63\u003e20\u0026\u0026$64@1\u003e$65@1\u0026\u0026$64\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\u003e0\u0026\u0026$174@1\u003e0\u0026\u0026$174\u003e$174@1\u0026\u0026$174@2\u003e$174@1,crossunder($174,0)||$174\u003c0\u0026\u0026$174@1\u003c0\u0026\u0026$174\u003c$174@1\u0026\u0026$174@2\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\u003e$99@1,$99\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\u003e$97,$96\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\u0026\u0026$191\u003c20\u0026\u0026$192\u003c20\u0026\u0026$191\u003e$192\u0026\u0026$191@1\u003c$192@1,$231\u0026\u0026$191\u003e80\u0026\u0026$192\u003e80\u0026\u0026$191\u003c$192\u0026\u0026$191@1\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\u003c(-80)\u0026\u0026$194\u003e$194@1,$194\u003e(-20)\u0026\u0026$194\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\u0026\u0026$204\u003c0\u0026\u0026$204\u003e$204@1,$230\u0026\u0026$203\u003e0\u0026\u0026$203\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\u003e70,$206\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\u003c$293~$292\u003e$293~high-$290~$291-low~close\u003c$289~close\u003e$289~$296\u003e0*$292~$297\u003e0*$292~open\u003cclose~open\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\u003c100\u0026\u0026(abs($297-$296)/$296)*100\u003c100~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$291\u003ehl2\u0026\u0026$297\u003e=2.0*$292\u0026\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$290\u003chl2\u0026\u0026$296\u003e=2.0*$292\u0026\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\u0026\u0026$294@1\u0026\u0026$295){v:if_($298\u0026\u0026$303@2\u0026\u0026$290@1\u003c$291@2\u0026\u0026$302\u0026\u0026$290\u003e=$305@2\u0026\u0026$290\u003c$290@2\u0026\u0026$290@1\u003c$291){$321=1.0~}_{v:if($299\u0026\u0026$302@2\u0026\u0026$291@1\u003e$290@2\u0026\u0026$303\u0026\u0026$291\u003c=$305@2\u0026\u0026$291\u003e$291@2\u0026\u0026$291@1\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\u0026\u0026$296\u003c=0*$292\u0026\u0026$297\u003c=0*$292~$328\u0026\u0026$302~$328\u0026\u0026$303~$330?1:0~$329?1:0~$304\u003e0\u0026\u0026$292\u003c=$304*5/100~$333\u0026\u0026$306~$333\u0026\u0026$296\u003c=$292~$333\u0026\u0026$297\u003c=$292~$334\u0026\u0026!$335\u0026\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\u0026\u0026$303@1\u0026\u0026$298@1\u0026\u0026$302\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$295@1\u0026\u0026$302@1\u0026\u0026$299@1\u0026\u0026$303\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$297\u003e($304/100)*75?1:0~$296\u003e($304/100)*75?1:0~$297\u003e=($304/100)*34\u0026\u0026$296\u003e=($304/100)*34\u0026\u0026!$333~$344\u0026\u0026$302?1:0~$344\u0026\u0026$303?1:0~$304*5/100\u003e$296~$304*5/100\u003e$297~0.0~0.0~v:if($295\u0026\u0026$295@1\u0026\u0026$295@2){v:if($302\u0026\u0026$302@1\u0026\u0026$302@2){$349=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$347\u0026\u0026$347@1\u0026\u0026$347@2~}~v:if($303\u0026\u0026$303@1\u0026\u0026$303@2){$350=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$348\u0026\u0026$348@1\u0026\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\u0026\u0026$302\u0026\u0026$295\u0026\u0026$303@1\u0026\u0026$294@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$299\u0026\u0026$303\u0026\u0026$295\u0026\u0026$302@1\u0026\u0026$294@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$298@2\u0026\u0026$303@2\u0026\u0026$333@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$302\u0026\u0026high@1\u003clow?1:0~$299@2\u0026\u0026$302@2\u0026\u0026$333@1\u0026\u0026high@2\u003clow@1\u0026\u0026$303\u0026\u0026low@1\u003ehigh?1:0~$334@2\u0026\u0026$334@1\u0026\u0026$334~$290@1\u003c$291~$291@1\u003e$290~$360\u0026\u0026$298@2\u0026\u0026$362@1\u0026\u0026$361?1:0~$360\u0026\u0026$299@2\u0026\u0026$361@1\u0026\u0026$362?1:0~$330@1\u0026\u0026$329\u0026\u0026high@1\u003clow?1:0~$329@1\u0026\u0026$330\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$371@1~$372@1~$373@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($381!=$381@1){$377=$374~$380=close@1~$378=$375~$379=$376~$374=open~}_{}~($378+$379+$380)/3~$8($383)~$8($383*2-$379)~$8($383*2-$378)~$8($383+1*($378-$379))~$8($383-1*($378-$379))~$8($383+2*($378-$379))~$8($383-2*($378-$379))~$8($383)~$8($383+0.382*($378-$379))~$8($383-0.382*($378-$379))~$8($383+0.618*($378-$379))~$8($383-0.618*($378-$379))~$8($383+1*($378-$379))~$8($383-1*($378-$379))~($378+$379+$374*2)/4~$8($398)~$8($398*2-$379)~$8($398*2-$378)~$8($398+1*($378-$379))~$8($398-1*($378-$379))~$8($378+2*($398-$379))~$8($379-2*($378-$398))~$378+$379*2+$380~v:if($380==$377){$406=$378+$379+$380*2~}~v:if($380\u003e$377){$406=$378*2+$379+$380~}~$8($406/4)~$8($406/2-$379)~$8($406/2-$378)~$8($383)~$8($380+0.09166666666666667*($378-$379))~$8($380-0.09166666666666667*($378-$379))~$8($380+0.18333333333333335*($378-$379))~$8($380-0.18333333333333335*($378-$379))~$8($380+0.275*($378-$379))~$8($380-0.275*($378-$379))~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$395!$396!$397!$399!$400!$401!$402!$403!$404!$405!$409!$410!$411!$412!$413!$414!$415!$416!$417!$418;t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$14,$14,0,1,0,'NONE',0,0,$15)|$10():s3|s273:$11($17,$18,$19):s273~$21!$22!$23!$24!$25!$26!$27!$28!$29!$108!$31!$32!$33!$34!$111!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293", "isFake": false }, { @@ -882,6 +882,238 @@ { "id": "plot_214", "type": "line" + }, + { + "id": "plot_215", + "type": "line" + }, + { + "id": "plot_216", + "type": "line" + }, + { + "id": "plot_217", + "type": "line" + }, + { + "id": "plot_218", + "type": "line" + }, + { + "id": "plot_219", + "type": "line" + }, + { + "id": "plot_220", + "type": "line" + }, + { + "id": "plot_221", + "type": "line" + }, + { + "id": "plot_222", + "type": "line" + }, + { + "id": "plot_223", + "type": "line" + }, + { + "id": "plot_224", + "type": "line" + }, + { + "id": "plot_225", + "type": "line" + }, + { + "id": "plot_226", + "type": "line" + }, + { + "id": "plot_227", + "type": "line" + }, + { + "id": "plot_228", + "type": "line" + }, + { + "id": "plot_229", + "type": "line" + }, + { + "id": "plot_230", + "type": "line" + }, + { + "id": "plot_231", + "type": "line" + }, + { + "id": "plot_232", + "type": "line" + }, + { + "id": "plot_233", + "type": "line" + }, + { + "id": "plot_234", + "type": "line" + }, + { + "id": "plot_235", + "type": "line" + }, + { + "id": "plot_236", + "type": "line" + }, + { + "id": "plot_237", + "type": "line" + }, + { + "id": "plot_238", + "type": "line" + }, + { + "id": "plot_239", + "type": "line" + }, + { + "id": "plot_240", + "type": "line" + }, + { + "id": "plot_241", + "type": "line" + }, + { + "id": "plot_242", + "type": "line" + }, + { + "id": "plot_243", + "type": "line" + }, + { + "id": "plot_244", + "type": "line" + }, + { + "id": "plot_245", + "type": "line" + }, + { + "id": "plot_246", + "type": "line" + }, + { + "id": "plot_247", + "type": "line" + }, + { + "id": "plot_248", + "type": "line" + }, + { + "id": "plot_249", + "type": "line" + }, + { + "id": "plot_250", + "type": "line" + }, + { + "id": "plot_251", + "type": "line" + }, + { + "id": "plot_252", + "type": "line" + }, + { + "id": "plot_253", + "type": "line" + }, + { + "id": "plot_254", + "type": "line" + }, + { + "id": "plot_255", + "type": "line" + }, + { + "id": "plot_256", + "type": "line" + }, + { + "id": "plot_257", + "type": "line" + }, + { + "id": "plot_258", + "type": "line" + }, + { + "id": "plot_259", + "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" } ], "version": "", @@ -903,43 +1135,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -947,43 +1179,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -991,43 +1223,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1035,43 +1267,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1079,361 +1311,593 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { + "title": "DonchCh20.Lower", + "isHidden": false + }, + "plot_142": { + "title": "DonchCh20.Upper", + "isHidden": false + }, + "plot_143": { + "title": "DonchCh20.Middle", + "isHidden": false + }, + "plot_144": { + "title": "DonchCh96.Lower", + "isHidden": false + }, + "plot_145": { + "title": "DonchCh96.Upper", + "isHidden": false + }, + "plot_146": { + "title": "DonchCh96.Middle", + "isHidden": false + }, + "plot_147": { + "title": "DonchCh13.Lower", + "isHidden": false + }, + "plot_148": { + "title": "DonchCh13.Upper", + "isHidden": false + }, + "plot_149": { + "title": "DonchCh13.Middle", + "isHidden": false + }, + "plot_15": { + "title": "SMA75", + "isHidden": false + }, + "plot_150": { + "title": "DonchCh10.Lower", + "isHidden": false + }, + "plot_151": { + "title": "DonchCh10.Upper", + "isHidden": false + }, + "plot_152": { + "title": "DonchCh10.Middle", + "isHidden": false + }, + "plot_153": { + "title": "DonchCh1.Lower", + "isHidden": false + }, + "plot_154": { + "title": "DonchCh1.Upper", + "isHidden": false + }, + "plot_155": { + "title": "DonchCh1.Middle", + "isHidden": false + }, + "plot_156": { + "title": "HullMA9", + "isHidden": false + }, + "plot_157": { + "title": "HullMA200", + "isHidden": false + }, + "plot_158": { + "title": "HullMA1728", + "isHidden": false + }, + "plot_159": { + "title": "HullMA50", + "isHidden": false + }, + "plot_16": { + "title": "SMA100", + "isHidden": false + }, + "plot_160": { + "title": "HullMA100", + "isHidden": false + }, + "plot_161": { + "title": "HullMA20", + "isHidden": false + }, + "plot_162": { + "title": "HullMA144", + "isHidden": false + }, + "plot_163": { + "title": "HullMA256", + "isHidden": false + }, + "plot_164": { + "title": "AO", + "isHidden": false + }, + "plot_165": { + "title": "AO[1]", + "isHidden": false + }, + "plot_166": { + "title": "AO[2]", + "isHidden": false + }, + "plot_167": { + "title": "Aroon.Up", + "isHidden": false + }, + "plot_168": { + "title": "Aroon.Down", + "isHidden": false + }, + "plot_169": { + "title": "Aroon25.Up", + "isHidden": false + }, + "plot_17": { + "title": "SMA120", + "isHidden": false + }, + "plot_170": { + "title": "Aroon25.Down", + "isHidden": false + }, + "plot_171": { + "title": "Value.Traded", + "isHidden": false + }, + "plot_172": { + "title": "KltChnl.upper", + "isHidden": false + }, + "plot_173": { + "title": "KltChnl.lower", + "isHidden": false + }, + "plot_174": { + "title": "KltChnl.basis", + "isHidden": false + }, + "plot_175": { + "title": "P.SAR", + "isHidden": false + }, + "plot_176": { + "title": "MoneyFlow", + "isHidden": false + }, + "plot_177": { + "title": "MoneyFlow12", + "isHidden": false + }, + "plot_178": { + "title": "ChaikinMoneyFlow", + "isHidden": false + }, + "plot_179": { + "title": "Stoch.RSI.K", + "isHidden": false + }, + "plot_18": { + "title": "SMA150", + "isHidden": false + }, + "plot_180": { + "title": "Stoch.RSI.D", + "isHidden": false + }, + "plot_181": { + "title": "W.R", + "isHidden": false + }, + "plot_182": { + "title": "W.R14", + "isHidden": false + }, + "plot_183": { + "title": "W.R12", + "isHidden": false + }, + "plot_184": { + "title": "ROC", + "isHidden": false + }, + "plot_185": { + "title": "ROC1", + "isHidden": false + }, + "plot_186": { + "title": "ROC14", + "isHidden": false + }, + "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { "title": "Ichimoku.Lead1_20_60_120_30", "isHidden": false }, - "plot_142": { - "title": "Ichimoku.Lead2_20_60_120_30", + "plot_198": { + "title": "Ichimoku.Lead2_20_60_120_30", + "isHidden": false + }, + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", "isHidden": false }, - "plot_143": { - "title": "VWMA", + "plot_201": { + "title": "VWMA50", "isHidden": false }, - "plot_144": { + "plot_202": { "title": "ADR", "isHidden": false }, - "plot_145": { + "plot_203": { "title": "ADRP", "isHidden": false }, - "plot_146": { + "plot_204": { "title": "Rec.HullMA9", "isHidden": false }, - "plot_147": { + "plot_205": { "title": "Rec.VWMA", "isHidden": false }, - "plot_148": { + "plot_206": { "title": "Rec.Ichimoku", "isHidden": false }, - "plot_149": { + "plot_207": { "title": "Recommend.MA", "isHidden": false }, - "plot_15": { - "title": "SMA75", - "isHidden": false - }, - "plot_150": { + "plot_208": { "title": "Rec.Stoch.RSI", "isHidden": false }, - "plot_151": { + "plot_209": { "title": "Rec.WR", "isHidden": false }, - "plot_152": { + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { "title": "Rec.BBPower", "isHidden": false }, - "plot_153": { + "plot_211": { "title": "Rec.UO", "isHidden": false }, - "plot_154": { + "plot_212": { "title": "Recommend.Other", "isHidden": false }, - "plot_155": { + "plot_213": { "title": "Recommend.All", "isHidden": false }, - "plot_156": { + "plot_214": { "title": "Candle.Hammer", "isHidden": false }, - "plot_157": { + "plot_215": { "title": "Candle.HangingMan", "isHidden": false }, - "plot_158": { + "plot_216": { "title": "Candle.InvertedHammer", "isHidden": false }, - "plot_159": { + "plot_217": { "title": "Candle.ShootingStar", "isHidden": false }, - "plot_16": { - "title": "SMA100", - "isHidden": false - }, - "plot_160": { + "plot_218": { "title": "Candle.MorningStar", "isHidden": false }, - "plot_161": { + "plot_219": { "title": "Candle.EveningStar", "isHidden": false }, - "plot_162": { + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { "title": "Candle.Marubozu.Black", "isHidden": false }, - "plot_163": { + "plot_221": { "title": "Candle.Marubozu.White", "isHidden": false }, - "plot_164": { + "plot_222": { "title": "Candle.Doji", "isHidden": false }, - "plot_165": { + "plot_223": { "title": "Candle.Doji.Dragonfly", "isHidden": false }, - "plot_166": { + "plot_224": { "title": "Candle.Doji.Gravestone", "isHidden": false }, - "plot_167": { + "plot_225": { "title": "Candle.Harami.Bullish", "isHidden": false }, - "plot_168": { + "plot_226": { "title": "Candle.Harami.Bearish", "isHidden": false }, - "plot_169": { + "plot_227": { "title": "Candle.LongShadow.Lower", "isHidden": false }, - "plot_17": { - "title": "SMA120", - "isHidden": false - }, - "plot_170": { + "plot_228": { "title": "Candle.LongShadow.Upper", "isHidden": false }, - "plot_171": { + "plot_229": { "title": "Candle.SpinningTop.White", "isHidden": false }, - "plot_172": { + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { "title": "Candle.SpinningTop.Black", "isHidden": false }, - "plot_173": { + "plot_231": { "title": "Candle.3WhiteSoldiers", "isHidden": false }, - "plot_174": { + "plot_232": { "title": "Candle.3BlackCrows", "isHidden": false }, - "plot_175": { + "plot_233": { "title": "Candle.Engulfing.Bullish", "isHidden": false }, - "plot_176": { + "plot_234": { "title": "Candle.Engulfing.Bearish", "isHidden": false }, - "plot_177": { + "plot_235": { "title": "Candle.AbandonedBaby.Bullish", "isHidden": false }, - "plot_178": { + "plot_236": { "title": "Candle.AbandonedBaby.Bearish", "isHidden": false }, - "plot_179": { + "plot_237": { "title": "Candle.TriStar.Bullish", "isHidden": false }, - "plot_18": { - "title": "SMA150", - "isHidden": false - }, - "plot_180": { + "plot_238": { "title": "Candle.TriStar.Bearish", "isHidden": false }, - "plot_181": { + "plot_239": { "title": "Candle.Kicking.Bullish", "isHidden": false }, - "plot_182": { + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { "title": "Candle.Kicking.Bearish", "isHidden": false }, - "plot_183": { + "plot_241": { "title": "VWAP", "isHidden": false }, - "plot_184": { + "plot_242": { "title": "Pivot.M.Classic.Middle", "isHidden": false }, - "plot_185": { + "plot_243": { "title": "Pivot.M.Classic.R1", "isHidden": false }, - "plot_186": { + "plot_244": { "title": "Pivot.M.Classic.S1", "isHidden": false }, - "plot_187": { + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, "plot_28": { "title": "EMA10", "isHidden": false @@ -1571,7 +2035,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1579,43 +2043,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1623,43 +2087,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -1667,43 +2131,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -1711,43 +2175,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.simple.crypto.5.json b/scanner.data.simple.crypto.5.json index 82d1d6a6b..978fd4488 100644 --- a/scanner.data.simple.crypto.5.json +++ b/scanner.data.simple.crypto.5.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "{\"IL\":\"change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\\u003e$1\\u0026\\u0026$0\\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\\u003e$0\\u0026\\u0026$1\\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\\u0026\\u0026$1!=0\\u0026\\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\\u003c=0?na():f:#0;v^s_a_f:array.new_float(0,na():f):s_a_f~v^s_a_i:array.new_int(0,na():f):s_a_i~v:if(#2){v:array.push($0,#0):v~v:array.push($1,time):v~}~v:if(array.size($0)\\u003e0){while(time-array.get($1,0)\\u003e=#1\\u0026\\u0026array.size($0)\\u003e#3){array.shift($0)~array.shift($1)}~}~s_a_f:$0~s_a_f:$9;s_a_f:$9(#0,i:86400000,1.0,i:1):s_a_f~array.sum($0);#0~v:max_bars_back($0,576):v~v:max_bars_back(time,576):v~na():f~v:for(0;288;1){v:if(time-time@$4\\u003e=86400000){v:if(time-time@$4==86400000){$3=$4~}~break~}~$3=$4~}~$0@$3;open~high~low~$0!$1!$2;$0.5(volume,i:10,t:'1D',b:1.0)~$0.3(volume,timeframe.change('1D'),b:1.0)~$1/$0~$2;syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?close*volume:na():f~#0~$10($0*$1)~$2;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\\u0026\\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\\u003c$161~close\\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\\u003e$147\\u0026\\u0026close\\u003e$146\\u0026\\u0026close\\u003c$145\\u0026\\u0026close@1\\u003c$144\\u0026\\u0026close\\u003e$144,$147\\u003e$146\\u0026\\u0026close\\u003c$147\\u0026\\u0026close\\u003e$145\\u0026\\u0026close@1\\u003e$144\\u0026\\u0026close\\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\\u003c30\\u0026\\u0026$190@1\\u003c$190,$190\\u003e70\\u0026\\u0026$190@1\\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\\u003c20\\u0026\\u0026$102\\u003c20\\u0026\\u0026$101\\u003e$102\\u0026\\u0026$101@1\\u003c$102@1,$101\\u003e80\\u0026\\u0026$102\\u003e80\\u0026\\u0026$101\\u003c$102\\u0026\\u0026$101@1\\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\\u003c(-100)\\u0026\\u0026$193\\u003e$193@1,$193\\u003e100\\u0026\\u0026$193\\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\\u003e20\\u0026\\u0026$61@1\\u003c$62@1\\u0026\\u0026$61\\u003e$62,$60\\u003e20\\u0026\\u0026$61@1\\u003e$62@1\\u0026\\u0026$61\\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\\u003e0\\u0026\\u0026$119@1\\u003e0\\u0026\\u0026$119\\u003e$119@1\\u0026\\u0026$119@2\\u003e$119@1,crossunder($119,0)||$119\\u003c0\\u0026\\u0026$119@1\\u003c0\\u0026\\u0026$119\\u003c$119@1\\u0026\\u0026$119@2\\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\\u003e$96@1,$96\\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\\u003e$94,$93\\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\\u0026\\u0026$133\\u003c20\\u0026\\u0026$134\\u003c20\\u0026\\u0026$133\\u003e$134\\u0026\\u0026$133@1\\u003c$134@1,$163\\u0026\\u0026$133\\u003e80\\u0026\\u0026$134\\u003e80\\u0026\\u0026$133\\u003c$134\\u0026\\u0026$133@1\\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\\u003c(-80)\\u0026\\u0026$136\\u003e$136@1,$136\\u003e(-20)\\u0026\\u0026$136\\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\\u0026\\u0026$139\\u003c0\\u0026\\u0026$139\\u003e$139@1,$162\\u0026\\u0026$138\\u003e0\\u0026\\u0026$138\\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\\u003e70,$141\\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\\u003c$225~$224\\u003e$225~high-$222~$223-low~close\\u003c$221~close\\u003e$221~$228\\u003e0*$224~$229\\u003e0*$224~open\\u003cclose~open\\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\\u003c100\\u0026\\u0026(abs($229-$228)/$228)*100\\u003c100~0.0~0.0~v:if($226\\u0026\\u0026$224\\u003e0\\u0026\\u0026$223\\u003ehl2\\u0026\\u0026$229\\u003e=2.0*$224\\u0026\\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\\u0026\\u0026$224\\u003e0\\u0026\\u0026$222\\u003chl2\\u0026\\u0026$228\\u003e=2.0*$224\\u0026\\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\\u0026\\u0026$226@1\\u0026\\u0026$227){v:if_($230\\u0026\\u0026$235@2\\u0026\\u0026$222@1\\u003c$223@2\\u0026\\u0026$234\\u0026\\u0026$222\\u003e=$237@2\\u0026\\u0026$222\\u003c$222@2\\u0026\\u0026$222@1\\u003c$223){$253=1.0~}_{v:if($231\\u0026\\u0026$234@2\\u0026\\u0026$223@1\\u003e$222@2\\u0026\\u0026$235\\u0026\\u0026$223\\u003c=$237@2\\u0026\\u0026$223\\u003e$223@2\\u0026\\u0026$223@1\\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\\u0026\\u0026$228\\u003c=0*$224\\u0026\\u0026$229\\u003c=0*$224~$260\\u0026\\u0026$234~$260\\u0026\\u0026$235~$262?1:0~$261?1:0~$236\\u003e0\\u0026\\u0026$224\\u003c=$236*5/100~$265\\u0026\\u0026$238~$265\\u0026\\u0026$228\\u003c=$224~$265\\u0026\\u0026$229\\u003c=$224~$266\\u0026\\u0026!$267\\u0026\\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\\u0026\\u0026$235@1\\u0026\\u0026$230@1\\u0026\\u0026$234\\u0026\\u0026$226\\u0026\\u0026high\\u003c=$222@1\\u0026\\u0026low\\u003e=$223@1?1:0~$227@1\\u0026\\u0026$234@1\\u0026\\u0026$231@1\\u0026\\u0026$235\\u0026\\u0026$226\\u0026\\u0026high\\u003c=$222@1\\u0026\\u0026low\\u003e=$223@1?1:0~$229\\u003e($236/100)*75?1:0~$228\\u003e($236/100)*75?1:0~$229\\u003e=($236/100)*34\\u0026\\u0026$228\\u003e=($236/100)*34\\u0026\\u0026!$265~$276\\u0026\\u0026$234?1:0~$276\\u0026\\u0026$235?1:0~$236*5/100\\u003e$228~$236*5/100\\u003e$229~0.0~0.0~v:if($227\\u0026\\u0026$227@1\\u0026\\u0026$227@2){v:if($234\\u0026\\u0026$234@1\\u0026\\u0026$234@2){$281=close\\u003eclose@1\\u0026\\u0026close@1\\u003eclose@2\\u0026\\u0026open\\u003cclose@1\\u0026\\u0026open\\u003eopen@1\\u0026\\u0026open@1\\u003cclose@2\\u0026\\u0026open@1\\u003eopen@2\\u0026\\u0026$279\\u0026\\u0026$279@1\\u0026\\u0026$279@2~}~v:if($235\\u0026\\u0026$235@1\\u0026\\u0026$235@2){$282=close\\u003cclose@1\\u0026\\u0026close@1\\u003cclose@2\\u0026\\u0026open\\u003eclose@1\\u0026\\u0026open\\u003copen@1\\u0026\\u0026open@1\\u003eclose@2\\u0026\\u0026open@1\\u003copen@2\\u0026\\u0026$280\\u0026\\u0026$280@1\\u0026\\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\\u0026\\u0026$234\\u0026\\u0026$227\\u0026\\u0026$235@1\\u0026\\u0026$226@1\\u0026\\u0026close\\u003e=open@1\\u0026\\u0026open\\u003c=close@1\\u0026\\u0026(close\\u003eopen@1||open\\u003cclose@1)?1:0~$231\\u0026\\u0026$235\\u0026\\u0026$227\\u0026\\u0026$234@1\\u0026\\u0026$226@1\\u0026\\u0026close\\u003c=open@1\\u0026\\u0026open\\u003e=close@1\\u0026\\u0026(close\\u003copen@1||open\\u003eclose@1)?1:0~$230@2\\u0026\\u0026$235@2\\u0026\\u0026$265@1\\u0026\\u0026low@2\\u003ehigh@1\\u0026\\u0026$234\\u0026\\u0026high@1\\u003clow?1:0~$231@2\\u0026\\u0026$234@2\\u0026\\u0026$265@1\\u0026\\u0026high@2\\u003clow@1\\u0026\\u0026$235\\u0026\\u0026low@1\\u003ehigh?1:0~$266@2\\u0026\\u0026$266@1\\u0026\\u0026$266~$222@1\\u003c$223~$223@1\\u003e$222~$292\\u0026\\u0026$230@2\\u0026\\u0026$294@1\\u0026\\u0026$293?1:0~$292\\u0026\\u0026$231@2\\u0026\\u0026$293@1\\u0026\\u0026$294?1:0~$262@1\\u0026\\u0026$261\\u0026\\u0026high@1\\u003clow?1:0~$261@1\\u0026\\u0026$262\\u0026\\u0026low@1\\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$303@1~$304@1~$305@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($313!=$313@1){$309=$306~$312=close@1~$310=$307~$311=$308~$306=open~}_{}~($310+$311+$312)/3~$8($315)~$8($315*2-$311)~$8($315*2-$310)~$8($315+1*($310-$311))~$8($315-1*($310-$311))~$8($315+2*($310-$311))~$8($315-2*($310-$311))~$8($315)~$8($315+0.382*($310-$311))~$8($315-0.382*($310-$311))~$8($315+0.618*($310-$311))~$8($315-0.618*($310-$311))~$8($315+1*($310-$311))~$8($315-1*($310-$311))~($310+$311+$306*2)/4~$8($330)~$8($330*2-$311)~$8($330*2-$310)~$8($330+1*($310-$311))~$8($330-1*($310-$311))~$8($310+2*($330-$311))~$8($311-2*($310-$330))~$310+$311*2+$312~v:if($312==$309){$338=$310+$311+$312*2~}~v:if($312\\u003e$309){$338=$310*2+$311+$312~}~$8($338/4)~$8($338/2-$311)~$8($338/2-$310)~$8($315)~$8($312+0.09166666666666667*($310-$311))~$8($312-0.09166666666666667*($310-$311))~$8($312+0.18333333333333335*($310-$311))~$8($312-0.18333333333333335*($310-$311))~$8($312+0.275*($310-$311))~$8($312-0.275*($310-$311))~#3~v^0.0~$352=$352+nz(volume)~#4~v:if(barstate.islast){v:if((syminfo.volumetype=='tick'\\u0026\\u0026syminfo.type=='crypto')||$352==0){$353=na():f~}~}~$353~syminfo.volumetype=='base'?volume:(syminfo.volumetype=='quote')\\u0026\\u0026close!=0?volume/close:na():f~syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?volume*close:na():f~$11($353)~na():f~v:if(!na($353)\\u0026\\u0026!na($359)){$360=$353-$359~}~$360~na():f~v:if(!na($360)\\u0026\\u0026$359!=0){$363=($360/abs($359))*100~}~$363~$11(close)~na():f~v:if(!na(close)\\u0026\\u0026!na($366)){$367=close-$366~}~$367~na():f~v:if_(na($367)||$366==0||$366\\u003c0\\u0026\\u0026close\\u003e0){}_{$370=($367/abs($366))*100~}~$370~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$331!$332!$333!$334!$335!$336!$337!$341!$342!$343!$344!$345!$346!$347!$348!$349!$350!$351!$356!$357!$358!$359!$362!$365!$366!$369!$372;t:if_(isintraday){t:interval\\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$18,$18,0,1,0,'NONE',0,0,$19)|$12():s3|sym(tickerid,'5','5',0,0,1,'NONE',0,0,3200)|$13()|rate(syminfo.currency,'USD',1.0)~sym(tickerid,'5','5',0,0,1,'NONE',0,0,$19)|$14($28)|s225:$15($21,$22,$23,$26,$30):s225~$32!$33!$34!$35!$36!$37!$38!$39!$40!$117!$42!$43!$44!$45!$120!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$135!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256\",\"ILImports\":[{\"IL\":\"c$0:new():c$0~$0#0=s_a\\u003cf\\u003e:#0~$0#1=s_a\\u003ci\\u003e:#1~$0#2=#2~c$0:$0;v:array.push(#0,#2):v~c$0:if(array.size(#0)\\u003e#1){c$0:array.shift(#0):c$0};0.0~v:foreach(s_a\\u003cc$0\\u003e:#0):c$0{$1#2~array.binary_search_leftmost($1#1,$2+#1)~array.size($1#0)-1\\u003e=$3?array.get($1#0,$3):array.last($1#0)~$0=$0+$4~}~$0/array.size(#0)~$6;v^0.0~v^na():f~v:if(#1){$0=0.0~$1=time~}~$0=$0+#0~v:if(#2\\u0026\\u0026!barstate.isconfirmed){min(timenow,time_close)-$1~time_close-$1~$0/$3~$0=$5*$4~}~$0~$7;v^s_a\\u003cc$0\\u003e:array.new(0,na():c$0):s_a\\u003cc$0\\u003e~v^c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,na():f):c$0~#3?$3(#0,#2,b:0.0):#0~v:if(#2){c$0:$1(s_a\\u003cc$0\\u003e:$0,i:#1,c$0:$1):c$0~$1=c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,time):c$0~}~v:array.push($1#1,time):v~v:array.push($1#0,$2):v~$2(s_a\\u003cc$0\\u003e:$0,time-$1#2)~$7;v^s_a\\u003cc$0\\u003e:array.new(0,na():c$0):s_a\\u003cc$0\\u003e~v^c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,timeV5(#2,0)):c$0~timeframe.change(#2)~#3?$3(#0,$2,b:0.0):#0~v:if($2){c$0:$1(s_a\\u003cc$0\\u003e:$0,i:#1,c$0:$1):c$0~$1=c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,timeV5(#2,0)):c$0~}~v:array.push($1#1,time):v~v:array.push($1#0,$3):v~$2(s_a\\u003cc$0\\u003e:$0,time-$1#2)~$8;b:(#0=='On')~timeframe.change(#1)~b:(#2=='Cumulative')~$5(volume,i:#3,t:#1,b:$2)~$2?$3(volume,$1,b:$0):volume~$4/$3~$5\\u003e=1?0:1~close\\u003e=open?0:1~$5!$3!$4!$6!$7;v:SRP('is_library','1'):v~t:input('in_0','D')~i:input('in_1',5)~t:input('in_2','Cumulative')~t:input('in_4','Off')~s5:$6(t:$11,t:$8,t:$10,i:$9):s5~$12!$15!$13!$14!$16\",\"clsIL\":\"collectedData~s_a\\u003cf\\u003e:data~s_a\\u003ci\\u003e:times~startTime;\"}]}", + "defval": "{\"IL\":\"change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\\u003e$1\\u0026\\u0026$0\\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\\u003e$0\\u0026\\u0026$1\\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\\u0026\\u0026$1!=0\\u0026\\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\\u003c=0?na():f:#0;v^s_a_f:array.new_float(0,na():f):s_a_f~v^s_a_i:array.new_int(0,na():f):s_a_i~v:if(#2){v:array.push($0,#0):v~v:array.push($1,time):v~}~v:if(array.size($0)\\u003e0){while(time-array.get($1,0)\\u003e=#1\\u0026\\u0026array.size($0)\\u003e#3){array.shift($0)~array.shift($1)}~}~s_a_f:$0~s_a_f:$9;s_a_f:$9(#0,i:86400000,1.0,i:1):s_a_f~array.sum($0);#0~v:max_bars_back($0,576):v~v:max_bars_back(time,576):v~na():f~v:for(0;288;1){v:if(time-time@$4\\u003e=86400000){v:if(time-time@$4==86400000){$3=$4~}~break~}~$3=$4~}~$0@$3;open~high~low~$0!$1!$2;s3:$12():s3;$0.5(volume,i:10,t:'1D',b:1.0)~$0.3(volume,timeframe.change('1D'),b:1.0)~$1/$0~$2;$14();syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?close*volume:na():f~#0~$10($0*$1)~$2;$16(#0);sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\\u0026\\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\\u003c$229~close\\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\\u003e$212\\u0026\\u0026close\\u003e$211\\u0026\\u0026close\\u003c$210\\u0026\\u0026close@1\\u003c$209\\u0026\\u0026close\\u003e$209,$212\\u003e$211\\u0026\\u0026close\\u003c$212\\u0026\\u0026close\\u003e$210\\u0026\\u0026close@1\\u003e$209\\u0026\\u0026close\\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\\u003c30\\u0026\\u0026$258@1\\u003c$258,$258\\u003e70\\u0026\\u0026$258@1\\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\\u003c20\\u0026\\u0026$107\\u003c20\\u0026\\u0026$106\\u003e$107\\u0026\\u0026$106@1\\u003c$107@1,$106\\u003e80\\u0026\\u0026$107\\u003e80\\u0026\\u0026$106\\u003c$107\\u0026\\u0026$106@1\\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\\u003c(-100)\\u0026\\u0026$261\\u003e$261@1,$261\\u003e100\\u0026\\u0026$261\\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\\u003e20\\u0026\\u0026$64@1\\u003c$65@1\\u0026\\u0026$64\\u003e$65,$63\\u003e20\\u0026\\u0026$64@1\\u003e$65@1\\u0026\\u0026$64\\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\\u003e0\\u0026\\u0026$174@1\\u003e0\\u0026\\u0026$174\\u003e$174@1\\u0026\\u0026$174@2\\u003e$174@1,crossunder($174,0)||$174\\u003c0\\u0026\\u0026$174@1\\u003c0\\u0026\\u0026$174\\u003c$174@1\\u0026\\u0026$174@2\\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\\u003e$99@1,$99\\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\\u003e$97,$96\\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\\u0026\\u0026$191\\u003c20\\u0026\\u0026$192\\u003c20\\u0026\\u0026$191\\u003e$192\\u0026\\u0026$191@1\\u003c$192@1,$231\\u0026\\u0026$191\\u003e80\\u0026\\u0026$192\\u003e80\\u0026\\u0026$191\\u003c$192\\u0026\\u0026$191@1\\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\\u003c(-80)\\u0026\\u0026$194\\u003e$194@1,$194\\u003e(-20)\\u0026\\u0026$194\\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\\u0026\\u0026$204\\u003c0\\u0026\\u0026$204\\u003e$204@1,$230\\u0026\\u0026$203\\u003e0\\u0026\\u0026$203\\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\\u003e70,$206\\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\\u003c$293~$292\\u003e$293~high-$290~$291-low~close\\u003c$289~close\\u003e$289~$296\\u003e0*$292~$297\\u003e0*$292~open\\u003cclose~open\\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\\u003c100\\u0026\\u0026(abs($297-$296)/$296)*100\\u003c100~0.0~0.0~v:if($294\\u0026\\u0026$292\\u003e0\\u0026\\u0026$291\\u003ehl2\\u0026\\u0026$297\\u003e=2.0*$292\\u0026\\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\\u0026\\u0026$292\\u003e0\\u0026\\u0026$290\\u003chl2\\u0026\\u0026$296\\u003e=2.0*$292\\u0026\\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\\u0026\\u0026$294@1\\u0026\\u0026$295){v:if_($298\\u0026\\u0026$303@2\\u0026\\u0026$290@1\\u003c$291@2\\u0026\\u0026$302\\u0026\\u0026$290\\u003e=$305@2\\u0026\\u0026$290\\u003c$290@2\\u0026\\u0026$290@1\\u003c$291){$321=1.0~}_{v:if($299\\u0026\\u0026$302@2\\u0026\\u0026$291@1\\u003e$290@2\\u0026\\u0026$303\\u0026\\u0026$291\\u003c=$305@2\\u0026\\u0026$291\\u003e$291@2\\u0026\\u0026$291@1\\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\\u0026\\u0026$296\\u003c=0*$292\\u0026\\u0026$297\\u003c=0*$292~$328\\u0026\\u0026$302~$328\\u0026\\u0026$303~$330?1:0~$329?1:0~$304\\u003e0\\u0026\\u0026$292\\u003c=$304*5/100~$333\\u0026\\u0026$306~$333\\u0026\\u0026$296\\u003c=$292~$333\\u0026\\u0026$297\\u003c=$292~$334\\u0026\\u0026!$335\\u0026\\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\\u0026\\u0026$303@1\\u0026\\u0026$298@1\\u0026\\u0026$302\\u0026\\u0026$294\\u0026\\u0026high\\u003c=$290@1\\u0026\\u0026low\\u003e=$291@1?1:0~$295@1\\u0026\\u0026$302@1\\u0026\\u0026$299@1\\u0026\\u0026$303\\u0026\\u0026$294\\u0026\\u0026high\\u003c=$290@1\\u0026\\u0026low\\u003e=$291@1?1:0~$297\\u003e($304/100)*75?1:0~$296\\u003e($304/100)*75?1:0~$297\\u003e=($304/100)*34\\u0026\\u0026$296\\u003e=($304/100)*34\\u0026\\u0026!$333~$344\\u0026\\u0026$302?1:0~$344\\u0026\\u0026$303?1:0~$304*5/100\\u003e$296~$304*5/100\\u003e$297~0.0~0.0~v:if($295\\u0026\\u0026$295@1\\u0026\\u0026$295@2){v:if($302\\u0026\\u0026$302@1\\u0026\\u0026$302@2){$349=close\\u003eclose@1\\u0026\\u0026close@1\\u003eclose@2\\u0026\\u0026open\\u003cclose@1\\u0026\\u0026open\\u003eopen@1\\u0026\\u0026open@1\\u003cclose@2\\u0026\\u0026open@1\\u003eopen@2\\u0026\\u0026$347\\u0026\\u0026$347@1\\u0026\\u0026$347@2~}~v:if($303\\u0026\\u0026$303@1\\u0026\\u0026$303@2){$350=close\\u003cclose@1\\u0026\\u0026close@1\\u003cclose@2\\u0026\\u0026open\\u003eclose@1\\u0026\\u0026open\\u003copen@1\\u0026\\u0026open@1\\u003eclose@2\\u0026\\u0026open@1\\u003copen@2\\u0026\\u0026$348\\u0026\\u0026$348@1\\u0026\\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\\u0026\\u0026$302\\u0026\\u0026$295\\u0026\\u0026$303@1\\u0026\\u0026$294@1\\u0026\\u0026close\\u003e=open@1\\u0026\\u0026open\\u003c=close@1\\u0026\\u0026(close\\u003eopen@1||open\\u003cclose@1)?1:0~$299\\u0026\\u0026$303\\u0026\\u0026$295\\u0026\\u0026$302@1\\u0026\\u0026$294@1\\u0026\\u0026close\\u003c=open@1\\u0026\\u0026open\\u003e=close@1\\u0026\\u0026(close\\u003copen@1||open\\u003eclose@1)?1:0~$298@2\\u0026\\u0026$303@2\\u0026\\u0026$333@1\\u0026\\u0026low@2\\u003ehigh@1\\u0026\\u0026$302\\u0026\\u0026high@1\\u003clow?1:0~$299@2\\u0026\\u0026$302@2\\u0026\\u0026$333@1\\u0026\\u0026high@2\\u003clow@1\\u0026\\u0026$303\\u0026\\u0026low@1\\u003ehigh?1:0~$334@2\\u0026\\u0026$334@1\\u0026\\u0026$334~$290@1\\u003c$291~$291@1\\u003e$290~$360\\u0026\\u0026$298@2\\u0026\\u0026$362@1\\u0026\\u0026$361?1:0~$360\\u0026\\u0026$299@2\\u0026\\u0026$361@1\\u0026\\u0026$362?1:0~$330@1\\u0026\\u0026$329\\u0026\\u0026high@1\\u003clow?1:0~$329@1\\u0026\\u0026$330\\u0026\\u0026low@1\\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$371@1~$372@1~$373@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($381!=$381@1){$377=$374~$380=close@1~$378=$375~$379=$376~$374=open~}_{}~($378+$379+$380)/3~$8($383)~$8($383*2-$379)~$8($383*2-$378)~$8($383+1*($378-$379))~$8($383-1*($378-$379))~$8($383+2*($378-$379))~$8($383-2*($378-$379))~$8($383)~$8($383+0.382*($378-$379))~$8($383-0.382*($378-$379))~$8($383+0.618*($378-$379))~$8($383-0.618*($378-$379))~$8($383+1*($378-$379))~$8($383-1*($378-$379))~($378+$379+$374*2)/4~$8($398)~$8($398*2-$379)~$8($398*2-$378)~$8($398+1*($378-$379))~$8($398-1*($378-$379))~$8($378+2*($398-$379))~$8($379-2*($378-$398))~$378+$379*2+$380~v:if($380==$377){$406=$378+$379+$380*2~}~v:if($380\\u003e$377){$406=$378*2+$379+$380~}~$8($406/4)~$8($406/2-$379)~$8($406/2-$378)~$8($383)~$8($380+0.09166666666666667*($378-$379))~$8($380-0.09166666666666667*($378-$379))~$8($380+0.18333333333333335*($378-$379))~$8($380-0.18333333333333335*($378-$379))~$8($380+0.275*($378-$379))~$8($380-0.275*($378-$379))~#3~v^0.0~$420=$420+nz(volume)~#4~v:if(barstate.islast){v:if((syminfo.volumetype=='tick'\\u0026\\u0026syminfo.type=='crypto')||$420==0){$421=na():f~}~}~$421~syminfo.volumetype=='base'?volume:(syminfo.volumetype=='quote')\\u0026\\u0026close!=0?volume/close:na():f~syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?volume*close:na():f~$11($421)~na():f~v:if(!na($421)\\u0026\\u0026!na($427)){$428=$421-$427~}~$428~na():f~v:if(!na($428)\\u0026\\u0026$427!=0){$431=($428/abs($427))*100~}~$431~$11(close)~na():f~v:if(!na(close)\\u0026\\u0026!na($434)){$435=close-$434~}~$435~na():f~v:if_(na($435)||$434==0||$434\\u003c0\\u0026\\u0026close\\u003e0){}_{$438=($435/abs($434))*100~}~$438~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$395!$396!$397!$399!$400!$401!$402!$403!$404!$405!$409!$410!$411!$412!$413!$414!$415!$416!$417!$418!$419!$424!$425!$426!$427!$430!$433!$434!$437!$440;t:if_(isintraday){t:interval\\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$21,$21,0,1,0,'NONE',0,0,$22)|$13():s3|sym(tickerid,'5','5',0,0,1,'NONE',0,0,3200)|$15()|rate(syminfo.currency,'USD',1.0)~sym(tickerid,'5','5',0,0,1,'NONE',0,0,$22)|$17($31)|s283:$18($24,$25,$26,$29,$33):s283~$35!$36!$37!$38!$39!$40!$41!$42!$43!$122!$45!$46!$47!$48!$125!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295!$296!$297!$298!$299!$300!$301!$302!$303!$304!$305!$306!$307!$308!$309!$310!$311!$312!$313!$314!$315!$316!$317\",\"ILImports\":[{\"IL\":\"c$0:new():c$0~$0#0=s_a\\u003cf\\u003e:#0~$0#1=s_a\\u003ci\\u003e:#1~$0#2=#2~c$0:$0;v:array.push(#0,#2):v~c$0:if(array.size(#0)\\u003e#1){c$0:array.shift(#0):c$0};0.0~v:foreach(s_a\\u003cc$0\\u003e:#0):c$0{$1#2~array.binary_search_leftmost($1#1,$2+#1)~array.size($1#0)-1\\u003e=$3?array.get($1#0,$3):array.last($1#0)~$0=$0+$4~}~$0/array.size(#0)~$6;v^0.0~v^na():f~v:if(#1){$0=0.0~$1=time~}~$0=$0+#0~v:if(#2\\u0026\\u0026!barstate.isconfirmed){min(timenow,time_close)-$1~time_close-$1~$0/$3~$0=$5*$4~}~$0~$7;v^s_a\\u003cc$0\\u003e:array.new(0,na():c$0):s_a\\u003cc$0\\u003e~v^c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,na():f):c$0~#3?$3(#0,#2,b:0.0):#0~v:if(#2){c$0:$1(s_a\\u003cc$0\\u003e:$0,i:#1,c$0:$1):c$0~$1=c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,time):c$0~}~v:array.push($1#1,time):v~v:array.push($1#0,$2):v~$2(s_a\\u003cc$0\\u003e:$0,time-$1#2)~$7;v^s_a\\u003cc$0\\u003e:array.new(0,na():c$0):s_a\\u003cc$0\\u003e~v^c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,timeV5(#2,0)):c$0~timeframe.change(#2)~#3?$3(#0,$2,b:0.0):#0~v:if($2){c$0:$1(s_a\\u003cc$0\\u003e:$0,i:#1,c$0:$1):c$0~$1=c$0:$0(s_a\\u003cf\\u003e:array.new(0,na():f):s_a\\u003cf\\u003e,s_a\\u003ci\\u003e:array.new(0,na():f):s_a\\u003ci\\u003e,timeV5(#2,0)):c$0~}~v:array.push($1#1,time):v~v:array.push($1#0,$3):v~$2(s_a\\u003cc$0\\u003e:$0,time-$1#2)~$8;b:(#0=='On')~timeframe.change(#1)~b:(#2=='Cumulative')~$5(volume,i:#3,t:#1,b:$2)~$2?$3(volume,$1,b:$0):volume~$4/$3~$5\\u003e=1?0:1~close\\u003e=open?0:1~$5!$3!$4!$6!$7;v:SRP('is_library','1'):v~t:input('in_0','D')~i:input('in_1',5)~t:input('in_2','Cumulative')~t:input('in_4','Off')~s5:$6(t:$11,t:$8,t:$10,i:$9):s5~$12!$15!$13!$14!$16\",\"clsIL\":\"collectedData~s_a\\u003cf\\u003e:data~s_a\\u003ci\\u003e:times~startTime;\"}]}", "isFake": false }, { @@ -922,6 +922,238 @@ { "id": "plot_224", "type": "line" + }, + { + "id": "plot_225", + "type": "line" + }, + { + "id": "plot_226", + "type": "line" + }, + { + "id": "plot_227", + "type": "line" + }, + { + "id": "plot_228", + "type": "line" + }, + { + "id": "plot_229", + "type": "line" + }, + { + "id": "plot_230", + "type": "line" + }, + { + "id": "plot_231", + "type": "line" + }, + { + "id": "plot_232", + "type": "line" + }, + { + "id": "plot_233", + "type": "line" + }, + { + "id": "plot_234", + "type": "line" + }, + { + "id": "plot_235", + "type": "line" + }, + { + "id": "plot_236", + "type": "line" + }, + { + "id": "plot_237", + "type": "line" + }, + { + "id": "plot_238", + "type": "line" + }, + { + "id": "plot_239", + "type": "line" + }, + { + "id": "plot_240", + "type": "line" + }, + { + "id": "plot_241", + "type": "line" + }, + { + "id": "plot_242", + "type": "line" + }, + { + "id": "plot_243", + "type": "line" + }, + { + "id": "plot_244", + "type": "line" + }, + { + "id": "plot_245", + "type": "line" + }, + { + "id": "plot_246", + "type": "line" + }, + { + "id": "plot_247", + "type": "line" + }, + { + "id": "plot_248", + "type": "line" + }, + { + "id": "plot_249", + "type": "line" + }, + { + "id": "plot_250", + "type": "line" + }, + { + "id": "plot_251", + "type": "line" + }, + { + "id": "plot_252", + "type": "line" + }, + { + "id": "plot_253", + "type": "line" + }, + { + "id": "plot_254", + "type": "line" + }, + { + "id": "plot_255", + "type": "line" + }, + { + "id": "plot_256", + "type": "line" + }, + { + "id": "plot_257", + "type": "line" + }, + { + "id": "plot_258", + "type": "line" + }, + { + "id": "plot_259", + "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" + }, + { + "id": "plot_273", + "type": "line" + }, + { + "id": "plot_274", + "type": "line" + }, + { + "id": "plot_275", + "type": "line" + }, + { + "id": "plot_276", + "type": "line" + }, + { + "id": "plot_277", + "type": "line" + }, + { + "id": "plot_278", + "type": "line" + }, + { + "id": "plot_279", + "type": "line" + }, + { + "id": "plot_280", + "type": "line" + }, + { + "id": "plot_281", + "type": "line" + }, + { + "id": "plot_282", + "type": "line" } ], "version": "", @@ -943,43 +1175,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -987,43 +1219,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -1031,43 +1263,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1075,43 +1307,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1119,43 +1351,43 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { - "title": "Ichimoku.Lead1_20_60_120_30", + "title": "DonchCh20.Lower", "isHidden": false }, "plot_142": { - "title": "Ichimoku.Lead2_20_60_120_30", + "title": "DonchCh20.Upper", "isHidden": false }, "plot_143": { - "title": "VWMA", + "title": "DonchCh20.Middle", "isHidden": false }, "plot_144": { - "title": "ADR", + "title": "DonchCh96.Lower", "isHidden": false }, "plot_145": { - "title": "ADRP", + "title": "DonchCh96.Upper", "isHidden": false }, "plot_146": { - "title": "Rec.HullMA9", + "title": "DonchCh96.Middle", "isHidden": false }, "plot_147": { - "title": "Rec.VWMA", + "title": "DonchCh13.Lower", "isHidden": false }, "plot_148": { - "title": "Rec.Ichimoku", + "title": "DonchCh13.Upper", "isHidden": false }, "plot_149": { - "title": "Recommend.MA", + "title": "DonchCh13.Middle", "isHidden": false }, "plot_15": { @@ -1163,361 +1395,593 @@ "isHidden": false }, "plot_150": { + "title": "DonchCh10.Lower", + "isHidden": false + }, + "plot_151": { + "title": "DonchCh10.Upper", + "isHidden": false + }, + "plot_152": { + "title": "DonchCh10.Middle", + "isHidden": false + }, + "plot_153": { + "title": "DonchCh1.Lower", + "isHidden": false + }, + "plot_154": { + "title": "DonchCh1.Upper", + "isHidden": false + }, + "plot_155": { + "title": "DonchCh1.Middle", + "isHidden": false + }, + "plot_156": { + "title": "HullMA9", + "isHidden": false + }, + "plot_157": { + "title": "HullMA200", + "isHidden": false + }, + "plot_158": { + "title": "HullMA1728", + "isHidden": false + }, + "plot_159": { + "title": "HullMA50", + "isHidden": false + }, + "plot_16": { + "title": "SMA100", + "isHidden": false + }, + "plot_160": { + "title": "HullMA100", + "isHidden": false + }, + "plot_161": { + "title": "HullMA20", + "isHidden": false + }, + "plot_162": { + "title": "HullMA144", + "isHidden": false + }, + "plot_163": { + "title": "HullMA256", + "isHidden": false + }, + "plot_164": { + "title": "AO", + "isHidden": false + }, + "plot_165": { + "title": "AO[1]", + "isHidden": false + }, + "plot_166": { + "title": "AO[2]", + "isHidden": false + }, + "plot_167": { + "title": "Aroon.Up", + "isHidden": false + }, + "plot_168": { + "title": "Aroon.Down", + "isHidden": false + }, + "plot_169": { + "title": "Aroon25.Up", + "isHidden": false + }, + "plot_17": { + "title": "SMA120", + "isHidden": false + }, + "plot_170": { + "title": "Aroon25.Down", + "isHidden": false + }, + "plot_171": { + "title": "Value.Traded", + "isHidden": false + }, + "plot_172": { + "title": "KltChnl.upper", + "isHidden": false + }, + "plot_173": { + "title": "KltChnl.lower", + "isHidden": false + }, + "plot_174": { + "title": "KltChnl.basis", + "isHidden": false + }, + "plot_175": { + "title": "P.SAR", + "isHidden": false + }, + "plot_176": { + "title": "MoneyFlow", + "isHidden": false + }, + "plot_177": { + "title": "MoneyFlow12", + "isHidden": false + }, + "plot_178": { + "title": "ChaikinMoneyFlow", + "isHidden": false + }, + "plot_179": { + "title": "Stoch.RSI.K", + "isHidden": false + }, + "plot_18": { + "title": "SMA150", + "isHidden": false + }, + "plot_180": { + "title": "Stoch.RSI.D", + "isHidden": false + }, + "plot_181": { + "title": "W.R", + "isHidden": false + }, + "plot_182": { + "title": "W.R14", + "isHidden": false + }, + "plot_183": { + "title": "W.R12", + "isHidden": false + }, + "plot_184": { + "title": "ROC", + "isHidden": false + }, + "plot_185": { + "title": "ROC1", + "isHidden": false + }, + "plot_186": { + "title": "ROC14", + "isHidden": false + }, + "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { + "title": "Ichimoku.Lead1_20_60_120_30", + "isHidden": false + }, + "plot_198": { + "title": "Ichimoku.Lead2_20_60_120_30", + "isHidden": false + }, + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", + "isHidden": false + }, + "plot_201": { + "title": "VWMA50", + "isHidden": false + }, + "plot_202": { + "title": "ADR", + "isHidden": false + }, + "plot_203": { + "title": "ADRP", + "isHidden": false + }, + "plot_204": { + "title": "Rec.HullMA9", + "isHidden": false + }, + "plot_205": { + "title": "Rec.VWMA", + "isHidden": false + }, + "plot_206": { + "title": "Rec.Ichimoku", + "isHidden": false + }, + "plot_207": { + "title": "Recommend.MA", + "isHidden": false + }, + "plot_208": { "title": "Rec.Stoch.RSI", "isHidden": false }, - "plot_151": { - "title": "Rec.WR", + "plot_209": { + "title": "Rec.WR", + "isHidden": false + }, + "plot_21": { + "title": "SMA300", "isHidden": false }, - "plot_152": { + "plot_210": { "title": "Rec.BBPower", "isHidden": false }, - "plot_153": { + "plot_211": { "title": "Rec.UO", "isHidden": false }, - "plot_154": { + "plot_212": { "title": "Recommend.Other", "isHidden": false }, - "plot_155": { + "plot_213": { "title": "Recommend.All", "isHidden": false }, - "plot_156": { + "plot_214": { "title": "Candle.Hammer", "isHidden": false }, - "plot_157": { + "plot_215": { "title": "Candle.HangingMan", "isHidden": false }, - "plot_158": { + "plot_216": { "title": "Candle.InvertedHammer", "isHidden": false }, - "plot_159": { + "plot_217": { "title": "Candle.ShootingStar", "isHidden": false }, - "plot_16": { - "title": "SMA100", - "isHidden": false - }, - "plot_160": { + "plot_218": { "title": "Candle.MorningStar", "isHidden": false }, - "plot_161": { + "plot_219": { "title": "Candle.EveningStar", "isHidden": false }, - "plot_162": { + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { "title": "Candle.Marubozu.Black", "isHidden": false }, - "plot_163": { + "plot_221": { "title": "Candle.Marubozu.White", "isHidden": false }, - "plot_164": { + "plot_222": { "title": "Candle.Doji", "isHidden": false }, - "plot_165": { + "plot_223": { "title": "Candle.Doji.Dragonfly", "isHidden": false }, - "plot_166": { + "plot_224": { "title": "Candle.Doji.Gravestone", "isHidden": false }, - "plot_167": { + "plot_225": { "title": "Candle.Harami.Bullish", "isHidden": false }, - "plot_168": { + "plot_226": { "title": "Candle.Harami.Bearish", "isHidden": false }, - "plot_169": { + "plot_227": { "title": "Candle.LongShadow.Lower", "isHidden": false }, - "plot_17": { - "title": "SMA120", - "isHidden": false - }, - "plot_170": { + "plot_228": { "title": "Candle.LongShadow.Upper", "isHidden": false }, - "plot_171": { + "plot_229": { "title": "Candle.SpinningTop.White", "isHidden": false }, - "plot_172": { + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { "title": "Candle.SpinningTop.Black", "isHidden": false }, - "plot_173": { + "plot_231": { "title": "Candle.3WhiteSoldiers", "isHidden": false }, - "plot_174": { + "plot_232": { "title": "Candle.3BlackCrows", "isHidden": false }, - "plot_175": { + "plot_233": { "title": "Candle.Engulfing.Bullish", "isHidden": false }, - "plot_176": { + "plot_234": { "title": "Candle.Engulfing.Bearish", "isHidden": false }, - "plot_177": { + "plot_235": { "title": "Candle.AbandonedBaby.Bullish", "isHidden": false }, - "plot_178": { + "plot_236": { "title": "Candle.AbandonedBaby.Bearish", "isHidden": false }, - "plot_179": { + "plot_237": { "title": "Candle.TriStar.Bullish", "isHidden": false }, - "plot_18": { - "title": "SMA150", - "isHidden": false - }, - "plot_180": { + "plot_238": { "title": "Candle.TriStar.Bearish", "isHidden": false }, - "plot_181": { + "plot_239": { "title": "Candle.Kicking.Bullish", "isHidden": false }, - "plot_182": { + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { "title": "Candle.Kicking.Bearish", "isHidden": false }, - "plot_183": { + "plot_241": { "title": "VWAP", "isHidden": false }, - "plot_184": { + "plot_242": { "title": "Pivot.M.Classic.Middle", "isHidden": false }, - "plot_185": { + "plot_243": { "title": "Pivot.M.Classic.R1", "isHidden": false }, - "plot_186": { + "plot_244": { "title": "Pivot.M.Classic.S1", "isHidden": false }, - "plot_187": { + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_215": { + "plot_273": { "title": "relative_volume_intraday", "isHidden": false }, - "plot_216": { + "plot_274": { "title": "24h_vol", "isHidden": false }, - "plot_217": { + "plot_275": { "title": "volume_base", "isHidden": false }, - "plot_218": { + "plot_276": { "title": "volume_quote", "isHidden": false }, - "plot_219": { + "plot_277": { "title": "24h_vol_prev", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_220": { + "plot_278": { "title": "24h_vol_change_abs", "isHidden": false }, - "plot_221": { + "plot_279": { "title": "24h_vol_change", "isHidden": false }, - "plot_222": { + "plot_28": { + "title": "EMA10", + "isHidden": false + }, + "plot_280": { "title": "24h_close_prev", "isHidden": false }, - "plot_223": { + "plot_281": { "title": "24h_close_change_abs", "isHidden": false }, - "plot_224": { + "plot_282": { "title": "24h_close_change", "isHidden": false }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, - "plot_28": { - "title": "EMA10", - "isHidden": false - }, "plot_29": { "title": "EMA12", "isHidden": false @@ -1651,7 +2115,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1659,43 +2123,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1703,43 +2167,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -1747,43 +2211,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -1791,43 +2255,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.simple.crypto.json b/scanner.data.simple.crypto.json index d7d5a6734..457a9dab6 100644 --- a/scanner.data.simple.crypto.json +++ b/scanner.data.simple.crypto.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;open~high~low~$0!$1!$2;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\u003c$161~close\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\u003e$147\u0026\u0026close\u003e$146\u0026\u0026close\u003c$145\u0026\u0026close@1\u003c$144\u0026\u0026close\u003e$144,$147\u003e$146\u0026\u0026close\u003c$147\u0026\u0026close\u003e$145\u0026\u0026close@1\u003e$144\u0026\u0026close\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\u003c30\u0026\u0026$190@1\u003c$190,$190\u003e70\u0026\u0026$190@1\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\u003c20\u0026\u0026$102\u003c20\u0026\u0026$101\u003e$102\u0026\u0026$101@1\u003c$102@1,$101\u003e80\u0026\u0026$102\u003e80\u0026\u0026$101\u003c$102\u0026\u0026$101@1\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\u003c(-100)\u0026\u0026$193\u003e$193@1,$193\u003e100\u0026\u0026$193\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\u003e20\u0026\u0026$61@1\u003c$62@1\u0026\u0026$61\u003e$62,$60\u003e20\u0026\u0026$61@1\u003e$62@1\u0026\u0026$61\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\u003e0\u0026\u0026$119@1\u003e0\u0026\u0026$119\u003e$119@1\u0026\u0026$119@2\u003e$119@1,crossunder($119,0)||$119\u003c0\u0026\u0026$119@1\u003c0\u0026\u0026$119\u003c$119@1\u0026\u0026$119@2\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\u003e$96@1,$96\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\u003e$94,$93\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\u0026\u0026$133\u003c20\u0026\u0026$134\u003c20\u0026\u0026$133\u003e$134\u0026\u0026$133@1\u003c$134@1,$163\u0026\u0026$133\u003e80\u0026\u0026$134\u003e80\u0026\u0026$133\u003c$134\u0026\u0026$133@1\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\u003c(-80)\u0026\u0026$136\u003e$136@1,$136\u003e(-20)\u0026\u0026$136\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\u0026\u0026$139\u003c0\u0026\u0026$139\u003e$139@1,$162\u0026\u0026$138\u003e0\u0026\u0026$138\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\u003e70,$141\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\u003c$225~$224\u003e$225~high-$222~$223-low~close\u003c$221~close\u003e$221~$228\u003e0*$224~$229\u003e0*$224~open\u003cclose~open\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\u003c100\u0026\u0026(abs($229-$228)/$228)*100\u003c100~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$223\u003ehl2\u0026\u0026$229\u003e=2.0*$224\u0026\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$222\u003chl2\u0026\u0026$228\u003e=2.0*$224\u0026\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\u0026\u0026$226@1\u0026\u0026$227){v:if_($230\u0026\u0026$235@2\u0026\u0026$222@1\u003c$223@2\u0026\u0026$234\u0026\u0026$222\u003e=$237@2\u0026\u0026$222\u003c$222@2\u0026\u0026$222@1\u003c$223){$253=1.0~}_{v:if($231\u0026\u0026$234@2\u0026\u0026$223@1\u003e$222@2\u0026\u0026$235\u0026\u0026$223\u003c=$237@2\u0026\u0026$223\u003e$223@2\u0026\u0026$223@1\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\u0026\u0026$228\u003c=0*$224\u0026\u0026$229\u003c=0*$224~$260\u0026\u0026$234~$260\u0026\u0026$235~$262?1:0~$261?1:0~$236\u003e0\u0026\u0026$224\u003c=$236*5/100~$265\u0026\u0026$238~$265\u0026\u0026$228\u003c=$224~$265\u0026\u0026$229\u003c=$224~$266\u0026\u0026!$267\u0026\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\u0026\u0026$235@1\u0026\u0026$230@1\u0026\u0026$234\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$227@1\u0026\u0026$234@1\u0026\u0026$231@1\u0026\u0026$235\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$229\u003e($236/100)*75?1:0~$228\u003e($236/100)*75?1:0~$229\u003e=($236/100)*34\u0026\u0026$228\u003e=($236/100)*34\u0026\u0026!$265~$276\u0026\u0026$234?1:0~$276\u0026\u0026$235?1:0~$236*5/100\u003e$228~$236*5/100\u003e$229~0.0~0.0~v:if($227\u0026\u0026$227@1\u0026\u0026$227@2){v:if($234\u0026\u0026$234@1\u0026\u0026$234@2){$281=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$279\u0026\u0026$279@1\u0026\u0026$279@2~}~v:if($235\u0026\u0026$235@1\u0026\u0026$235@2){$282=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$280\u0026\u0026$280@1\u0026\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\u0026\u0026$234\u0026\u0026$227\u0026\u0026$235@1\u0026\u0026$226@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$231\u0026\u0026$235\u0026\u0026$227\u0026\u0026$234@1\u0026\u0026$226@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$230@2\u0026\u0026$235@2\u0026\u0026$265@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$234\u0026\u0026high@1\u003clow?1:0~$231@2\u0026\u0026$234@2\u0026\u0026$265@1\u0026\u0026high@2\u003clow@1\u0026\u0026$235\u0026\u0026low@1\u003ehigh?1:0~$266@2\u0026\u0026$266@1\u0026\u0026$266~$222@1\u003c$223~$223@1\u003e$222~$292\u0026\u0026$230@2\u0026\u0026$294@1\u0026\u0026$293?1:0~$292\u0026\u0026$231@2\u0026\u0026$293@1\u0026\u0026$294?1:0~$262@1\u0026\u0026$261\u0026\u0026high@1\u003clow?1:0~$261@1\u0026\u0026$262\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$303@1~$304@1~$305@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($313!=$313@1){$309=$306~$312=close@1~$310=$307~$311=$308~$306=open~}_{}~($310+$311+$312)/3~$8($315)~$8($315*2-$311)~$8($315*2-$310)~$8($315+1*($310-$311))~$8($315-1*($310-$311))~$8($315+2*($310-$311))~$8($315-2*($310-$311))~$8($315)~$8($315+0.382*($310-$311))~$8($315-0.382*($310-$311))~$8($315+0.618*($310-$311))~$8($315-0.618*($310-$311))~$8($315+1*($310-$311))~$8($315-1*($310-$311))~($310+$311+$306*2)/4~$8($330)~$8($330*2-$311)~$8($330*2-$310)~$8($330+1*($310-$311))~$8($330-1*($310-$311))~$8($310+2*($330-$311))~$8($311-2*($310-$330))~$310+$311*2+$312~v:if($312==$309){$338=$310+$311+$312*2~}~v:if($312\u003e$309){$338=$310*2+$311+$312~}~$8($338/4)~$8($338/2-$311)~$8($338/2-$310)~$8($315)~$8($312+0.09166666666666667*($310-$311))~$8($312-0.09166666666666667*($310-$311))~$8($312+0.18333333333333335*($310-$311))~$8($312-0.18333333333333335*($310-$311))~$8($312+0.275*($310-$311))~$8($312-0.275*($310-$311))~syminfo.volumetype=='base'?volume:(syminfo.volumetype=='quote')\u0026\u0026close!=0?volume/close:na():f~syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?volume*close:na():f~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$331!$332!$333!$334!$335!$336!$337!$341!$342!$343!$344!$345!$346!$347!$348!$349!$350!$351!$352;t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$13,$13,0,1,0,'NONE',0,0,$14)|$9():s3|s217:$10($16,$17,$18):s217~$20!$21!$22!$23!$24!$25!$26!$27!$28!$105!$30!$31!$32!$33!$108!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$123!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236", + "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;open~high~low~$0!$1!$2;s3:$9():s3;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\u003c$229~close\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\u003e$212\u0026\u0026close\u003e$211\u0026\u0026close\u003c$210\u0026\u0026close@1\u003c$209\u0026\u0026close\u003e$209,$212\u003e$211\u0026\u0026close\u003c$212\u0026\u0026close\u003e$210\u0026\u0026close@1\u003e$209\u0026\u0026close\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\u003c30\u0026\u0026$258@1\u003c$258,$258\u003e70\u0026\u0026$258@1\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\u003c20\u0026\u0026$107\u003c20\u0026\u0026$106\u003e$107\u0026\u0026$106@1\u003c$107@1,$106\u003e80\u0026\u0026$107\u003e80\u0026\u0026$106\u003c$107\u0026\u0026$106@1\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\u003c(-100)\u0026\u0026$261\u003e$261@1,$261\u003e100\u0026\u0026$261\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\u003e20\u0026\u0026$64@1\u003c$65@1\u0026\u0026$64\u003e$65,$63\u003e20\u0026\u0026$64@1\u003e$65@1\u0026\u0026$64\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\u003e0\u0026\u0026$174@1\u003e0\u0026\u0026$174\u003e$174@1\u0026\u0026$174@2\u003e$174@1,crossunder($174,0)||$174\u003c0\u0026\u0026$174@1\u003c0\u0026\u0026$174\u003c$174@1\u0026\u0026$174@2\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\u003e$99@1,$99\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\u003e$97,$96\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\u0026\u0026$191\u003c20\u0026\u0026$192\u003c20\u0026\u0026$191\u003e$192\u0026\u0026$191@1\u003c$192@1,$231\u0026\u0026$191\u003e80\u0026\u0026$192\u003e80\u0026\u0026$191\u003c$192\u0026\u0026$191@1\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\u003c(-80)\u0026\u0026$194\u003e$194@1,$194\u003e(-20)\u0026\u0026$194\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\u0026\u0026$204\u003c0\u0026\u0026$204\u003e$204@1,$230\u0026\u0026$203\u003e0\u0026\u0026$203\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\u003e70,$206\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\u003c$293~$292\u003e$293~high-$290~$291-low~close\u003c$289~close\u003e$289~$296\u003e0*$292~$297\u003e0*$292~open\u003cclose~open\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\u003c100\u0026\u0026(abs($297-$296)/$296)*100\u003c100~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$291\u003ehl2\u0026\u0026$297\u003e=2.0*$292\u0026\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$290\u003chl2\u0026\u0026$296\u003e=2.0*$292\u0026\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\u0026\u0026$294@1\u0026\u0026$295){v:if_($298\u0026\u0026$303@2\u0026\u0026$290@1\u003c$291@2\u0026\u0026$302\u0026\u0026$290\u003e=$305@2\u0026\u0026$290\u003c$290@2\u0026\u0026$290@1\u003c$291){$321=1.0~}_{v:if($299\u0026\u0026$302@2\u0026\u0026$291@1\u003e$290@2\u0026\u0026$303\u0026\u0026$291\u003c=$305@2\u0026\u0026$291\u003e$291@2\u0026\u0026$291@1\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\u0026\u0026$296\u003c=0*$292\u0026\u0026$297\u003c=0*$292~$328\u0026\u0026$302~$328\u0026\u0026$303~$330?1:0~$329?1:0~$304\u003e0\u0026\u0026$292\u003c=$304*5/100~$333\u0026\u0026$306~$333\u0026\u0026$296\u003c=$292~$333\u0026\u0026$297\u003c=$292~$334\u0026\u0026!$335\u0026\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\u0026\u0026$303@1\u0026\u0026$298@1\u0026\u0026$302\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$295@1\u0026\u0026$302@1\u0026\u0026$299@1\u0026\u0026$303\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$297\u003e($304/100)*75?1:0~$296\u003e($304/100)*75?1:0~$297\u003e=($304/100)*34\u0026\u0026$296\u003e=($304/100)*34\u0026\u0026!$333~$344\u0026\u0026$302?1:0~$344\u0026\u0026$303?1:0~$304*5/100\u003e$296~$304*5/100\u003e$297~0.0~0.0~v:if($295\u0026\u0026$295@1\u0026\u0026$295@2){v:if($302\u0026\u0026$302@1\u0026\u0026$302@2){$349=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$347\u0026\u0026$347@1\u0026\u0026$347@2~}~v:if($303\u0026\u0026$303@1\u0026\u0026$303@2){$350=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$348\u0026\u0026$348@1\u0026\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\u0026\u0026$302\u0026\u0026$295\u0026\u0026$303@1\u0026\u0026$294@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$299\u0026\u0026$303\u0026\u0026$295\u0026\u0026$302@1\u0026\u0026$294@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$298@2\u0026\u0026$303@2\u0026\u0026$333@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$302\u0026\u0026high@1\u003clow?1:0~$299@2\u0026\u0026$302@2\u0026\u0026$333@1\u0026\u0026high@2\u003clow@1\u0026\u0026$303\u0026\u0026low@1\u003ehigh?1:0~$334@2\u0026\u0026$334@1\u0026\u0026$334~$290@1\u003c$291~$291@1\u003e$290~$360\u0026\u0026$298@2\u0026\u0026$362@1\u0026\u0026$361?1:0~$360\u0026\u0026$299@2\u0026\u0026$361@1\u0026\u0026$362?1:0~$330@1\u0026\u0026$329\u0026\u0026high@1\u003clow?1:0~$329@1\u0026\u0026$330\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$371@1~$372@1~$373@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($381!=$381@1){$377=$374~$380=close@1~$378=$375~$379=$376~$374=open~}_{}~($378+$379+$380)/3~$8($383)~$8($383*2-$379)~$8($383*2-$378)~$8($383+1*($378-$379))~$8($383-1*($378-$379))~$8($383+2*($378-$379))~$8($383-2*($378-$379))~$8($383)~$8($383+0.382*($378-$379))~$8($383-0.382*($378-$379))~$8($383+0.618*($378-$379))~$8($383-0.618*($378-$379))~$8($383+1*($378-$379))~$8($383-1*($378-$379))~($378+$379+$374*2)/4~$8($398)~$8($398*2-$379)~$8($398*2-$378)~$8($398+1*($378-$379))~$8($398-1*($378-$379))~$8($378+2*($398-$379))~$8($379-2*($378-$398))~$378+$379*2+$380~v:if($380==$377){$406=$378+$379+$380*2~}~v:if($380\u003e$377){$406=$378*2+$379+$380~}~$8($406/4)~$8($406/2-$379)~$8($406/2-$378)~$8($383)~$8($380+0.09166666666666667*($378-$379))~$8($380-0.09166666666666667*($378-$379))~$8($380+0.18333333333333335*($378-$379))~$8($380-0.18333333333333335*($378-$379))~$8($380+0.275*($378-$379))~$8($380-0.275*($378-$379))~syminfo.volumetype=='base'?volume:(syminfo.volumetype=='quote')\u0026\u0026close!=0?volume/close:na():f~syminfo.volumetype=='quote'?volume:syminfo.volumetype=='base'?volume*close:na():f~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$395!$396!$397!$399!$400!$401!$402!$403!$404!$405!$409!$410!$411!$412!$413!$414!$415!$416!$417!$418!$419!$420;t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$14,$14,0,1,0,'NONE',0,0,$15)|$10():s3|s275:$11($17,$18,$19):s275~$21!$22!$23!$24!$25!$26!$27!$28!$29!$108!$31!$32!$33!$34!$111!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293!$294!$295", "isFake": false }, { @@ -890,6 +890,238 @@ { "id": "plot_216", "type": "line" + }, + { + "id": "plot_217", + "type": "line" + }, + { + "id": "plot_218", + "type": "line" + }, + { + "id": "plot_219", + "type": "line" + }, + { + "id": "plot_220", + "type": "line" + }, + { + "id": "plot_221", + "type": "line" + }, + { + "id": "plot_222", + "type": "line" + }, + { + "id": "plot_223", + "type": "line" + }, + { + "id": "plot_224", + "type": "line" + }, + { + "id": "plot_225", + "type": "line" + }, + { + "id": "plot_226", + "type": "line" + }, + { + "id": "plot_227", + "type": "line" + }, + { + "id": "plot_228", + "type": "line" + }, + { + "id": "plot_229", + "type": "line" + }, + { + "id": "plot_230", + "type": "line" + }, + { + "id": "plot_231", + "type": "line" + }, + { + "id": "plot_232", + "type": "line" + }, + { + "id": "plot_233", + "type": "line" + }, + { + "id": "plot_234", + "type": "line" + }, + { + "id": "plot_235", + "type": "line" + }, + { + "id": "plot_236", + "type": "line" + }, + { + "id": "plot_237", + "type": "line" + }, + { + "id": "plot_238", + "type": "line" + }, + { + "id": "plot_239", + "type": "line" + }, + { + "id": "plot_240", + "type": "line" + }, + { + "id": "plot_241", + "type": "line" + }, + { + "id": "plot_242", + "type": "line" + }, + { + "id": "plot_243", + "type": "line" + }, + { + "id": "plot_244", + "type": "line" + }, + { + "id": "plot_245", + "type": "line" + }, + { + "id": "plot_246", + "type": "line" + }, + { + "id": "plot_247", + "type": "line" + }, + { + "id": "plot_248", + "type": "line" + }, + { + "id": "plot_249", + "type": "line" + }, + { + "id": "plot_250", + "type": "line" + }, + { + "id": "plot_251", + "type": "line" + }, + { + "id": "plot_252", + "type": "line" + }, + { + "id": "plot_253", + "type": "line" + }, + { + "id": "plot_254", + "type": "line" + }, + { + "id": "plot_255", + "type": "line" + }, + { + "id": "plot_256", + "type": "line" + }, + { + "id": "plot_257", + "type": "line" + }, + { + "id": "plot_258", + "type": "line" + }, + { + "id": "plot_259", + "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" + }, + { + "id": "plot_273", + "type": "line" + }, + { + "id": "plot_274", + "type": "line" } ], "version": "", @@ -911,43 +1143,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -955,43 +1187,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -999,43 +1231,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1043,43 +1275,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1087,369 +1319,601 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { - "title": "Ichimoku.Lead1_20_60_120_30", + "title": "DonchCh20.Lower", "isHidden": false }, "plot_142": { + "title": "DonchCh20.Upper", + "isHidden": false + }, + "plot_143": { + "title": "DonchCh20.Middle", + "isHidden": false + }, + "plot_144": { + "title": "DonchCh96.Lower", + "isHidden": false + }, + "plot_145": { + "title": "DonchCh96.Upper", + "isHidden": false + }, + "plot_146": { + "title": "DonchCh96.Middle", + "isHidden": false + }, + "plot_147": { + "title": "DonchCh13.Lower", + "isHidden": false + }, + "plot_148": { + "title": "DonchCh13.Upper", + "isHidden": false + }, + "plot_149": { + "title": "DonchCh13.Middle", + "isHidden": false + }, + "plot_15": { + "title": "SMA75", + "isHidden": false + }, + "plot_150": { + "title": "DonchCh10.Lower", + "isHidden": false + }, + "plot_151": { + "title": "DonchCh10.Upper", + "isHidden": false + }, + "plot_152": { + "title": "DonchCh10.Middle", + "isHidden": false + }, + "plot_153": { + "title": "DonchCh1.Lower", + "isHidden": false + }, + "plot_154": { + "title": "DonchCh1.Upper", + "isHidden": false + }, + "plot_155": { + "title": "DonchCh1.Middle", + "isHidden": false + }, + "plot_156": { + "title": "HullMA9", + "isHidden": false + }, + "plot_157": { + "title": "HullMA200", + "isHidden": false + }, + "plot_158": { + "title": "HullMA1728", + "isHidden": false + }, + "plot_159": { + "title": "HullMA50", + "isHidden": false + }, + "plot_16": { + "title": "SMA100", + "isHidden": false + }, + "plot_160": { + "title": "HullMA100", + "isHidden": false + }, + "plot_161": { + "title": "HullMA20", + "isHidden": false + }, + "plot_162": { + "title": "HullMA144", + "isHidden": false + }, + "plot_163": { + "title": "HullMA256", + "isHidden": false + }, + "plot_164": { + "title": "AO", + "isHidden": false + }, + "plot_165": { + "title": "AO[1]", + "isHidden": false + }, + "plot_166": { + "title": "AO[2]", + "isHidden": false + }, + "plot_167": { + "title": "Aroon.Up", + "isHidden": false + }, + "plot_168": { + "title": "Aroon.Down", + "isHidden": false + }, + "plot_169": { + "title": "Aroon25.Up", + "isHidden": false + }, + "plot_17": { + "title": "SMA120", + "isHidden": false + }, + "plot_170": { + "title": "Aroon25.Down", + "isHidden": false + }, + "plot_171": { + "title": "Value.Traded", + "isHidden": false + }, + "plot_172": { + "title": "KltChnl.upper", + "isHidden": false + }, + "plot_173": { + "title": "KltChnl.lower", + "isHidden": false + }, + "plot_174": { + "title": "KltChnl.basis", + "isHidden": false + }, + "plot_175": { + "title": "P.SAR", + "isHidden": false + }, + "plot_176": { + "title": "MoneyFlow", + "isHidden": false + }, + "plot_177": { + "title": "MoneyFlow12", + "isHidden": false + }, + "plot_178": { + "title": "ChaikinMoneyFlow", + "isHidden": false + }, + "plot_179": { + "title": "Stoch.RSI.K", + "isHidden": false + }, + "plot_18": { + "title": "SMA150", + "isHidden": false + }, + "plot_180": { + "title": "Stoch.RSI.D", + "isHidden": false + }, + "plot_181": { + "title": "W.R", + "isHidden": false + }, + "plot_182": { + "title": "W.R14", + "isHidden": false + }, + "plot_183": { + "title": "W.R12", + "isHidden": false + }, + "plot_184": { + "title": "ROC", + "isHidden": false + }, + "plot_185": { + "title": "ROC1", + "isHidden": false + }, + "plot_186": { + "title": "ROC14", + "isHidden": false + }, + "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { + "title": "Ichimoku.Lead1_20_60_120_30", + "isHidden": false + }, + "plot_198": { "title": "Ichimoku.Lead2_20_60_120_30", "isHidden": false }, - "plot_143": { - "title": "VWMA", + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", + "isHidden": false + }, + "plot_201": { + "title": "VWMA50", "isHidden": false }, - "plot_144": { + "plot_202": { "title": "ADR", "isHidden": false }, - "plot_145": { + "plot_203": { "title": "ADRP", "isHidden": false }, - "plot_146": { + "plot_204": { "title": "Rec.HullMA9", "isHidden": false }, - "plot_147": { + "plot_205": { "title": "Rec.VWMA", "isHidden": false }, - "plot_148": { + "plot_206": { "title": "Rec.Ichimoku", "isHidden": false }, - "plot_149": { + "plot_207": { "title": "Recommend.MA", "isHidden": false }, - "plot_15": { - "title": "SMA75", - "isHidden": false - }, - "plot_150": { + "plot_208": { "title": "Rec.Stoch.RSI", "isHidden": false }, - "plot_151": { + "plot_209": { "title": "Rec.WR", "isHidden": false }, - "plot_152": { + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { "title": "Rec.BBPower", "isHidden": false }, - "plot_153": { + "plot_211": { "title": "Rec.UO", "isHidden": false }, - "plot_154": { + "plot_212": { "title": "Recommend.Other", "isHidden": false }, - "plot_155": { + "plot_213": { "title": "Recommend.All", "isHidden": false }, - "plot_156": { + "plot_214": { "title": "Candle.Hammer", "isHidden": false }, - "plot_157": { + "plot_215": { "title": "Candle.HangingMan", "isHidden": false }, - "plot_158": { + "plot_216": { "title": "Candle.InvertedHammer", "isHidden": false }, - "plot_159": { + "plot_217": { "title": "Candle.ShootingStar", "isHidden": false }, - "plot_16": { - "title": "SMA100", - "isHidden": false - }, - "plot_160": { + "plot_218": { "title": "Candle.MorningStar", "isHidden": false }, - "plot_161": { + "plot_219": { "title": "Candle.EveningStar", "isHidden": false }, - "plot_162": { + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { "title": "Candle.Marubozu.Black", "isHidden": false }, - "plot_163": { + "plot_221": { "title": "Candle.Marubozu.White", "isHidden": false }, - "plot_164": { + "plot_222": { "title": "Candle.Doji", "isHidden": false }, - "plot_165": { + "plot_223": { "title": "Candle.Doji.Dragonfly", "isHidden": false }, - "plot_166": { + "plot_224": { "title": "Candle.Doji.Gravestone", "isHidden": false }, - "plot_167": { + "plot_225": { "title": "Candle.Harami.Bullish", "isHidden": false }, - "plot_168": { + "plot_226": { "title": "Candle.Harami.Bearish", "isHidden": false }, - "plot_169": { + "plot_227": { "title": "Candle.LongShadow.Lower", "isHidden": false }, - "plot_17": { - "title": "SMA120", - "isHidden": false - }, - "plot_170": { + "plot_228": { "title": "Candle.LongShadow.Upper", "isHidden": false }, - "plot_171": { + "plot_229": { "title": "Candle.SpinningTop.White", "isHidden": false }, - "plot_172": { + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { "title": "Candle.SpinningTop.Black", "isHidden": false }, - "plot_173": { + "plot_231": { "title": "Candle.3WhiteSoldiers", "isHidden": false }, - "plot_174": { + "plot_232": { "title": "Candle.3BlackCrows", "isHidden": false }, - "plot_175": { + "plot_233": { "title": "Candle.Engulfing.Bullish", "isHidden": false }, - "plot_176": { + "plot_234": { "title": "Candle.Engulfing.Bearish", "isHidden": false }, - "plot_177": { + "plot_235": { "title": "Candle.AbandonedBaby.Bullish", "isHidden": false }, - "plot_178": { + "plot_236": { "title": "Candle.AbandonedBaby.Bearish", "isHidden": false }, - "plot_179": { + "plot_237": { "title": "Candle.TriStar.Bullish", "isHidden": false }, - "plot_18": { - "title": "SMA150", - "isHidden": false - }, - "plot_180": { + "plot_238": { "title": "Candle.TriStar.Bearish", "isHidden": false }, - "plot_181": { + "plot_239": { "title": "Candle.Kicking.Bullish", "isHidden": false }, - "plot_182": { + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { "title": "Candle.Kicking.Bearish", "isHidden": false }, - "plot_183": { + "plot_241": { "title": "VWAP", "isHidden": false }, - "plot_184": { + "plot_242": { "title": "Pivot.M.Classic.Middle", "isHidden": false }, - "plot_185": { + "plot_243": { "title": "Pivot.M.Classic.R1", "isHidden": false }, - "plot_186": { + "plot_244": { "title": "Pivot.M.Classic.S1", "isHidden": false }, - "plot_187": { + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_215": { + "plot_273": { "title": "volume_base", "isHidden": false }, - "plot_216": { + "plot_274": { "title": "volume_quote", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, "plot_28": { "title": "EMA10", "isHidden": false @@ -1587,7 +2051,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1595,43 +2059,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1639,43 +2103,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -1683,43 +2147,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -1727,43 +2191,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } } diff --git a/scanner.data.simple.json b/scanner.data.simple.json index 222e3e23f..35319b8a0 100644 --- a/scanner.data.simple.json +++ b/scanner.data.simple.json @@ -4,7 +4,7 @@ { "id": "text", "type": "text", - "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;open~high~low~$0!$1!$2;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~($58/close)*100~s3:$1(i:14,i:14):s3~$61@1~$62@1~s3:$1(i:9,i:9):s3~$66@1~$67@1~s3:$1(i:20,i:20):s3~$71@1~$72@1~s3:$1(i:50,i:50):s3~$76@1~$77@1~s3:$1(i:100,i:100):s3~$81@1~$82@1~2*stdev(close,20,1.0)~$9+$85~$9-$85~2*stdev(close,50,1.0)~$14+$88~$14-$88~$29~ema(close,26)~$91-$92~ema($93,9)~$93-$94~close-close@10~$96@1~close-close@14~$98@1~stoch(close,high,low,14)~sma($100,3)~sma($101,3)~$101@1~$102@1~$100@1~sma(volume,10)~volume/$106@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$111@1~highest(20)~lowest(20)~avg($113,$114)~2*wma(close,4)~wma(close,9)~wma($116-$117,3)~sma(hl2,5)-sma(hl2,34)~$119@1~$119@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~(volume*close)*syminfo.pointvalue~$31~atr(10)~$125+$126*2~$125-$126*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($131,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($133,3)~highest(high,14)~(($135-close)/($135-lowest(low,14)))*(-100)~roc(close,9)~high-$30~low-$30~$138+$139~$3(i:7,i:14,i:28)~v:if(!na($141)){$141=$141*100~}~$141~s4:$5(i:9,i:26,i:52):s4~$146@25~$147@25~s4:$5(i:20,i:60,i:120):s4~$152@30~$153@30~vwma(close,20)~sma(high,14)~sma(low,14)~$157-$158~($159/close)*100~$36~close\u003c$161~close\u003e$161~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$164=$164+$6($6,close)~$165=$165+1~}~v:if(!na($9)){$164=$164+$6($9,close)~$165=$165+1~}~v:if(!na($12)){$164=$164+$6($12,close)~$165=$165+1~}~v:if(!na($14)){$164=$164+$6($14,close)~$165=$165+1~}~v:if(!na($16)){$164=$164+$6($16,close)~$165=$165+1~}~v:if(!na($19)){$164=$164+$6($19,close)~$165=$165+1~}~v:if(!na($28)){$164=$164+$6($28,close)~$165=$165+1~}~v:if(!na($31)){$164=$164+$6($31,close)~$165=$165+1~}~v:if(!na($34)){$164=$164+$6($34,close)~$165=$165+1~}~v:if(!na($36)){$164=$164+$6($36,close)~$165=$165+1~}~v:if(!na($38)){$164=$164+$6($38,close)~$165=$165+1~}~v:if(!na($41)){$164=$164+$6($41,close)~$165=$165+1~}~}~$6($118,close)~v:if(!na($179)){$164=$164+$179~$165=$165+1~}~$6($156,close)~v:if(!na($181)){$164=$164+$181~$165=$165+1~}~na():f~v:if(!(na($146)||na($147)||na(close)||na(close@1)||na($145)||na($144))){$183=$7($146\u003e$147\u0026\u0026close\u003e$146\u0026\u0026close\u003c$145\u0026\u0026close@1\u003c$144\u0026\u0026close\u003e$144,$147\u003e$146\u0026\u0026close\u003c$147\u0026\u0026close\u003e$145\u0026\u0026close@1\u003e$144\u0026\u0026close\u003c$144)~}~$183~v:if(!na($183)){$164=$164+$183~$165=$165+1~}~$164=$165\u003e0?$164/$165:na():f~$164~0.0~0.0~$44~v:if(!(na($190)||na($190@1))){$189=$189+1~$188=$188+$7($190\u003c30\u0026\u0026$190@1\u003c$190,$190\u003e70\u0026\u0026$190@1\u003e$190)~}~v:if(!(na($101)||na($102)||na($101@1)||na($102@1))){$189=$189+1~$188=$188+$7($101\u003c20\u0026\u0026$102\u003c20\u0026\u0026$101\u003e$102\u0026\u0026$101@1\u003c$102@1,$101\u003e80\u0026\u0026$102\u003e80\u0026\u0026$101\u003c$102\u0026\u0026$101@1\u003e$102@1)~}~$111~v:if(!(na($193)||na($193@1))){$189=$189+1~$188=$188+$7($193\u003c(-100)\u0026\u0026$193\u003e$193@1,$193\u003e100\u0026\u0026$193\u003c$193@1)~}~v:if(!(na($60)||na($61@1)||na($62@1)||na($61)||na($62))){$189=$189+1~$188=$188+$7($60\u003e20\u0026\u0026$61@1\u003c$62@1\u0026\u0026$61\u003e$62,$60\u003e20\u0026\u0026$61@1\u003e$62@1\u0026\u0026$61\u003c$62)~}~v:if(!(na($119)||na($119@1))){$189=$189+1~$188=$188+$7(crossover($119,0)||$119\u003e0\u0026\u0026$119@1\u003e0\u0026\u0026$119\u003e$119@1\u0026\u0026$119@2\u003e$119@1,crossunder($119,0)||$119\u003c0\u0026\u0026$119@1\u003c0\u0026\u0026$119\u003c$119@1\u0026\u0026$119@2\u003c$119@1)~}~v:if(!(na($96)||na($96@1))){$189=$189+1~$188=$188+$7($96\u003e$96@1,$96\u003c$96@1)~}~v:if(!(na($93)||na($94))){$189=$189+1~$188=$188+$7($93\u003e$94,$93\u003c$94)~}~na():f~v:if(!(na($162)||na($163)||na($133)||na($134)||na($133@1)||na($134@1))){$199=$7($162\u0026\u0026$133\u003c20\u0026\u0026$134\u003c20\u0026\u0026$133\u003e$134\u0026\u0026$133@1\u003c$134@1,$163\u0026\u0026$133\u003e80\u0026\u0026$134\u003e80\u0026\u0026$133\u003c$134\u0026\u0026$133@1\u003e$134@1)~}~$199~v:if(!na($199)){$189=$189+1~$188=$188+$199~}~na():f~v:if(!(na($136)||na($136@1))){$203=$7($136\u003c(-80)\u0026\u0026$136\u003e$136@1,$136\u003e(-20)\u0026\u0026$136\u003c$136@1)~}~$203~v:if(!na($203)){$189=$189+1~$188=$188+$203~}~na():f~v:if(!(na($163)||na($162)||na($139)||na($139@1)||na($138)||na($138@1))){$207=$7($163\u0026\u0026$139\u003c0\u0026\u0026$139\u003e$139@1,$162\u0026\u0026$138\u003e0\u0026\u0026$138\u003c$138@1)~}~$207~v:if(!na($207)){$189=$189+1~$188=$188+$207~}~na():f~v:if(!na($141)){$211=$7($141\u003e70,$141\u003c30)~}~$211~v:if(!na($211)){$189=$189+1~$188=$188+$211~}~$188=$189\u003e0?$188/$189:na():f~$188~0.0~0.0~v:if(!na($164)){$216=$216+$164~$217=$217+1~}~v:if(!na($188)){$216=$216+$188~$217=$217+1~}~$216=$217\u003e0?$216/$217:na():f~$216~$14~max(close,open)~min(close,open)~$222-$223~sma($224,14)~$224\u003c$225~$224\u003e$225~high-$222~$223-low~close\u003c$221~close\u003e$221~$228\u003e0*$224~$229\u003e0*$224~open\u003cclose~open\u003eclose~high-low~$224/2+$223~$228==$229||(abs($228-$229)/$229)*100\u003c100\u0026\u0026(abs($229-$228)/$228)*100\u003c100~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$223\u003ehl2\u0026\u0026$229\u003e=2.0*$224\u0026\u0026!$232){v:if_($230){$239=1.0~}_{v:if($231){$240=1.0~}~}~}~$239?1:0~$240?1:0~0.0~0.0~v:if($226\u0026\u0026$224\u003e0\u0026\u0026$222\u003chl2\u0026\u0026$228\u003e=2.0*$224\u0026\u0026!$233){v:if_($230){$246=1.0~}_{v:if($231){$247=1.0~}~}~}~$246?1:0~$247?1:0~0.0~0.0~v:if($227@2\u0026\u0026$226@1\u0026\u0026$227){v:if_($230\u0026\u0026$235@2\u0026\u0026$222@1\u003c$223@2\u0026\u0026$234\u0026\u0026$222\u003e=$237@2\u0026\u0026$222\u003c$222@2\u0026\u0026$222@1\u003c$223){$253=1.0~}_{v:if($231\u0026\u0026$234@2\u0026\u0026$223@1\u003e$222@2\u0026\u0026$235\u0026\u0026$223\u003c=$237@2\u0026\u0026$223\u003e$223@2\u0026\u0026$223@1\u003e$222){$254=1.0~}~}~}~$253?1:0~$254?1:0~$227\u0026\u0026$228\u003c=0*$224\u0026\u0026$229\u003c=0*$224~$260\u0026\u0026$234~$260\u0026\u0026$235~$262?1:0~$261?1:0~$236\u003e0\u0026\u0026$224\u003c=$236*5/100~$265\u0026\u0026$238~$265\u0026\u0026$228\u003c=$224~$265\u0026\u0026$229\u003c=$224~$266\u0026\u0026!$267\u0026\u0026!$268?1:0~$267?1:0~$268?1:0~$227@1\u0026\u0026$235@1\u0026\u0026$230@1\u0026\u0026$234\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$227@1\u0026\u0026$234@1\u0026\u0026$231@1\u0026\u0026$235\u0026\u0026$226\u0026\u0026high\u003c=$222@1\u0026\u0026low\u003e=$223@1?1:0~$229\u003e($236/100)*75?1:0~$228\u003e($236/100)*75?1:0~$229\u003e=($236/100)*34\u0026\u0026$228\u003e=($236/100)*34\u0026\u0026!$265~$276\u0026\u0026$234?1:0~$276\u0026\u0026$235?1:0~$236*5/100\u003e$228~$236*5/100\u003e$229~0.0~0.0~v:if($227\u0026\u0026$227@1\u0026\u0026$227@2){v:if($234\u0026\u0026$234@1\u0026\u0026$234@2){$281=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$279\u0026\u0026$279@1\u0026\u0026$279@2~}~v:if($235\u0026\u0026$235@1\u0026\u0026$235@2){$282=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$280\u0026\u0026$280@1\u0026\u0026$280@2~}~}~$281?1:0~$282?1:0~$230\u0026\u0026$234\u0026\u0026$227\u0026\u0026$235@1\u0026\u0026$226@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$231\u0026\u0026$235\u0026\u0026$227\u0026\u0026$234@1\u0026\u0026$226@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$230@2\u0026\u0026$235@2\u0026\u0026$265@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$234\u0026\u0026high@1\u003clow?1:0~$231@2\u0026\u0026$234@2\u0026\u0026$265@1\u0026\u0026high@2\u003clow@1\u0026\u0026$235\u0026\u0026low@1\u003ehigh?1:0~$266@2\u0026\u0026$266@1\u0026\u0026$266~$222@1\u003c$223~$223@1\u003e$222~$292\u0026\u0026$230@2\u0026\u0026$294@1\u0026\u0026$293?1:0~$292\u0026\u0026$231@2\u0026\u0026$293@1\u0026\u0026$294?1:0~$262@1\u0026\u0026$261\u0026\u0026high@1\u003clow?1:0~$261@1\u0026\u0026$262\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$303@1~$304@1~$305@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($302,0)~v:if_($313!=$313@1){$309=$306~$312=close@1~$310=$307~$311=$308~$306=open~}_{}~($310+$311+$312)/3~$8($315)~$8($315*2-$311)~$8($315*2-$310)~$8($315+1*($310-$311))~$8($315-1*($310-$311))~$8($315+2*($310-$311))~$8($315-2*($310-$311))~$8($315)~$8($315+0.382*($310-$311))~$8($315-0.382*($310-$311))~$8($315+0.618*($310-$311))~$8($315-0.618*($310-$311))~$8($315+1*($310-$311))~$8($315-1*($310-$311))~($310+$311+$306*2)/4~$8($330)~$8($330*2-$311)~$8($330*2-$310)~$8($330+1*($310-$311))~$8($330-1*($310-$311))~$8($310+2*($330-$311))~$8($311-2*($310-$330))~$310+$311*2+$312~v:if($312==$309){$338=$310+$311+$312*2~}~v:if($312\u003e$309){$338=$310*2+$311+$312~}~$8($338/4)~$8($338/2-$311)~$8($338/2-$310)~$8($315)~$8($312+0.09166666666666667*($310-$311))~$8($312-0.09166666666666667*($310-$311))~$8($312+0.18333333333333335*($310-$311))~$8($312-0.18333333333333335*($310-$311))~$8($312+0.275*($310-$311))~$8($312-0.275*($310-$311))~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$9!$86!$87!$14!$89!$90!$95!$93!$94!$96!$97!$98!$99!$101!$102!$103!$104!$100!$101!$105!$103!$106!$107!$108!$109!$110!$111!$112!$114!$113!$115!$118!$119!$120!$121!$122!$123!$124!$127!$128!$125!$129!$130!$132!$133!$134!$136!$137!$140!$143!$144!$145!$148!$149!$150!$151!$154!$155!$156!$159!$160!$179!$181!$185!$187!$201!$205!$209!$213!$215!$220!$244!$245!$251!$252!$258!$259!$263!$264!$269!$270!$271!$272!$273!$274!$275!$277!$278!$286!$287!$288!$289!$290!$291!$295!$296!$297!$298!$299!$316!$317!$318!$319!$320!$321!$322!$323!$324!$325!$326!$327!$328!$329!$331!$332!$333!$334!$335!$336!$337!$341!$342!$343!$344!$345!$346!$347!$348!$349!$350;t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$13,$13,0,1,0,'NONE',0,0,$14)|$9():s3|s215:$10($16,$17,$18):s215~$20!$21!$22!$23!$24!$25!$26!$27!$28!$105!$30!$31!$32!$33!$108!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$123!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234", + "defval": "change(high)~(-change(low))~rma(tr,#0)~fixnan(100*rma($0\u003e$1\u0026\u0026$0\u003e0?$0:0,#0)/$2)~fixnan(100*rma($1\u003e$0\u0026\u0026$1\u003e0?$1:0,#0)/$2)~$3!$4;s2:$0(i:#0):s2~$0+$1~100*rma(abs($0-$1)/($2==0?1:$2),#1)~$3!$0!$1;close@1\u003clow?close@1:low;sum(tr,#0)~sum(tr,#1)~sum(tr,#2)~close-$2()~sum($3,#0)~sum($3,#1)~sum($3,#2)~na():f~v:if($0!=0\u0026\u0026$1!=0\u0026\u0026$2!=0){i:#2/#0~i:#2/#1~($4/$0)*$8~($5/$1)*$9~$6/$2~$7=($10+$11+$12)/($8+$9+1)~}~$7;avg(lowest(#0),highest(#0));$4(i:#0)~$4(i:#1)~avg($0,$1)~$4(i:#2)~$0!$1!$2!$3;na(#0)||na(#1)?na():f:#0==#1?0:#0\u003c#1?1:(-1);#0?1:#1?(-1):0;#0\u003c=0?na():f:#0;open~high~low~$0!$1!$2;s3:$9():s3;sma(close,3)~sma(close,5)~sma(close,6)~sma(close,7)~sma(close,8)~sma(close,9)~sma(close,10)~sma(close,12)~sma(close,13)~sma(close,20)~sma(close,21)~sma(close,25)~sma(close,30)~sma(close,40)~sma(close,50)~sma(close,75)~sma(close,100)~sma(close,120)~sma(close,150)~sma(close,200)~sma(close,250)~sma(close,300)~ema(close,3)~ema(close,5)~ema(close,6)~ema(close,7)~ema(close,8)~ema(close,9)~ema(close,10)~ema(close,12)~ema(close,13)~ema(close,20)~ema(close,21)~ema(close,25)~ema(close,30)~ema(close,40)~ema(close,50)~ema(close,75)~ema(close,100)~ema(close,120)~ema(close,150)~ema(close,200)~ema(close,250)~ema(close,300)~rsi(close,14)~$44@1~rsi(close,2)~$46@1~rsi(close,3)~$48@1~rsi(close,5)~$50@1~rsi(close,7)~$52@1~rsi(close,9)~$54@1~rsi(close,21)~$56@1~rma(tr(1.0),14)~$58~$58=rma(tr(1.0),20)~$58~$58=rma(tr(1.0),1)~$58~($58/close)*100~s3:$1(i:14,i:14):s3~$64@1~$65@1~s3:$1(i:9,i:9):s3~$69@1~$70@1~s3:$1(i:20,i:20):s3~$74@1~$75@1~s3:$1(i:50,i:50):s3~$79@1~$80@1~s3:$1(i:100,i:100):s3~$84@1~$85@1~2*stdev(close,20,1.0)~$9+$88~$9-$88~2*stdev(close,50,1.0)~$14+$91~$14-$91~$29~ema(close,26)~$94-$95~ema($96,9)~$96-$97~close-close@10~$99@1~close-close@14~$101@1~close-close@80~$103@1~stoch(close,high,low,14)~sma($105,3)~sma($106,3)~$106~$107~$106@1~$107@1~sma($105,3)~$105@1~$112@1~stoch(close,high,low,5)~$106=sma($115,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($115,3)~$115@1~$120@1~stoch(close,high,low,9)~$106=sma($123,3)~$107=sma($106,3)~$106~$107~$106@1~$107@1~sma($123,3)~$123@1~$128@1~sma(volume,10)~volume/$131@1~sma(volume,30)~sma(volume,60)~sma(volume,90)~cci(hlc3,20)~$136~$136@1~$136=cci(close,20)~$136~$136@1~$136=cci(close,7)~$136~$136@1~$136=cci(hlc3,14)~$136~$136@1~$136=cci(hlc3,100)~$136~$136@1~highest(20)~lowest(20)~$148~$147~avg($147,$148)~$147=highest(96)~$148=lowest(96)~$148~$147~avg($147,$148)~$147=highest(13)~$148=lowest(13)~$148~$147~avg($147,$148)~$147=highest(10)~$148=lowest(10)~$148~$147~avg($147,$148)~$147=highest(1)~$148=lowest(1)~$148~$147~avg($147,$148)~2*wma(close,4)~wma(close,9)~wma($164-$165,3)~$164=2*wma(close,100)~$165=wma(close,200)~wma($164-$165,14)~$164=2*wma(close,864)~$165=wma(close,1728)~wma($164-$165,41)~$164=2*wma(close,25)~$165=wma(close,50)~wma($164-$165,7)~$164=2*wma(close,50)~$165=wma(close,100)~wma($164-$165,10)~$164=2*wma(close,10)~$165=wma(close,20)~wma($164-$165,4)~$164=2*wma(close,72)~$165=wma(close,144)~wma($164-$165,12)~$164=2*wma(close,128)~$165=wma(close,256)~wma($164-$165,16)~sma(hl2,5)-sma(hl2,34)~$174@1~$174@2~100*(highestbars(high,15)+14)/14~100*(lowestbars(low,15)+14)/14~100*(highestbars(high,26)+25)/25~100*(lowestbars(low,26)+25)/25~(volume*close)*syminfo.pointvalue~$31~atr(10)~$182+$183*2~$182-$183*2~sar(0.02,0.02,0.2)~mfi(hlc3,14)~mfi(hlc3,12)~!(close==low\u0026\u0026close==high||high==low)?((close-low-(high-close))/(high-low))*volume:0~sum($189,20)/sum(volume,20)~sma(stoch($44,$44,$44,14),3)~sma($191,3)~highest(high,14)~(($193-close)/($193-lowest(low,14)))*(-100)~$194~$193=highest(high,10)~$194=(($193-close)/($193-lowest(low,10)))*(-100)~$194~$193=highest(high,12)~$194=(($193-close)/($193-lowest(low,12)))*(-100)~$194~roc(close,9)~roc(close,1)~roc(close,14)~roc(close,2)~roc(close,12)~high-$30~low-$30~$203+$204~$3(i:7,i:14,i:28)~v:if(!na($206)){$206=$206*100~}~$206~s4:$5(i:9,i:26,i:52):s4~$211@25~$212@25~s4:$5(i:20,i:60,i:120):s4~$217@30~$218@30~vwma(close,20)~$221~$221=vwma(close,200)~$221~$221=vwma(close,50)~$221~sma(high,14)~sma(low,14)~$225-$226~($227/close)*100~$36~close\u003c$229~close\u003e$229~0.0~0.0~v:if(!na(close)){v:if(!na($6)){$232=$232+$6($6,close)~$233=$233+1~}~v:if(!na($9)){$232=$232+$6($9,close)~$233=$233+1~}~v:if(!na($12)){$232=$232+$6($12,close)~$233=$233+1~}~v:if(!na($14)){$232=$232+$6($14,close)~$233=$233+1~}~v:if(!na($16)){$232=$232+$6($16,close)~$233=$233+1~}~v:if(!na($19)){$232=$232+$6($19,close)~$233=$233+1~}~v:if(!na($28)){$232=$232+$6($28,close)~$233=$233+1~}~v:if(!na($31)){$232=$232+$6($31,close)~$233=$233+1~}~v:if(!na($34)){$232=$232+$6($34,close)~$233=$233+1~}~v:if(!na($36)){$232=$232+$6($36,close)~$233=$233+1~}~v:if(!na($38)){$232=$232+$6($38,close)~$233=$233+1~}~v:if(!na($41)){$232=$232+$6($41,close)~$233=$233+1~}~}~$6($166,close)~v:if(!na($247)){$232=$232+$247~$233=$233+1~}~$6($221,close)~v:if(!na($249)){$232=$232+$249~$233=$233+1~}~na():f~v:if(!(na($211)||na($212)||na(close)||na(close@1)||na($210)||na($209))){$251=$7($211\u003e$212\u0026\u0026close\u003e$211\u0026\u0026close\u003c$210\u0026\u0026close@1\u003c$209\u0026\u0026close\u003e$209,$212\u003e$211\u0026\u0026close\u003c$212\u0026\u0026close\u003e$210\u0026\u0026close@1\u003e$209\u0026\u0026close\u003c$209)~}~$251~v:if(!na($251)){$232=$232+$251~$233=$233+1~}~$232=$233\u003e0?$232/$233:na():f~$232~0.0~0.0~$44~v:if(!(na($258)||na($258@1))){$257=$257+1~$256=$256+$7($258\u003c30\u0026\u0026$258@1\u003c$258,$258\u003e70\u0026\u0026$258@1\u003e$258)~}~v:if(!(na($106)||na($107)||na($106@1)||na($107@1))){$257=$257+1~$256=$256+$7($106\u003c20\u0026\u0026$107\u003c20\u0026\u0026$106\u003e$107\u0026\u0026$106@1\u003c$107@1,$106\u003e80\u0026\u0026$107\u003e80\u0026\u0026$106\u003c$107\u0026\u0026$106@1\u003e$107@1)~}~$136~v:if(!(na($261)||na($261@1))){$257=$257+1~$256=$256+$7($261\u003c(-100)\u0026\u0026$261\u003e$261@1,$261\u003e100\u0026\u0026$261\u003c$261@1)~}~v:if(!(na($63)||na($64@1)||na($65@1)||na($64)||na($65))){$257=$257+1~$256=$256+$7($63\u003e20\u0026\u0026$64@1\u003c$65@1\u0026\u0026$64\u003e$65,$63\u003e20\u0026\u0026$64@1\u003e$65@1\u0026\u0026$64\u003c$65)~}~v:if(!(na($174)||na($174@1))){$257=$257+1~$256=$256+$7(crossover($174,0)||$174\u003e0\u0026\u0026$174@1\u003e0\u0026\u0026$174\u003e$174@1\u0026\u0026$174@2\u003e$174@1,crossunder($174,0)||$174\u003c0\u0026\u0026$174@1\u003c0\u0026\u0026$174\u003c$174@1\u0026\u0026$174@2\u003c$174@1)~}~v:if(!(na($99)||na($99@1))){$257=$257+1~$256=$256+$7($99\u003e$99@1,$99\u003c$99@1)~}~v:if(!(na($96)||na($97))){$257=$257+1~$256=$256+$7($96\u003e$97,$96\u003c$97)~}~na():f~v:if(!(na($230)||na($231)||na($191)||na($192)||na($191@1)||na($192@1))){$267=$7($230\u0026\u0026$191\u003c20\u0026\u0026$192\u003c20\u0026\u0026$191\u003e$192\u0026\u0026$191@1\u003c$192@1,$231\u0026\u0026$191\u003e80\u0026\u0026$192\u003e80\u0026\u0026$191\u003c$192\u0026\u0026$191@1\u003e$192@1)~}~$267~v:if(!na($267)){$257=$257+1~$256=$256+$267~}~na():f~v:if(!(na($194)||na($194@1))){$271=$7($194\u003c(-80)\u0026\u0026$194\u003e$194@1,$194\u003e(-20)\u0026\u0026$194\u003c$194@1)~}~$271~v:if(!na($271)){$257=$257+1~$256=$256+$271~}~na():f~v:if(!(na($231)||na($230)||na($204)||na($204@1)||na($203)||na($203@1))){$275=$7($231\u0026\u0026$204\u003c0\u0026\u0026$204\u003e$204@1,$230\u0026\u0026$203\u003e0\u0026\u0026$203\u003c$203@1)~}~$275~v:if(!na($275)){$257=$257+1~$256=$256+$275~}~na():f~v:if(!na($206)){$279=$7($206\u003e70,$206\u003c30)~}~$279~v:if(!na($279)){$257=$257+1~$256=$256+$279~}~$256=$257\u003e0?$256/$257:na():f~$256~0.0~0.0~v:if(!na($232)){$284=$284+$232~$285=$285+1~}~v:if(!na($256)){$284=$284+$256~$285=$285+1~}~$284=$285\u003e0?$284/$285:na():f~$284~$14~max(close,open)~min(close,open)~$290-$291~sma($292,14)~$292\u003c$293~$292\u003e$293~high-$290~$291-low~close\u003c$289~close\u003e$289~$296\u003e0*$292~$297\u003e0*$292~open\u003cclose~open\u003eclose~high-low~$292/2+$291~$296==$297||(abs($296-$297)/$297)*100\u003c100\u0026\u0026(abs($297-$296)/$296)*100\u003c100~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$291\u003ehl2\u0026\u0026$297\u003e=2.0*$292\u0026\u0026!$300){v:if_($298){$307=1.0~}_{v:if($299){$308=1.0~}~}~}~$307?1:0~$308?1:0~0.0~0.0~v:if($294\u0026\u0026$292\u003e0\u0026\u0026$290\u003chl2\u0026\u0026$296\u003e=2.0*$292\u0026\u0026!$301){v:if_($298){$314=1.0~}_{v:if($299){$315=1.0~}~}~}~$314?1:0~$315?1:0~0.0~0.0~v:if($295@2\u0026\u0026$294@1\u0026\u0026$295){v:if_($298\u0026\u0026$303@2\u0026\u0026$290@1\u003c$291@2\u0026\u0026$302\u0026\u0026$290\u003e=$305@2\u0026\u0026$290\u003c$290@2\u0026\u0026$290@1\u003c$291){$321=1.0~}_{v:if($299\u0026\u0026$302@2\u0026\u0026$291@1\u003e$290@2\u0026\u0026$303\u0026\u0026$291\u003c=$305@2\u0026\u0026$291\u003e$291@2\u0026\u0026$291@1\u003e$290){$322=1.0~}~}~}~$321?1:0~$322?1:0~$295\u0026\u0026$296\u003c=0*$292\u0026\u0026$297\u003c=0*$292~$328\u0026\u0026$302~$328\u0026\u0026$303~$330?1:0~$329?1:0~$304\u003e0\u0026\u0026$292\u003c=$304*5/100~$333\u0026\u0026$306~$333\u0026\u0026$296\u003c=$292~$333\u0026\u0026$297\u003c=$292~$334\u0026\u0026!$335\u0026\u0026!$336?1:0~$335?1:0~$336?1:0~$295@1\u0026\u0026$303@1\u0026\u0026$298@1\u0026\u0026$302\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$295@1\u0026\u0026$302@1\u0026\u0026$299@1\u0026\u0026$303\u0026\u0026$294\u0026\u0026high\u003c=$290@1\u0026\u0026low\u003e=$291@1?1:0~$297\u003e($304/100)*75?1:0~$296\u003e($304/100)*75?1:0~$297\u003e=($304/100)*34\u0026\u0026$296\u003e=($304/100)*34\u0026\u0026!$333~$344\u0026\u0026$302?1:0~$344\u0026\u0026$303?1:0~$304*5/100\u003e$296~$304*5/100\u003e$297~0.0~0.0~v:if($295\u0026\u0026$295@1\u0026\u0026$295@2){v:if($302\u0026\u0026$302@1\u0026\u0026$302@2){$349=close\u003eclose@1\u0026\u0026close@1\u003eclose@2\u0026\u0026open\u003cclose@1\u0026\u0026open\u003eopen@1\u0026\u0026open@1\u003cclose@2\u0026\u0026open@1\u003eopen@2\u0026\u0026$347\u0026\u0026$347@1\u0026\u0026$347@2~}~v:if($303\u0026\u0026$303@1\u0026\u0026$303@2){$350=close\u003cclose@1\u0026\u0026close@1\u003cclose@2\u0026\u0026open\u003eclose@1\u0026\u0026open\u003copen@1\u0026\u0026open@1\u003eclose@2\u0026\u0026open@1\u003copen@2\u0026\u0026$348\u0026\u0026$348@1\u0026\u0026$348@2~}~}~$349?1:0~$350?1:0~$298\u0026\u0026$302\u0026\u0026$295\u0026\u0026$303@1\u0026\u0026$294@1\u0026\u0026close\u003e=open@1\u0026\u0026open\u003c=close@1\u0026\u0026(close\u003eopen@1||open\u003cclose@1)?1:0~$299\u0026\u0026$303\u0026\u0026$295\u0026\u0026$302@1\u0026\u0026$294@1\u0026\u0026close\u003c=open@1\u0026\u0026open\u003e=close@1\u0026\u0026(close\u003copen@1||open\u003eclose@1)?1:0~$298@2\u0026\u0026$303@2\u0026\u0026$333@1\u0026\u0026low@2\u003ehigh@1\u0026\u0026$302\u0026\u0026high@1\u003clow?1:0~$299@2\u0026\u0026$302@2\u0026\u0026$333@1\u0026\u0026high@2\u003clow@1\u0026\u0026$303\u0026\u0026low@1\u003ehigh?1:0~$334@2\u0026\u0026$334@1\u0026\u0026$334~$290@1\u003c$291~$291@1\u003e$290~$360\u0026\u0026$298@2\u0026\u0026$362@1\u0026\u0026$361?1:0~$360\u0026\u0026$299@2\u0026\u0026$361@1\u0026\u0026$362?1:0~$330@1\u0026\u0026$329\u0026\u0026high@1\u003clow?1:0~$329@1\u0026\u0026$330\u0026\u0026low@1\u003ehigh?1:0~vwap(hlc3)~v^t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~#0~#1~#2~$371@1~$372@1~$373@1~v^0.0~v^0.0~v^0.0~v^0.0~timeV5($370,0)~v:if_($381!=$381@1){$377=$374~$380=close@1~$378=$375~$379=$376~$374=open~}_{}~($378+$379+$380)/3~$8($383)~$8($383*2-$379)~$8($383*2-$378)~$8($383+1*($378-$379))~$8($383-1*($378-$379))~$8($383+2*($378-$379))~$8($383-2*($378-$379))~$8($383)~$8($383+0.382*($378-$379))~$8($383-0.382*($378-$379))~$8($383+0.618*($378-$379))~$8($383-0.618*($378-$379))~$8($383+1*($378-$379))~$8($383-1*($378-$379))~($378+$379+$374*2)/4~$8($398)~$8($398*2-$379)~$8($398*2-$378)~$8($398+1*($378-$379))~$8($398-1*($378-$379))~$8($378+2*($398-$379))~$8($379-2*($378-$398))~$378+$379*2+$380~v:if($380==$377){$406=$378+$379+$380*2~}~v:if($380\u003e$377){$406=$378*2+$379+$380~}~$8($406/4)~$8($406/2-$379)~$8($406/2-$378)~$8($383)~$8($380+0.09166666666666667*($378-$379))~$8($380-0.09166666666666667*($378-$379))~$8($380+0.18333333333333335*($378-$379))~$8($380-0.18333333333333335*($378-$379))~$8($380+0.275*($378-$379))~$8($380-0.275*($378-$379))~$0!$1!$2!$3!$4!$5!$6!$7!$8!$9!$10!$11!$12!$13!$14!$15!$16!$17!$18!$19!$20!$21!$22!$23!$24!$25!$26!$27!$28!$29!$30!$31!$32!$33!$34!$35!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$9!$89!$90!$14!$92!$93!$98!$96!$97!$99!$100!$101!$102!$103!$104!$108!$109!$110!$111!$105!$112!$113!$114!$116!$117!$118!$119!$115!$120!$121!$122!$124!$125!$126!$127!$123!$128!$129!$130!$131!$132!$133!$134!$135!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$184!$185!$182!$186!$187!$188!$190!$191!$192!$195!$196!$197!$198!$199!$200!$201!$202!$205!$208!$209!$210!$213!$214!$215!$216!$219!$220!$222!$223!$224!$227!$228!$247!$249!$253!$255!$269!$273!$277!$281!$283!$288!$312!$313!$319!$320!$326!$327!$331!$332!$337!$338!$339!$340!$341!$342!$343!$345!$346!$354!$355!$356!$357!$358!$359!$363!$364!$365!$366!$367!$384!$385!$386!$387!$388!$389!$390!$391!$392!$393!$394!$395!$396!$397!$399!$400!$401!$402!$403!$404!$405!$409!$410!$411!$412!$413!$414!$415!$416!$417!$418;t:if_(isintraday){t:interval\u003c=15?'1D':'1W'}_{t:isweekly||ismonthly?'12M':'1M'}~i:na():f~sym(tickerid,$14,$14,0,1,0,'NONE',0,0,$15)|$10():s3|s273:$11($17,$18,$19):s273~$21!$22!$23!$24!$25!$26!$27!$28!$29!$108!$31!$32!$33!$34!$111!$36!$37!$38!$39!$40!$41!$42!$43!$44!$45!$46!$47!$48!$49!$50!$51!$52!$53!$54!$55!$56!$57!$58!$59!$60!$61!$62!$63!$64!$65!$66!$67!$68!$69!$70!$71!$72!$73!$74!$75!$76!$77!$78!$79!$80!$81!$82!$83!$84!$85!$86!$87!$88!$89!$90!$91!$92!$93!$94!$95!$96!$97!$98!$99!$100!$101!$102!$103!$104!$105!$106!$107!$108!$109!$110!$111!$112!$113!$114!$115!$116!$117!$118!$119!$120!$121!$122!$123!$124!$125!$126!$127!$128!$129!$130!$131!$132!$133!$134!$135!$136!$137!$138!$139!$140!$141!$142!$143!$144!$145!$146!$147!$148!$149!$150!$151!$152!$153!$154!$155!$156!$157!$158!$159!$160!$161!$162!$163!$164!$165!$166!$167!$168!$169!$170!$171!$172!$173!$174!$175!$176!$177!$178!$179!$180!$181!$182!$183!$184!$185!$186!$187!$188!$189!$190!$191!$192!$193!$194!$195!$196!$197!$198!$199!$200!$201!$202!$203!$204!$205!$206!$207!$208!$209!$210!$211!$212!$213!$214!$215!$216!$217!$218!$219!$220!$221!$222!$223!$224!$225!$226!$227!$228!$229!$230!$231!$232!$233!$234!$235!$236!$237!$238!$239!$240!$241!$242!$243!$244!$245!$246!$247!$248!$249!$250!$251!$252!$253!$254!$255!$256!$257!$258!$259!$260!$261!$262!$263!$264!$265!$266!$267!$268!$269!$270!$271!$272!$273!$274!$275!$276!$277!$278!$279!$280!$281!$282!$283!$284!$285!$286!$287!$288!$289!$290!$291!$292!$293", "isFake": false }, { @@ -882,6 +882,238 @@ { "id": "plot_214", "type": "line" + }, + { + "id": "plot_215", + "type": "line" + }, + { + "id": "plot_216", + "type": "line" + }, + { + "id": "plot_217", + "type": "line" + }, + { + "id": "plot_218", + "type": "line" + }, + { + "id": "plot_219", + "type": "line" + }, + { + "id": "plot_220", + "type": "line" + }, + { + "id": "plot_221", + "type": "line" + }, + { + "id": "plot_222", + "type": "line" + }, + { + "id": "plot_223", + "type": "line" + }, + { + "id": "plot_224", + "type": "line" + }, + { + "id": "plot_225", + "type": "line" + }, + { + "id": "plot_226", + "type": "line" + }, + { + "id": "plot_227", + "type": "line" + }, + { + "id": "plot_228", + "type": "line" + }, + { + "id": "plot_229", + "type": "line" + }, + { + "id": "plot_230", + "type": "line" + }, + { + "id": "plot_231", + "type": "line" + }, + { + "id": "plot_232", + "type": "line" + }, + { + "id": "plot_233", + "type": "line" + }, + { + "id": "plot_234", + "type": "line" + }, + { + "id": "plot_235", + "type": "line" + }, + { + "id": "plot_236", + "type": "line" + }, + { + "id": "plot_237", + "type": "line" + }, + { + "id": "plot_238", + "type": "line" + }, + { + "id": "plot_239", + "type": "line" + }, + { + "id": "plot_240", + "type": "line" + }, + { + "id": "plot_241", + "type": "line" + }, + { + "id": "plot_242", + "type": "line" + }, + { + "id": "plot_243", + "type": "line" + }, + { + "id": "plot_244", + "type": "line" + }, + { + "id": "plot_245", + "type": "line" + }, + { + "id": "plot_246", + "type": "line" + }, + { + "id": "plot_247", + "type": "line" + }, + { + "id": "plot_248", + "type": "line" + }, + { + "id": "plot_249", + "type": "line" + }, + { + "id": "plot_250", + "type": "line" + }, + { + "id": "plot_251", + "type": "line" + }, + { + "id": "plot_252", + "type": "line" + }, + { + "id": "plot_253", + "type": "line" + }, + { + "id": "plot_254", + "type": "line" + }, + { + "id": "plot_255", + "type": "line" + }, + { + "id": "plot_256", + "type": "line" + }, + { + "id": "plot_257", + "type": "line" + }, + { + "id": "plot_258", + "type": "line" + }, + { + "id": "plot_259", + "type": "line" + }, + { + "id": "plot_260", + "type": "line" + }, + { + "id": "plot_261", + "type": "line" + }, + { + "id": "plot_262", + "type": "line" + }, + { + "id": "plot_263", + "type": "line" + }, + { + "id": "plot_264", + "type": "line" + }, + { + "id": "plot_265", + "type": "line" + }, + { + "id": "plot_266", + "type": "line" + }, + { + "id": "plot_267", + "type": "line" + }, + { + "id": "plot_268", + "type": "line" + }, + { + "id": "plot_269", + "type": "line" + }, + { + "id": "plot_270", + "type": "line" + }, + { + "id": "plot_271", + "type": "line" + }, + { + "id": "plot_272", + "type": "line" } ], "version": "", @@ -903,43 +1135,43 @@ "isHidden": false }, "plot_100": { - "title": "Stoch.K[1]", + "title": "Mom_80", "isHidden": false }, "plot_101": { - "title": "Stoch.D[1]", + "title": "Mom_80[1]", "isHidden": false }, "plot_102": { - "title": "Stoch.K_14_1_3", + "title": "Stoch.K", "isHidden": false }, "plot_103": { - "title": "Stoch.D_14_1_3", + "title": "Stoch.D", "isHidden": false }, "plot_104": { - "title": "Stoch.K[1]_14_1_3", + "title": "Stoch.K[1]", "isHidden": false }, "plot_105": { - "title": "Stoch.D[1]_14_1_3", + "title": "Stoch.D[1]", "isHidden": false }, "plot_106": { - "title": "average_volume_10d_calc", + "title": "Stoch.K_14_1_3", "isHidden": false }, "plot_107": { - "title": "relative_volume_10d_calc", + "title": "Stoch.D_14_1_3", "isHidden": false }, "plot_108": { - "title": "average_volume_30d_calc", + "title": "Stoch.K[1]_14_1_3", "isHidden": false }, "plot_109": { - "title": "average_volume_60d_calc", + "title": "Stoch.D[1]_14_1_3", "isHidden": false }, "plot_11": { @@ -947,43 +1179,43 @@ "isHidden": false }, "plot_110": { - "title": "average_volume_90d_calc", + "title": "Stoch5.K", "isHidden": false }, "plot_111": { - "title": "CCI20", + "title": "Stoch5.D", "isHidden": false }, "plot_112": { - "title": "CCI20[1]", + "title": "Stoch5.K[1]", "isHidden": false }, "plot_113": { - "title": "DonchCh20.Lower", + "title": "Stoch5.D[1]", "isHidden": false }, "plot_114": { - "title": "DonchCh20.Upper", + "title": "Stoch5.K_5_1_3", "isHidden": false }, "plot_115": { - "title": "DonchCh20.Middle", + "title": "Stoch5.D_5_1_3", "isHidden": false }, "plot_116": { - "title": "HullMA9", + "title": "Stoch5.K[1]_5_1_3", "isHidden": false }, "plot_117": { - "title": "AO", + "title": "Stoch5.D[1]_5_1_3", "isHidden": false }, "plot_118": { - "title": "AO[1]", + "title": "Stoch9.K", "isHidden": false }, "plot_119": { - "title": "AO[2]", + "title": "Stoch9.D", "isHidden": false }, "plot_12": { @@ -991,43 +1223,43 @@ "isHidden": false }, "plot_120": { - "title": "Aroon.Up", + "title": "Stoch9.K[1]", "isHidden": false }, "plot_121": { - "title": "Aroon.Down", + "title": "Stoch9.D[1]", "isHidden": false }, "plot_122": { - "title": "Value.Traded", + "title": "Stoch9.K_5_1_3", "isHidden": false }, "plot_123": { - "title": "KltChnl.upper", + "title": "Stoch9.D_5_1_3", "isHidden": false }, "plot_124": { - "title": "KltChnl.lower", + "title": "Stoch9.K[1]_5_1_3", "isHidden": false }, "plot_125": { - "title": "KltChnl.basis", + "title": "Stoch9.D[1]_5_1_3", "isHidden": false }, "plot_126": { - "title": "P.SAR", + "title": "average_volume_10d_calc", "isHidden": false }, "plot_127": { - "title": "MoneyFlow", + "title": "relative_volume_10d_calc", "isHidden": false }, "plot_128": { - "title": "ChaikinMoneyFlow", + "title": "average_volume_30d_calc", "isHidden": false }, "plot_129": { - "title": "Stoch.RSI.K", + "title": "average_volume_60d_calc", "isHidden": false }, "plot_13": { @@ -1035,43 +1267,43 @@ "isHidden": false }, "plot_130": { - "title": "Stoch.RSI.D", + "title": "average_volume_90d_calc", "isHidden": false }, "plot_131": { - "title": "W.R", + "title": "CCI20", "isHidden": false }, "plot_132": { - "title": "ROC", + "title": "CCI20[1]", "isHidden": false }, "plot_133": { - "title": "BBPower", + "title": "CCCI20", "isHidden": false }, "plot_134": { - "title": "UO", + "title": "CCCI20[1]", "isHidden": false }, "plot_135": { - "title": "Ichimoku.CLine", + "title": "CCCI7", "isHidden": false }, "plot_136": { - "title": "Ichimoku.BLine", + "title": "CCCI7[1]", "isHidden": false }, "plot_137": { - "title": "Ichimoku.Lead1", + "title": "CCI14", "isHidden": false }, "plot_138": { - "title": "Ichimoku.Lead2", + "title": "CCI14[1]", "isHidden": false }, "plot_139": { - "title": "Ichimoku.CLine_20_60_120_30", + "title": "CCI100", "isHidden": false }, "plot_14": { @@ -1079,361 +1311,593 @@ "isHidden": false }, "plot_140": { - "title": "Ichimoku.BLine_20_60_120_30", + "title": "CCI100[1]", "isHidden": false }, "plot_141": { + "title": "DonchCh20.Lower", + "isHidden": false + }, + "plot_142": { + "title": "DonchCh20.Upper", + "isHidden": false + }, + "plot_143": { + "title": "DonchCh20.Middle", + "isHidden": false + }, + "plot_144": { + "title": "DonchCh96.Lower", + "isHidden": false + }, + "plot_145": { + "title": "DonchCh96.Upper", + "isHidden": false + }, + "plot_146": { + "title": "DonchCh96.Middle", + "isHidden": false + }, + "plot_147": { + "title": "DonchCh13.Lower", + "isHidden": false + }, + "plot_148": { + "title": "DonchCh13.Upper", + "isHidden": false + }, + "plot_149": { + "title": "DonchCh13.Middle", + "isHidden": false + }, + "plot_15": { + "title": "SMA75", + "isHidden": false + }, + "plot_150": { + "title": "DonchCh10.Lower", + "isHidden": false + }, + "plot_151": { + "title": "DonchCh10.Upper", + "isHidden": false + }, + "plot_152": { + "title": "DonchCh10.Middle", + "isHidden": false + }, + "plot_153": { + "title": "DonchCh1.Lower", + "isHidden": false + }, + "plot_154": { + "title": "DonchCh1.Upper", + "isHidden": false + }, + "plot_155": { + "title": "DonchCh1.Middle", + "isHidden": false + }, + "plot_156": { + "title": "HullMA9", + "isHidden": false + }, + "plot_157": { + "title": "HullMA200", + "isHidden": false + }, + "plot_158": { + "title": "HullMA1728", + "isHidden": false + }, + "plot_159": { + "title": "HullMA50", + "isHidden": false + }, + "plot_16": { + "title": "SMA100", + "isHidden": false + }, + "plot_160": { + "title": "HullMA100", + "isHidden": false + }, + "plot_161": { + "title": "HullMA20", + "isHidden": false + }, + "plot_162": { + "title": "HullMA144", + "isHidden": false + }, + "plot_163": { + "title": "HullMA256", + "isHidden": false + }, + "plot_164": { + "title": "AO", + "isHidden": false + }, + "plot_165": { + "title": "AO[1]", + "isHidden": false + }, + "plot_166": { + "title": "AO[2]", + "isHidden": false + }, + "plot_167": { + "title": "Aroon.Up", + "isHidden": false + }, + "plot_168": { + "title": "Aroon.Down", + "isHidden": false + }, + "plot_169": { + "title": "Aroon25.Up", + "isHidden": false + }, + "plot_17": { + "title": "SMA120", + "isHidden": false + }, + "plot_170": { + "title": "Aroon25.Down", + "isHidden": false + }, + "plot_171": { + "title": "Value.Traded", + "isHidden": false + }, + "plot_172": { + "title": "KltChnl.upper", + "isHidden": false + }, + "plot_173": { + "title": "KltChnl.lower", + "isHidden": false + }, + "plot_174": { + "title": "KltChnl.basis", + "isHidden": false + }, + "plot_175": { + "title": "P.SAR", + "isHidden": false + }, + "plot_176": { + "title": "MoneyFlow", + "isHidden": false + }, + "plot_177": { + "title": "MoneyFlow12", + "isHidden": false + }, + "plot_178": { + "title": "ChaikinMoneyFlow", + "isHidden": false + }, + "plot_179": { + "title": "Stoch.RSI.K", + "isHidden": false + }, + "plot_18": { + "title": "SMA150", + "isHidden": false + }, + "plot_180": { + "title": "Stoch.RSI.D", + "isHidden": false + }, + "plot_181": { + "title": "W.R", + "isHidden": false + }, + "plot_182": { + "title": "W.R14", + "isHidden": false + }, + "plot_183": { + "title": "W.R12", + "isHidden": false + }, + "plot_184": { + "title": "ROC", + "isHidden": false + }, + "plot_185": { + "title": "ROC1", + "isHidden": false + }, + "plot_186": { + "title": "ROC14", + "isHidden": false + }, + "plot_187": { + "title": "ROC2", + "isHidden": false + }, + "plot_188": { + "title": "ROC12", + "isHidden": false + }, + "plot_189": { + "title": "BBPower", + "isHidden": false + }, + "plot_19": { + "title": "SMA200", + "isHidden": false + }, + "plot_190": { + "title": "UO", + "isHidden": false + }, + "plot_191": { + "title": "Ichimoku.CLine", + "isHidden": false + }, + "plot_192": { + "title": "Ichimoku.BLine", + "isHidden": false + }, + "plot_193": { + "title": "Ichimoku.Lead1", + "isHidden": false + }, + "plot_194": { + "title": "Ichimoku.Lead2", + "isHidden": false + }, + "plot_195": { + "title": "Ichimoku.CLine_20_60_120_30", + "isHidden": false + }, + "plot_196": { + "title": "Ichimoku.BLine_20_60_120_30", + "isHidden": false + }, + "plot_197": { "title": "Ichimoku.Lead1_20_60_120_30", "isHidden": false }, - "plot_142": { - "title": "Ichimoku.Lead2_20_60_120_30", + "plot_198": { + "title": "Ichimoku.Lead2_20_60_120_30", + "isHidden": false + }, + "plot_199": { + "title": "VWMA", + "isHidden": false + }, + "plot_2": { + "title": "SMA6", + "isHidden": false + }, + "plot_20": { + "title": "SMA250", + "isHidden": false + }, + "plot_200": { + "title": "VWMA200", "isHidden": false }, - "plot_143": { - "title": "VWMA", + "plot_201": { + "title": "VWMA50", "isHidden": false }, - "plot_144": { + "plot_202": { "title": "ADR", "isHidden": false }, - "plot_145": { + "plot_203": { "title": "ADRP", "isHidden": false }, - "plot_146": { + "plot_204": { "title": "Rec.HullMA9", "isHidden": false }, - "plot_147": { + "plot_205": { "title": "Rec.VWMA", "isHidden": false }, - "plot_148": { + "plot_206": { "title": "Rec.Ichimoku", "isHidden": false }, - "plot_149": { + "plot_207": { "title": "Recommend.MA", "isHidden": false }, - "plot_15": { - "title": "SMA75", - "isHidden": false - }, - "plot_150": { + "plot_208": { "title": "Rec.Stoch.RSI", "isHidden": false }, - "plot_151": { + "plot_209": { "title": "Rec.WR", "isHidden": false }, - "plot_152": { + "plot_21": { + "title": "SMA300", + "isHidden": false + }, + "plot_210": { "title": "Rec.BBPower", "isHidden": false }, - "plot_153": { + "plot_211": { "title": "Rec.UO", "isHidden": false }, - "plot_154": { + "plot_212": { "title": "Recommend.Other", "isHidden": false }, - "plot_155": { + "plot_213": { "title": "Recommend.All", "isHidden": false }, - "plot_156": { + "plot_214": { "title": "Candle.Hammer", "isHidden": false }, - "plot_157": { + "plot_215": { "title": "Candle.HangingMan", "isHidden": false }, - "plot_158": { + "plot_216": { "title": "Candle.InvertedHammer", "isHidden": false }, - "plot_159": { + "plot_217": { "title": "Candle.ShootingStar", "isHidden": false }, - "plot_16": { - "title": "SMA100", - "isHidden": false - }, - "plot_160": { + "plot_218": { "title": "Candle.MorningStar", "isHidden": false }, - "plot_161": { + "plot_219": { "title": "Candle.EveningStar", "isHidden": false }, - "plot_162": { + "plot_22": { + "title": "EMA3", + "isHidden": false + }, + "plot_220": { "title": "Candle.Marubozu.Black", "isHidden": false }, - "plot_163": { + "plot_221": { "title": "Candle.Marubozu.White", "isHidden": false }, - "plot_164": { + "plot_222": { "title": "Candle.Doji", "isHidden": false }, - "plot_165": { + "plot_223": { "title": "Candle.Doji.Dragonfly", "isHidden": false }, - "plot_166": { + "plot_224": { "title": "Candle.Doji.Gravestone", "isHidden": false }, - "plot_167": { + "plot_225": { "title": "Candle.Harami.Bullish", "isHidden": false }, - "plot_168": { + "plot_226": { "title": "Candle.Harami.Bearish", "isHidden": false }, - "plot_169": { + "plot_227": { "title": "Candle.LongShadow.Lower", "isHidden": false }, - "plot_17": { - "title": "SMA120", - "isHidden": false - }, - "plot_170": { + "plot_228": { "title": "Candle.LongShadow.Upper", "isHidden": false }, - "plot_171": { + "plot_229": { "title": "Candle.SpinningTop.White", "isHidden": false }, - "plot_172": { + "plot_23": { + "title": "EMA5", + "isHidden": false + }, + "plot_230": { "title": "Candle.SpinningTop.Black", "isHidden": false }, - "plot_173": { + "plot_231": { "title": "Candle.3WhiteSoldiers", "isHidden": false }, - "plot_174": { + "plot_232": { "title": "Candle.3BlackCrows", "isHidden": false }, - "plot_175": { + "plot_233": { "title": "Candle.Engulfing.Bullish", "isHidden": false }, - "plot_176": { + "plot_234": { "title": "Candle.Engulfing.Bearish", "isHidden": false }, - "plot_177": { + "plot_235": { "title": "Candle.AbandonedBaby.Bullish", "isHidden": false }, - "plot_178": { + "plot_236": { "title": "Candle.AbandonedBaby.Bearish", "isHidden": false }, - "plot_179": { + "plot_237": { "title": "Candle.TriStar.Bullish", "isHidden": false }, - "plot_18": { - "title": "SMA150", - "isHidden": false - }, - "plot_180": { + "plot_238": { "title": "Candle.TriStar.Bearish", "isHidden": false }, - "plot_181": { + "plot_239": { "title": "Candle.Kicking.Bullish", "isHidden": false }, - "plot_182": { + "plot_24": { + "title": "EMA6", + "isHidden": false + }, + "plot_240": { "title": "Candle.Kicking.Bearish", "isHidden": false }, - "plot_183": { + "plot_241": { "title": "VWAP", "isHidden": false }, - "plot_184": { + "plot_242": { "title": "Pivot.M.Classic.Middle", "isHidden": false }, - "plot_185": { + "plot_243": { "title": "Pivot.M.Classic.R1", "isHidden": false }, - "plot_186": { + "plot_244": { "title": "Pivot.M.Classic.S1", "isHidden": false }, - "plot_187": { + "plot_245": { "title": "Pivot.M.Classic.R2", "isHidden": false }, - "plot_188": { + "plot_246": { "title": "Pivot.M.Classic.S2", "isHidden": false }, - "plot_189": { + "plot_247": { "title": "Pivot.M.Classic.R3", "isHidden": false }, - "plot_19": { - "title": "SMA200", - "isHidden": false - }, - "plot_190": { + "plot_248": { "title": "Pivot.M.Classic.S3", "isHidden": false }, - "plot_191": { + "plot_249": { "title": "Pivot.M.Fibonacci.Middle", "isHidden": false }, - "plot_192": { + "plot_25": { + "title": "EMA7", + "isHidden": false + }, + "plot_250": { "title": "Pivot.M.Fibonacci.R1", "isHidden": false }, - "plot_193": { + "plot_251": { "title": "Pivot.M.Fibonacci.S1", "isHidden": false }, - "plot_194": { + "plot_252": { "title": "Pivot.M.Fibonacci.R2", "isHidden": false }, - "plot_195": { + "plot_253": { "title": "Pivot.M.Fibonacci.S2", "isHidden": false }, - "plot_196": { + "plot_254": { "title": "Pivot.M.Fibonacci.R3", "isHidden": false }, - "plot_197": { + "plot_255": { "title": "Pivot.M.Fibonacci.S3", "isHidden": false }, - "plot_198": { + "plot_256": { "title": "Pivot.M.Woodie.Middle", "isHidden": false }, - "plot_199": { + "plot_257": { "title": "Pivot.M.Woodie.R1", "isHidden": false }, - "plot_2": { - "title": "SMA6", - "isHidden": false - }, - "plot_20": { - "title": "SMA250", - "isHidden": false - }, - "plot_200": { + "plot_258": { "title": "Pivot.M.Woodie.S1", "isHidden": false }, - "plot_201": { + "plot_259": { "title": "Pivot.M.Woodie.R2", "isHidden": false }, - "plot_202": { + "plot_26": { + "title": "EMA8", + "isHidden": false + }, + "plot_260": { "title": "Pivot.M.Woodie.S2", "isHidden": false }, - "plot_203": { + "plot_261": { "title": "Pivot.M.Woodie.R3", "isHidden": false }, - "plot_204": { + "plot_262": { "title": "Pivot.M.Woodie.S3", "isHidden": false }, - "plot_205": { + "plot_263": { "title": "Pivot.M.Demark.Middle", "isHidden": false }, - "plot_206": { + "plot_264": { "title": "Pivot.M.Demark.R1", "isHidden": false }, - "plot_207": { + "plot_265": { "title": "Pivot.M.Demark.S1", "isHidden": false }, - "plot_208": { + "plot_266": { "title": "Pivot.M.Camarilla.Middle", "isHidden": false }, - "plot_209": { + "plot_267": { "title": "Pivot.M.Camarilla.R1", "isHidden": false }, - "plot_21": { - "title": "SMA300", - "isHidden": false - }, - "plot_210": { + "plot_268": { "title": "Pivot.M.Camarilla.S1", "isHidden": false }, - "plot_211": { + "plot_269": { "title": "Pivot.M.Camarilla.R2", "isHidden": false }, - "plot_212": { + "plot_27": { + "title": "EMA9", + "isHidden": false + }, + "plot_270": { "title": "Pivot.M.Camarilla.S2", "isHidden": false }, - "plot_213": { + "plot_271": { "title": "Pivot.M.Camarilla.R3", "isHidden": false }, - "plot_214": { + "plot_272": { "title": "Pivot.M.Camarilla.S3", "isHidden": false }, - "plot_22": { - "title": "EMA3", - "isHidden": false - }, - "plot_23": { - "title": "EMA5", - "isHidden": false - }, - "plot_24": { - "title": "EMA6", - "isHidden": false - }, - "plot_25": { - "title": "EMA7", - "isHidden": false - }, - "plot_26": { - "title": "EMA8", - "isHidden": false - }, - "plot_27": { - "title": "EMA9", - "isHidden": false - }, "plot_28": { "title": "EMA10", "isHidden": false @@ -1571,7 +2035,7 @@ "isHidden": false }, "plot_59": { - "title": "ATRP", + "title": "ATR20", "isHidden": false }, "plot_6": { @@ -1579,43 +2043,43 @@ "isHidden": false }, "plot_60": { - "title": "ADX", + "title": "ATR1", "isHidden": false }, "plot_61": { - "title": "ADX+DI", + "title": "ATRP", "isHidden": false }, "plot_62": { - "title": "ADX-DI", + "title": "ADX", "isHidden": false }, "plot_63": { - "title": "ADX+DI[1]", + "title": "ADX+DI", "isHidden": false }, "plot_64": { - "title": "ADX-DI[1]", + "title": "ADX-DI", "isHidden": false }, "plot_65": { - "title": "ADX_9", + "title": "ADX+DI[1]", "isHidden": false }, "plot_66": { - "title": "ADX+DI_9", + "title": "ADX-DI[1]", "isHidden": false }, "plot_67": { - "title": "ADX-DI_9", + "title": "ADX_9", "isHidden": false }, "plot_68": { - "title": "ADX+DI_9[1]", + "title": "ADX+DI_9", "isHidden": false }, "plot_69": { - "title": "ADX-DI_9[1]", + "title": "ADX-DI_9", "isHidden": false }, "plot_7": { @@ -1623,43 +2087,43 @@ "isHidden": false }, "plot_70": { - "title": "ADX_20", + "title": "ADX+DI_9[1]", "isHidden": false }, "plot_71": { - "title": "ADX+DI_20", + "title": "ADX-DI_9[1]", "isHidden": false }, "plot_72": { - "title": "ADX-DI_20", + "title": "ADX_20", "isHidden": false }, "plot_73": { - "title": "ADX+DI_20[1]", + "title": "ADX+DI_20", "isHidden": false }, "plot_74": { - "title": "ADX-DI_20[1]", + "title": "ADX-DI_20", "isHidden": false }, "plot_75": { - "title": "ADX_50", + "title": "ADX+DI_20[1]", "isHidden": false }, "plot_76": { - "title": "ADX+DI_50", + "title": "ADX-DI_20[1]", "isHidden": false }, "plot_77": { - "title": "ADX-DI_50", + "title": "ADX_50", "isHidden": false }, "plot_78": { - "title": "ADX+DI_50[1]", + "title": "ADX+DI_50", "isHidden": false }, "plot_79": { - "title": "ADX-DI_50[1]", + "title": "ADX-DI_50", "isHidden": false }, "plot_8": { @@ -1667,43 +2131,43 @@ "isHidden": false }, "plot_80": { - "title": "ADX_100", + "title": "ADX+DI_50[1]", "isHidden": false }, "plot_81": { - "title": "ADX+DI_100", + "title": "ADX-DI_50[1]", "isHidden": false }, "plot_82": { - "title": "ADX-DI_100", + "title": "ADX_100", "isHidden": false }, "plot_83": { - "title": "ADX+DI_100[1]", + "title": "ADX+DI_100", "isHidden": false }, "plot_84": { - "title": "ADX-DI_100[1]", + "title": "ADX-DI_100", "isHidden": false }, "plot_85": { - "title": "BB.basis", + "title": "ADX+DI_100[1]", "isHidden": false }, "plot_86": { - "title": "BB.upper", + "title": "ADX-DI_100[1]", "isHidden": false }, "plot_87": { - "title": "BB.lower", + "title": "BB.basis", "isHidden": false }, "plot_88": { - "title": "BB.basis_50", + "title": "BB.upper", "isHidden": false }, "plot_89": { - "title": "BB.upper_50", + "title": "BB.lower", "isHidden": false }, "plot_9": { @@ -1711,43 +2175,43 @@ "isHidden": false }, "plot_90": { - "title": "BB.lower_50", + "title": "BB.basis_50", "isHidden": false }, "plot_91": { - "title": "MACD.hist", + "title": "BB.upper_50", "isHidden": false }, "plot_92": { - "title": "MACD.macd", + "title": "BB.lower_50", "isHidden": false }, "plot_93": { - "title": "MACD.signal", + "title": "MACD.hist", "isHidden": false }, "plot_94": { - "title": "Mom", + "title": "MACD.macd", "isHidden": false }, "plot_95": { - "title": "Mom[1]", + "title": "MACD.signal", "isHidden": false }, "plot_96": { - "title": "Mom_14", + "title": "Mom", "isHidden": false }, "plot_97": { - "title": "Mom_14[1]", + "title": "Mom[1]", "isHidden": false }, "plot_98": { - "title": "Stoch.K", + "title": "Mom_14", "isHidden": false }, "plot_99": { - "title": "Stoch.D", + "title": "Mom_14[1]", "isHidden": false } }