tradingview_screener.constants
1from __future__ import annotations 2 3 4URL = 'https://scanner.tradingview.com/{market}/scan' 5HEADERS = { 6 'authority': 'scanner.tradingview.com', 7 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="98", "Google Chrome";v="98"', 8 'accept': 'text/plain, */*; q=0.01', 9 'content-type': 'application/x-www-form-urlencoded; charset=UTF-8', 10 'sec-ch-ua-mobile': '?0', 11 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)' 12 'Chrome/98.0.4758.102 Safari/537.36', 13 'sec-ch-ua-platform': '"Windows"', 14 'origin': 'https://www.tradingview.com', 15 'sec-fetch-site': 'same-site', 16 'sec-fetch-mode': 'cors', 17 'sec-fetch-dest': 'empty', 18 'referer': 'https://www.tradingview.com/', 19 'accept-language': 'en-US,en;q=0.9,it;q=0.8', 20} 21DEFAULT_API_SETTINGS = { 22 'filter': [ 23 {'left': 'type', 'operation': 'equal', 'right': 'stock'}, 24 {'left': 'subtype', 'operation': 'in_range', 'right': ['common', 'foreign-issuer']}, 25 {'left': 'exchange', 'operation': 'in_range', 'right': ['AMEX', 'NASDAQ', 'NYSE']}, 26 ], 27 'options': {'lang': 'en'}, 28 'markets': ['america'], 29 'symbols': {'query': {'types': []}, 'tickers': []}, 30 'columns': ['name', 'close', 'volume', 'market_cap_basic'], 31 # 'sort': {}, # the sortBy value should be replaced with a column name 32 'range': [0, 50], 33} 34MARKETS = { 35 'bonds', 36 'cfd', 37 'coin', 38 'crypto', 39 'economics2', 40 'forex', 41 'futures', 42 'options', 43 'america', 44 'argentina', 45 'australia', 46 'austria', 47 'bahrain', 48 'bangladesh', 49 'belgium', 50 'brazil', 51 'canada', 52 'chile', 53 'china', 54 'colombia', 55 'cyprus', 56 'czech', 57 'denmark', 58 'egypt', 59 'estonia', 60 'finland', 61 'france', 62 'germany', 63 'greece', 64 'hongkong', 65 'hungary', 66 'iceland', 67 'india', 68 'indonesia', 69 'israel', 70 'italy', 71 'japan', 72 'kenya', 73 'korea', 74 'ksa', 75 'kuwait', 76 'latvia', 77 'lithuania', 78 'luxembourg', 79 'malaysia', 80 'mexico', 81 'morocco', 82 'netherlands', 83 'newzealand', 84 'nigeria', 85 'norway', 86 'pakistan', 87 'peru', 88 'philippines', 89 'poland', 90 'portugal', 91 'qatar', 92 'romania', 93 'rsa', 94 'russia', 95 'serbia', 96 'singapore', 97 'slovakia', 98 'spain', 99 'srilanka', 100 'sweden', 101 'switzerland', 102 'taiwan', 103 'thailand', 104 'tunisia', 105 'turkey', 106 'uae', 107 'uk', 108 'venezuela', 109 'vietnam', 110} 111COLUMNS = { 112 'Average Day Range (14)': 'ADR', 113 'Average Directional Index (14)': 'ADX', 114 'Positive Directional Indicator (14)': 'ADX+DI', 115 'Negative Directional Indicator (14)': 'ADX-DI', 116 'Awesome Oscillator': 'AO', 117 'Average True Range (14)': 'ATR', 118 'Aroon Down (14)': 'Aroon.Down', 119 'Aroon Up (14)': 'Aroon.Up', 120 'Bollinger Lower Band (20)': 'BB.lower', 121 'Bollinger Upper Band (20)': 'BB.upper', 122 'Bull Bear Power': 'BBPower', 123 'Commodity Channel Index (20)': 'CCI20', 124 'Chaikin Money Flow (20)': 'ChaikinMoneyFlow', 125 'Donchian Channels Lower Band (20)': 'DonchCh20.Lower', 126 'Donchian Channels Upper Band (20)': 'DonchCh20.Upper', 127 'Exponential Moving Average (10)': 'EMA10', 128 'Exponential Moving Average (100)': 'EMA100', 129 'Exponential Moving Average (20)': 'EMA20', 130 'Exponential Moving Average (200)': 'EMA200', 131 'Exponential Moving Average (30)': 'EMA30', 132 'Exponential Moving Average (5)': 'EMA5', 133 'Exponential Moving Average (50)': 'EMA50', 134 '1-Month High': 'High.1M', 135 '3-Month High': 'High.3M', 136 '6-Month High': 'High.6M', 137 'All Time High': 'High.All', 138 'Hull Moving Average (9)': 'HullMA9', 139 'Ichimoku Base Line (9, 26, 52, 26)': 'Ichimoku.BLine', 140 'Ichimoku Conversion Line (9, 26, 52, 26)': 'Ichimoku.CLine', 141 'Ichimoku Leading Span A (9, 26, 52, 26)': 'Ichimoku.Lead1', 142 'Ichimoku Leading Span B (9, 26, 52, 26)': 'Ichimoku.Lead2', 143 'Keltner Channels Lower Band (20)': 'KltChnl.lower', 144 'Keltner Channels Upper Band (20)': 'KltChnl.upper', 145 '1-Month Low': 'Low.1M', 146 '3-Month Low': 'Low.3M', 147 '6-Month Low': 'Low.6M', 148 'All Time Low': 'Low.All', 149 'MACD Level (12, 26)': 'MACD.macd', 150 'MACD Signal (12, 26)': 'MACD.signal', 151 'Momentum (10)': 'Mom', 152 'Money Flow (14)': 'MoneyFlow', 153 'Parabolic SAR': 'P.SAR', 154 'Monthly Performance': 'Perf.1M', 155 '3-Month Performance': 'Perf.3M', 156 '5Y Performance': 'Perf.5Y', 157 '6-Month Performance': 'Perf.6M', 158 'All Time Performance': 'Perf.All', 159 'Weekly Performance': 'Perf.W', 160 'Yearly Performance': 'Perf.Y', 161 'YTD Performance': 'Perf.YTD', 162 'Pivot Camarilla P': 'Pivot.M.Camarilla.Middle', 163 'Pivot Camarilla R1': 'Pivot.M.Camarilla.R1', 164 'Pivot Camarilla R2': 'Pivot.M.Camarilla.R2', 165 'Pivot Camarilla R3': 'Pivot.M.Camarilla.R3', 166 'Pivot Camarilla S1': 'Pivot.M.Camarilla.S1', 167 'Pivot Camarilla S2': 'Pivot.M.Camarilla.S2', 168 'Pivot Camarilla S3': 'Pivot.M.Camarilla.S3', 169 'Pivot Classic P': 'Pivot.M.Classic.Middle', 170 'Pivot Classic R1': 'Pivot.M.Classic.R1', 171 'Pivot Classic R2': 'Pivot.M.Classic.R2', 172 'Pivot Classic R3': 'Pivot.M.Classic.R3', 173 'Pivot Classic S1': 'Pivot.M.Classic.S1', 174 'Pivot Classic S2': 'Pivot.M.Classic.S2', 175 'Pivot Classic S3': 'Pivot.M.Classic.S3', 176 'Pivot DM P': 'Pivot.M.Demark.Middle', 177 'Pivot DM R1': 'Pivot.M.Demark.R1', 178 'Pivot DM S1': 'Pivot.M.Demark.S1', 179 'Pivot Fibonacci P': 'Pivot.M.Fibonacci.Middle', 180 'Pivot Fibonacci R1': 'Pivot.M.Fibonacci.R1', 181 'Pivot Fibonacci R2': 'Pivot.M.Fibonacci.R2', 182 'Pivot Fibonacci R3': 'Pivot.M.Fibonacci.R3', 183 'Pivot Fibonacci S1': 'Pivot.M.Fibonacci.S1', 184 'Pivot Fibonacci S2': 'Pivot.M.Fibonacci.S2', 185 'Pivot Fibonacci S3': 'Pivot.M.Fibonacci.S3', 186 'Pivot Woodie P': 'Pivot.M.Woodie.Middle', 187 'Pivot Woodie R1': 'Pivot.M.Woodie.R1', 188 'Pivot Woodie R2': 'Pivot.M.Woodie.R2', 189 'Pivot Woodie R3': 'Pivot.M.Woodie.R3', 190 'Pivot Woodie S1': 'Pivot.M.Woodie.S1', 191 'Pivot Woodie S2': 'Pivot.M.Woodie.S2', 192 'Pivot Woodie S3': 'Pivot.M.Woodie.S3', 193 'Rate Of Change (9)': 'ROC', 194 'Relative Strength Index (14)': 'RSI', 195 'Relative Strength Index (7)': 'RSI7', 196 'Technical Rating': 'Recommend.All', 197 'Moving Averages Rating': 'Recommend.MA', 198 'Oscillators Rating': 'Recommend.Other', 199 'Simple Moving Average (10)': 'SMA10', 200 'Simple Moving Average (100)': 'SMA100', 201 'Simple Moving Average (20)': 'SMA20', 202 'Simple Moving Average (200)': 'SMA200', 203 'Simple Moving Average (30)': 'SMA30', 204 'Simple Moving Average (5)': 'SMA5', 205 'Simple Moving Average (50)': 'SMA50', 206 'Stochastic %D (14, 3, 3)': 'Stoch.D', 207 'Stochastic %K (14, 3, 3)': 'Stoch.K', 208 'Stochastic RSI Slow (3, 3, 14, 14)': 'Stoch.RSI.D', 209 'Stochastic RSI Fast (3, 3, 14, 14)': 'Stoch.RSI.K', 210 'Ultimate Oscillator (7, 14, 28)': 'UO', 211 'Volume Weighted Average Price': 'VWAP', 212 'Volume Weighted Moving Average (20)': 'VWMA', 213 'Volume*Price': 'Value.Traded', 214 'Volatility': 'Volatility.D', 215 'Volatility Month': 'Volatility.M', 216 'Volatility Week': 'Volatility.W', 217 'Williams Percent Range (14)': 'W.R', 218 'Net Margin (TTM)': 'after_tax_margin', 219 'Average Volume (10 day)': 'average_volume_10d_calc', 220 'Average Volume (30 day)': 'average_volume_30d_calc', 221 'Average Volume (60 day)': 'average_volume_60d_calc', 222 'Average Volume (90 day)': 'average_volume_90d_calc', 223 'Basic EPS (FY)': 'basic_eps_net_income', 224 '1-Year Beta': 'beta_1_year', 225 'Cash & Equivalents (MRQ)': 'cash_n_equivalents_fq', 226 'Cash & Equivalents (FY)': 'cash_n_equivalents_fy', 227 'Cash and short term investments (MRQ)': 'cash_n_short_term_invest_fq', 228 'Cash and short term investments (FY)': 'cash_n_short_term_invest_fy', 229 'Change %': 'change', 230 'Change': 'change_abs', 231 'Change from Open %': 'change_from_open', 232 'Change from Open': 'change_from_open_abs', 233 'Price': 'close', 234 'Country': 'country', 235 'Current Ratio (MRQ)': 'current_ratio', 236 'Debt to Equity Ratio (MRQ)': 'debt_to_equity', 237 'Dividend Yield Forward': 'dividend_yield_recent', 238 'Dividends Paid (FY)': 'dividends_paid', 239 'Dividends per Share (MRQ)': 'dividends_per_share_fq', 240 'Dividends per Share (FY)': 'dps_common_stock_prim_issue_fy', 241 'Dividends per share (Annual YoY Growth)': 'dps_common_stock_prim_issue_yoy_growth_fy', 242 'Basic EPS (TTM)': 'earnings_per_share_basic_ttm', 243 'EPS Diluted (Quarterly QoQ Growth)': 'earnings_per_share_diluted_qoq_growth_fq', 244 'EPS Diluted (TTM)': 'earnings_per_share_diluted_ttm', 245 'EPS Diluted (Quarterly YoY Growth)': 'earnings_per_share_diluted_yoy_growth_fq', 246 'EPS Diluted (Annual YoY Growth)': 'earnings_per_share_diluted_yoy_growth_fy', 247 'EPS Diluted (TTM YoY Growth)': 'earnings_per_share_diluted_yoy_growth_ttm', 248 'EPS Forecast (MRQ)': 'earnings_per_share_forecast_next_fq', 249 'EPS Diluted (MRQ)': 'earnings_per_share_fq', 250 'Recent Earnings Date': 'earnings_release_date', 251 'Upcoming Earnings Date': 'earnings_release_next_date', 252 'EBITDA (TTM)': 'ebitda', 253 'EBITDA (Quarterly QoQ Growth)': 'ebitda_qoq_growth_fq', 254 'EBITDA (Quarterly YoY Growth)': 'ebitda_yoy_growth_fq', 255 'EBITDA (Annual YoY Growth)': 'ebitda_yoy_growth_fy', 256 'EBITDA (TTM YoY Growth)': 'ebitda_yoy_growth_ttm', 257 'Enterprise Value/EBITDA (TTM)': 'enterprise_value_ebitda_ttm', 258 'Enterprise Value (MRQ)': 'enterprise_value_fq', 259 'Exchange': 'exchange', 260 'Shares Float': 'float_shares_outstanding', 261 'Free Cash Flow Margin (FY)': 'free_cash_flow_margin_fy', 262 'Free Cash Flow Margin (TTM)': 'free_cash_flow_margin_ttm', 263 'Free Cash Flow (Quarterly QoQ Growth)': 'free_cash_flow_qoq_growth_fq', 264 'Free Cash Flow (Quarterly YoY Growth)': 'free_cash_flow_yoy_growth_fq', 265 'Free Cash Flow (Annual YoY Growth)': 'free_cash_flow_yoy_growth_fy', 266 'Free Cash Flow (TTM YoY Growth)': 'free_cash_flow_yoy_growth_ttm', 267 'Gap %': 'gap', 268 'Goodwill': 'goodwill', 269 'Gross Margin (TTM)': 'gross_margin', 270 'Gross Profit (FY)': 'gross_profit', 271 'Gross Profit (MRQ)': 'gross_profit_fq', 272 'Gross Margin (FY)': 'gross_profit_margin_fy', 273 'Gross Profit (Quarterly QoQ Growth)': 'gross_profit_qoq_growth_fq', 274 'Gross Profit (Quarterly YoY Growth)': 'gross_profit_yoy_growth_fq', 275 'Gross Profit (Annual YoY Growth)': 'gross_profit_yoy_growth_fy', 276 'Gross Profit (TTM YoY Growth)': 'gross_profit_yoy_growth_ttm', 277 'High': 'high', 278 'Industry': 'industry', 279 'EPS Diluted (FY)': 'last_annual_eps', 280 'Last Year Revenue (FY)': 'last_annual_revenue', 281 'Low': 'low', 282 'Market Capitalization': 'market_cap_basic', 283 'Net Debt (MRQ)': 'net_debt', 284 'Net Income (FY)': 'net_income', 285 'Net Margin (FY)': 'net_income_bef_disc_oper_margin_fy', 286 'Net Income (Quarterly QoQ Growth)': 'net_income_qoq_growth_fq', 287 'Net Income (Quarterly YoY Growth)': 'net_income_yoy_growth_fq', 288 'Net Income (Annual YoY Growth)': 'net_income_yoy_growth_fy', 289 'Net Income (TTM YoY Growth)': 'net_income_yoy_growth_ttm', 290 'Number of Employees': 'number_of_employees', 291 'Number of Shareholders': 'number_of_shareholders', 292 'Open': 'open', 293 'Operating Margin (FY)': 'oper_income_margin_fy', 294 'Operating Margin (TTM)': 'operating_margin', 295 'Post-market Change %': 'postmarket_change', 296 'Post-market Change': 'postmarket_change_abs', 297 'Post-market Close': 'postmarket_close', 298 'Post-market High': 'postmarket_high', 299 'Post-market Low': 'postmarket_low', 300 'Post-market Open': 'postmarket_open', 301 'Post-market Volume': 'postmarket_volume', 302 'Pretax Margin (TTM)': 'pre_tax_margin', 303 'Pre-market Change %': 'premarket_change', 304 'Pre-market Change': 'premarket_change_abs', 305 'Pre-market Change from Open %': 'premarket_change_from_open', 306 'Pre-market Change from Open': 'premarket_change_from_open_abs', 307 'Pre-market Close': 'premarket_close', 308 'Pre-market Gap %': 'premarket_gap', 309 'Pre-market High': 'premarket_high', 310 'Pre-market Low': 'premarket_low', 311 'Pre-market Open': 'premarket_open', 312 'Pre-market Volume': 'premarket_volume', 313 '52 Week High': 'price_52_week_high', 314 '52 Week Low': 'price_52_week_low', 315 'Price to Book (MRQ)': 'price_book_fq', 316 'Price to Book (FY)': 'price_book_ratio', 317 'Price to Earnings Ratio (TTM)': 'price_earnings_ttm', 318 'Price to Free Cash Flow (TTM)': 'price_free_cash_flow_ttm', 319 'Price to Revenue Ratio (TTM)': 'price_revenue_ttm', 320 'Price to Sales (FY)': 'price_sales_ratio', 321 'Quick Ratio (MRQ)': 'quick_ratio', 322 'Relative Volume': 'relative_volume_10d_calc', 323 'Relative Volume at Time': 'relative_volume_intraday|5', 324 'Research & development Ratio (FY)': 'research_and_dev_ratio_fy', 325 'Research & development Ratio (TTM)': 'research_and_dev_ratio_ttm', 326 'Return on Assets (TTM)': 'return_on_assets', 327 'Return on Equity (TTM)': 'return_on_equity', 328 'Return on Invested Capital (TTM)': 'return_on_invested_capital', 329 'Revenue per Employee (FY)': 'revenue_per_employee', 330 'Sector': 'sector', 331 'Selling General & Admin expenses Ratio (FY)': 'sell_gen_admin_exp_other_ratio_fy', 332 'Selling General & Admin expenses Ratio (TTM)': 'sell_gen_admin_exp_other_ratio_ttm', 333 'Submarket': 'submarket', 334 'Total Assets (MRQ)': 'total_assets', 335 'Total Assets (Quarterly QoQ Growth)': 'total_assets_qoq_growth_fq', 336 'Total Assets (Quarterly YoY Growth)': 'total_assets_yoy_growth_fq', 337 'Total Assets (Annual YoY Growth)': 'total_assets_yoy_growth_fy', 338 'Total Current Assets (MRQ)': 'total_current_assets', 339 'Total Debt (MRQ)': 'total_debt', 340 'Total Debt (Quarterly QoQ Growth)': 'total_debt_qoq_growth_fq', 341 'Total Debt (Quarterly YoY Growth)': 'total_debt_yoy_growth_fq', 342 'Total Debt (Annual YoY Growth)': 'total_debt_yoy_growth_fy', 343 'Total Liabilities (MRQ)': 'total_liabilities_fq', 344 'Total Liabilities (FY)': 'total_liabilities_fy', 345 'Total Revenue (FY)': 'total_revenue', 346 'Revenue (Quarterly QoQ Growth)': 'total_revenue_qoq_growth_fq', 347 'Revenue (Quarterly YoY Growth)': 'total_revenue_yoy_growth_fq', 348 'Revenue (Annual YoY Growth)': 'total_revenue_yoy_growth_fy', 349 'Revenue (TTM YoY Growth)': 'total_revenue_yoy_growth_ttm', 350 'Total Shares Outstanding': 'total_shares_outstanding_fundamental', 351 'Volume': 'volume', 352 '24h_close_change|5': '24h_close_change|5', 353 '24h_close_change_abs|5': '24h_close_change_abs|5', 354 '24h_close_prev|5': '24h_close_prev|5', 355 '24h_vol|5': '24h_vol|5', 356 '24h_vol_change|5': '24h_vol_change|5', 357 '24h_vol_change_abs|5': '24h_vol_change_abs|5', 358 '24h_vol_change_cmc': '24h_vol_change_cmc', 359 '24h_vol_cmc': '24h_vol_cmc', 360 '24h_vol_prev|5': '24h_vol_prev|5', 361 '24h_vol_to_market_cap': '24h_vol_to_market_cap', 362 'ADR': 'ADR', 363 'ADR|1': 'ADR|1', 364 'ADR|5': 'ADR|5', 365 'ADR|15': 'ADR|15', 366 'ADR|30': 'ADR|30', 367 'ADR|60': 'ADR|60', 368 'ADR|120': 'ADR|120', 369 'ADR|240': 'ADR|240', 370 'ADR|1W': 'ADR|1W', 371 'ADR|1M': 'ADR|1M', 372 'ADRP': 'ADRP', 373 'ADRP|1': 'ADRP|1', 374 'ADRP|5': 'ADRP|5', 375 'ADRP|15': 'ADRP|15', 376 'ADRP|30': 'ADRP|30', 377 'ADRP|60': 'ADRP|60', 378 'ADRP|120': 'ADRP|120', 379 'ADRP|240': 'ADRP|240', 380 'ADRP|1W': 'ADRP|1W', 381 'ADRP|1M': 'ADRP|1M', 382 'ADX': 'ADX', 383 'ADX|1': 'ADX|1', 384 'ADX|5': 'ADX|5', 385 'ADX|15': 'ADX|15', 386 'ADX|30': 'ADX|30', 387 'ADX|60': 'ADX|60', 388 'ADX|120': 'ADX|120', 389 'ADX|240': 'ADX|240', 390 'ADX|1W': 'ADX|1W', 391 'ADX|1M': 'ADX|1M', 392 'ADX+DI': 'ADX+DI', 393 'ADX+DI|1': 'ADX+DI|1', 394 'ADX+DI|5': 'ADX+DI|5', 395 'ADX+DI|15': 'ADX+DI|15', 396 'ADX+DI|30': 'ADX+DI|30', 397 'ADX+DI|60': 'ADX+DI|60', 398 'ADX+DI|120': 'ADX+DI|120', 399 'ADX+DI|240': 'ADX+DI|240', 400 'ADX+DI|1W': 'ADX+DI|1W', 401 'ADX+DI|1M': 'ADX+DI|1M', 402 'ADX+DI[1]': 'ADX+DI[1]', 403 'ADX+DI[1]|1': 'ADX+DI[1]|1', 404 'ADX+DI[1]|5': 'ADX+DI[1]|5', 405 'ADX+DI[1]|15': 'ADX+DI[1]|15', 406 'ADX+DI[1]|30': 'ADX+DI[1]|30', 407 'ADX+DI[1]|60': 'ADX+DI[1]|60', 408 'ADX+DI[1]|120': 'ADX+DI[1]|120', 409 'ADX+DI[1]|240': 'ADX+DI[1]|240', 410 'ADX+DI[1]|1W': 'ADX+DI[1]|1W', 411 'ADX+DI[1]|1M': 'ADX+DI[1]|1M', 412 'ADX+DI_100': 'ADX+DI_100', 413 'ADX+DI_100|1': 'ADX+DI_100|1', 414 'ADX+DI_100|5': 'ADX+DI_100|5', 415 'ADX+DI_100|15': 'ADX+DI_100|15', 416 'ADX+DI_100|30': 'ADX+DI_100|30', 417 'ADX+DI_100|60': 'ADX+DI_100|60', 418 'ADX+DI_100|120': 'ADX+DI_100|120', 419 'ADX+DI_100|240': 'ADX+DI_100|240', 420 'ADX+DI_100|1W': 'ADX+DI_100|1W', 421 'ADX+DI_100|1M': 'ADX+DI_100|1M', 422 'ADX+DI_100[1]': 'ADX+DI_100[1]', 423 'ADX+DI_100[1]|1': 'ADX+DI_100[1]|1', 424 'ADX+DI_100[1]|5': 'ADX+DI_100[1]|5', 425 'ADX+DI_100[1]|15': 'ADX+DI_100[1]|15', 426 'ADX+DI_100[1]|30': 'ADX+DI_100[1]|30', 427 'ADX+DI_100[1]|60': 'ADX+DI_100[1]|60', 428 'ADX+DI_100[1]|120': 'ADX+DI_100[1]|120', 429 'ADX+DI_100[1]|240': 'ADX+DI_100[1]|240', 430 'ADX+DI_100[1]|1W': 'ADX+DI_100[1]|1W', 431 'ADX+DI_100[1]|1M': 'ADX+DI_100[1]|1M', 432 'ADX+DI_20': 'ADX+DI_20', 433 'ADX+DI_20|1': 'ADX+DI_20|1', 434 'ADX+DI_20|5': 'ADX+DI_20|5', 435 'ADX+DI_20|15': 'ADX+DI_20|15', 436 'ADX+DI_20|30': 'ADX+DI_20|30', 437 'ADX+DI_20|60': 'ADX+DI_20|60', 438 'ADX+DI_20|120': 'ADX+DI_20|120', 439 'ADX+DI_20|240': 'ADX+DI_20|240', 440 'ADX+DI_20|1W': 'ADX+DI_20|1W', 441 'ADX+DI_20|1M': 'ADX+DI_20|1M', 442 'ADX+DI_20[1]': 'ADX+DI_20[1]', 443 'ADX+DI_20[1]|1': 'ADX+DI_20[1]|1', 444 'ADX+DI_20[1]|5': 'ADX+DI_20[1]|5', 445 'ADX+DI_20[1]|15': 'ADX+DI_20[1]|15', 446 'ADX+DI_20[1]|30': 'ADX+DI_20[1]|30', 447 'ADX+DI_20[1]|60': 'ADX+DI_20[1]|60', 448 'ADX+DI_20[1]|120': 'ADX+DI_20[1]|120', 449 'ADX+DI_20[1]|240': 'ADX+DI_20[1]|240', 450 'ADX+DI_20[1]|1W': 'ADX+DI_20[1]|1W', 451 'ADX+DI_20[1]|1M': 'ADX+DI_20[1]|1M', 452 'ADX+DI_50': 'ADX+DI_50', 453 'ADX+DI_50|1': 'ADX+DI_50|1', 454 'ADX+DI_50|5': 'ADX+DI_50|5', 455 'ADX+DI_50|15': 'ADX+DI_50|15', 456 'ADX+DI_50|30': 'ADX+DI_50|30', 457 'ADX+DI_50|60': 'ADX+DI_50|60', 458 'ADX+DI_50|120': 'ADX+DI_50|120', 459 'ADX+DI_50|240': 'ADX+DI_50|240', 460 'ADX+DI_50|1W': 'ADX+DI_50|1W', 461 'ADX+DI_50|1M': 'ADX+DI_50|1M', 462 'ADX+DI_50[1]': 'ADX+DI_50[1]', 463 'ADX+DI_50[1]|1': 'ADX+DI_50[1]|1', 464 'ADX+DI_50[1]|5': 'ADX+DI_50[1]|5', 465 'ADX+DI_50[1]|15': 'ADX+DI_50[1]|15', 466 'ADX+DI_50[1]|30': 'ADX+DI_50[1]|30', 467 'ADX+DI_50[1]|60': 'ADX+DI_50[1]|60', 468 'ADX+DI_50[1]|120': 'ADX+DI_50[1]|120', 469 'ADX+DI_50[1]|240': 'ADX+DI_50[1]|240', 470 'ADX+DI_50[1]|1W': 'ADX+DI_50[1]|1W', 471 'ADX+DI_50[1]|1M': 'ADX+DI_50[1]|1M', 472 'ADX+DI_9': 'ADX+DI_9', 473 'ADX+DI_9|1': 'ADX+DI_9|1', 474 'ADX+DI_9|5': 'ADX+DI_9|5', 475 'ADX+DI_9|15': 'ADX+DI_9|15', 476 'ADX+DI_9|30': 'ADX+DI_9|30', 477 'ADX+DI_9|60': 'ADX+DI_9|60', 478 'ADX+DI_9|120': 'ADX+DI_9|120', 479 'ADX+DI_9|240': 'ADX+DI_9|240', 480 'ADX+DI_9|1W': 'ADX+DI_9|1W', 481 'ADX+DI_9|1M': 'ADX+DI_9|1M', 482 'ADX+DI_9[1]': 'ADX+DI_9[1]', 483 'ADX+DI_9[1]|1': 'ADX+DI_9[1]|1', 484 'ADX+DI_9[1]|5': 'ADX+DI_9[1]|5', 485 'ADX+DI_9[1]|15': 'ADX+DI_9[1]|15', 486 'ADX+DI_9[1]|30': 'ADX+DI_9[1]|30', 487 'ADX+DI_9[1]|60': 'ADX+DI_9[1]|60', 488 'ADX+DI_9[1]|120': 'ADX+DI_9[1]|120', 489 'ADX+DI_9[1]|240': 'ADX+DI_9[1]|240', 490 'ADX+DI_9[1]|1W': 'ADX+DI_9[1]|1W', 491 'ADX+DI_9[1]|1M': 'ADX+DI_9[1]|1M', 492 'ADX-DI': 'ADX-DI', 493 'ADX-DI|1': 'ADX-DI|1', 494 'ADX-DI|5': 'ADX-DI|5', 495 'ADX-DI|15': 'ADX-DI|15', 496 'ADX-DI|30': 'ADX-DI|30', 497 'ADX-DI|60': 'ADX-DI|60', 498 'ADX-DI|120': 'ADX-DI|120', 499 'ADX-DI|240': 'ADX-DI|240', 500 'ADX-DI|1W': 'ADX-DI|1W', 501 'ADX-DI|1M': 'ADX-DI|1M', 502 'ADX-DI[1]': 'ADX-DI[1]', 503 'ADX-DI[1]|1': 'ADX-DI[1]|1', 504 'ADX-DI[1]|5': 'ADX-DI[1]|5', 505 'ADX-DI[1]|15': 'ADX-DI[1]|15', 506 'ADX-DI[1]|30': 'ADX-DI[1]|30', 507 'ADX-DI[1]|60': 'ADX-DI[1]|60', 508 'ADX-DI[1]|120': 'ADX-DI[1]|120', 509 'ADX-DI[1]|240': 'ADX-DI[1]|240', 510 'ADX-DI[1]|1W': 'ADX-DI[1]|1W', 511 'ADX-DI[1]|1M': 'ADX-DI[1]|1M', 512 'ADX-DI_100': 'ADX-DI_100', 513 'ADX-DI_100|1': 'ADX-DI_100|1', 514 'ADX-DI_100|5': 'ADX-DI_100|5', 515 'ADX-DI_100|15': 'ADX-DI_100|15', 516 'ADX-DI_100|30': 'ADX-DI_100|30', 517 'ADX-DI_100|60': 'ADX-DI_100|60', 518 'ADX-DI_100|120': 'ADX-DI_100|120', 519 'ADX-DI_100|240': 'ADX-DI_100|240', 520 'ADX-DI_100|1W': 'ADX-DI_100|1W', 521 'ADX-DI_100|1M': 'ADX-DI_100|1M', 522 'ADX-DI_100[1]': 'ADX-DI_100[1]', 523 'ADX-DI_100[1]|1': 'ADX-DI_100[1]|1', 524 'ADX-DI_100[1]|5': 'ADX-DI_100[1]|5', 525 'ADX-DI_100[1]|15': 'ADX-DI_100[1]|15', 526 'ADX-DI_100[1]|30': 'ADX-DI_100[1]|30', 527 'ADX-DI_100[1]|60': 'ADX-DI_100[1]|60', 528 'ADX-DI_100[1]|120': 'ADX-DI_100[1]|120', 529 'ADX-DI_100[1]|240': 'ADX-DI_100[1]|240', 530 'ADX-DI_100[1]|1W': 'ADX-DI_100[1]|1W', 531 'ADX-DI_100[1]|1M': 'ADX-DI_100[1]|1M', 532 'ADX-DI_20': 'ADX-DI_20', 533 'ADX-DI_20|1': 'ADX-DI_20|1', 534 'ADX-DI_20|5': 'ADX-DI_20|5', 535 'ADX-DI_20|15': 'ADX-DI_20|15', 536 'ADX-DI_20|30': 'ADX-DI_20|30', 537 'ADX-DI_20|60': 'ADX-DI_20|60', 538 'ADX-DI_20|120': 'ADX-DI_20|120', 539 'ADX-DI_20|240': 'ADX-DI_20|240', 540 'ADX-DI_20|1W': 'ADX-DI_20|1W', 541 'ADX-DI_20|1M': 'ADX-DI_20|1M', 542 'ADX-DI_20[1]': 'ADX-DI_20[1]', 543 'ADX-DI_20[1]|1': 'ADX-DI_20[1]|1', 544 'ADX-DI_20[1]|5': 'ADX-DI_20[1]|5', 545 'ADX-DI_20[1]|15': 'ADX-DI_20[1]|15', 546 'ADX-DI_20[1]|30': 'ADX-DI_20[1]|30', 547 'ADX-DI_20[1]|60': 'ADX-DI_20[1]|60', 548 'ADX-DI_20[1]|120': 'ADX-DI_20[1]|120', 549 'ADX-DI_20[1]|240': 'ADX-DI_20[1]|240', 550 'ADX-DI_20[1]|1W': 'ADX-DI_20[1]|1W', 551 'ADX-DI_20[1]|1M': 'ADX-DI_20[1]|1M', 552 'ADX-DI_50': 'ADX-DI_50', 553 'ADX-DI_50|1': 'ADX-DI_50|1', 554 'ADX-DI_50|5': 'ADX-DI_50|5', 555 'ADX-DI_50|15': 'ADX-DI_50|15', 556 'ADX-DI_50|30': 'ADX-DI_50|30', 557 'ADX-DI_50|60': 'ADX-DI_50|60', 558 'ADX-DI_50|120': 'ADX-DI_50|120', 559 'ADX-DI_50|240': 'ADX-DI_50|240', 560 'ADX-DI_50|1W': 'ADX-DI_50|1W', 561 'ADX-DI_50|1M': 'ADX-DI_50|1M', 562 'ADX-DI_50[1]': 'ADX-DI_50[1]', 563 'ADX-DI_50[1]|1': 'ADX-DI_50[1]|1', 564 'ADX-DI_50[1]|5': 'ADX-DI_50[1]|5', 565 'ADX-DI_50[1]|15': 'ADX-DI_50[1]|15', 566 'ADX-DI_50[1]|30': 'ADX-DI_50[1]|30', 567 'ADX-DI_50[1]|60': 'ADX-DI_50[1]|60', 568 'ADX-DI_50[1]|120': 'ADX-DI_50[1]|120', 569 'ADX-DI_50[1]|240': 'ADX-DI_50[1]|240', 570 'ADX-DI_50[1]|1W': 'ADX-DI_50[1]|1W', 571 'ADX-DI_50[1]|1M': 'ADX-DI_50[1]|1M', 572 'ADX-DI_9': 'ADX-DI_9', 573 'ADX-DI_9|1': 'ADX-DI_9|1', 574 'ADX-DI_9|5': 'ADX-DI_9|5', 575 'ADX-DI_9|15': 'ADX-DI_9|15', 576 'ADX-DI_9|30': 'ADX-DI_9|30', 577 'ADX-DI_9|60': 'ADX-DI_9|60', 578 'ADX-DI_9|120': 'ADX-DI_9|120', 579 'ADX-DI_9|240': 'ADX-DI_9|240', 580 'ADX-DI_9|1W': 'ADX-DI_9|1W', 581 'ADX-DI_9|1M': 'ADX-DI_9|1M', 582 'ADX-DI_9[1]': 'ADX-DI_9[1]', 583 'ADX-DI_9[1]|1': 'ADX-DI_9[1]|1', 584 'ADX-DI_9[1]|5': 'ADX-DI_9[1]|5', 585 'ADX-DI_9[1]|15': 'ADX-DI_9[1]|15', 586 'ADX-DI_9[1]|30': 'ADX-DI_9[1]|30', 587 'ADX-DI_9[1]|60': 'ADX-DI_9[1]|60', 588 'ADX-DI_9[1]|120': 'ADX-DI_9[1]|120', 589 'ADX-DI_9[1]|240': 'ADX-DI_9[1]|240', 590 'ADX-DI_9[1]|1W': 'ADX-DI_9[1]|1W', 591 'ADX-DI_9[1]|1M': 'ADX-DI_9[1]|1M', 592 'ADX_100': 'ADX_100', 593 'ADX_100|1': 'ADX_100|1', 594 'ADX_100|5': 'ADX_100|5', 595 'ADX_100|15': 'ADX_100|15', 596 'ADX_100|30': 'ADX_100|30', 597 'ADX_100|60': 'ADX_100|60', 598 'ADX_100|120': 'ADX_100|120', 599 'ADX_100|240': 'ADX_100|240', 600 'ADX_100|1W': 'ADX_100|1W', 601 'ADX_100|1M': 'ADX_100|1M', 602 'ADX_20': 'ADX_20', 603 'ADX_20|1': 'ADX_20|1', 604 'ADX_20|5': 'ADX_20|5', 605 'ADX_20|15': 'ADX_20|15', 606 'ADX_20|30': 'ADX_20|30', 607 'ADX_20|60': 'ADX_20|60', 608 'ADX_20|120': 'ADX_20|120', 609 'ADX_20|240': 'ADX_20|240', 610 'ADX_20|1W': 'ADX_20|1W', 611 'ADX_20|1M': 'ADX_20|1M', 612 'ADX_50': 'ADX_50', 613 'ADX_50|1': 'ADX_50|1', 614 'ADX_50|5': 'ADX_50|5', 615 'ADX_50|15': 'ADX_50|15', 616 'ADX_50|30': 'ADX_50|30', 617 'ADX_50|60': 'ADX_50|60', 618 'ADX_50|120': 'ADX_50|120', 619 'ADX_50|240': 'ADX_50|240', 620 'ADX_50|1W': 'ADX_50|1W', 621 'ADX_50|1M': 'ADX_50|1M', 622 'ADX_9': 'ADX_9', 623 'ADX_9|1': 'ADX_9|1', 624 'ADX_9|5': 'ADX_9|5', 625 'ADX_9|15': 'ADX_9|15', 626 'ADX_9|30': 'ADX_9|30', 627 'ADX_9|60': 'ADX_9|60', 628 'ADX_9|120': 'ADX_9|120', 629 'ADX_9|240': 'ADX_9|240', 630 'ADX_9|1W': 'ADX_9|1W', 631 'ADX_9|1M': 'ADX_9|1M', 632 'AO': 'AO', 633 'AO|1': 'AO|1', 634 'AO|5': 'AO|5', 635 'AO|15': 'AO|15', 636 'AO|30': 'AO|30', 637 'AO|60': 'AO|60', 638 'AO|120': 'AO|120', 639 'AO|240': 'AO|240', 640 'AO|1W': 'AO|1W', 641 'AO|1M': 'AO|1M', 642 'AO[1]': 'AO[1]', 643 'AO[1]|1': 'AO[1]|1', 644 'AO[1]|5': 'AO[1]|5', 645 'AO[1]|15': 'AO[1]|15', 646 'AO[1]|30': 'AO[1]|30', 647 'AO[1]|60': 'AO[1]|60', 648 'AO[1]|120': 'AO[1]|120', 649 'AO[1]|240': 'AO[1]|240', 650 'AO[1]|1W': 'AO[1]|1W', 651 'AO[1]|1M': 'AO[1]|1M', 652 'AO[2]': 'AO[2]', 653 'AO[2]|1': 'AO[2]|1', 654 'AO[2]|5': 'AO[2]|5', 655 'AO[2]|15': 'AO[2]|15', 656 'AO[2]|30': 'AO[2]|30', 657 'AO[2]|60': 'AO[2]|60', 658 'AO[2]|120': 'AO[2]|120', 659 'AO[2]|240': 'AO[2]|240', 660 'AO[2]|1W': 'AO[2]|1W', 661 'AO[2]|1M': 'AO[2]|1M', 662 'ATR': 'ATR', 663 'ATR|1': 'ATR|1', 664 'ATR|5': 'ATR|5', 665 'ATR|15': 'ATR|15', 666 'ATR|30': 'ATR|30', 667 'ATR|60': 'ATR|60', 668 'ATR|120': 'ATR|120', 669 'ATR|240': 'ATR|240', 670 'ATR|1W': 'ATR|1W', 671 'ATR|1M': 'ATR|1M', 672 'ATRP': 'ATRP', 673 'ATRP|1': 'ATRP|1', 674 'ATRP|5': 'ATRP|5', 675 'ATRP|15': 'ATRP|15', 676 'ATRP|30': 'ATRP|30', 677 'ATRP|60': 'ATRP|60', 678 'ATRP|120': 'ATRP|120', 679 'ATRP|240': 'ATRP|240', 680 'ATRP|1W': 'ATRP|1W', 681 'ATRP|1M': 'ATRP|1M', 682 'Aroon.Down': 'Aroon.Down', 683 'Aroon.Down|1': 'Aroon.Down|1', 684 'Aroon.Down|5': 'Aroon.Down|5', 685 'Aroon.Down|15': 'Aroon.Down|15', 686 'Aroon.Down|30': 'Aroon.Down|30', 687 'Aroon.Down|60': 'Aroon.Down|60', 688 'Aroon.Down|120': 'Aroon.Down|120', 689 'Aroon.Down|240': 'Aroon.Down|240', 690 'Aroon.Down|1W': 'Aroon.Down|1W', 691 'Aroon.Down|1M': 'Aroon.Down|1M', 692 'Aroon.Up': 'Aroon.Up', 693 'Aroon.Up|1': 'Aroon.Up|1', 694 'Aroon.Up|5': 'Aroon.Up|5', 695 'Aroon.Up|15': 'Aroon.Up|15', 696 'Aroon.Up|30': 'Aroon.Up|30', 697 'Aroon.Up|60': 'Aroon.Up|60', 698 'Aroon.Up|120': 'Aroon.Up|120', 699 'Aroon.Up|240': 'Aroon.Up|240', 700 'Aroon.Up|1W': 'Aroon.Up|1W', 701 'Aroon.Up|1M': 'Aroon.Up|1M', 702 'BB.basis': 'BB.basis', 703 'BB.basis|1': 'BB.basis|1', 704 'BB.basis|5': 'BB.basis|5', 705 'BB.basis|15': 'BB.basis|15', 706 'BB.basis|30': 'BB.basis|30', 707 'BB.basis|60': 'BB.basis|60', 708 'BB.basis|120': 'BB.basis|120', 709 'BB.basis|240': 'BB.basis|240', 710 'BB.basis|1W': 'BB.basis|1W', 711 'BB.basis|1M': 'BB.basis|1M', 712 'BB.basis_50': 'BB.basis_50', 713 'BB.basis_50|1': 'BB.basis_50|1', 714 'BB.basis_50|5': 'BB.basis_50|5', 715 'BB.basis_50|15': 'BB.basis_50|15', 716 'BB.basis_50|30': 'BB.basis_50|30', 717 'BB.basis_50|60': 'BB.basis_50|60', 718 'BB.basis_50|120': 'BB.basis_50|120', 719 'BB.basis_50|240': 'BB.basis_50|240', 720 'BB.basis_50|1W': 'BB.basis_50|1W', 721 'BB.basis_50|1M': 'BB.basis_50|1M', 722 'BB.lower': 'BB.lower', 723 'BB.lower|1': 'BB.lower|1', 724 'BB.lower|5': 'BB.lower|5', 725 'BB.lower|15': 'BB.lower|15', 726 'BB.lower|30': 'BB.lower|30', 727 'BB.lower|60': 'BB.lower|60', 728 'BB.lower|120': 'BB.lower|120', 729 'BB.lower|240': 'BB.lower|240', 730 'BB.lower|1W': 'BB.lower|1W', 731 'BB.lower|1M': 'BB.lower|1M', 732 'BB.lower_50': 'BB.lower_50', 733 'BB.lower_50|1': 'BB.lower_50|1', 734 'BB.lower_50|5': 'BB.lower_50|5', 735 'BB.lower_50|15': 'BB.lower_50|15', 736 'BB.lower_50|30': 'BB.lower_50|30', 737 'BB.lower_50|60': 'BB.lower_50|60', 738 'BB.lower_50|120': 'BB.lower_50|120', 739 'BB.lower_50|240': 'BB.lower_50|240', 740 'BB.lower_50|1W': 'BB.lower_50|1W', 741 'BB.lower_50|1M': 'BB.lower_50|1M', 742 'BB.upper': 'BB.upper', 743 'BB.upper|1': 'BB.upper|1', 744 'BB.upper|5': 'BB.upper|5', 745 'BB.upper|15': 'BB.upper|15', 746 'BB.upper|30': 'BB.upper|30', 747 'BB.upper|60': 'BB.upper|60', 748 'BB.upper|120': 'BB.upper|120', 749 'BB.upper|240': 'BB.upper|240', 750 'BB.upper|1W': 'BB.upper|1W', 751 'BB.upper|1M': 'BB.upper|1M', 752 'BB.upper_50': 'BB.upper_50', 753 'BB.upper_50|1': 'BB.upper_50|1', 754 'BB.upper_50|5': 'BB.upper_50|5', 755 'BB.upper_50|15': 'BB.upper_50|15', 756 'BB.upper_50|30': 'BB.upper_50|30', 757 'BB.upper_50|60': 'BB.upper_50|60', 758 'BB.upper_50|120': 'BB.upper_50|120', 759 'BB.upper_50|240': 'BB.upper_50|240', 760 'BB.upper_50|1W': 'BB.upper_50|1W', 761 'BB.upper_50|1M': 'BB.upper_50|1M', 762 'BBPower': 'BBPower', 763 'BBPower|1': 'BBPower|1', 764 'BBPower|5': 'BBPower|5', 765 'BBPower|15': 'BBPower|15', 766 'BBPower|30': 'BBPower|30', 767 'BBPower|60': 'BBPower|60', 768 'BBPower|120': 'BBPower|120', 769 'BBPower|240': 'BBPower|240', 770 'BBPower|1W': 'BBPower|1W', 771 'BBPower|1M': 'BBPower|1M', 772 'Bond.Change': 'Bond.Change', 773 'Bond.Change|1': 'Bond.Change|1', 774 'Bond.Change.%': 'Bond.Change.%', 775 'Bond.Change.%|1': 'Bond.Change.%|1', 776 'Bond.Currency': 'Bond.Currency', 777 'Bond.Price': 'Bond.Price', 778 'Bond.Price|1': 'Bond.Price|1', 779 'CCI20': 'CCI20', 780 'CCI20|1': 'CCI20|1', 781 'CCI20|5': 'CCI20|5', 782 'CCI20|15': 'CCI20|15', 783 'CCI20|30': 'CCI20|30', 784 'CCI20|60': 'CCI20|60', 785 'CCI20|120': 'CCI20|120', 786 'CCI20|240': 'CCI20|240', 787 'CCI20|1W': 'CCI20|1W', 788 'CCI20|1M': 'CCI20|1M', 789 'CCI20[1]': 'CCI20[1]', 790 'CCI20[1]|1': 'CCI20[1]|1', 791 'CCI20[1]|5': 'CCI20[1]|5', 792 'CCI20[1]|15': 'CCI20[1]|15', 793 'CCI20[1]|30': 'CCI20[1]|30', 794 'CCI20[1]|60': 'CCI20[1]|60', 795 'CCI20[1]|120': 'CCI20[1]|120', 796 'CCI20[1]|240': 'CCI20[1]|240', 797 'CCI20[1]|1W': 'CCI20[1]|1W', 798 'CCI20[1]|1M': 'CCI20[1]|1M', 799 'Candle.3BlackCrows': 'Candle.3BlackCrows', 800 'Candle.3BlackCrows|1': 'Candle.3BlackCrows|1', 801 'Candle.3BlackCrows|5': 'Candle.3BlackCrows|5', 802 'Candle.3BlackCrows|15': 'Candle.3BlackCrows|15', 803 'Candle.3BlackCrows|30': 'Candle.3BlackCrows|30', 804 'Candle.3BlackCrows|60': 'Candle.3BlackCrows|60', 805 'Candle.3BlackCrows|120': 'Candle.3BlackCrows|120', 806 'Candle.3BlackCrows|240': 'Candle.3BlackCrows|240', 807 'Candle.3BlackCrows|1W': 'Candle.3BlackCrows|1W', 808 'Candle.3BlackCrows|1M': 'Candle.3BlackCrows|1M', 809 'Candle.3WhiteSoldiers': 'Candle.3WhiteSoldiers', 810 'Candle.3WhiteSoldiers|1': 'Candle.3WhiteSoldiers|1', 811 'Candle.3WhiteSoldiers|5': 'Candle.3WhiteSoldiers|5', 812 'Candle.3WhiteSoldiers|15': 'Candle.3WhiteSoldiers|15', 813 'Candle.3WhiteSoldiers|30': 'Candle.3WhiteSoldiers|30', 814 'Candle.3WhiteSoldiers|60': 'Candle.3WhiteSoldiers|60', 815 'Candle.3WhiteSoldiers|120': 'Candle.3WhiteSoldiers|120', 816 'Candle.3WhiteSoldiers|240': 'Candle.3WhiteSoldiers|240', 817 'Candle.3WhiteSoldiers|1W': 'Candle.3WhiteSoldiers|1W', 818 'Candle.3WhiteSoldiers|1M': 'Candle.3WhiteSoldiers|1M', 819 'Candle.AbandonedBaby.Bearish': 'Candle.AbandonedBaby.Bearish', 820 'Candle.AbandonedBaby.Bearish|1': 'Candle.AbandonedBaby.Bearish|1', 821 'Candle.AbandonedBaby.Bearish|5': 'Candle.AbandonedBaby.Bearish|5', 822 'Candle.AbandonedBaby.Bearish|15': 'Candle.AbandonedBaby.Bearish|15', 823 'Candle.AbandonedBaby.Bearish|30': 'Candle.AbandonedBaby.Bearish|30', 824 'Candle.AbandonedBaby.Bearish|60': 'Candle.AbandonedBaby.Bearish|60', 825 'Candle.AbandonedBaby.Bearish|120': 'Candle.AbandonedBaby.Bearish|120', 826 'Candle.AbandonedBaby.Bearish|240': 'Candle.AbandonedBaby.Bearish|240', 827 'Candle.AbandonedBaby.Bearish|1W': 'Candle.AbandonedBaby.Bearish|1W', 828 'Candle.AbandonedBaby.Bearish|1M': 'Candle.AbandonedBaby.Bearish|1M', 829 'Candle.AbandonedBaby.Bullish': 'Candle.AbandonedBaby.Bullish', 830 'Candle.AbandonedBaby.Bullish|1': 'Candle.AbandonedBaby.Bullish|1', 831 'Candle.AbandonedBaby.Bullish|5': 'Candle.AbandonedBaby.Bullish|5', 832 'Candle.AbandonedBaby.Bullish|15': 'Candle.AbandonedBaby.Bullish|15', 833 'Candle.AbandonedBaby.Bullish|30': 'Candle.AbandonedBaby.Bullish|30', 834 'Candle.AbandonedBaby.Bullish|60': 'Candle.AbandonedBaby.Bullish|60', 835 'Candle.AbandonedBaby.Bullish|120': 'Candle.AbandonedBaby.Bullish|120', 836 'Candle.AbandonedBaby.Bullish|240': 'Candle.AbandonedBaby.Bullish|240', 837 'Candle.AbandonedBaby.Bullish|1W': 'Candle.AbandonedBaby.Bullish|1W', 838 'Candle.AbandonedBaby.Bullish|1M': 'Candle.AbandonedBaby.Bullish|1M', 839 'Candle.Doji': 'Candle.Doji', 840 'Candle.Doji|1': 'Candle.Doji|1', 841 'Candle.Doji|5': 'Candle.Doji|5', 842 'Candle.Doji|15': 'Candle.Doji|15', 843 'Candle.Doji|30': 'Candle.Doji|30', 844 'Candle.Doji|60': 'Candle.Doji|60', 845 'Candle.Doji|120': 'Candle.Doji|120', 846 'Candle.Doji|240': 'Candle.Doji|240', 847 'Candle.Doji|1W': 'Candle.Doji|1W', 848 'Candle.Doji|1M': 'Candle.Doji|1M', 849 'Candle.Doji.Dragonfly': 'Candle.Doji.Dragonfly', 850 'Candle.Doji.Dragonfly|1': 'Candle.Doji.Dragonfly|1', 851 'Candle.Doji.Dragonfly|5': 'Candle.Doji.Dragonfly|5', 852 'Candle.Doji.Dragonfly|15': 'Candle.Doji.Dragonfly|15', 853 'Candle.Doji.Dragonfly|30': 'Candle.Doji.Dragonfly|30', 854 'Candle.Doji.Dragonfly|60': 'Candle.Doji.Dragonfly|60', 855 'Candle.Doji.Dragonfly|120': 'Candle.Doji.Dragonfly|120', 856 'Candle.Doji.Dragonfly|240': 'Candle.Doji.Dragonfly|240', 857 'Candle.Doji.Dragonfly|1W': 'Candle.Doji.Dragonfly|1W', 858 'Candle.Doji.Dragonfly|1M': 'Candle.Doji.Dragonfly|1M', 859 'Candle.Doji.Gravestone': 'Candle.Doji.Gravestone', 860 'Candle.Doji.Gravestone|1': 'Candle.Doji.Gravestone|1', 861 'Candle.Doji.Gravestone|5': 'Candle.Doji.Gravestone|5', 862 'Candle.Doji.Gravestone|15': 'Candle.Doji.Gravestone|15', 863 'Candle.Doji.Gravestone|30': 'Candle.Doji.Gravestone|30', 864 'Candle.Doji.Gravestone|60': 'Candle.Doji.Gravestone|60', 865 'Candle.Doji.Gravestone|120': 'Candle.Doji.Gravestone|120', 866 'Candle.Doji.Gravestone|240': 'Candle.Doji.Gravestone|240', 867 'Candle.Doji.Gravestone|1W': 'Candle.Doji.Gravestone|1W', 868 'Candle.Doji.Gravestone|1M': 'Candle.Doji.Gravestone|1M', 869 'Candle.Engulfing.Bearish': 'Candle.Engulfing.Bearish', 870 'Candle.Engulfing.Bearish|1': 'Candle.Engulfing.Bearish|1', 871 'Candle.Engulfing.Bearish|5': 'Candle.Engulfing.Bearish|5', 872 'Candle.Engulfing.Bearish|15': 'Candle.Engulfing.Bearish|15', 873 'Candle.Engulfing.Bearish|30': 'Candle.Engulfing.Bearish|30', 874 'Candle.Engulfing.Bearish|60': 'Candle.Engulfing.Bearish|60', 875 'Candle.Engulfing.Bearish|120': 'Candle.Engulfing.Bearish|120', 876 'Candle.Engulfing.Bearish|240': 'Candle.Engulfing.Bearish|240', 877 'Candle.Engulfing.Bearish|1W': 'Candle.Engulfing.Bearish|1W', 878 'Candle.Engulfing.Bearish|1M': 'Candle.Engulfing.Bearish|1M', 879 'Candle.Engulfing.Bullish': 'Candle.Engulfing.Bullish', 880 'Candle.Engulfing.Bullish|1': 'Candle.Engulfing.Bullish|1', 881 'Candle.Engulfing.Bullish|5': 'Candle.Engulfing.Bullish|5', 882 'Candle.Engulfing.Bullish|15': 'Candle.Engulfing.Bullish|15', 883 'Candle.Engulfing.Bullish|30': 'Candle.Engulfing.Bullish|30', 884 'Candle.Engulfing.Bullish|60': 'Candle.Engulfing.Bullish|60', 885 'Candle.Engulfing.Bullish|120': 'Candle.Engulfing.Bullish|120', 886 'Candle.Engulfing.Bullish|240': 'Candle.Engulfing.Bullish|240', 887 'Candle.Engulfing.Bullish|1W': 'Candle.Engulfing.Bullish|1W', 888 'Candle.Engulfing.Bullish|1M': 'Candle.Engulfing.Bullish|1M', 889 'Candle.EveningStar': 'Candle.EveningStar', 890 'Candle.EveningStar|1': 'Candle.EveningStar|1', 891 'Candle.EveningStar|5': 'Candle.EveningStar|5', 892 'Candle.EveningStar|15': 'Candle.EveningStar|15', 893 'Candle.EveningStar|30': 'Candle.EveningStar|30', 894 'Candle.EveningStar|60': 'Candle.EveningStar|60', 895 'Candle.EveningStar|120': 'Candle.EveningStar|120', 896 'Candle.EveningStar|240': 'Candle.EveningStar|240', 897 'Candle.EveningStar|1W': 'Candle.EveningStar|1W', 898 'Candle.EveningStar|1M': 'Candle.EveningStar|1M', 899 'Candle.Hammer': 'Candle.Hammer', 900 'Candle.Hammer|1': 'Candle.Hammer|1', 901 'Candle.Hammer|5': 'Candle.Hammer|5', 902 'Candle.Hammer|15': 'Candle.Hammer|15', 903 'Candle.Hammer|30': 'Candle.Hammer|30', 904 'Candle.Hammer|60': 'Candle.Hammer|60', 905 'Candle.Hammer|120': 'Candle.Hammer|120', 906 'Candle.Hammer|240': 'Candle.Hammer|240', 907 'Candle.Hammer|1W': 'Candle.Hammer|1W', 908 'Candle.Hammer|1M': 'Candle.Hammer|1M', 909 'Candle.HangingMan': 'Candle.HangingMan', 910 'Candle.HangingMan|1': 'Candle.HangingMan|1', 911 'Candle.HangingMan|5': 'Candle.HangingMan|5', 912 'Candle.HangingMan|15': 'Candle.HangingMan|15', 913 'Candle.HangingMan|30': 'Candle.HangingMan|30', 914 'Candle.HangingMan|60': 'Candle.HangingMan|60', 915 'Candle.HangingMan|120': 'Candle.HangingMan|120', 916 'Candle.HangingMan|240': 'Candle.HangingMan|240', 917 'Candle.HangingMan|1W': 'Candle.HangingMan|1W', 918 'Candle.HangingMan|1M': 'Candle.HangingMan|1M', 919 'Candle.Harami.Bearish': 'Candle.Harami.Bearish', 920 'Candle.Harami.Bearish|1': 'Candle.Harami.Bearish|1', 921 'Candle.Harami.Bearish|5': 'Candle.Harami.Bearish|5', 922 'Candle.Harami.Bearish|15': 'Candle.Harami.Bearish|15', 923 'Candle.Harami.Bearish|30': 'Candle.Harami.Bearish|30', 924 'Candle.Harami.Bearish|60': 'Candle.Harami.Bearish|60', 925 'Candle.Harami.Bearish|120': 'Candle.Harami.Bearish|120', 926 'Candle.Harami.Bearish|240': 'Candle.Harami.Bearish|240', 927 'Candle.Harami.Bearish|1W': 'Candle.Harami.Bearish|1W', 928 'Candle.Harami.Bearish|1M': 'Candle.Harami.Bearish|1M', 929 'Candle.Harami.Bullish': 'Candle.Harami.Bullish', 930 'Candle.Harami.Bullish|1': 'Candle.Harami.Bullish|1', 931 'Candle.Harami.Bullish|5': 'Candle.Harami.Bullish|5', 932 'Candle.Harami.Bullish|15': 'Candle.Harami.Bullish|15', 933 'Candle.Harami.Bullish|30': 'Candle.Harami.Bullish|30', 934 'Candle.Harami.Bullish|60': 'Candle.Harami.Bullish|60', 935 'Candle.Harami.Bullish|120': 'Candle.Harami.Bullish|120', 936 'Candle.Harami.Bullish|240': 'Candle.Harami.Bullish|240', 937 'Candle.Harami.Bullish|1W': 'Candle.Harami.Bullish|1W', 938 'Candle.Harami.Bullish|1M': 'Candle.Harami.Bullish|1M', 939 'Candle.InvertedHammer': 'Candle.InvertedHammer', 940 'Candle.InvertedHammer|1': 'Candle.InvertedHammer|1', 941 'Candle.InvertedHammer|5': 'Candle.InvertedHammer|5', 942 'Candle.InvertedHammer|15': 'Candle.InvertedHammer|15', 943 'Candle.InvertedHammer|30': 'Candle.InvertedHammer|30', 944 'Candle.InvertedHammer|60': 'Candle.InvertedHammer|60', 945 'Candle.InvertedHammer|120': 'Candle.InvertedHammer|120', 946 'Candle.InvertedHammer|240': 'Candle.InvertedHammer|240', 947 'Candle.InvertedHammer|1W': 'Candle.InvertedHammer|1W', 948 'Candle.InvertedHammer|1M': 'Candle.InvertedHammer|1M', 949 'Candle.Kicking.Bearish': 'Candle.Kicking.Bearish', 950 'Candle.Kicking.Bearish|1': 'Candle.Kicking.Bearish|1', 951 'Candle.Kicking.Bearish|5': 'Candle.Kicking.Bearish|5', 952 'Candle.Kicking.Bearish|15': 'Candle.Kicking.Bearish|15', 953 'Candle.Kicking.Bearish|30': 'Candle.Kicking.Bearish|30', 954 'Candle.Kicking.Bearish|60': 'Candle.Kicking.Bearish|60', 955 'Candle.Kicking.Bearish|120': 'Candle.Kicking.Bearish|120', 956 'Candle.Kicking.Bearish|240': 'Candle.Kicking.Bearish|240', 957 'Candle.Kicking.Bearish|1W': 'Candle.Kicking.Bearish|1W', 958 'Candle.Kicking.Bearish|1M': 'Candle.Kicking.Bearish|1M', 959 'Candle.Kicking.Bullish': 'Candle.Kicking.Bullish', 960 'Candle.Kicking.Bullish|1': 'Candle.Kicking.Bullish|1', 961 'Candle.Kicking.Bullish|5': 'Candle.Kicking.Bullish|5', 962 'Candle.Kicking.Bullish|15': 'Candle.Kicking.Bullish|15', 963 'Candle.Kicking.Bullish|30': 'Candle.Kicking.Bullish|30', 964 'Candle.Kicking.Bullish|60': 'Candle.Kicking.Bullish|60', 965 'Candle.Kicking.Bullish|120': 'Candle.Kicking.Bullish|120', 966 'Candle.Kicking.Bullish|240': 'Candle.Kicking.Bullish|240', 967 'Candle.Kicking.Bullish|1W': 'Candle.Kicking.Bullish|1W', 968 'Candle.Kicking.Bullish|1M': 'Candle.Kicking.Bullish|1M', 969 'Candle.LongShadow.Lower': 'Candle.LongShadow.Lower', 970 'Candle.LongShadow.Lower|1': 'Candle.LongShadow.Lower|1', 971 'Candle.LongShadow.Lower|5': 'Candle.LongShadow.Lower|5', 972 'Candle.LongShadow.Lower|15': 'Candle.LongShadow.Lower|15', 973 'Candle.LongShadow.Lower|30': 'Candle.LongShadow.Lower|30', 974 'Candle.LongShadow.Lower|60': 'Candle.LongShadow.Lower|60', 975 'Candle.LongShadow.Lower|120': 'Candle.LongShadow.Lower|120', 976 'Candle.LongShadow.Lower|240': 'Candle.LongShadow.Lower|240', 977 'Candle.LongShadow.Lower|1W': 'Candle.LongShadow.Lower|1W', 978 'Candle.LongShadow.Lower|1M': 'Candle.LongShadow.Lower|1M', 979 'Candle.LongShadow.Upper': 'Candle.LongShadow.Upper', 980 'Candle.LongShadow.Upper|1': 'Candle.LongShadow.Upper|1', 981 'Candle.LongShadow.Upper|5': 'Candle.LongShadow.Upper|5', 982 'Candle.LongShadow.Upper|15': 'Candle.LongShadow.Upper|15', 983 'Candle.LongShadow.Upper|30': 'Candle.LongShadow.Upper|30', 984 'Candle.LongShadow.Upper|60': 'Candle.LongShadow.Upper|60', 985 'Candle.LongShadow.Upper|120': 'Candle.LongShadow.Upper|120', 986 'Candle.LongShadow.Upper|240': 'Candle.LongShadow.Upper|240', 987 'Candle.LongShadow.Upper|1W': 'Candle.LongShadow.Upper|1W', 988 'Candle.LongShadow.Upper|1M': 'Candle.LongShadow.Upper|1M', 989 'Candle.Marubozu.Black': 'Candle.Marubozu.Black', 990 'Candle.Marubozu.Black|1': 'Candle.Marubozu.Black|1', 991 'Candle.Marubozu.Black|5': 'Candle.Marubozu.Black|5', 992 'Candle.Marubozu.Black|15': 'Candle.Marubozu.Black|15', 993 'Candle.Marubozu.Black|30': 'Candle.Marubozu.Black|30', 994 'Candle.Marubozu.Black|60': 'Candle.Marubozu.Black|60', 995 'Candle.Marubozu.Black|120': 'Candle.Marubozu.Black|120', 996 'Candle.Marubozu.Black|240': 'Candle.Marubozu.Black|240', 997 'Candle.Marubozu.Black|1W': 'Candle.Marubozu.Black|1W', 998 'Candle.Marubozu.Black|1M': 'Candle.Marubozu.Black|1M', 999 'Candle.Marubozu.White': 'Candle.Marubozu.White', 1000 'Candle.Marubozu.White|1': 'Candle.Marubozu.White|1', 1001 'Candle.Marubozu.White|5': 'Candle.Marubozu.White|5', 1002 'Candle.Marubozu.White|15': 'Candle.Marubozu.White|15', 1003 'Candle.Marubozu.White|30': 'Candle.Marubozu.White|30', 1004 'Candle.Marubozu.White|60': 'Candle.Marubozu.White|60', 1005 'Candle.Marubozu.White|120': 'Candle.Marubozu.White|120', 1006 'Candle.Marubozu.White|240': 'Candle.Marubozu.White|240', 1007 'Candle.Marubozu.White|1W': 'Candle.Marubozu.White|1W', 1008 'Candle.Marubozu.White|1M': 'Candle.Marubozu.White|1M', 1009 'Candle.MorningStar': 'Candle.MorningStar', 1010 'Candle.MorningStar|1': 'Candle.MorningStar|1', 1011 'Candle.MorningStar|5': 'Candle.MorningStar|5', 1012 'Candle.MorningStar|15': 'Candle.MorningStar|15', 1013 'Candle.MorningStar|30': 'Candle.MorningStar|30', 1014 'Candle.MorningStar|60': 'Candle.MorningStar|60', 1015 'Candle.MorningStar|120': 'Candle.MorningStar|120', 1016 'Candle.MorningStar|240': 'Candle.MorningStar|240', 1017 'Candle.MorningStar|1W': 'Candle.MorningStar|1W', 1018 'Candle.MorningStar|1M': 'Candle.MorningStar|1M', 1019 'Candle.ShootingStar': 'Candle.ShootingStar', 1020 'Candle.ShootingStar|1': 'Candle.ShootingStar|1', 1021 'Candle.ShootingStar|5': 'Candle.ShootingStar|5', 1022 'Candle.ShootingStar|15': 'Candle.ShootingStar|15', 1023 'Candle.ShootingStar|30': 'Candle.ShootingStar|30', 1024 'Candle.ShootingStar|60': 'Candle.ShootingStar|60', 1025 'Candle.ShootingStar|120': 'Candle.ShootingStar|120', 1026 'Candle.ShootingStar|240': 'Candle.ShootingStar|240', 1027 'Candle.ShootingStar|1W': 'Candle.ShootingStar|1W', 1028 'Candle.ShootingStar|1M': 'Candle.ShootingStar|1M', 1029 'Candle.SpinningTop.Black': 'Candle.SpinningTop.Black', 1030 'Candle.SpinningTop.Black|1': 'Candle.SpinningTop.Black|1', 1031 'Candle.SpinningTop.Black|5': 'Candle.SpinningTop.Black|5', 1032 'Candle.SpinningTop.Black|15': 'Candle.SpinningTop.Black|15', 1033 'Candle.SpinningTop.Black|30': 'Candle.SpinningTop.Black|30', 1034 'Candle.SpinningTop.Black|60': 'Candle.SpinningTop.Black|60', 1035 'Candle.SpinningTop.Black|120': 'Candle.SpinningTop.Black|120', 1036 'Candle.SpinningTop.Black|240': 'Candle.SpinningTop.Black|240', 1037 'Candle.SpinningTop.Black|1W': 'Candle.SpinningTop.Black|1W', 1038 'Candle.SpinningTop.Black|1M': 'Candle.SpinningTop.Black|1M', 1039 'Candle.SpinningTop.White': 'Candle.SpinningTop.White', 1040 'Candle.SpinningTop.White|1': 'Candle.SpinningTop.White|1', 1041 'Candle.SpinningTop.White|5': 'Candle.SpinningTop.White|5', 1042 'Candle.SpinningTop.White|15': 'Candle.SpinningTop.White|15', 1043 'Candle.SpinningTop.White|30': 'Candle.SpinningTop.White|30', 1044 'Candle.SpinningTop.White|60': 'Candle.SpinningTop.White|60', 1045 'Candle.SpinningTop.White|120': 'Candle.SpinningTop.White|120', 1046 'Candle.SpinningTop.White|240': 'Candle.SpinningTop.White|240', 1047 'Candle.SpinningTop.White|1W': 'Candle.SpinningTop.White|1W', 1048 'Candle.SpinningTop.White|1M': 'Candle.SpinningTop.White|1M', 1049 'Candle.TriStar.Bearish': 'Candle.TriStar.Bearish', 1050 'Candle.TriStar.Bearish|1': 'Candle.TriStar.Bearish|1', 1051 'Candle.TriStar.Bearish|5': 'Candle.TriStar.Bearish|5', 1052 'Candle.TriStar.Bearish|15': 'Candle.TriStar.Bearish|15', 1053 'Candle.TriStar.Bearish|30': 'Candle.TriStar.Bearish|30', 1054 'Candle.TriStar.Bearish|60': 'Candle.TriStar.Bearish|60', 1055 'Candle.TriStar.Bearish|120': 'Candle.TriStar.Bearish|120', 1056 'Candle.TriStar.Bearish|240': 'Candle.TriStar.Bearish|240', 1057 'Candle.TriStar.Bearish|1W': 'Candle.TriStar.Bearish|1W', 1058 'Candle.TriStar.Bearish|1M': 'Candle.TriStar.Bearish|1M', 1059 'Candle.TriStar.Bullish': 'Candle.TriStar.Bullish', 1060 'Candle.TriStar.Bullish|1': 'Candle.TriStar.Bullish|1', 1061 'Candle.TriStar.Bullish|5': 'Candle.TriStar.Bullish|5', 1062 'Candle.TriStar.Bullish|15': 'Candle.TriStar.Bullish|15', 1063 'Candle.TriStar.Bullish|30': 'Candle.TriStar.Bullish|30', 1064 'Candle.TriStar.Bullish|60': 'Candle.TriStar.Bullish|60', 1065 'Candle.TriStar.Bullish|120': 'Candle.TriStar.Bullish|120', 1066 'Candle.TriStar.Bullish|240': 'Candle.TriStar.Bullish|240', 1067 'Candle.TriStar.Bullish|1W': 'Candle.TriStar.Bullish|1W', 1068 'Candle.TriStar.Bullish|1M': 'Candle.TriStar.Bullish|1M', 1069 'ChaikinMoneyFlow': 'ChaikinMoneyFlow', 1070 'ChaikinMoneyFlow|1': 'ChaikinMoneyFlow|1', 1071 'ChaikinMoneyFlow|5': 'ChaikinMoneyFlow|5', 1072 'ChaikinMoneyFlow|15': 'ChaikinMoneyFlow|15', 1073 'ChaikinMoneyFlow|30': 'ChaikinMoneyFlow|30', 1074 'ChaikinMoneyFlow|60': 'ChaikinMoneyFlow|60', 1075 'ChaikinMoneyFlow|120': 'ChaikinMoneyFlow|120', 1076 'ChaikinMoneyFlow|240': 'ChaikinMoneyFlow|240', 1077 'ChaikinMoneyFlow|1W': 'ChaikinMoneyFlow|1W', 1078 'ChaikinMoneyFlow|1M': 'ChaikinMoneyFlow|1M', 1079 'DonchCh20.Lower': 'DonchCh20.Lower', 1080 'DonchCh20.Lower|1': 'DonchCh20.Lower|1', 1081 'DonchCh20.Lower|5': 'DonchCh20.Lower|5', 1082 'DonchCh20.Lower|15': 'DonchCh20.Lower|15', 1083 'DonchCh20.Lower|30': 'DonchCh20.Lower|30', 1084 'DonchCh20.Lower|60': 'DonchCh20.Lower|60', 1085 'DonchCh20.Lower|120': 'DonchCh20.Lower|120', 1086 'DonchCh20.Lower|240': 'DonchCh20.Lower|240', 1087 'DonchCh20.Lower|1W': 'DonchCh20.Lower|1W', 1088 'DonchCh20.Lower|1M': 'DonchCh20.Lower|1M', 1089 'DonchCh20.Middle': 'DonchCh20.Middle', 1090 'DonchCh20.Middle|1': 'DonchCh20.Middle|1', 1091 'DonchCh20.Middle|5': 'DonchCh20.Middle|5', 1092 'DonchCh20.Middle|15': 'DonchCh20.Middle|15', 1093 'DonchCh20.Middle|30': 'DonchCh20.Middle|30', 1094 'DonchCh20.Middle|60': 'DonchCh20.Middle|60', 1095 'DonchCh20.Middle|120': 'DonchCh20.Middle|120', 1096 'DonchCh20.Middle|240': 'DonchCh20.Middle|240', 1097 'DonchCh20.Middle|1W': 'DonchCh20.Middle|1W', 1098 'DonchCh20.Middle|1M': 'DonchCh20.Middle|1M', 1099 'DonchCh20.Upper': 'DonchCh20.Upper', 1100 'DonchCh20.Upper|1': 'DonchCh20.Upper|1', 1101 'DonchCh20.Upper|5': 'DonchCh20.Upper|5', 1102 'DonchCh20.Upper|15': 'DonchCh20.Upper|15', 1103 'DonchCh20.Upper|30': 'DonchCh20.Upper|30', 1104 'DonchCh20.Upper|60': 'DonchCh20.Upper|60', 1105 'DonchCh20.Upper|120': 'DonchCh20.Upper|120', 1106 'DonchCh20.Upper|240': 'DonchCh20.Upper|240', 1107 'DonchCh20.Upper|1W': 'DonchCh20.Upper|1W', 1108 'DonchCh20.Upper|1M': 'DonchCh20.Upper|1M', 1109 'ECONOMICS.AA': 'ECONOMICS.AA', 1110 'ECONOMICS.BLR': 'ECONOMICS.BLR', 1111 'ECONOMICS.CAG': 'ECONOMICS.CAG', 1112 'ECONOMICS.CAP': 'ECONOMICS.CAP', 1113 'ECONOMICS.CAR': 'ECONOMICS.CAR', 1114 'ECONOMICS.CCI': 'ECONOMICS.CCI', 1115 'ECONOMICS.CCP': 'ECONOMICS.CCP', 1116 'ECONOMICS.CEP': 'ECONOMICS.CEP', 1117 'ECONOMICS.COIR': 'ECONOMICS.COIR', 1118 'ECONOMICS.COP': 'ECONOMICS.COP', 1119 'ECONOMICS.COR': 'ECONOMICS.COR', 1120 'ECONOMICS.CORPI': 'ECONOMICS.CORPI', 1121 'ECONOMICS.CORR': 'ECONOMICS.CORR', 1122 'ECONOMICS.COUT': 'ECONOMICS.COUT', 1123 'ECONOMICS.CPI': 'ECONOMICS.CPI', 1124 'ECONOMICS.CPIHU': 'ECONOMICS.CPIHU', 1125 'ECONOMICS.CRR': 'ECONOMICS.CRR', 1126 'ECONOMICS.CTR': 'ECONOMICS.CTR', 1127 'ECONOMICS.DIR': 'ECONOMICS.DIR', 1128 'ECONOMICS.EDBR': 'ECONOMICS.EDBR', 1129 'ECONOMICS.ELP': 'ECONOMICS.ELP', 1130 'ECONOMICS.EMP': 'ECONOMICS.EMP', 1131 'ECONOMICS.EMR': 'ECONOMICS.EMR', 1132 'ECONOMICS.EP': 'ECONOMICS.EP', 1133 'ECONOMICS.FI': 'ECONOMICS.FI', 1134 'ECONOMICS.FTE': 'ECONOMICS.FTE', 1135 'ECONOMICS.GASP': 'ECONOMICS.GASP', 1136 'ECONOMICS.GBP': 'ECONOMICS.GBP', 1137 'ECONOMICS.GCI': 'ECONOMICS.GCI', 1138 'ECONOMICS.GCR': 'ECONOMICS.GCR', 1139 'ECONOMICS.GDG': 'ECONOMICS.GDG', 1140 'ECONOMICS.GDP': 'ECONOMICS.GDP', 1141 'ECONOMICS.GDPPC': 'ECONOMICS.GDPPC', 1142 'ECONOMICS.GDPPCP': 'ECONOMICS.GDPPCP', 1143 'ECONOMICS.GDPQQ': 'ECONOMICS.GDPQQ', 1144 'ECONOMICS.GDPYY': 'ECONOMICS.GDPYY', 1145 'ECONOMICS.GSG': 'ECONOMICS.GSG', 1146 'ECONOMICS.HB': 'ECONOMICS.HB', 1147 'ECONOMICS.HDG': 'ECONOMICS.HDG', 1148 'ECONOMICS.HDI': 'ECONOMICS.HDI', 1149 'ECONOMICS.HICP': 'ECONOMICS.HICP', 1150 'ECONOMICS.HIRMM': 'ECONOMICS.HIRMM', 1151 'ECONOMICS.HIRYY': 'ECONOMICS.HIRYY', 1152 'ECONOMICS.HOR': 'ECONOMICS.HOR', 1153 'ECONOMICS.HOSP': 'ECONOMICS.HOSP', 1154 'ECONOMICS.ICUB': 'ECONOMICS.ICUB', 1155 'ECONOMICS.IE': 'ECONOMICS.IE', 1156 'ECONOMICS.INBR': 'ECONOMICS.INBR', 1157 'ECONOMICS.INTR': 'ECONOMICS.INTR', 1158 'ECONOMICS.IPA': 'ECONOMICS.IPA', 1159 'ECONOMICS.IPMM': 'ECONOMICS.IPMM', 1160 'ECONOMICS.IPRI': 'ECONOMICS.IPRI', 1161 'ECONOMICS.IPYY': 'ECONOMICS.IPYY', 1162 'ECONOMICS.IRMM': 'ECONOMICS.IRMM', 1163 'ECONOMICS.IRYY': 'ECONOMICS.IRYY', 1164 'ECONOMICS.ISP': 'ECONOMICS.ISP', 1165 'ECONOMICS.LC': 'ECONOMICS.LC', 1166 'ECONOMICS.LFPR': 'ECONOMICS.LFPR', 1167 'ECONOMICS.LG': 'ECONOMICS.LG', 1168 'ECONOMICS.LR': 'ECONOMICS.LR', 1169 'ECONOMICS.LTUR': 'ECONOMICS.LTUR', 1170 'ECONOMICS.MD': 'ECONOMICS.MD', 1171 'ECONOMICS.ME': 'ECONOMICS.ME', 1172 'ECONOMICS.MGDPYY': 'ECONOMICS.MGDPYY', 1173 'ECONOMICS.MIP': 'ECONOMICS.MIP', 1174 'ECONOMICS.MPRYY': 'ECONOMICS.MPRYY', 1175 'ECONOMICS.NGI': 'ECONOMICS.NGI', 1176 'ECONOMICS.NGIR': 'ECONOMICS.NGIR', 1177 'ECONOMICS.NURS': 'ECONOMICS.NURS', 1178 'ECONOMICS.PDG': 'ECONOMICS.PDG', 1179 'ECONOMICS.PITR': 'ECONOMICS.PITR', 1180 'ECONOMICS.POP': 'ECONOMICS.POP', 1181 'ECONOMICS.PPI': 'ECONOMICS.PPI', 1182 'ECONOMICS.PPIMM': 'ECONOMICS.PPIMM', 1183 'ECONOMICS.PPIYY': 'ECONOMICS.PPIYY', 1184 'ECONOMICS.PTE': 'ECONOMICS.PTE', 1185 'ECONOMICS.RAM': 'ECONOMICS.RAM', 1186 'ECONOMICS.RAW': 'ECONOMICS.RAW', 1187 'ECONOMICS.RSMM': 'ECONOMICS.RSMM', 1188 'ECONOMICS.RSYY': 'ECONOMICS.RSYY', 1189 'ECONOMICS.SP': 'ECONOMICS.SP', 1190 'ECONOMICS.SSR': 'ECONOMICS.SSR', 1191 'ECONOMICS.SSRC': 'ECONOMICS.SSRC', 1192 'ECONOMICS.SSRE': 'ECONOMICS.SSRE', 1193 'ECONOMICS.STR': 'ECONOMICS.STR', 1194 'ECONOMICS.TA': 'ECONOMICS.TA', 1195 'ECONOMICS.TI': 'ECONOMICS.TI', 1196 'ECONOMICS.TOT': 'ECONOMICS.TOT', 1197 'ECONOMICS.TVS': 'ECONOMICS.TVS', 1198 'ECONOMICS.UP': 'ECONOMICS.UP', 1199 'ECONOMICS.UR': 'ECONOMICS.UR', 1200 'ECONOMICS.WES': 'ECONOMICS.WES', 1201 'ECONOMICS.WG': 'ECONOMICS.WG', 1202 'ECONOMICS.YUR': 'ECONOMICS.YUR', 1203 'EMA10': 'EMA10', 1204 'EMA10|1': 'EMA10|1', 1205 'EMA10|5': 'EMA10|5', 1206 'EMA10|15': 'EMA10|15', 1207 'EMA10|30': 'EMA10|30', 1208 'EMA10|60': 'EMA10|60', 1209 'EMA10|120': 'EMA10|120', 1210 'EMA10|240': 'EMA10|240', 1211 'EMA10|1W': 'EMA10|1W', 1212 'EMA10|1M': 'EMA10|1M', 1213 'EMA100': 'EMA100', 1214 'EMA100|1': 'EMA100|1', 1215 'EMA100|5': 'EMA100|5', 1216 'EMA100|15': 'EMA100|15', 1217 'EMA100|30': 'EMA100|30', 1218 'EMA100|60': 'EMA100|60', 1219 'EMA100|120': 'EMA100|120', 1220 'EMA100|240': 'EMA100|240', 1221 'EMA100|1W': 'EMA100|1W', 1222 'EMA100|1M': 'EMA100|1M', 1223 'EMA12': 'EMA12', 1224 'EMA12|1': 'EMA12|1', 1225 'EMA12|5': 'EMA12|5', 1226 'EMA12|15': 'EMA12|15', 1227 'EMA12|30': 'EMA12|30', 1228 'EMA12|60': 'EMA12|60', 1229 'EMA12|120': 'EMA12|120', 1230 'EMA12|240': 'EMA12|240', 1231 'EMA12|1W': 'EMA12|1W', 1232 'EMA12|1M': 'EMA12|1M', 1233 'EMA120': 'EMA120', 1234 'EMA120|1': 'EMA120|1', 1235 'EMA120|5': 'EMA120|5', 1236 'EMA120|15': 'EMA120|15', 1237 'EMA120|30': 'EMA120|30', 1238 'EMA120|60': 'EMA120|60', 1239 'EMA120|120': 'EMA120|120', 1240 'EMA120|240': 'EMA120|240', 1241 'EMA120|1W': 'EMA120|1W', 1242 'EMA120|1M': 'EMA120|1M', 1243 'EMA13': 'EMA13', 1244 'EMA13|1': 'EMA13|1', 1245 'EMA13|5': 'EMA13|5', 1246 'EMA13|15': 'EMA13|15', 1247 'EMA13|30': 'EMA13|30', 1248 'EMA13|60': 'EMA13|60', 1249 'EMA13|120': 'EMA13|120', 1250 'EMA13|240': 'EMA13|240', 1251 'EMA13|1W': 'EMA13|1W', 1252 'EMA13|1M': 'EMA13|1M', 1253 'EMA150': 'EMA150', 1254 'EMA150|1': 'EMA150|1', 1255 'EMA150|5': 'EMA150|5', 1256 'EMA150|15': 'EMA150|15', 1257 'EMA150|30': 'EMA150|30', 1258 'EMA150|60': 'EMA150|60', 1259 'EMA150|120': 'EMA150|120', 1260 'EMA150|240': 'EMA150|240', 1261 'EMA150|1W': 'EMA150|1W', 1262 'EMA150|1M': 'EMA150|1M', 1263 'EMA20': 'EMA20', 1264 'EMA20|1': 'EMA20|1', 1265 'EMA20|5': 'EMA20|5', 1266 'EMA20|15': 'EMA20|15', 1267 'EMA20|30': 'EMA20|30', 1268 'EMA20|60': 'EMA20|60', 1269 'EMA20|120': 'EMA20|120', 1270 'EMA20|240': 'EMA20|240', 1271 'EMA20|1W': 'EMA20|1W', 1272 'EMA20|1M': 'EMA20|1M', 1273 'EMA200': 'EMA200', 1274 'EMA200|1': 'EMA200|1', 1275 'EMA200|5': 'EMA200|5', 1276 'EMA200|15': 'EMA200|15', 1277 'EMA200|30': 'EMA200|30', 1278 'EMA200|60': 'EMA200|60', 1279 'EMA200|120': 'EMA200|120', 1280 'EMA200|240': 'EMA200|240', 1281 'EMA200|1W': 'EMA200|1W', 1282 'EMA200|1M': 'EMA200|1M', 1283 'EMA21': 'EMA21', 1284 'EMA21|1': 'EMA21|1', 1285 'EMA21|5': 'EMA21|5', 1286 'EMA21|15': 'EMA21|15', 1287 'EMA21|30': 'EMA21|30', 1288 'EMA21|60': 'EMA21|60', 1289 'EMA21|120': 'EMA21|120', 1290 'EMA21|240': 'EMA21|240', 1291 'EMA21|1W': 'EMA21|1W', 1292 'EMA21|1M': 'EMA21|1M', 1293 'EMA25': 'EMA25', 1294 'EMA25|1': 'EMA25|1', 1295 'EMA25|5': 'EMA25|5', 1296 'EMA25|15': 'EMA25|15', 1297 'EMA25|30': 'EMA25|30', 1298 'EMA25|60': 'EMA25|60', 1299 'EMA25|120': 'EMA25|120', 1300 'EMA25|240': 'EMA25|240', 1301 'EMA25|1W': 'EMA25|1W', 1302 'EMA25|1M': 'EMA25|1M', 1303 'EMA250': 'EMA250', 1304 'EMA250|1': 'EMA250|1', 1305 'EMA250|5': 'EMA250|5', 1306 'EMA250|15': 'EMA250|15', 1307 'EMA250|30': 'EMA250|30', 1308 'EMA250|60': 'EMA250|60', 1309 'EMA250|120': 'EMA250|120', 1310 'EMA250|240': 'EMA250|240', 1311 'EMA250|1W': 'EMA250|1W', 1312 'EMA250|1M': 'EMA250|1M', 1313 'EMA3': 'EMA3', 1314 'EMA3|1': 'EMA3|1', 1315 'EMA3|5': 'EMA3|5', 1316 'EMA3|15': 'EMA3|15', 1317 'EMA3|30': 'EMA3|30', 1318 'EMA3|60': 'EMA3|60', 1319 'EMA3|120': 'EMA3|120', 1320 'EMA3|240': 'EMA3|240', 1321 'EMA3|1W': 'EMA3|1W', 1322 'EMA3|1M': 'EMA3|1M', 1323 'EMA30': 'EMA30', 1324 'EMA30|1': 'EMA30|1', 1325 'EMA30|5': 'EMA30|5', 1326 'EMA30|15': 'EMA30|15', 1327 'EMA30|30': 'EMA30|30', 1328 'EMA30|60': 'EMA30|60', 1329 'EMA30|120': 'EMA30|120', 1330 'EMA30|240': 'EMA30|240', 1331 'EMA30|1W': 'EMA30|1W', 1332 'EMA30|1M': 'EMA30|1M', 1333 'EMA300': 'EMA300', 1334 'EMA300|1': 'EMA300|1', 1335 'EMA300|5': 'EMA300|5', 1336 'EMA300|15': 'EMA300|15', 1337 'EMA300|30': 'EMA300|30', 1338 'EMA300|60': 'EMA300|60', 1339 'EMA300|120': 'EMA300|120', 1340 'EMA300|240': 'EMA300|240', 1341 'EMA300|1W': 'EMA300|1W', 1342 'EMA300|1M': 'EMA300|1M', 1343 'EMA40': 'EMA40', 1344 'EMA40|1': 'EMA40|1', 1345 'EMA40|5': 'EMA40|5', 1346 'EMA40|15': 'EMA40|15', 1347 'EMA40|30': 'EMA40|30', 1348 'EMA40|60': 'EMA40|60', 1349 'EMA40|120': 'EMA40|120', 1350 'EMA40|240': 'EMA40|240', 1351 'EMA40|1W': 'EMA40|1W', 1352 'EMA40|1M': 'EMA40|1M', 1353 'EMA5': 'EMA5', 1354 'EMA5|1': 'EMA5|1', 1355 'EMA5|5': 'EMA5|5', 1356 'EMA5|15': 'EMA5|15', 1357 'EMA5|30': 'EMA5|30', 1358 'EMA5|60': 'EMA5|60', 1359 'EMA5|120': 'EMA5|120', 1360 'EMA5|240': 'EMA5|240', 1361 'EMA5|1W': 'EMA5|1W', 1362 'EMA5|1M': 'EMA5|1M', 1363 'EMA50': 'EMA50', 1364 'EMA50|1': 'EMA50|1', 1365 'EMA50|5': 'EMA50|5', 1366 'EMA50|15': 'EMA50|15', 1367 'EMA50|30': 'EMA50|30', 1368 'EMA50|60': 'EMA50|60', 1369 'EMA50|120': 'EMA50|120', 1370 'EMA50|240': 'EMA50|240', 1371 'EMA50|1W': 'EMA50|1W', 1372 'EMA50|1M': 'EMA50|1M', 1373 'EMA6': 'EMA6', 1374 'EMA6|1': 'EMA6|1', 1375 'EMA6|5': 'EMA6|5', 1376 'EMA6|15': 'EMA6|15', 1377 'EMA6|30': 'EMA6|30', 1378 'EMA6|60': 'EMA6|60', 1379 'EMA6|120': 'EMA6|120', 1380 'EMA6|240': 'EMA6|240', 1381 'EMA6|1W': 'EMA6|1W', 1382 'EMA6|1M': 'EMA6|1M', 1383 'EMA7': 'EMA7', 1384 'EMA7|1': 'EMA7|1', 1385 'EMA7|5': 'EMA7|5', 1386 'EMA7|15': 'EMA7|15', 1387 'EMA7|30': 'EMA7|30', 1388 'EMA7|60': 'EMA7|60', 1389 'EMA7|120': 'EMA7|120', 1390 'EMA7|240': 'EMA7|240', 1391 'EMA7|1W': 'EMA7|1W', 1392 'EMA7|1M': 'EMA7|1M', 1393 'EMA75': 'EMA75', 1394 'EMA75|1': 'EMA75|1', 1395 'EMA75|5': 'EMA75|5', 1396 'EMA75|15': 'EMA75|15', 1397 'EMA75|30': 'EMA75|30', 1398 'EMA75|60': 'EMA75|60', 1399 'EMA75|120': 'EMA75|120', 1400 'EMA75|240': 'EMA75|240', 1401 'EMA75|1W': 'EMA75|1W', 1402 'EMA75|1M': 'EMA75|1M', 1403 'EMA8': 'EMA8', 1404 'EMA8|1': 'EMA8|1', 1405 'EMA8|5': 'EMA8|5', 1406 'EMA8|15': 'EMA8|15', 1407 'EMA8|30': 'EMA8|30', 1408 'EMA8|60': 'EMA8|60', 1409 'EMA8|120': 'EMA8|120', 1410 'EMA8|240': 'EMA8|240', 1411 'EMA8|1W': 'EMA8|1W', 1412 'EMA8|1M': 'EMA8|1M', 1413 'EMA9': 'EMA9', 1414 'EMA9|1': 'EMA9|1', 1415 'EMA9|5': 'EMA9|5', 1416 'EMA9|15': 'EMA9|15', 1417 'EMA9|30': 'EMA9|30', 1418 'EMA9|60': 'EMA9|60', 1419 'EMA9|120': 'EMA9|120', 1420 'EMA9|240': 'EMA9|240', 1421 'EMA9|1W': 'EMA9|1W', 1422 'EMA9|1M': 'EMA9|1M', 1423 'High.1M': 'High.1M', 1424 'High.1M.Date': 'High.1M.Date', 1425 'High.3M': 'High.3M', 1426 'High.3M.Date': 'High.3M.Date', 1427 'High.5D': 'High.5D', 1428 'High.6M': 'High.6M', 1429 'High.6M.Date': 'High.6M.Date', 1430 'High.All': 'High.All', 1431 'High.All.Calc': 'High.All.Calc', 1432 'High.All.Calc.Date': 'High.All.Calc.Date', 1433 'High.All.Date': 'High.All.Date', 1434 'HullMA9': 'HullMA9', 1435 'HullMA9|1': 'HullMA9|1', 1436 'HullMA9|5': 'HullMA9|5', 1437 'HullMA9|15': 'HullMA9|15', 1438 'HullMA9|30': 'HullMA9|30', 1439 'HullMA9|60': 'HullMA9|60', 1440 'HullMA9|120': 'HullMA9|120', 1441 'HullMA9|240': 'HullMA9|240', 1442 'HullMA9|1W': 'HullMA9|1W', 1443 'HullMA9|1M': 'HullMA9|1M', 1444 'Ichimoku.BLine': 'Ichimoku.BLine', 1445 'Ichimoku.BLine|1': 'Ichimoku.BLine|1', 1446 'Ichimoku.BLine|5': 'Ichimoku.BLine|5', 1447 'Ichimoku.BLine|15': 'Ichimoku.BLine|15', 1448 'Ichimoku.BLine|30': 'Ichimoku.BLine|30', 1449 'Ichimoku.BLine|60': 'Ichimoku.BLine|60', 1450 'Ichimoku.BLine|120': 'Ichimoku.BLine|120', 1451 'Ichimoku.BLine|240': 'Ichimoku.BLine|240', 1452 'Ichimoku.BLine|1W': 'Ichimoku.BLine|1W', 1453 'Ichimoku.BLine|1M': 'Ichimoku.BLine|1M', 1454 'Ichimoku.BLine_20_60_120_30': 'Ichimoku.BLine_20_60_120_30', 1455 'Ichimoku.BLine_20_60_120_30|1': 'Ichimoku.BLine_20_60_120_30|1', 1456 'Ichimoku.BLine_20_60_120_30|5': 'Ichimoku.BLine_20_60_120_30|5', 1457 'Ichimoku.BLine_20_60_120_30|15': 'Ichimoku.BLine_20_60_120_30|15', 1458 'Ichimoku.BLine_20_60_120_30|30': 'Ichimoku.BLine_20_60_120_30|30', 1459 'Ichimoku.BLine_20_60_120_30|60': 'Ichimoku.BLine_20_60_120_30|60', 1460 'Ichimoku.BLine_20_60_120_30|120': 'Ichimoku.BLine_20_60_120_30|120', 1461 'Ichimoku.BLine_20_60_120_30|240': 'Ichimoku.BLine_20_60_120_30|240', 1462 'Ichimoku.BLine_20_60_120_30|1W': 'Ichimoku.BLine_20_60_120_30|1W', 1463 'Ichimoku.BLine_20_60_120_30|1M': 'Ichimoku.BLine_20_60_120_30|1M', 1464 'Ichimoku.CLine': 'Ichimoku.CLine', 1465 'Ichimoku.CLine|1': 'Ichimoku.CLine|1', 1466 'Ichimoku.CLine|5': 'Ichimoku.CLine|5', 1467 'Ichimoku.CLine|15': 'Ichimoku.CLine|15', 1468 'Ichimoku.CLine|30': 'Ichimoku.CLine|30', 1469 'Ichimoku.CLine|60': 'Ichimoku.CLine|60', 1470 'Ichimoku.CLine|120': 'Ichimoku.CLine|120', 1471 'Ichimoku.CLine|240': 'Ichimoku.CLine|240', 1472 'Ichimoku.CLine|1W': 'Ichimoku.CLine|1W', 1473 'Ichimoku.CLine|1M': 'Ichimoku.CLine|1M', 1474 'Ichimoku.CLine_20_60_120_30': 'Ichimoku.CLine_20_60_120_30', 1475 'Ichimoku.CLine_20_60_120_30|1': 'Ichimoku.CLine_20_60_120_30|1', 1476 'Ichimoku.CLine_20_60_120_30|5': 'Ichimoku.CLine_20_60_120_30|5', 1477 'Ichimoku.CLine_20_60_120_30|15': 'Ichimoku.CLine_20_60_120_30|15', 1478 'Ichimoku.CLine_20_60_120_30|30': 'Ichimoku.CLine_20_60_120_30|30', 1479 'Ichimoku.CLine_20_60_120_30|60': 'Ichimoku.CLine_20_60_120_30|60', 1480 'Ichimoku.CLine_20_60_120_30|120': 'Ichimoku.CLine_20_60_120_30|120', 1481 'Ichimoku.CLine_20_60_120_30|240': 'Ichimoku.CLine_20_60_120_30|240', 1482 'Ichimoku.CLine_20_60_120_30|1W': 'Ichimoku.CLine_20_60_120_30|1W', 1483 'Ichimoku.CLine_20_60_120_30|1M': 'Ichimoku.CLine_20_60_120_30|1M', 1484 'Ichimoku.Lead1': 'Ichimoku.Lead1', 1485 'Ichimoku.Lead1|1': 'Ichimoku.Lead1|1', 1486 'Ichimoku.Lead1|5': 'Ichimoku.Lead1|5', 1487 'Ichimoku.Lead1|15': 'Ichimoku.Lead1|15', 1488 'Ichimoku.Lead1|30': 'Ichimoku.Lead1|30', 1489 'Ichimoku.Lead1|60': 'Ichimoku.Lead1|60', 1490 'Ichimoku.Lead1|120': 'Ichimoku.Lead1|120', 1491 'Ichimoku.Lead1|240': 'Ichimoku.Lead1|240', 1492 'Ichimoku.Lead1|1W': 'Ichimoku.Lead1|1W', 1493 'Ichimoku.Lead1|1M': 'Ichimoku.Lead1|1M', 1494 'Ichimoku.Lead1_20_60_120_30': 'Ichimoku.Lead1_20_60_120_30', 1495 'Ichimoku.Lead1_20_60_120_30|1': 'Ichimoku.Lead1_20_60_120_30|1', 1496 'Ichimoku.Lead1_20_60_120_30|5': 'Ichimoku.Lead1_20_60_120_30|5', 1497 'Ichimoku.Lead1_20_60_120_30|15': 'Ichimoku.Lead1_20_60_120_30|15', 1498 'Ichimoku.Lead1_20_60_120_30|30': 'Ichimoku.Lead1_20_60_120_30|30', 1499 'Ichimoku.Lead1_20_60_120_30|60': 'Ichimoku.Lead1_20_60_120_30|60', 1500 'Ichimoku.Lead1_20_60_120_30|120': 'Ichimoku.Lead1_20_60_120_30|120', 1501 'Ichimoku.Lead1_20_60_120_30|240': 'Ichimoku.Lead1_20_60_120_30|240', 1502 'Ichimoku.Lead1_20_60_120_30|1W': 'Ichimoku.Lead1_20_60_120_30|1W', 1503 'Ichimoku.Lead1_20_60_120_30|1M': 'Ichimoku.Lead1_20_60_120_30|1M', 1504 'Ichimoku.Lead2': 'Ichimoku.Lead2', 1505 'Ichimoku.Lead2|1': 'Ichimoku.Lead2|1', 1506 'Ichimoku.Lead2|5': 'Ichimoku.Lead2|5', 1507 'Ichimoku.Lead2|15': 'Ichimoku.Lead2|15', 1508 'Ichimoku.Lead2|30': 'Ichimoku.Lead2|30', 1509 'Ichimoku.Lead2|60': 'Ichimoku.Lead2|60', 1510 'Ichimoku.Lead2|120': 'Ichimoku.Lead2|120', 1511 'Ichimoku.Lead2|240': 'Ichimoku.Lead2|240', 1512 'Ichimoku.Lead2|1W': 'Ichimoku.Lead2|1W', 1513 'Ichimoku.Lead2|1M': 'Ichimoku.Lead2|1M', 1514 'Ichimoku.Lead2_20_60_120_30': 'Ichimoku.Lead2_20_60_120_30', 1515 'Ichimoku.Lead2_20_60_120_30|1': 'Ichimoku.Lead2_20_60_120_30|1', 1516 'Ichimoku.Lead2_20_60_120_30|5': 'Ichimoku.Lead2_20_60_120_30|5', 1517 'Ichimoku.Lead2_20_60_120_30|15': 'Ichimoku.Lead2_20_60_120_30|15', 1518 'Ichimoku.Lead2_20_60_120_30|30': 'Ichimoku.Lead2_20_60_120_30|30', 1519 'Ichimoku.Lead2_20_60_120_30|60': 'Ichimoku.Lead2_20_60_120_30|60', 1520 'Ichimoku.Lead2_20_60_120_30|120': 'Ichimoku.Lead2_20_60_120_30|120', 1521 'Ichimoku.Lead2_20_60_120_30|240': 'Ichimoku.Lead2_20_60_120_30|240', 1522 'Ichimoku.Lead2_20_60_120_30|1W': 'Ichimoku.Lead2_20_60_120_30|1W', 1523 'Ichimoku.Lead2_20_60_120_30|1M': 'Ichimoku.Lead2_20_60_120_30|1M', 1524 'KltChnl.basis': 'KltChnl.basis', 1525 'KltChnl.basis|1': 'KltChnl.basis|1', 1526 'KltChnl.basis|5': 'KltChnl.basis|5', 1527 'KltChnl.basis|15': 'KltChnl.basis|15', 1528 'KltChnl.basis|30': 'KltChnl.basis|30', 1529 'KltChnl.basis|60': 'KltChnl.basis|60', 1530 'KltChnl.basis|120': 'KltChnl.basis|120', 1531 'KltChnl.basis|240': 'KltChnl.basis|240', 1532 'KltChnl.basis|1W': 'KltChnl.basis|1W', 1533 'KltChnl.basis|1M': 'KltChnl.basis|1M', 1534 'KltChnl.lower': 'KltChnl.lower', 1535 'KltChnl.lower|1': 'KltChnl.lower|1', 1536 'KltChnl.lower|5': 'KltChnl.lower|5', 1537 'KltChnl.lower|15': 'KltChnl.lower|15', 1538 'KltChnl.lower|30': 'KltChnl.lower|30', 1539 'KltChnl.lower|60': 'KltChnl.lower|60', 1540 'KltChnl.lower|120': 'KltChnl.lower|120', 1541 'KltChnl.lower|240': 'KltChnl.lower|240', 1542 'KltChnl.lower|1W': 'KltChnl.lower|1W', 1543 'KltChnl.lower|1M': 'KltChnl.lower|1M', 1544 'KltChnl.upper': 'KltChnl.upper', 1545 'KltChnl.upper|1': 'KltChnl.upper|1', 1546 'KltChnl.upper|5': 'KltChnl.upper|5', 1547 'KltChnl.upper|15': 'KltChnl.upper|15', 1548 'KltChnl.upper|30': 'KltChnl.upper|30', 1549 'KltChnl.upper|60': 'KltChnl.upper|60', 1550 'KltChnl.upper|120': 'KltChnl.upper|120', 1551 'KltChnl.upper|240': 'KltChnl.upper|240', 1552 'KltChnl.upper|1W': 'KltChnl.upper|1W', 1553 'KltChnl.upper|1M': 'KltChnl.upper|1M', 1554 'Low.1M': 'Low.1M', 1555 'Low.1M.Date': 'Low.1M.Date', 1556 'Low.3M': 'Low.3M', 1557 'Low.3M.Date': 'Low.3M.Date', 1558 'Low.5D': 'Low.5D', 1559 'Low.6M': 'Low.6M', 1560 'Low.6M.Date': 'Low.6M.Date', 1561 'Low.After.High.All': 'Low.After.High.All', 1562 'Low.All': 'Low.All', 1563 'Low.All.Calc': 'Low.All.Calc', 1564 'Low.All.Calc.Date': 'Low.All.Calc.Date', 1565 'Low.All.Date': 'Low.All.Date', 1566 'MACD.hist': 'MACD.hist', 1567 'MACD.hist|1': 'MACD.hist|1', 1568 'MACD.hist|5': 'MACD.hist|5', 1569 'MACD.hist|15': 'MACD.hist|15', 1570 'MACD.hist|30': 'MACD.hist|30', 1571 'MACD.hist|60': 'MACD.hist|60', 1572 'MACD.hist|120': 'MACD.hist|120', 1573 'MACD.hist|240': 'MACD.hist|240', 1574 'MACD.hist|1W': 'MACD.hist|1W', 1575 'MACD.hist|1M': 'MACD.hist|1M', 1576 'MACD.macd': 'MACD.macd', 1577 'MACD.macd|1': 'MACD.macd|1', 1578 'MACD.macd|5': 'MACD.macd|5', 1579 'MACD.macd|15': 'MACD.macd|15', 1580 'MACD.macd|30': 'MACD.macd|30', 1581 'MACD.macd|60': 'MACD.macd|60', 1582 'MACD.macd|120': 'MACD.macd|120', 1583 'MACD.macd|240': 'MACD.macd|240', 1584 'MACD.macd|1W': 'MACD.macd|1W', 1585 'MACD.macd|1M': 'MACD.macd|1M', 1586 'MACD.signal': 'MACD.signal', 1587 'MACD.signal|1': 'MACD.signal|1', 1588 'MACD.signal|5': 'MACD.signal|5', 1589 'MACD.signal|15': 'MACD.signal|15', 1590 'MACD.signal|30': 'MACD.signal|30', 1591 'MACD.signal|60': 'MACD.signal|60', 1592 'MACD.signal|120': 'MACD.signal|120', 1593 'MACD.signal|240': 'MACD.signal|240', 1594 'MACD.signal|1W': 'MACD.signal|1W', 1595 'MACD.signal|1M': 'MACD.signal|1M', 1596 'Mom': 'Mom', 1597 'Mom|1': 'Mom|1', 1598 'Mom|5': 'Mom|5', 1599 'Mom|15': 'Mom|15', 1600 'Mom|30': 'Mom|30', 1601 'Mom|60': 'Mom|60', 1602 'Mom|120': 'Mom|120', 1603 'Mom|240': 'Mom|240', 1604 'Mom|1W': 'Mom|1W', 1605 'Mom|1M': 'Mom|1M', 1606 'Mom[1]': 'Mom[1]', 1607 'Mom[1]|1': 'Mom[1]|1', 1608 'Mom[1]|5': 'Mom[1]|5', 1609 'Mom[1]|15': 'Mom[1]|15', 1610 'Mom[1]|30': 'Mom[1]|30', 1611 'Mom[1]|60': 'Mom[1]|60', 1612 'Mom[1]|120': 'Mom[1]|120', 1613 'Mom[1]|240': 'Mom[1]|240', 1614 'Mom[1]|1W': 'Mom[1]|1W', 1615 'Mom[1]|1M': 'Mom[1]|1M', 1616 'Mom_14': 'Mom_14', 1617 'Mom_14|1': 'Mom_14|1', 1618 'Mom_14|5': 'Mom_14|5', 1619 'Mom_14|15': 'Mom_14|15', 1620 'Mom_14|30': 'Mom_14|30', 1621 'Mom_14|60': 'Mom_14|60', 1622 'Mom_14|120': 'Mom_14|120', 1623 'Mom_14|240': 'Mom_14|240', 1624 'Mom_14|1W': 'Mom_14|1W', 1625 'Mom_14|1M': 'Mom_14|1M', 1626 'Mom_14[1]': 'Mom_14[1]', 1627 'Mom_14[1]|1': 'Mom_14[1]|1', 1628 'Mom_14[1]|5': 'Mom_14[1]|5', 1629 'Mom_14[1]|15': 'Mom_14[1]|15', 1630 'Mom_14[1]|30': 'Mom_14[1]|30', 1631 'Mom_14[1]|60': 'Mom_14[1]|60', 1632 'Mom_14[1]|120': 'Mom_14[1]|120', 1633 'Mom_14[1]|240': 'Mom_14[1]|240', 1634 'Mom_14[1]|1W': 'Mom_14[1]|1W', 1635 'Mom_14[1]|1M': 'Mom_14[1]|1M', 1636 'MoneyFlow': 'MoneyFlow', 1637 'MoneyFlow|1': 'MoneyFlow|1', 1638 'MoneyFlow|5': 'MoneyFlow|5', 1639 'MoneyFlow|15': 'MoneyFlow|15', 1640 'MoneyFlow|30': 'MoneyFlow|30', 1641 'MoneyFlow|60': 'MoneyFlow|60', 1642 'MoneyFlow|120': 'MoneyFlow|120', 1643 'MoneyFlow|240': 'MoneyFlow|240', 1644 'MoneyFlow|1W': 'MoneyFlow|1W', 1645 'MoneyFlow|1M': 'MoneyFlow|1M', 1646 'Open.All.Calc': 'Open.All.Calc', 1647 'P.SAR': 'P.SAR', 1648 'P.SAR|1': 'P.SAR|1', 1649 'P.SAR|5': 'P.SAR|5', 1650 'P.SAR|15': 'P.SAR|15', 1651 'P.SAR|30': 'P.SAR|30', 1652 'P.SAR|60': 'P.SAR|60', 1653 'P.SAR|120': 'P.SAR|120', 1654 'P.SAR|240': 'P.SAR|240', 1655 'P.SAR|1W': 'P.SAR|1W', 1656 'P.SAR|1M': 'P.SAR|1M', 1657 'Perf.10Y': 'Perf.10Y', 1658 'Perf.1M': 'Perf.1M', 1659 'Perf.1M.MarketCap': 'Perf.1M.MarketCap', 1660 'Perf.1M.USD': 'Perf.1M.USD', 1661 'Perf.1W.MarketCap': 'Perf.1W.MarketCap', 1662 'Perf.1Y.MarketCap': 'Perf.1Y.MarketCap', 1663 'Perf.3M': 'Perf.3M', 1664 'Perf.3M.MarketCap': 'Perf.3M.MarketCap', 1665 'Perf.3M.USD': 'Perf.3M.USD', 1666 'Perf.3Y': 'Perf.3Y', 1667 'Perf.5D': 'Perf.5D', 1668 'Perf.5D.USD': 'Perf.5D.USD', 1669 'Perf.5Y': 'Perf.5Y', 1670 'Perf.5Y.MarketCap': 'Perf.5Y.MarketCap', 1671 'Perf.5Y.USD': 'Perf.5Y.USD', 1672 'Perf.6M': 'Perf.6M', 1673 'Perf.6M.MarketCap': 'Perf.6M.MarketCap', 1674 'Perf.6M.USD': 'Perf.6M.USD', 1675 'Perf.All': 'Perf.All', 1676 'Perf.All.USD': 'Perf.All.USD', 1677 'Perf.W': 'Perf.W', 1678 'Perf.W.USD': 'Perf.W.USD', 1679 'Perf.Y': 'Perf.Y', 1680 'Perf.Y.USD': 'Perf.Y.USD', 1681 'Perf.YTD': 'Perf.YTD', 1682 'Perf.YTD.MarketCap': 'Perf.YTD.MarketCap', 1683 'Perf.YTD.USD': 'Perf.YTD.USD', 1684 'Pivot.M.Camarilla.Middle': 'Pivot.M.Camarilla.Middle', 1685 'Pivot.M.Camarilla.Middle|1': 'Pivot.M.Camarilla.Middle|1', 1686 'Pivot.M.Camarilla.Middle|5': 'Pivot.M.Camarilla.Middle|5', 1687 'Pivot.M.Camarilla.Middle|15': 'Pivot.M.Camarilla.Middle|15', 1688 'Pivot.M.Camarilla.Middle|30': 'Pivot.M.Camarilla.Middle|30', 1689 'Pivot.M.Camarilla.Middle|60': 'Pivot.M.Camarilla.Middle|60', 1690 'Pivot.M.Camarilla.Middle|120': 'Pivot.M.Camarilla.Middle|120', 1691 'Pivot.M.Camarilla.Middle|240': 'Pivot.M.Camarilla.Middle|240', 1692 'Pivot.M.Camarilla.Middle|1W': 'Pivot.M.Camarilla.Middle|1W', 1693 'Pivot.M.Camarilla.Middle|1M': 'Pivot.M.Camarilla.Middle|1M', 1694 'Pivot.M.Camarilla.R1': 'Pivot.M.Camarilla.R1', 1695 'Pivot.M.Camarilla.R1|1': 'Pivot.M.Camarilla.R1|1', 1696 'Pivot.M.Camarilla.R1|5': 'Pivot.M.Camarilla.R1|5', 1697 'Pivot.M.Camarilla.R1|15': 'Pivot.M.Camarilla.R1|15', 1698 'Pivot.M.Camarilla.R1|30': 'Pivot.M.Camarilla.R1|30', 1699 'Pivot.M.Camarilla.R1|60': 'Pivot.M.Camarilla.R1|60', 1700 'Pivot.M.Camarilla.R1|120': 'Pivot.M.Camarilla.R1|120', 1701 'Pivot.M.Camarilla.R1|240': 'Pivot.M.Camarilla.R1|240', 1702 'Pivot.M.Camarilla.R1|1W': 'Pivot.M.Camarilla.R1|1W', 1703 'Pivot.M.Camarilla.R1|1M': 'Pivot.M.Camarilla.R1|1M', 1704 'Pivot.M.Camarilla.R2': 'Pivot.M.Camarilla.R2', 1705 'Pivot.M.Camarilla.R2|1': 'Pivot.M.Camarilla.R2|1', 1706 'Pivot.M.Camarilla.R2|5': 'Pivot.M.Camarilla.R2|5', 1707 'Pivot.M.Camarilla.R2|15': 'Pivot.M.Camarilla.R2|15', 1708 'Pivot.M.Camarilla.R2|30': 'Pivot.M.Camarilla.R2|30', 1709 'Pivot.M.Camarilla.R2|60': 'Pivot.M.Camarilla.R2|60', 1710 'Pivot.M.Camarilla.R2|120': 'Pivot.M.Camarilla.R2|120', 1711 'Pivot.M.Camarilla.R2|240': 'Pivot.M.Camarilla.R2|240', 1712 'Pivot.M.Camarilla.R2|1W': 'Pivot.M.Camarilla.R2|1W', 1713 'Pivot.M.Camarilla.R2|1M': 'Pivot.M.Camarilla.R2|1M', 1714 'Pivot.M.Camarilla.R3': 'Pivot.M.Camarilla.R3', 1715 'Pivot.M.Camarilla.R3|1': 'Pivot.M.Camarilla.R3|1', 1716 'Pivot.M.Camarilla.R3|5': 'Pivot.M.Camarilla.R3|5', 1717 'Pivot.M.Camarilla.R3|15': 'Pivot.M.Camarilla.R3|15', 1718 'Pivot.M.Camarilla.R3|30': 'Pivot.M.Camarilla.R3|30', 1719 'Pivot.M.Camarilla.R3|60': 'Pivot.M.Camarilla.R3|60', 1720 'Pivot.M.Camarilla.R3|120': 'Pivot.M.Camarilla.R3|120', 1721 'Pivot.M.Camarilla.R3|240': 'Pivot.M.Camarilla.R3|240', 1722 'Pivot.M.Camarilla.R3|1W': 'Pivot.M.Camarilla.R3|1W', 1723 'Pivot.M.Camarilla.R3|1M': 'Pivot.M.Camarilla.R3|1M', 1724 'Pivot.M.Camarilla.S1': 'Pivot.M.Camarilla.S1', 1725 'Pivot.M.Camarilla.S1|1': 'Pivot.M.Camarilla.S1|1', 1726 'Pivot.M.Camarilla.S1|5': 'Pivot.M.Camarilla.S1|5', 1727 'Pivot.M.Camarilla.S1|15': 'Pivot.M.Camarilla.S1|15', 1728 'Pivot.M.Camarilla.S1|30': 'Pivot.M.Camarilla.S1|30', 1729 'Pivot.M.Camarilla.S1|60': 'Pivot.M.Camarilla.S1|60', 1730 'Pivot.M.Camarilla.S1|120': 'Pivot.M.Camarilla.S1|120', 1731 'Pivot.M.Camarilla.S1|240': 'Pivot.M.Camarilla.S1|240', 1732 'Pivot.M.Camarilla.S1|1W': 'Pivot.M.Camarilla.S1|1W', 1733 'Pivot.M.Camarilla.S1|1M': 'Pivot.M.Camarilla.S1|1M', 1734 'Pivot.M.Camarilla.S2': 'Pivot.M.Camarilla.S2', 1735 'Pivot.M.Camarilla.S2|1': 'Pivot.M.Camarilla.S2|1', 1736 'Pivot.M.Camarilla.S2|5': 'Pivot.M.Camarilla.S2|5', 1737 'Pivot.M.Camarilla.S2|15': 'Pivot.M.Camarilla.S2|15', 1738 'Pivot.M.Camarilla.S2|30': 'Pivot.M.Camarilla.S2|30', 1739 'Pivot.M.Camarilla.S2|60': 'Pivot.M.Camarilla.S2|60', 1740 'Pivot.M.Camarilla.S2|120': 'Pivot.M.Camarilla.S2|120', 1741 'Pivot.M.Camarilla.S2|240': 'Pivot.M.Camarilla.S2|240', 1742 'Pivot.M.Camarilla.S2|1W': 'Pivot.M.Camarilla.S2|1W', 1743 'Pivot.M.Camarilla.S2|1M': 'Pivot.M.Camarilla.S2|1M', 1744 'Pivot.M.Camarilla.S3': 'Pivot.M.Camarilla.S3', 1745 'Pivot.M.Camarilla.S3|1': 'Pivot.M.Camarilla.S3|1', 1746 'Pivot.M.Camarilla.S3|5': 'Pivot.M.Camarilla.S3|5', 1747 'Pivot.M.Camarilla.S3|15': 'Pivot.M.Camarilla.S3|15', 1748 'Pivot.M.Camarilla.S3|30': 'Pivot.M.Camarilla.S3|30', 1749 'Pivot.M.Camarilla.S3|60': 'Pivot.M.Camarilla.S3|60', 1750 'Pivot.M.Camarilla.S3|120': 'Pivot.M.Camarilla.S3|120', 1751 'Pivot.M.Camarilla.S3|240': 'Pivot.M.Camarilla.S3|240', 1752 'Pivot.M.Camarilla.S3|1W': 'Pivot.M.Camarilla.S3|1W', 1753 'Pivot.M.Camarilla.S3|1M': 'Pivot.M.Camarilla.S3|1M', 1754 'Pivot.M.Classic.Middle': 'Pivot.M.Classic.Middle', 1755 'Pivot.M.Classic.Middle|1': 'Pivot.M.Classic.Middle|1', 1756 'Pivot.M.Classic.Middle|5': 'Pivot.M.Classic.Middle|5', 1757 'Pivot.M.Classic.Middle|15': 'Pivot.M.Classic.Middle|15', 1758 'Pivot.M.Classic.Middle|30': 'Pivot.M.Classic.Middle|30', 1759 'Pivot.M.Classic.Middle|60': 'Pivot.M.Classic.Middle|60', 1760 'Pivot.M.Classic.Middle|120': 'Pivot.M.Classic.Middle|120', 1761 'Pivot.M.Classic.Middle|240': 'Pivot.M.Classic.Middle|240', 1762 'Pivot.M.Classic.Middle|1W': 'Pivot.M.Classic.Middle|1W', 1763 'Pivot.M.Classic.Middle|1M': 'Pivot.M.Classic.Middle|1M', 1764 'Pivot.M.Classic.R1': 'Pivot.M.Classic.R1', 1765 'Pivot.M.Classic.R1|1': 'Pivot.M.Classic.R1|1', 1766 'Pivot.M.Classic.R1|5': 'Pivot.M.Classic.R1|5', 1767 'Pivot.M.Classic.R1|15': 'Pivot.M.Classic.R1|15', 1768 'Pivot.M.Classic.R1|30': 'Pivot.M.Classic.R1|30', 1769 'Pivot.M.Classic.R1|60': 'Pivot.M.Classic.R1|60', 1770 'Pivot.M.Classic.R1|120': 'Pivot.M.Classic.R1|120', 1771 'Pivot.M.Classic.R1|240': 'Pivot.M.Classic.R1|240', 1772 'Pivot.M.Classic.R1|1W': 'Pivot.M.Classic.R1|1W', 1773 'Pivot.M.Classic.R1|1M': 'Pivot.M.Classic.R1|1M', 1774 'Pivot.M.Classic.R2': 'Pivot.M.Classic.R2', 1775 'Pivot.M.Classic.R2|1': 'Pivot.M.Classic.R2|1', 1776 'Pivot.M.Classic.R2|5': 'Pivot.M.Classic.R2|5', 1777 'Pivot.M.Classic.R2|15': 'Pivot.M.Classic.R2|15', 1778 'Pivot.M.Classic.R2|30': 'Pivot.M.Classic.R2|30', 1779 'Pivot.M.Classic.R2|60': 'Pivot.M.Classic.R2|60', 1780 'Pivot.M.Classic.R2|120': 'Pivot.M.Classic.R2|120', 1781 'Pivot.M.Classic.R2|240': 'Pivot.M.Classic.R2|240', 1782 'Pivot.M.Classic.R2|1W': 'Pivot.M.Classic.R2|1W', 1783 'Pivot.M.Classic.R2|1M': 'Pivot.M.Classic.R2|1M', 1784 'Pivot.M.Classic.R3': 'Pivot.M.Classic.R3', 1785 'Pivot.M.Classic.R3|1': 'Pivot.M.Classic.R3|1', 1786 'Pivot.M.Classic.R3|5': 'Pivot.M.Classic.R3|5', 1787 'Pivot.M.Classic.R3|15': 'Pivot.M.Classic.R3|15', 1788 'Pivot.M.Classic.R3|30': 'Pivot.M.Classic.R3|30', 1789 'Pivot.M.Classic.R3|60': 'Pivot.M.Classic.R3|60', 1790 'Pivot.M.Classic.R3|120': 'Pivot.M.Classic.R3|120', 1791 'Pivot.M.Classic.R3|240': 'Pivot.M.Classic.R3|240', 1792 'Pivot.M.Classic.R3|1W': 'Pivot.M.Classic.R3|1W', 1793 'Pivot.M.Classic.R3|1M': 'Pivot.M.Classic.R3|1M', 1794 'Pivot.M.Classic.S1': 'Pivot.M.Classic.S1', 1795 'Pivot.M.Classic.S1|1': 'Pivot.M.Classic.S1|1', 1796 'Pivot.M.Classic.S1|5': 'Pivot.M.Classic.S1|5', 1797 'Pivot.M.Classic.S1|15': 'Pivot.M.Classic.S1|15', 1798 'Pivot.M.Classic.S1|30': 'Pivot.M.Classic.S1|30', 1799 'Pivot.M.Classic.S1|60': 'Pivot.M.Classic.S1|60', 1800 'Pivot.M.Classic.S1|120': 'Pivot.M.Classic.S1|120', 1801 'Pivot.M.Classic.S1|240': 'Pivot.M.Classic.S1|240', 1802 'Pivot.M.Classic.S1|1W': 'Pivot.M.Classic.S1|1W', 1803 'Pivot.M.Classic.S1|1M': 'Pivot.M.Classic.S1|1M', 1804 'Pivot.M.Classic.S2': 'Pivot.M.Classic.S2', 1805 'Pivot.M.Classic.S2|1': 'Pivot.M.Classic.S2|1', 1806 'Pivot.M.Classic.S2|5': 'Pivot.M.Classic.S2|5', 1807 'Pivot.M.Classic.S2|15': 'Pivot.M.Classic.S2|15', 1808 'Pivot.M.Classic.S2|30': 'Pivot.M.Classic.S2|30', 1809 'Pivot.M.Classic.S2|60': 'Pivot.M.Classic.S2|60', 1810 'Pivot.M.Classic.S2|120': 'Pivot.M.Classic.S2|120', 1811 'Pivot.M.Classic.S2|240': 'Pivot.M.Classic.S2|240', 1812 'Pivot.M.Classic.S2|1W': 'Pivot.M.Classic.S2|1W', 1813 'Pivot.M.Classic.S2|1M': 'Pivot.M.Classic.S2|1M', 1814 'Pivot.M.Classic.S3': 'Pivot.M.Classic.S3', 1815 'Pivot.M.Classic.S3|1': 'Pivot.M.Classic.S3|1', 1816 'Pivot.M.Classic.S3|5': 'Pivot.M.Classic.S3|5', 1817 'Pivot.M.Classic.S3|15': 'Pivot.M.Classic.S3|15', 1818 'Pivot.M.Classic.S3|30': 'Pivot.M.Classic.S3|30', 1819 'Pivot.M.Classic.S3|60': 'Pivot.M.Classic.S3|60', 1820 'Pivot.M.Classic.S3|120': 'Pivot.M.Classic.S3|120', 1821 'Pivot.M.Classic.S3|240': 'Pivot.M.Classic.S3|240', 1822 'Pivot.M.Classic.S3|1W': 'Pivot.M.Classic.S3|1W', 1823 'Pivot.M.Classic.S3|1M': 'Pivot.M.Classic.S3|1M', 1824 'Pivot.M.Demark.Middle': 'Pivot.M.Demark.Middle', 1825 'Pivot.M.Demark.Middle|1': 'Pivot.M.Demark.Middle|1', 1826 'Pivot.M.Demark.Middle|5': 'Pivot.M.Demark.Middle|5', 1827 'Pivot.M.Demark.Middle|15': 'Pivot.M.Demark.Middle|15', 1828 'Pivot.M.Demark.Middle|30': 'Pivot.M.Demark.Middle|30', 1829 'Pivot.M.Demark.Middle|60': 'Pivot.M.Demark.Middle|60', 1830 'Pivot.M.Demark.Middle|120': 'Pivot.M.Demark.Middle|120', 1831 'Pivot.M.Demark.Middle|240': 'Pivot.M.Demark.Middle|240', 1832 'Pivot.M.Demark.Middle|1W': 'Pivot.M.Demark.Middle|1W', 1833 'Pivot.M.Demark.Middle|1M': 'Pivot.M.Demark.Middle|1M', 1834 'Pivot.M.Demark.R1': 'Pivot.M.Demark.R1', 1835 'Pivot.M.Demark.R1|1': 'Pivot.M.Demark.R1|1', 1836 'Pivot.M.Demark.R1|5': 'Pivot.M.Demark.R1|5', 1837 'Pivot.M.Demark.R1|15': 'Pivot.M.Demark.R1|15', 1838 'Pivot.M.Demark.R1|30': 'Pivot.M.Demark.R1|30', 1839 'Pivot.M.Demark.R1|60': 'Pivot.M.Demark.R1|60', 1840 'Pivot.M.Demark.R1|120': 'Pivot.M.Demark.R1|120', 1841 'Pivot.M.Demark.R1|240': 'Pivot.M.Demark.R1|240', 1842 'Pivot.M.Demark.R1|1W': 'Pivot.M.Demark.R1|1W', 1843 'Pivot.M.Demark.R1|1M': 'Pivot.M.Demark.R1|1M', 1844 'Pivot.M.Demark.S1': 'Pivot.M.Demark.S1', 1845 'Pivot.M.Demark.S1|1': 'Pivot.M.Demark.S1|1', 1846 'Pivot.M.Demark.S1|5': 'Pivot.M.Demark.S1|5', 1847 'Pivot.M.Demark.S1|15': 'Pivot.M.Demark.S1|15', 1848 'Pivot.M.Demark.S1|30': 'Pivot.M.Demark.S1|30', 1849 'Pivot.M.Demark.S1|60': 'Pivot.M.Demark.S1|60', 1850 'Pivot.M.Demark.S1|120': 'Pivot.M.Demark.S1|120', 1851 'Pivot.M.Demark.S1|240': 'Pivot.M.Demark.S1|240', 1852 'Pivot.M.Demark.S1|1W': 'Pivot.M.Demark.S1|1W', 1853 'Pivot.M.Demark.S1|1M': 'Pivot.M.Demark.S1|1M', 1854 'Pivot.M.Fibonacci.Middle': 'Pivot.M.Fibonacci.Middle', 1855 'Pivot.M.Fibonacci.Middle|1': 'Pivot.M.Fibonacci.Middle|1', 1856 'Pivot.M.Fibonacci.Middle|5': 'Pivot.M.Fibonacci.Middle|5', 1857 'Pivot.M.Fibonacci.Middle|15': 'Pivot.M.Fibonacci.Middle|15', 1858 'Pivot.M.Fibonacci.Middle|30': 'Pivot.M.Fibonacci.Middle|30', 1859 'Pivot.M.Fibonacci.Middle|60': 'Pivot.M.Fibonacci.Middle|60', 1860 'Pivot.M.Fibonacci.Middle|120': 'Pivot.M.Fibonacci.Middle|120', 1861 'Pivot.M.Fibonacci.Middle|240': 'Pivot.M.Fibonacci.Middle|240', 1862 'Pivot.M.Fibonacci.Middle|1W': 'Pivot.M.Fibonacci.Middle|1W', 1863 'Pivot.M.Fibonacci.Middle|1M': 'Pivot.M.Fibonacci.Middle|1M', 1864 'Pivot.M.Fibonacci.R1': 'Pivot.M.Fibonacci.R1', 1865 'Pivot.M.Fibonacci.R1|1': 'Pivot.M.Fibonacci.R1|1', 1866 'Pivot.M.Fibonacci.R1|5': 'Pivot.M.Fibonacci.R1|5', 1867 'Pivot.M.Fibonacci.R1|15': 'Pivot.M.Fibonacci.R1|15', 1868 'Pivot.M.Fibonacci.R1|30': 'Pivot.M.Fibonacci.R1|30', 1869 'Pivot.M.Fibonacci.R1|60': 'Pivot.M.Fibonacci.R1|60', 1870 'Pivot.M.Fibonacci.R1|120': 'Pivot.M.Fibonacci.R1|120', 1871 'Pivot.M.Fibonacci.R1|240': 'Pivot.M.Fibonacci.R1|240', 1872 'Pivot.M.Fibonacci.R1|1W': 'Pivot.M.Fibonacci.R1|1W', 1873 'Pivot.M.Fibonacci.R1|1M': 'Pivot.M.Fibonacci.R1|1M', 1874 'Pivot.M.Fibonacci.R2': 'Pivot.M.Fibonacci.R2', 1875 'Pivot.M.Fibonacci.R2|1': 'Pivot.M.Fibonacci.R2|1', 1876 'Pivot.M.Fibonacci.R2|5': 'Pivot.M.Fibonacci.R2|5', 1877 'Pivot.M.Fibonacci.R2|15': 'Pivot.M.Fibonacci.R2|15', 1878 'Pivot.M.Fibonacci.R2|30': 'Pivot.M.Fibonacci.R2|30', 1879 'Pivot.M.Fibonacci.R2|60': 'Pivot.M.Fibonacci.R2|60', 1880 'Pivot.M.Fibonacci.R2|120': 'Pivot.M.Fibonacci.R2|120', 1881 'Pivot.M.Fibonacci.R2|240': 'Pivot.M.Fibonacci.R2|240', 1882 'Pivot.M.Fibonacci.R2|1W': 'Pivot.M.Fibonacci.R2|1W', 1883 'Pivot.M.Fibonacci.R2|1M': 'Pivot.M.Fibonacci.R2|1M', 1884 'Pivot.M.Fibonacci.R3': 'Pivot.M.Fibonacci.R3', 1885 'Pivot.M.Fibonacci.R3|1': 'Pivot.M.Fibonacci.R3|1', 1886 'Pivot.M.Fibonacci.R3|5': 'Pivot.M.Fibonacci.R3|5', 1887 'Pivot.M.Fibonacci.R3|15': 'Pivot.M.Fibonacci.R3|15', 1888 'Pivot.M.Fibonacci.R3|30': 'Pivot.M.Fibonacci.R3|30', 1889 'Pivot.M.Fibonacci.R3|60': 'Pivot.M.Fibonacci.R3|60', 1890 'Pivot.M.Fibonacci.R3|120': 'Pivot.M.Fibonacci.R3|120', 1891 'Pivot.M.Fibonacci.R3|240': 'Pivot.M.Fibonacci.R3|240', 1892 'Pivot.M.Fibonacci.R3|1W': 'Pivot.M.Fibonacci.R3|1W', 1893 'Pivot.M.Fibonacci.R3|1M': 'Pivot.M.Fibonacci.R3|1M', 1894 'Pivot.M.Fibonacci.S1': 'Pivot.M.Fibonacci.S1', 1895 'Pivot.M.Fibonacci.S1|1': 'Pivot.M.Fibonacci.S1|1', 1896 'Pivot.M.Fibonacci.S1|5': 'Pivot.M.Fibonacci.S1|5', 1897 'Pivot.M.Fibonacci.S1|15': 'Pivot.M.Fibonacci.S1|15', 1898 'Pivot.M.Fibonacci.S1|30': 'Pivot.M.Fibonacci.S1|30', 1899 'Pivot.M.Fibonacci.S1|60': 'Pivot.M.Fibonacci.S1|60', 1900 'Pivot.M.Fibonacci.S1|120': 'Pivot.M.Fibonacci.S1|120', 1901 'Pivot.M.Fibonacci.S1|240': 'Pivot.M.Fibonacci.S1|240', 1902 'Pivot.M.Fibonacci.S1|1W': 'Pivot.M.Fibonacci.S1|1W', 1903 'Pivot.M.Fibonacci.S1|1M': 'Pivot.M.Fibonacci.S1|1M', 1904 'Pivot.M.Fibonacci.S2': 'Pivot.M.Fibonacci.S2', 1905 'Pivot.M.Fibonacci.S2|1': 'Pivot.M.Fibonacci.S2|1', 1906 'Pivot.M.Fibonacci.S2|5': 'Pivot.M.Fibonacci.S2|5', 1907 'Pivot.M.Fibonacci.S2|15': 'Pivot.M.Fibonacci.S2|15', 1908 'Pivot.M.Fibonacci.S2|30': 'Pivot.M.Fibonacci.S2|30', 1909 'Pivot.M.Fibonacci.S2|60': 'Pivot.M.Fibonacci.S2|60', 1910 'Pivot.M.Fibonacci.S2|120': 'Pivot.M.Fibonacci.S2|120', 1911 'Pivot.M.Fibonacci.S2|240': 'Pivot.M.Fibonacci.S2|240', 1912 'Pivot.M.Fibonacci.S2|1W': 'Pivot.M.Fibonacci.S2|1W', 1913 'Pivot.M.Fibonacci.S2|1M': 'Pivot.M.Fibonacci.S2|1M', 1914 'Pivot.M.Fibonacci.S3': 'Pivot.M.Fibonacci.S3', 1915 'Pivot.M.Fibonacci.S3|1': 'Pivot.M.Fibonacci.S3|1', 1916 'Pivot.M.Fibonacci.S3|5': 'Pivot.M.Fibonacci.S3|5', 1917 'Pivot.M.Fibonacci.S3|15': 'Pivot.M.Fibonacci.S3|15', 1918 'Pivot.M.Fibonacci.S3|30': 'Pivot.M.Fibonacci.S3|30', 1919 'Pivot.M.Fibonacci.S3|60': 'Pivot.M.Fibonacci.S3|60', 1920 'Pivot.M.Fibonacci.S3|120': 'Pivot.M.Fibonacci.S3|120', 1921 'Pivot.M.Fibonacci.S3|240': 'Pivot.M.Fibonacci.S3|240', 1922 'Pivot.M.Fibonacci.S3|1W': 'Pivot.M.Fibonacci.S3|1W', 1923 'Pivot.M.Fibonacci.S3|1M': 'Pivot.M.Fibonacci.S3|1M', 1924 'Pivot.M.Woodie.Middle': 'Pivot.M.Woodie.Middle', 1925 'Pivot.M.Woodie.Middle|1': 'Pivot.M.Woodie.Middle|1', 1926 'Pivot.M.Woodie.Middle|5': 'Pivot.M.Woodie.Middle|5', 1927 'Pivot.M.Woodie.Middle|15': 'Pivot.M.Woodie.Middle|15', 1928 'Pivot.M.Woodie.Middle|30': 'Pivot.M.Woodie.Middle|30', 1929 'Pivot.M.Woodie.Middle|60': 'Pivot.M.Woodie.Middle|60', 1930 'Pivot.M.Woodie.Middle|120': 'Pivot.M.Woodie.Middle|120', 1931 'Pivot.M.Woodie.Middle|240': 'Pivot.M.Woodie.Middle|240', 1932 'Pivot.M.Woodie.Middle|1W': 'Pivot.M.Woodie.Middle|1W', 1933 'Pivot.M.Woodie.Middle|1M': 'Pivot.M.Woodie.Middle|1M', 1934 'Pivot.M.Woodie.R1': 'Pivot.M.Woodie.R1', 1935 'Pivot.M.Woodie.R1|1': 'Pivot.M.Woodie.R1|1', 1936 'Pivot.M.Woodie.R1|5': 'Pivot.M.Woodie.R1|5', 1937 'Pivot.M.Woodie.R1|15': 'Pivot.M.Woodie.R1|15', 1938 'Pivot.M.Woodie.R1|30': 'Pivot.M.Woodie.R1|30', 1939 'Pivot.M.Woodie.R1|60': 'Pivot.M.Woodie.R1|60', 1940 'Pivot.M.Woodie.R1|120': 'Pivot.M.Woodie.R1|120', 1941 'Pivot.M.Woodie.R1|240': 'Pivot.M.Woodie.R1|240', 1942 'Pivot.M.Woodie.R1|1W': 'Pivot.M.Woodie.R1|1W', 1943 'Pivot.M.Woodie.R1|1M': 'Pivot.M.Woodie.R1|1M', 1944 'Pivot.M.Woodie.R2': 'Pivot.M.Woodie.R2', 1945 'Pivot.M.Woodie.R2|1': 'Pivot.M.Woodie.R2|1', 1946 'Pivot.M.Woodie.R2|5': 'Pivot.M.Woodie.R2|5', 1947 'Pivot.M.Woodie.R2|15': 'Pivot.M.Woodie.R2|15', 1948 'Pivot.M.Woodie.R2|30': 'Pivot.M.Woodie.R2|30', 1949 'Pivot.M.Woodie.R2|60': 'Pivot.M.Woodie.R2|60', 1950 'Pivot.M.Woodie.R2|120': 'Pivot.M.Woodie.R2|120', 1951 'Pivot.M.Woodie.R2|240': 'Pivot.M.Woodie.R2|240', 1952 'Pivot.M.Woodie.R2|1W': 'Pivot.M.Woodie.R2|1W', 1953 'Pivot.M.Woodie.R2|1M': 'Pivot.M.Woodie.R2|1M', 1954 'Pivot.M.Woodie.R3': 'Pivot.M.Woodie.R3', 1955 'Pivot.M.Woodie.R3|1': 'Pivot.M.Woodie.R3|1', 1956 'Pivot.M.Woodie.R3|5': 'Pivot.M.Woodie.R3|5', 1957 'Pivot.M.Woodie.R3|15': 'Pivot.M.Woodie.R3|15', 1958 'Pivot.M.Woodie.R3|30': 'Pivot.M.Woodie.R3|30', 1959 'Pivot.M.Woodie.R3|60': 'Pivot.M.Woodie.R3|60', 1960 'Pivot.M.Woodie.R3|120': 'Pivot.M.Woodie.R3|120', 1961 'Pivot.M.Woodie.R3|240': 'Pivot.M.Woodie.R3|240', 1962 'Pivot.M.Woodie.R3|1W': 'Pivot.M.Woodie.R3|1W', 1963 'Pivot.M.Woodie.R3|1M': 'Pivot.M.Woodie.R3|1M', 1964 'Pivot.M.Woodie.S1': 'Pivot.M.Woodie.S1', 1965 'Pivot.M.Woodie.S1|1': 'Pivot.M.Woodie.S1|1', 1966 'Pivot.M.Woodie.S1|5': 'Pivot.M.Woodie.S1|5', 1967 'Pivot.M.Woodie.S1|15': 'Pivot.M.Woodie.S1|15', 1968 'Pivot.M.Woodie.S1|30': 'Pivot.M.Woodie.S1|30', 1969 'Pivot.M.Woodie.S1|60': 'Pivot.M.Woodie.S1|60', 1970 'Pivot.M.Woodie.S1|120': 'Pivot.M.Woodie.S1|120', 1971 'Pivot.M.Woodie.S1|240': 'Pivot.M.Woodie.S1|240', 1972 'Pivot.M.Woodie.S1|1W': 'Pivot.M.Woodie.S1|1W', 1973 'Pivot.M.Woodie.S1|1M': 'Pivot.M.Woodie.S1|1M', 1974 'Pivot.M.Woodie.S2': 'Pivot.M.Woodie.S2', 1975 'Pivot.M.Woodie.S2|1': 'Pivot.M.Woodie.S2|1', 1976 'Pivot.M.Woodie.S2|5': 'Pivot.M.Woodie.S2|5', 1977 'Pivot.M.Woodie.S2|15': 'Pivot.M.Woodie.S2|15', 1978 'Pivot.M.Woodie.S2|30': 'Pivot.M.Woodie.S2|30', 1979 'Pivot.M.Woodie.S2|60': 'Pivot.M.Woodie.S2|60', 1980 'Pivot.M.Woodie.S2|120': 'Pivot.M.Woodie.S2|120', 1981 'Pivot.M.Woodie.S2|240': 'Pivot.M.Woodie.S2|240', 1982 'Pivot.M.Woodie.S2|1W': 'Pivot.M.Woodie.S2|1W', 1983 'Pivot.M.Woodie.S2|1M': 'Pivot.M.Woodie.S2|1M', 1984 'Pivot.M.Woodie.S3': 'Pivot.M.Woodie.S3', 1985 'Pivot.M.Woodie.S3|1': 'Pivot.M.Woodie.S3|1', 1986 'Pivot.M.Woodie.S3|5': 'Pivot.M.Woodie.S3|5', 1987 'Pivot.M.Woodie.S3|15': 'Pivot.M.Woodie.S3|15', 1988 'Pivot.M.Woodie.S3|30': 'Pivot.M.Woodie.S3|30', 1989 'Pivot.M.Woodie.S3|60': 'Pivot.M.Woodie.S3|60', 1990 'Pivot.M.Woodie.S3|120': 'Pivot.M.Woodie.S3|120', 1991 'Pivot.M.Woodie.S3|240': 'Pivot.M.Woodie.S3|240', 1992 'Pivot.M.Woodie.S3|1W': 'Pivot.M.Woodie.S3|1W', 1993 'Pivot.M.Woodie.S3|1M': 'Pivot.M.Woodie.S3|1M', 1994 'ROC': 'ROC', 1995 'ROC|1': 'ROC|1', 1996 'ROC|5': 'ROC|5', 1997 'ROC|15': 'ROC|15', 1998 'ROC|30': 'ROC|30', 1999 'ROC|60': 'ROC|60', 2000 'ROC|120': 'ROC|120', 2001 'ROC|240': 'ROC|240', 2002 'ROC|1W': 'ROC|1W', 2003 'ROC|1M': 'ROC|1M', 2004 'RSI': 'RSI', 2005 'RSI|1': 'RSI|1', 2006 'RSI|5': 'RSI|5', 2007 'RSI|15': 'RSI|15', 2008 'RSI|30': 'RSI|30', 2009 'RSI|60': 'RSI|60', 2010 'RSI|120': 'RSI|120', 2011 'RSI|240': 'RSI|240', 2012 'RSI|1W': 'RSI|1W', 2013 'RSI|1M': 'RSI|1M', 2014 'RSI2': 'RSI2', 2015 'RSI2|1': 'RSI2|1', 2016 'RSI2|5': 'RSI2|5', 2017 'RSI2|15': 'RSI2|15', 2018 'RSI2|30': 'RSI2|30', 2019 'RSI2|60': 'RSI2|60', 2020 'RSI2|120': 'RSI2|120', 2021 'RSI2|240': 'RSI2|240', 2022 'RSI2|1W': 'RSI2|1W', 2023 'RSI2|1M': 'RSI2|1M', 2024 'RSI21': 'RSI21', 2025 'RSI21|1': 'RSI21|1', 2026 'RSI21|5': 'RSI21|5', 2027 'RSI21|15': 'RSI21|15', 2028 'RSI21|30': 'RSI21|30', 2029 'RSI21|60': 'RSI21|60', 2030 'RSI21|120': 'RSI21|120', 2031 'RSI21|240': 'RSI21|240', 2032 'RSI21|1W': 'RSI21|1W', 2033 'RSI21|1M': 'RSI21|1M', 2034 'RSI21[1]': 'RSI21[1]', 2035 'RSI21[1]|1': 'RSI21[1]|1', 2036 'RSI21[1]|5': 'RSI21[1]|5', 2037 'RSI21[1]|15': 'RSI21[1]|15', 2038 'RSI21[1]|30': 'RSI21[1]|30', 2039 'RSI21[1]|60': 'RSI21[1]|60', 2040 'RSI21[1]|120': 'RSI21[1]|120', 2041 'RSI21[1]|240': 'RSI21[1]|240', 2042 'RSI21[1]|1W': 'RSI21[1]|1W', 2043 'RSI21[1]|1M': 'RSI21[1]|1M', 2044 'RSI2[1]': 'RSI2[1]', 2045 'RSI2[1]|1': 'RSI2[1]|1', 2046 'RSI2[1]|5': 'RSI2[1]|5', 2047 'RSI2[1]|15': 'RSI2[1]|15', 2048 'RSI2[1]|30': 'RSI2[1]|30', 2049 'RSI2[1]|60': 'RSI2[1]|60', 2050 'RSI2[1]|120': 'RSI2[1]|120', 2051 'RSI2[1]|240': 'RSI2[1]|240', 2052 'RSI2[1]|1W': 'RSI2[1]|1W', 2053 'RSI2[1]|1M': 'RSI2[1]|1M', 2054 'RSI3': 'RSI3', 2055 'RSI3|1': 'RSI3|1', 2056 'RSI3|5': 'RSI3|5', 2057 'RSI3|15': 'RSI3|15', 2058 'RSI3|30': 'RSI3|30', 2059 'RSI3|60': 'RSI3|60', 2060 'RSI3|120': 'RSI3|120', 2061 'RSI3|240': 'RSI3|240', 2062 'RSI3|1W': 'RSI3|1W', 2063 'RSI3|1M': 'RSI3|1M', 2064 'RSI3[1]': 'RSI3[1]', 2065 'RSI3[1]|1': 'RSI3[1]|1', 2066 'RSI3[1]|5': 'RSI3[1]|5', 2067 'RSI3[1]|15': 'RSI3[1]|15', 2068 'RSI3[1]|30': 'RSI3[1]|30', 2069 'RSI3[1]|60': 'RSI3[1]|60', 2070 'RSI3[1]|120': 'RSI3[1]|120', 2071 'RSI3[1]|240': 'RSI3[1]|240', 2072 'RSI3[1]|1W': 'RSI3[1]|1W', 2073 'RSI3[1]|1M': 'RSI3[1]|1M', 2074 'RSI5': 'RSI5', 2075 'RSI5|1': 'RSI5|1', 2076 'RSI5|5': 'RSI5|5', 2077 'RSI5|15': 'RSI5|15', 2078 'RSI5|30': 'RSI5|30', 2079 'RSI5|60': 'RSI5|60', 2080 'RSI5|120': 'RSI5|120', 2081 'RSI5|240': 'RSI5|240', 2082 'RSI5|1W': 'RSI5|1W', 2083 'RSI5|1M': 'RSI5|1M', 2084 'RSI5[1]': 'RSI5[1]', 2085 'RSI5[1]|1': 'RSI5[1]|1', 2086 'RSI5[1]|5': 'RSI5[1]|5', 2087 'RSI5[1]|15': 'RSI5[1]|15', 2088 'RSI5[1]|30': 'RSI5[1]|30', 2089 'RSI5[1]|60': 'RSI5[1]|60', 2090 'RSI5[1]|120': 'RSI5[1]|120', 2091 'RSI5[1]|240': 'RSI5[1]|240', 2092 'RSI5[1]|1W': 'RSI5[1]|1W', 2093 'RSI5[1]|1M': 'RSI5[1]|1M', 2094 'RSI7': 'RSI7', 2095 'RSI7|1': 'RSI7|1', 2096 'RSI7|5': 'RSI7|5', 2097 'RSI7|15': 'RSI7|15', 2098 'RSI7|30': 'RSI7|30', 2099 'RSI7|60': 'RSI7|60', 2100 'RSI7|120': 'RSI7|120', 2101 'RSI7|240': 'RSI7|240', 2102 'RSI7|1W': 'RSI7|1W', 2103 'RSI7|1M': 'RSI7|1M', 2104 'RSI7[1]': 'RSI7[1]', 2105 'RSI7[1]|1': 'RSI7[1]|1', 2106 'RSI7[1]|5': 'RSI7[1]|5', 2107 'RSI7[1]|15': 'RSI7[1]|15', 2108 'RSI7[1]|30': 'RSI7[1]|30', 2109 'RSI7[1]|60': 'RSI7[1]|60', 2110 'RSI7[1]|120': 'RSI7[1]|120', 2111 'RSI7[1]|240': 'RSI7[1]|240', 2112 'RSI7[1]|1W': 'RSI7[1]|1W', 2113 'RSI7[1]|1M': 'RSI7[1]|1M', 2114 'RSI9': 'RSI9', 2115 'RSI9|1': 'RSI9|1', 2116 'RSI9|5': 'RSI9|5', 2117 'RSI9|15': 'RSI9|15', 2118 'RSI9|30': 'RSI9|30', 2119 'RSI9|60': 'RSI9|60', 2120 'RSI9|120': 'RSI9|120', 2121 'RSI9|240': 'RSI9|240', 2122 'RSI9|1W': 'RSI9|1W', 2123 'RSI9|1M': 'RSI9|1M', 2124 'RSI9[1]': 'RSI9[1]', 2125 'RSI9[1]|1': 'RSI9[1]|1', 2126 'RSI9[1]|5': 'RSI9[1]|5', 2127 'RSI9[1]|15': 'RSI9[1]|15', 2128 'RSI9[1]|30': 'RSI9[1]|30', 2129 'RSI9[1]|60': 'RSI9[1]|60', 2130 'RSI9[1]|120': 'RSI9[1]|120', 2131 'RSI9[1]|240': 'RSI9[1]|240', 2132 'RSI9[1]|1W': 'RSI9[1]|1W', 2133 'RSI9[1]|1M': 'RSI9[1]|1M', 2134 'RSI[1]': 'RSI[1]', 2135 'RSI[1]|1': 'RSI[1]|1', 2136 'RSI[1]|5': 'RSI[1]|5', 2137 'RSI[1]|15': 'RSI[1]|15', 2138 'RSI[1]|30': 'RSI[1]|30', 2139 'RSI[1]|60': 'RSI[1]|60', 2140 'RSI[1]|120': 'RSI[1]|120', 2141 'RSI[1]|240': 'RSI[1]|240', 2142 'RSI[1]|1W': 'RSI[1]|1W', 2143 'RSI[1]|1M': 'RSI[1]|1M', 2144 'Rec.BBPower': 'Rec.BBPower', 2145 'Rec.BBPower|1': 'Rec.BBPower|1', 2146 'Rec.BBPower|5': 'Rec.BBPower|5', 2147 'Rec.BBPower|15': 'Rec.BBPower|15', 2148 'Rec.BBPower|30': 'Rec.BBPower|30', 2149 'Rec.BBPower|60': 'Rec.BBPower|60', 2150 'Rec.BBPower|120': 'Rec.BBPower|120', 2151 'Rec.BBPower|240': 'Rec.BBPower|240', 2152 'Rec.BBPower|1W': 'Rec.BBPower|1W', 2153 'Rec.BBPower|1M': 'Rec.BBPower|1M', 2154 'Rec.HullMA9': 'Rec.HullMA9', 2155 'Rec.HullMA9|1': 'Rec.HullMA9|1', 2156 'Rec.HullMA9|5': 'Rec.HullMA9|5', 2157 'Rec.HullMA9|15': 'Rec.HullMA9|15', 2158 'Rec.HullMA9|30': 'Rec.HullMA9|30', 2159 'Rec.HullMA9|60': 'Rec.HullMA9|60', 2160 'Rec.HullMA9|120': 'Rec.HullMA9|120', 2161 'Rec.HullMA9|240': 'Rec.HullMA9|240', 2162 'Rec.HullMA9|1W': 'Rec.HullMA9|1W', 2163 'Rec.HullMA9|1M': 'Rec.HullMA9|1M', 2164 'Rec.Ichimoku': 'Rec.Ichimoku', 2165 'Rec.Ichimoku|1': 'Rec.Ichimoku|1', 2166 'Rec.Ichimoku|5': 'Rec.Ichimoku|5', 2167 'Rec.Ichimoku|15': 'Rec.Ichimoku|15', 2168 'Rec.Ichimoku|30': 'Rec.Ichimoku|30', 2169 'Rec.Ichimoku|60': 'Rec.Ichimoku|60', 2170 'Rec.Ichimoku|120': 'Rec.Ichimoku|120', 2171 'Rec.Ichimoku|240': 'Rec.Ichimoku|240', 2172 'Rec.Ichimoku|1W': 'Rec.Ichimoku|1W', 2173 'Rec.Ichimoku|1M': 'Rec.Ichimoku|1M', 2174 'Rec.Stoch.RSI': 'Rec.Stoch.RSI', 2175 'Rec.Stoch.RSI|1': 'Rec.Stoch.RSI|1', 2176 'Rec.Stoch.RSI|5': 'Rec.Stoch.RSI|5', 2177 'Rec.Stoch.RSI|15': 'Rec.Stoch.RSI|15', 2178 'Rec.Stoch.RSI|30': 'Rec.Stoch.RSI|30', 2179 'Rec.Stoch.RSI|60': 'Rec.Stoch.RSI|60', 2180 'Rec.Stoch.RSI|120': 'Rec.Stoch.RSI|120', 2181 'Rec.Stoch.RSI|240': 'Rec.Stoch.RSI|240', 2182 'Rec.Stoch.RSI|1W': 'Rec.Stoch.RSI|1W', 2183 'Rec.Stoch.RSI|1M': 'Rec.Stoch.RSI|1M', 2184 'Rec.UO': 'Rec.UO', 2185 'Rec.UO|1': 'Rec.UO|1', 2186 'Rec.UO|5': 'Rec.UO|5', 2187 'Rec.UO|15': 'Rec.UO|15', 2188 'Rec.UO|30': 'Rec.UO|30', 2189 'Rec.UO|60': 'Rec.UO|60', 2190 'Rec.UO|120': 'Rec.UO|120', 2191 'Rec.UO|240': 'Rec.UO|240', 2192 'Rec.UO|1W': 'Rec.UO|1W', 2193 'Rec.UO|1M': 'Rec.UO|1M', 2194 'Rec.VWMA': 'Rec.VWMA', 2195 'Rec.VWMA|1': 'Rec.VWMA|1', 2196 'Rec.VWMA|5': 'Rec.VWMA|5', 2197 'Rec.VWMA|15': 'Rec.VWMA|15', 2198 'Rec.VWMA|30': 'Rec.VWMA|30', 2199 'Rec.VWMA|60': 'Rec.VWMA|60', 2200 'Rec.VWMA|120': 'Rec.VWMA|120', 2201 'Rec.VWMA|240': 'Rec.VWMA|240', 2202 'Rec.VWMA|1W': 'Rec.VWMA|1W', 2203 'Rec.VWMA|1M': 'Rec.VWMA|1M', 2204 'Rec.WR': 'Rec.WR', 2205 'Rec.WR|1': 'Rec.WR|1', 2206 'Rec.WR|5': 'Rec.WR|5', 2207 'Rec.WR|15': 'Rec.WR|15', 2208 'Rec.WR|30': 'Rec.WR|30', 2209 'Rec.WR|60': 'Rec.WR|60', 2210 'Rec.WR|120': 'Rec.WR|120', 2211 'Rec.WR|240': 'Rec.WR|240', 2212 'Rec.WR|1W': 'Rec.WR|1W', 2213 'Rec.WR|1M': 'Rec.WR|1M', 2214 'Recommend.All': 'Recommend.All', 2215 'Recommend.All|1': 'Recommend.All|1', 2216 'Recommend.All|5': 'Recommend.All|5', 2217 'Recommend.All|15': 'Recommend.All|15', 2218 'Recommend.All|30': 'Recommend.All|30', 2219 'Recommend.All|60': 'Recommend.All|60', 2220 'Recommend.All|120': 'Recommend.All|120', 2221 'Recommend.All|240': 'Recommend.All|240', 2222 'Recommend.All|1W': 'Recommend.All|1W', 2223 'Recommend.All|1M': 'Recommend.All|1M', 2224 'Recommend.MA': 'Recommend.MA', 2225 'Recommend.MA|1': 'Recommend.MA|1', 2226 'Recommend.MA|5': 'Recommend.MA|5', 2227 'Recommend.MA|15': 'Recommend.MA|15', 2228 'Recommend.MA|30': 'Recommend.MA|30', 2229 'Recommend.MA|60': 'Recommend.MA|60', 2230 'Recommend.MA|120': 'Recommend.MA|120', 2231 'Recommend.MA|240': 'Recommend.MA|240', 2232 'Recommend.MA|1W': 'Recommend.MA|1W', 2233 'Recommend.MA|1M': 'Recommend.MA|1M', 2234 'Recommend.Other': 'Recommend.Other', 2235 'Recommend.Other|1': 'Recommend.Other|1', 2236 'Recommend.Other|5': 'Recommend.Other|5', 2237 'Recommend.Other|15': 'Recommend.Other|15', 2238 'Recommend.Other|30': 'Recommend.Other|30', 2239 'Recommend.Other|60': 'Recommend.Other|60', 2240 'Recommend.Other|120': 'Recommend.Other|120', 2241 'Recommend.Other|240': 'Recommend.Other|240', 2242 'Recommend.Other|1W': 'Recommend.Other|1W', 2243 'Recommend.Other|1M': 'Recommend.Other|1M', 2244 'SMA10': 'SMA10', 2245 'SMA10|1': 'SMA10|1', 2246 'SMA10|5': 'SMA10|5', 2247 'SMA10|15': 'SMA10|15', 2248 'SMA10|30': 'SMA10|30', 2249 'SMA10|60': 'SMA10|60', 2250 'SMA10|120': 'SMA10|120', 2251 'SMA10|240': 'SMA10|240', 2252 'SMA10|1W': 'SMA10|1W', 2253 'SMA10|1M': 'SMA10|1M', 2254 'SMA100': 'SMA100', 2255 'SMA100|1': 'SMA100|1', 2256 'SMA100|5': 'SMA100|5', 2257 'SMA100|15': 'SMA100|15', 2258 'SMA100|30': 'SMA100|30', 2259 'SMA100|60': 'SMA100|60', 2260 'SMA100|120': 'SMA100|120', 2261 'SMA100|240': 'SMA100|240', 2262 'SMA100|1W': 'SMA100|1W', 2263 'SMA100|1M': 'SMA100|1M', 2264 'SMA12': 'SMA12', 2265 'SMA12|1': 'SMA12|1', 2266 'SMA12|5': 'SMA12|5', 2267 'SMA12|15': 'SMA12|15', 2268 'SMA12|30': 'SMA12|30', 2269 'SMA12|60': 'SMA12|60', 2270 'SMA12|120': 'SMA12|120', 2271 'SMA12|240': 'SMA12|240', 2272 'SMA12|1W': 'SMA12|1W', 2273 'SMA12|1M': 'SMA12|1M', 2274 'SMA120': 'SMA120', 2275 'SMA120|1': 'SMA120|1', 2276 'SMA120|5': 'SMA120|5', 2277 'SMA120|15': 'SMA120|15', 2278 'SMA120|30': 'SMA120|30', 2279 'SMA120|60': 'SMA120|60', 2280 'SMA120|120': 'SMA120|120', 2281 'SMA120|240': 'SMA120|240', 2282 'SMA120|1W': 'SMA120|1W', 2283 'SMA120|1M': 'SMA120|1M', 2284 'SMA13': 'SMA13', 2285 'SMA13|1': 'SMA13|1', 2286 'SMA13|5': 'SMA13|5', 2287 'SMA13|15': 'SMA13|15', 2288 'SMA13|30': 'SMA13|30', 2289 'SMA13|60': 'SMA13|60', 2290 'SMA13|120': 'SMA13|120', 2291 'SMA13|240': 'SMA13|240', 2292 'SMA13|1W': 'SMA13|1W', 2293 'SMA13|1M': 'SMA13|1M', 2294 'SMA150': 'SMA150', 2295 'SMA150|1': 'SMA150|1', 2296 'SMA150|5': 'SMA150|5', 2297 'SMA150|15': 'SMA150|15', 2298 'SMA150|30': 'SMA150|30', 2299 'SMA150|60': 'SMA150|60', 2300 'SMA150|120': 'SMA150|120', 2301 'SMA150|240': 'SMA150|240', 2302 'SMA150|1W': 'SMA150|1W', 2303 'SMA150|1M': 'SMA150|1M', 2304 'SMA20': 'SMA20', 2305 'SMA20|1': 'SMA20|1', 2306 'SMA20|5': 'SMA20|5', 2307 'SMA20|15': 'SMA20|15', 2308 'SMA20|30': 'SMA20|30', 2309 'SMA20|60': 'SMA20|60', 2310 'SMA20|120': 'SMA20|120', 2311 'SMA20|240': 'SMA20|240', 2312 'SMA20|1W': 'SMA20|1W', 2313 'SMA20|1M': 'SMA20|1M', 2314 'SMA200': 'SMA200', 2315 'SMA200|1': 'SMA200|1', 2316 'SMA200|5': 'SMA200|5', 2317 'SMA200|15': 'SMA200|15', 2318 'SMA200|30': 'SMA200|30', 2319 'SMA200|60': 'SMA200|60', 2320 'SMA200|120': 'SMA200|120', 2321 'SMA200|240': 'SMA200|240', 2322 'SMA200|1W': 'SMA200|1W', 2323 'SMA200|1M': 'SMA200|1M', 2324 'SMA21': 'SMA21', 2325 'SMA21|1': 'SMA21|1', 2326 'SMA21|5': 'SMA21|5', 2327 'SMA21|15': 'SMA21|15', 2328 'SMA21|30': 'SMA21|30', 2329 'SMA21|60': 'SMA21|60', 2330 'SMA21|120': 'SMA21|120', 2331 'SMA21|240': 'SMA21|240', 2332 'SMA21|1W': 'SMA21|1W', 2333 'SMA21|1M': 'SMA21|1M', 2334 'SMA25': 'SMA25', 2335 'SMA25|1': 'SMA25|1', 2336 'SMA25|5': 'SMA25|5', 2337 'SMA25|15': 'SMA25|15', 2338 'SMA25|30': 'SMA25|30', 2339 'SMA25|60': 'SMA25|60', 2340 'SMA25|120': 'SMA25|120', 2341 'SMA25|240': 'SMA25|240', 2342 'SMA25|1W': 'SMA25|1W', 2343 'SMA25|1M': 'SMA25|1M', 2344 'SMA250': 'SMA250', 2345 'SMA250|1': 'SMA250|1', 2346 'SMA250|5': 'SMA250|5', 2347 'SMA250|15': 'SMA250|15', 2348 'SMA250|30': 'SMA250|30', 2349 'SMA250|60': 'SMA250|60', 2350 'SMA250|120': 'SMA250|120', 2351 'SMA250|240': 'SMA250|240', 2352 'SMA250|1W': 'SMA250|1W', 2353 'SMA250|1M': 'SMA250|1M', 2354 'SMA3': 'SMA3', 2355 'SMA3|1': 'SMA3|1', 2356 'SMA3|5': 'SMA3|5', 2357 'SMA3|15': 'SMA3|15', 2358 'SMA3|30': 'SMA3|30', 2359 'SMA3|60': 'SMA3|60', 2360 'SMA3|120': 'SMA3|120', 2361 'SMA3|240': 'SMA3|240', 2362 'SMA3|1W': 'SMA3|1W', 2363 'SMA3|1M': 'SMA3|1M', 2364 'SMA30': 'SMA30', 2365 'SMA30|1': 'SMA30|1', 2366 'SMA30|5': 'SMA30|5', 2367 'SMA30|15': 'SMA30|15', 2368 'SMA30|30': 'SMA30|30', 2369 'SMA30|60': 'SMA30|60', 2370 'SMA30|120': 'SMA30|120', 2371 'SMA30|240': 'SMA30|240', 2372 'SMA30|1W': 'SMA30|1W', 2373 'SMA30|1M': 'SMA30|1M', 2374 'SMA300': 'SMA300', 2375 'SMA300|1': 'SMA300|1', 2376 'SMA300|5': 'SMA300|5', 2377 'SMA300|15': 'SMA300|15', 2378 'SMA300|30': 'SMA300|30', 2379 'SMA300|60': 'SMA300|60', 2380 'SMA300|120': 'SMA300|120', 2381 'SMA300|240': 'SMA300|240', 2382 'SMA300|1W': 'SMA300|1W', 2383 'SMA300|1M': 'SMA300|1M', 2384 'SMA40': 'SMA40', 2385 'SMA40|1': 'SMA40|1', 2386 'SMA40|5': 'SMA40|5', 2387 'SMA40|15': 'SMA40|15', 2388 'SMA40|30': 'SMA40|30', 2389 'SMA40|60': 'SMA40|60', 2390 'SMA40|120': 'SMA40|120', 2391 'SMA40|240': 'SMA40|240', 2392 'SMA40|1W': 'SMA40|1W', 2393 'SMA40|1M': 'SMA40|1M', 2394 'SMA5': 'SMA5', 2395 'SMA5|1': 'SMA5|1', 2396 'SMA5|5': 'SMA5|5', 2397 'SMA5|15': 'SMA5|15', 2398 'SMA5|30': 'SMA5|30', 2399 'SMA5|60': 'SMA5|60', 2400 'SMA5|120': 'SMA5|120', 2401 'SMA5|240': 'SMA5|240', 2402 'SMA5|1W': 'SMA5|1W', 2403 'SMA5|1M': 'SMA5|1M', 2404 'SMA50': 'SMA50', 2405 'SMA50|1': 'SMA50|1', 2406 'SMA50|5': 'SMA50|5', 2407 'SMA50|15': 'SMA50|15', 2408 'SMA50|30': 'SMA50|30', 2409 'SMA50|60': 'SMA50|60', 2410 'SMA50|120': 'SMA50|120', 2411 'SMA50|240': 'SMA50|240', 2412 'SMA50|1W': 'SMA50|1W', 2413 'SMA50|1M': 'SMA50|1M', 2414 'SMA6': 'SMA6', 2415 'SMA6|1': 'SMA6|1', 2416 'SMA6|5': 'SMA6|5', 2417 'SMA6|15': 'SMA6|15', 2418 'SMA6|30': 'SMA6|30', 2419 'SMA6|60': 'SMA6|60', 2420 'SMA6|120': 'SMA6|120', 2421 'SMA6|240': 'SMA6|240', 2422 'SMA6|1W': 'SMA6|1W', 2423 'SMA6|1M': 'SMA6|1M', 2424 'SMA7': 'SMA7', 2425 'SMA7|1': 'SMA7|1', 2426 'SMA7|5': 'SMA7|5', 2427 'SMA7|15': 'SMA7|15', 2428 'SMA7|30': 'SMA7|30', 2429 'SMA7|60': 'SMA7|60', 2430 'SMA7|120': 'SMA7|120', 2431 'SMA7|240': 'SMA7|240', 2432 'SMA7|1W': 'SMA7|1W', 2433 'SMA7|1M': 'SMA7|1M', 2434 'SMA75': 'SMA75', 2435 'SMA75|1': 'SMA75|1', 2436 'SMA75|5': 'SMA75|5', 2437 'SMA75|15': 'SMA75|15', 2438 'SMA75|30': 'SMA75|30', 2439 'SMA75|60': 'SMA75|60', 2440 'SMA75|120': 'SMA75|120', 2441 'SMA75|240': 'SMA75|240', 2442 'SMA75|1W': 'SMA75|1W', 2443 'SMA75|1M': 'SMA75|1M', 2444 'SMA8': 'SMA8', 2445 'SMA8|1': 'SMA8|1', 2446 'SMA8|5': 'SMA8|5', 2447 'SMA8|15': 'SMA8|15', 2448 'SMA8|30': 'SMA8|30', 2449 'SMA8|60': 'SMA8|60', 2450 'SMA8|120': 'SMA8|120', 2451 'SMA8|240': 'SMA8|240', 2452 'SMA8|1W': 'SMA8|1W', 2453 'SMA8|1M': 'SMA8|1M', 2454 'SMA9': 'SMA9', 2455 'SMA9|1': 'SMA9|1', 2456 'SMA9|5': 'SMA9|5', 2457 'SMA9|15': 'SMA9|15', 2458 'SMA9|30': 'SMA9|30', 2459 'SMA9|60': 'SMA9|60', 2460 'SMA9|120': 'SMA9|120', 2461 'SMA9|240': 'SMA9|240', 2462 'SMA9|1W': 'SMA9|1W', 2463 'SMA9|1M': 'SMA9|1M', 2464 'Stoch.D': 'Stoch.D', 2465 'Stoch.D|1': 'Stoch.D|1', 2466 'Stoch.D|5': 'Stoch.D|5', 2467 'Stoch.D|15': 'Stoch.D|15', 2468 'Stoch.D|30': 'Stoch.D|30', 2469 'Stoch.D|60': 'Stoch.D|60', 2470 'Stoch.D|120': 'Stoch.D|120', 2471 'Stoch.D|240': 'Stoch.D|240', 2472 'Stoch.D|1W': 'Stoch.D|1W', 2473 'Stoch.D|1M': 'Stoch.D|1M', 2474 'Stoch.D[1]': 'Stoch.D[1]', 2475 'Stoch.D[1]|1': 'Stoch.D[1]|1', 2476 'Stoch.D[1]|5': 'Stoch.D[1]|5', 2477 'Stoch.D[1]|15': 'Stoch.D[1]|15', 2478 'Stoch.D[1]|30': 'Stoch.D[1]|30', 2479 'Stoch.D[1]|60': 'Stoch.D[1]|60', 2480 'Stoch.D[1]|120': 'Stoch.D[1]|120', 2481 'Stoch.D[1]|240': 'Stoch.D[1]|240', 2482 'Stoch.D[1]|1W': 'Stoch.D[1]|1W', 2483 'Stoch.D[1]|1M': 'Stoch.D[1]|1M', 2484 'Stoch.D[1]_14_1_3': 'Stoch.D[1]_14_1_3', 2485 'Stoch.D[1]_14_1_3|1': 'Stoch.D[1]_14_1_3|1', 2486 'Stoch.D[1]_14_1_3|5': 'Stoch.D[1]_14_1_3|5', 2487 'Stoch.D[1]_14_1_3|15': 'Stoch.D[1]_14_1_3|15', 2488 'Stoch.D[1]_14_1_3|30': 'Stoch.D[1]_14_1_3|30', 2489 'Stoch.D[1]_14_1_3|60': 'Stoch.D[1]_14_1_3|60', 2490 'Stoch.D[1]_14_1_3|120': 'Stoch.D[1]_14_1_3|120', 2491 'Stoch.D[1]_14_1_3|240': 'Stoch.D[1]_14_1_3|240', 2492 'Stoch.D[1]_14_1_3|1W': 'Stoch.D[1]_14_1_3|1W', 2493 'Stoch.D[1]_14_1_3|1M': 'Stoch.D[1]_14_1_3|1M', 2494 'Stoch.D_14_1_3': 'Stoch.D_14_1_3', 2495 'Stoch.D_14_1_3|1': 'Stoch.D_14_1_3|1', 2496 'Stoch.D_14_1_3|5': 'Stoch.D_14_1_3|5', 2497 'Stoch.D_14_1_3|15': 'Stoch.D_14_1_3|15', 2498 'Stoch.D_14_1_3|30': 'Stoch.D_14_1_3|30', 2499 'Stoch.D_14_1_3|60': 'Stoch.D_14_1_3|60', 2500 'Stoch.D_14_1_3|120': 'Stoch.D_14_1_3|120', 2501 'Stoch.D_14_1_3|240': 'Stoch.D_14_1_3|240', 2502 'Stoch.D_14_1_3|1W': 'Stoch.D_14_1_3|1W', 2503 'Stoch.D_14_1_3|1M': 'Stoch.D_14_1_3|1M', 2504 'Stoch.K': 'Stoch.K', 2505 'Stoch.K|1': 'Stoch.K|1', 2506 'Stoch.K|5': 'Stoch.K|5', 2507 'Stoch.K|15': 'Stoch.K|15', 2508 'Stoch.K|30': 'Stoch.K|30', 2509 'Stoch.K|60': 'Stoch.K|60', 2510 'Stoch.K|120': 'Stoch.K|120', 2511 'Stoch.K|240': 'Stoch.K|240', 2512 'Stoch.K|1W': 'Stoch.K|1W', 2513 'Stoch.K|1M': 'Stoch.K|1M', 2514 'Stoch.K[1]': 'Stoch.K[1]', 2515 'Stoch.K[1]|1': 'Stoch.K[1]|1', 2516 'Stoch.K[1]|5': 'Stoch.K[1]|5', 2517 'Stoch.K[1]|15': 'Stoch.K[1]|15', 2518 'Stoch.K[1]|30': 'Stoch.K[1]|30', 2519 'Stoch.K[1]|60': 'Stoch.K[1]|60', 2520 'Stoch.K[1]|120': 'Stoch.K[1]|120', 2521 'Stoch.K[1]|240': 'Stoch.K[1]|240', 2522 'Stoch.K[1]|1W': 'Stoch.K[1]|1W', 2523 'Stoch.K[1]|1M': 'Stoch.K[1]|1M', 2524 'Stoch.K[1]_14_1_3': 'Stoch.K[1]_14_1_3', 2525 'Stoch.K[1]_14_1_3|1': 'Stoch.K[1]_14_1_3|1', 2526 'Stoch.K[1]_14_1_3|5': 'Stoch.K[1]_14_1_3|5', 2527 'Stoch.K[1]_14_1_3|15': 'Stoch.K[1]_14_1_3|15', 2528 'Stoch.K[1]_14_1_3|30': 'Stoch.K[1]_14_1_3|30', 2529 'Stoch.K[1]_14_1_3|60': 'Stoch.K[1]_14_1_3|60', 2530 'Stoch.K[1]_14_1_3|120': 'Stoch.K[1]_14_1_3|120', 2531 'Stoch.K[1]_14_1_3|240': 'Stoch.K[1]_14_1_3|240', 2532 'Stoch.K[1]_14_1_3|1W': 'Stoch.K[1]_14_1_3|1W', 2533 'Stoch.K[1]_14_1_3|1M': 'Stoch.K[1]_14_1_3|1M', 2534 'Stoch.K_14_1_3': 'Stoch.K_14_1_3', 2535 'Stoch.K_14_1_3|1': 'Stoch.K_14_1_3|1', 2536 'Stoch.K_14_1_3|5': 'Stoch.K_14_1_3|5', 2537 'Stoch.K_14_1_3|15': 'Stoch.K_14_1_3|15', 2538 'Stoch.K_14_1_3|30': 'Stoch.K_14_1_3|30', 2539 'Stoch.K_14_1_3|60': 'Stoch.K_14_1_3|60', 2540 'Stoch.K_14_1_3|120': 'Stoch.K_14_1_3|120', 2541 'Stoch.K_14_1_3|240': 'Stoch.K_14_1_3|240', 2542 'Stoch.K_14_1_3|1W': 'Stoch.K_14_1_3|1W', 2543 'Stoch.K_14_1_3|1M': 'Stoch.K_14_1_3|1M', 2544 'Stoch.RSI.D': 'Stoch.RSI.D', 2545 'Stoch.RSI.D|1': 'Stoch.RSI.D|1', 2546 'Stoch.RSI.D|5': 'Stoch.RSI.D|5', 2547 'Stoch.RSI.D|15': 'Stoch.RSI.D|15', 2548 'Stoch.RSI.D|30': 'Stoch.RSI.D|30', 2549 'Stoch.RSI.D|60': 'Stoch.RSI.D|60', 2550 'Stoch.RSI.D|120': 'Stoch.RSI.D|120', 2551 'Stoch.RSI.D|240': 'Stoch.RSI.D|240', 2552 'Stoch.RSI.D|1W': 'Stoch.RSI.D|1W', 2553 'Stoch.RSI.D|1M': 'Stoch.RSI.D|1M', 2554 'Stoch.RSI.K': 'Stoch.RSI.K', 2555 'Stoch.RSI.K|1': 'Stoch.RSI.K|1', 2556 'Stoch.RSI.K|5': 'Stoch.RSI.K|5', 2557 'Stoch.RSI.K|15': 'Stoch.RSI.K|15', 2558 'Stoch.RSI.K|30': 'Stoch.RSI.K|30', 2559 'Stoch.RSI.K|60': 'Stoch.RSI.K|60', 2560 'Stoch.RSI.K|120': 'Stoch.RSI.K|120', 2561 'Stoch.RSI.K|240': 'Stoch.RSI.K|240', 2562 'Stoch.RSI.K|1W': 'Stoch.RSI.K|1W', 2563 'Stoch.RSI.K|1M': 'Stoch.RSI.K|1M', 2564 'TVC.10Y': 'TVC.10Y', 2565 'UO': 'UO', 2566 'UO|1': 'UO|1', 2567 'UO|5': 'UO|5', 2568 'UO|15': 'UO|15', 2569 'UO|30': 'UO|30', 2570 'UO|60': 'UO|60', 2571 'UO|120': 'UO|120', 2572 'UO|240': 'UO|240', 2573 'UO|1W': 'UO|1W', 2574 'UO|1M': 'UO|1M', 2575 'VWAP': 'VWAP', 2576 'VWAP|1': 'VWAP|1', 2577 'VWAP|5': 'VWAP|5', 2578 'VWAP|15': 'VWAP|15', 2579 'VWAP|30': 'VWAP|30', 2580 'VWAP|60': 'VWAP|60', 2581 'VWAP|120': 'VWAP|120', 2582 'VWAP|240': 'VWAP|240', 2583 'VWAP|1W': 'VWAP|1W', 2584 'VWAP|1M': 'VWAP|1M', 2585 'VWMA': 'VWMA', 2586 'VWMA|1': 'VWMA|1', 2587 'VWMA|5': 'VWMA|5', 2588 'VWMA|15': 'VWMA|15', 2589 'VWMA|30': 'VWMA|30', 2590 'VWMA|60': 'VWMA|60', 2591 'VWMA|120': 'VWMA|120', 2592 'VWMA|240': 'VWMA|240', 2593 'VWMA|1W': 'VWMA|1W', 2594 'VWMA|1M': 'VWMA|1M', 2595 'Value.Traded': 'Value.Traded', 2596 'Value.Traded|1': 'Value.Traded|1', 2597 'Value.Traded|5': 'Value.Traded|5', 2598 'Value.Traded|15': 'Value.Traded|15', 2599 'Value.Traded|30': 'Value.Traded|30', 2600 'Value.Traded|60': 'Value.Traded|60', 2601 'Value.Traded|120': 'Value.Traded|120', 2602 'Value.Traded|240': 'Value.Traded|240', 2603 'Value.Traded|1W': 'Value.Traded|1W', 2604 'Value.Traded|1M': 'Value.Traded|1M', 2605 'Volatility.D': 'Volatility.D', 2606 'Volatility.M': 'Volatility.M', 2607 'Volatility.W': 'Volatility.W', 2608 'W.R': 'W.R', 2609 'W.R|1': 'W.R|1', 2610 'W.R|5': 'W.R|5', 2611 'W.R|15': 'W.R|15', 2612 'W.R|30': 'W.R|30', 2613 'W.R|60': 'W.R|60', 2614 'W.R|120': 'W.R|120', 2615 'W.R|240': 'W.R|240', 2616 'W.R|1W': 'W.R|1W', 2617 'W.R|1M': 'W.R|1M', 2618 'active_addresses_ratio': 'active_addresses_ratio', 2619 'active_symbol': 'active_symbol', 2620 'actively_managed': 'actively_managed', 2621 'addresses_active': 'addresses_active', 2622 'addresses_new': 'addresses_new', 2623 'addresses_total': 'addresses_total', 2624 'addresses_zero_balance': 'addresses_zero_balance', 2625 'after_tax_margin': 'after_tax_margin', 2626 'all_time_high': 'all_time_high', 2627 'all_time_high_day': 'all_time_high_day', 2628 'all_time_low': 'all_time_low', 2629 'all_time_low_day': 'all_time_low_day', 2630 'all_time_open': 'all_time_open', 2631 'amount_recent': 'amount_recent', 2632 'amount_upcoming': 'amount_upcoming', 2633 'ask': 'ask', 2634 'asset_class': 'asset_class', 2635 'asset_turnover_current': 'asset_turnover_current', 2636 'asset_turnover_fy': 'asset_turnover_fy', 2637 'at_the_money_addresses_percentage': 'at_the_money_addresses_percentage', 2638 'aum': 'aum', 2639 'aum_perf.1M': 'aum_perf.1M', 2640 'aum_perf.1Y': 'aum_perf.1Y', 2641 'aum_perf.3M': 'aum_perf.3M', 2642 'aum_perf.3Y': 'aum_perf.3Y', 2643 'aum_perf.5Y': 'aum_perf.5Y', 2644 'aum_perf.YTD': 'aum_perf.YTD', 2645 'average_transaction_usd': 'average_transaction_usd', 2646 'average_volume': 'average_volume', 2647 'average_volume_10d_calc': 'average_volume_10d_calc', 2648 'average_volume_10d_calc|1': 'average_volume_10d_calc|1', 2649 'average_volume_10d_calc|5': 'average_volume_10d_calc|5', 2650 'average_volume_10d_calc|15': 'average_volume_10d_calc|15', 2651 'average_volume_10d_calc|30': 'average_volume_10d_calc|30', 2652 'average_volume_10d_calc|60': 'average_volume_10d_calc|60', 2653 'average_volume_10d_calc|120': 'average_volume_10d_calc|120', 2654 'average_volume_10d_calc|240': 'average_volume_10d_calc|240', 2655 'average_volume_10d_calc|1W': 'average_volume_10d_calc|1W', 2656 'average_volume_10d_calc|1M': 'average_volume_10d_calc|1M', 2657 'average_volume_30d_calc': 'average_volume_30d_calc', 2658 'average_volume_30d_calc|1': 'average_volume_30d_calc|1', 2659 'average_volume_30d_calc|5': 'average_volume_30d_calc|5', 2660 'average_volume_30d_calc|15': 'average_volume_30d_calc|15', 2661 'average_volume_30d_calc|30': 'average_volume_30d_calc|30', 2662 'average_volume_30d_calc|60': 'average_volume_30d_calc|60', 2663 'average_volume_30d_calc|120': 'average_volume_30d_calc|120', 2664 'average_volume_30d_calc|240': 'average_volume_30d_calc|240', 2665 'average_volume_30d_calc|1W': 'average_volume_30d_calc|1W', 2666 'average_volume_30d_calc|1M': 'average_volume_30d_calc|1M', 2667 'average_volume_60d_calc': 'average_volume_60d_calc', 2668 'average_volume_60d_calc|1': 'average_volume_60d_calc|1', 2669 'average_volume_60d_calc|5': 'average_volume_60d_calc|5', 2670 'average_volume_60d_calc|15': 'average_volume_60d_calc|15', 2671 'average_volume_60d_calc|30': 'average_volume_60d_calc|30', 2672 'average_volume_60d_calc|60': 'average_volume_60d_calc|60', 2673 'average_volume_60d_calc|120': 'average_volume_60d_calc|120', 2674 'average_volume_60d_calc|240': 'average_volume_60d_calc|240', 2675 'average_volume_60d_calc|1W': 'average_volume_60d_calc|1W', 2676 'average_volume_60d_calc|1M': 'average_volume_60d_calc|1M', 2677 'average_volume_90d_calc': 'average_volume_90d_calc', 2678 'average_volume_90d_calc|1': 'average_volume_90d_calc|1', 2679 'average_volume_90d_calc|5': 'average_volume_90d_calc|5', 2680 'average_volume_90d_calc|15': 'average_volume_90d_calc|15', 2681 'average_volume_90d_calc|30': 'average_volume_90d_calc|30', 2682 'average_volume_90d_calc|60': 'average_volume_90d_calc|60', 2683 'average_volume_90d_calc|120': 'average_volume_90d_calc|120', 2684 'average_volume_90d_calc|240': 'average_volume_90d_calc|240', 2685 'average_volume_90d_calc|1W': 'average_volume_90d_calc|1W', 2686 'average_volume_90d_calc|1M': 'average_volume_90d_calc|1M', 2687 'avg_balance': 'avg_balance', 2688 'bars_count': 'bars_count', 2689 'bars_count|1': 'bars_count|1', 2690 'bars_count|5': 'bars_count|5', 2691 'bars_count|15': 'bars_count|15', 2692 'bars_count|30': 'bars_count|30', 2693 'bars_count|60': 'bars_count|60', 2694 'bars_count|120': 'bars_count|120', 2695 'bars_count|240': 'bars_count|240', 2696 'bars_count|1W': 'bars_count|1W', 2697 'bars_count|1M': 'bars_count|1M', 2698 'base_currency_kind': 'base_currency_kind', 2699 'basic_eps_net_income': 'basic_eps_net_income', 2700 'beta_1_year': 'beta_1_year', 2701 'beta_3_year': 'beta_3_year', 2702 'beta_5_year': 'beta_5_year', 2703 'bid': 'bid', 2704 'book_value_per_share_fq': 'book_value_per_share_fq', 2705 'book_value_per_share_fy': 'book_value_per_share_fy', 2706 'brand': 'brand', 2707 'break_even_addresses_percentage': 'break_even_addresses_percentage', 2708 'buyback_yield': 'buyback_yield', 2709 'cagr_5_earnings_per_share_basic': 'cagr_5_earnings_per_share_basic', 2710 'cagr_5_free_cash_flow': 'cagr_5_free_cash_flow', 2711 'cagr_5_net_income': 'cagr_5_net_income', 2712 'cagr_5_revenue': 'cagr_5_revenue', 2713 'capital_expenditures_qoq_growth_fq': 'capital_expenditures_qoq_growth_fq', 2714 'capital_expenditures_ttm': 'capital_expenditures_ttm', 2715 'capital_expenditures_unchanged_fq_h': 'capital_expenditures_unchanged_fq_h', 2716 'capital_expenditures_unchanged_fy_h': 'capital_expenditures_unchanged_fy_h', 2717 'capital_expenditures_unchanged_ttm_h': 'capital_expenditures_unchanged_ttm_h', 2718 'capital_expenditures_yoy_growth_fq': 'capital_expenditures_yoy_growth_fq', 2719 'capital_expenditures_yoy_growth_fy': 'capital_expenditures_yoy_growth_fy', 2720 'capital_expenditures_yoy_growth_ttm': 'capital_expenditures_yoy_growth_ttm', 2721 'cash_dividend_coverage_ratio_fy': 'cash_dividend_coverage_ratio_fy', 2722 'cash_dividend_coverage_ratio_ttm': 'cash_dividend_coverage_ratio_ttm', 2723 'cash_f_financing_activities_ttm': 'cash_f_financing_activities_ttm', 2724 'cash_f_investing_activities_ttm': 'cash_f_investing_activities_ttm', 2725 'cash_f_operating_activities_ttm': 'cash_f_operating_activities_ttm', 2726 'cash_n_equivalents_fq': 'cash_n_equivalents_fq', 2727 'cash_n_equivalents_fy': 'cash_n_equivalents_fy', 2728 'cash_n_short_term_invest_fq': 'cash_n_short_term_invest_fq', 2729 'cash_n_short_term_invest_fy': 'cash_n_short_term_invest_fy', 2730 'cash_n_short_term_invest_to_total_current_liabilities_fq': 'cash_n_short_term_invest_to_total_current_liabilities_fq', 2731 'cash_n_short_term_invest_to_total_current_liabilities_fy': 'cash_n_short_term_invest_to_total_current_liabilities_fy', 2732 'cash_n_short_term_invest_to_total_debt_fq': 'cash_n_short_term_invest_to_total_debt_fq', 2733 'cash_n_short_term_invest_to_total_debt_fy': 'cash_n_short_term_invest_to_total_debt_fy', 2734 'cash_ratio': 'cash_ratio', 2735 'category': 'category', 2736 'centralization': 'centralization', 2737 'change': 'change', 2738 'change|1': 'change|1', 2739 'change|5': 'change|5', 2740 'change|15': 'change|15', 2741 'change|30': 'change|30', 2742 'change|60': 'change|60', 2743 'change|120': 'change|120', 2744 'change|240': 'change|240', 2745 'change|1W': 'change|1W', 2746 'change|1M': 'change|1M', 2747 'change_abs': 'change_abs', 2748 'change_abs|1': 'change_abs|1', 2749 'change_abs|5': 'change_abs|5', 2750 'change_abs|15': 'change_abs|15', 2751 'change_abs|30': 'change_abs|30', 2752 'change_abs|60': 'change_abs|60', 2753 'change_abs|120': 'change_abs|120', 2754 'change_abs|240': 'change_abs|240', 2755 'change_abs|1W': 'change_abs|1W', 2756 'change_abs|1M': 'change_abs|1M', 2757 'change_from_open': 'change_from_open', 2758 'change_from_open|1': 'change_from_open|1', 2759 'change_from_open|5': 'change_from_open|5', 2760 'change_from_open|15': 'change_from_open|15', 2761 'change_from_open|30': 'change_from_open|30', 2762 'change_from_open|60': 'change_from_open|60', 2763 'change_from_open|120': 'change_from_open|120', 2764 'change_from_open|240': 'change_from_open|240', 2765 'change_from_open|1W': 'change_from_open|1W', 2766 'change_from_open|1M': 'change_from_open|1M', 2767 'change_from_open_abs': 'change_from_open_abs', 2768 'change_from_open_abs|1': 'change_from_open_abs|1', 2769 'change_from_open_abs|5': 'change_from_open_abs|5', 2770 'change_from_open_abs|15': 'change_from_open_abs|15', 2771 'change_from_open_abs|30': 'change_from_open_abs|30', 2772 'change_from_open_abs|60': 'change_from_open_abs|60', 2773 'change_from_open_abs|120': 'change_from_open_abs|120', 2774 'change_from_open_abs|240': 'change_from_open_abs|240', 2775 'change_from_open_abs|1W': 'change_from_open_abs|1W', 2776 'change_from_open_abs|1M': 'change_from_open_abs|1M', 2777 'circulating_supply': 'circulating_supply', 2778 'circulating_to_max_supply_ratio': 'circulating_to_max_supply_ratio', 2779 'close': 'close', 2780 'close|1': 'close|1', 2781 'close|5': 'close|5', 2782 'close|15': 'close|15', 2783 'close|30': 'close|30', 2784 'close|60': 'close|60', 2785 'close|120': 'close|120', 2786 'close|240': 'close|240', 2787 'close|1W': 'close|1W', 2788 'close|1M': 'close|1M', 2789 'close_1_days_back': 'close_1_days_back', 2790 'close_30_days_back': 'close_30_days_back', 2791 'close_365_days_back': 'close_365_days_back', 2792 'continuous_dividend_growth': 'continuous_dividend_growth', 2793 'continuous_dividend_payout': 'continuous_dividend_payout', 2794 'country': 'country', 2795 'country2': 'country2', 2796 'country_code': 'country_code', 2797 'country_code_fund': 'country_code_fund', 2798 'coupon': 'coupon', 2799 'crypto_blockchain_ecosystems': 'crypto_blockchain_ecosystems', 2800 'crypto_categories': 'crypto_categories', 2801 'crypto_code': 'crypto_code', 2802 'crypto_common_categories': 'crypto_common_categories', 2803 'crypto_consensus_algorithms': 'crypto_consensus_algorithms', 2804 'crypto_total_rank': 'crypto_total_rank', 2805 'cryptoasset-info.description': 'cryptoasset-info.description', 2806 'cryptoasset-info.id': 'cryptoasset-info.id', 2807 'currency': 'currency', 2808 'currency_hedged_flag': 'currency_hedged_flag', 2809 'currency_kind': 'currency_kind', 2810 'current_ratio': 'current_ratio', 2811 'current_ratio_current': 'current_ratio_current', 2812 'current_ratio_fq': 'current_ratio_fq', 2813 'current_session': 'current_session', 2814 'days_to_maturity': 'days_to_maturity', 2815 'debt_to_asset_fq': 'debt_to_asset_fq', 2816 'debt_to_asset_fy': 'debt_to_asset_fy', 2817 'debt_to_assets': 'debt_to_assets', 2818 'debt_to_equity': 'debt_to_equity', 2819 'debt_to_equity_fq': 'debt_to_equity_fq', 2820 'debug.first_open_usd': 'debug.first_open_usd', 2821 'debug.last_close_usd': 'debug.last_close_usd', 2822 'dex_buy_volume_12h': 'dex_buy_volume_12h', 2823 'dex_buy_volume_15m': 'dex_buy_volume_15m', 2824 'dex_buy_volume_1h': 'dex_buy_volume_1h', 2825 'dex_buy_volume_24h': 'dex_buy_volume_24h', 2826 'dex_buy_volume_4h': 'dex_buy_volume_4h', 2827 'dex_buyers_12h': 'dex_buyers_12h', 2828 'dex_buyers_15m': 'dex_buyers_15m', 2829 'dex_buyers_1h': 'dex_buyers_1h', 2830 'dex_buyers_24h': 'dex_buyers_24h', 2831 'dex_buyers_4h': 'dex_buyers_4h', 2832 'dex_buys_12h': 'dex_buys_12h', 2833 'dex_buys_15m': 'dex_buys_15m', 2834 'dex_buys_1h': 'dex_buys_1h', 2835 'dex_buys_24h': 'dex_buys_24h', 2836 'dex_buys_4h': 'dex_buys_4h', 2837 'dex_sell_volume_12h': 'dex_sell_volume_12h', 2838 'dex_sell_volume_15m': 'dex_sell_volume_15m', 2839 'dex_sell_volume_1h': 'dex_sell_volume_1h', 2840 'dex_sell_volume_24h': 'dex_sell_volume_24h', 2841 'dex_sell_volume_4h': 'dex_sell_volume_4h', 2842 'dex_sellers_12h': 'dex_sellers_12h', 2843 'dex_sellers_15m': 'dex_sellers_15m', 2844 'dex_sellers_1h': 'dex_sellers_1h', 2845 'dex_sellers_24h': 'dex_sellers_24h', 2846 'dex_sellers_4h': 'dex_sellers_4h', 2847 'dex_sells_12h': 'dex_sells_12h', 2848 'dex_sells_15m': 'dex_sells_15m', 2849 'dex_sells_1h': 'dex_sells_1h', 2850 'dex_sells_24h': 'dex_sells_24h', 2851 'dex_sells_4h': 'dex_sells_4h', 2852 'dex_total_liquidity': 'dex_total_liquidity', 2853 'dex_total_supply': 'dex_total_supply', 2854 'dex_txs_count_12h': 'dex_txs_count_12h', 2855 'dex_txs_count_15m': 'dex_txs_count_15m', 2856 'dex_txs_count_1h': 'dex_txs_count_1h', 2857 'dex_txs_count_24h': 'dex_txs_count_24h', 2858 'dex_txs_count_4h': 'dex_txs_count_4h', 2859 'dex_txs_count_uniq_12h': 'dex_txs_count_uniq_12h', 2860 'dex_txs_count_uniq_15m': 'dex_txs_count_uniq_15m', 2861 'dex_txs_count_uniq_1h': 'dex_txs_count_uniq_1h', 2862 'dex_txs_count_uniq_24h': 'dex_txs_count_uniq_24h', 2863 'dex_txs_count_uniq_4h': 'dex_txs_count_uniq_4h', 2864 'diluted_shares_outstanding_fq': 'diluted_shares_outstanding_fq', 2865 'dividend_amount_recent': 'dividend_amount_recent', 2866 'dividend_amount_upcoming': 'dividend_amount_upcoming', 2867 'dividend_ex_date_recent': 'dividend_ex_date_recent', 2868 'dividend_ex_date_upcoming': 'dividend_ex_date_upcoming', 2869 'dividend_frequency_recent': 'dividend_frequency_recent', 2870 'dividend_frequency_upcoming': 'dividend_frequency_upcoming', 2871 'dividend_payment_date_recent': 'dividend_payment_date_recent', 2872 'dividend_payment_date_upcoming': 'dividend_payment_date_upcoming', 2873 'dividend_payout_ratio_percent_fq': 'dividend_payout_ratio_percent_fq', 2874 'dividend_payout_ratio_percent_fy': 'dividend_payout_ratio_percent_fy', 2875 'dividend_payout_ratio_ttm': 'dividend_payout_ratio_ttm', 2876 'dividend_treatment': 'dividend_treatment', 2877 'dividend_yield_recent': 'dividend_yield_recent', 2878 'dividend_yield_upcoming': 'dividend_yield_upcoming', 2879 'dividends_frequency': 'dividends_frequency', 2880 'dividends_paid': 'dividends_paid', 2881 'dividends_per_share_fq': 'dividends_per_share_fq', 2882 'dividends_yield': 'dividends_yield', 2883 'dividends_yield_current': 'dividends_yield_current', 2884 'dividends_yield_fq': 'dividends_yield_fq', 2885 'dividends_yield_fy': 'dividends_yield_fy', 2886 'dps_common_stock_prim_issue_fq': 'dps_common_stock_prim_issue_fq', 2887 'dps_common_stock_prim_issue_fy': 'dps_common_stock_prim_issue_fy', 2888 'dps_common_stock_prim_issue_fy_h': 'dps_common_stock_prim_issue_fy_h', 2889 'dps_common_stock_prim_issue_yoy_growth_fy': 'dps_common_stock_prim_issue_yoy_growth_fy', 2890 'earnings_per_share_basic_fy': 'earnings_per_share_basic_fy', 2891 'earnings_per_share_basic_fy_h': 'earnings_per_share_basic_fy_h', 2892 'earnings_per_share_basic_ttm': 'earnings_per_share_basic_ttm', 2893 'earnings_per_share_diluted_fq': 'earnings_per_share_diluted_fq', 2894 'earnings_per_share_diluted_fq_h': 'earnings_per_share_diluted_fq_h', 2895 'earnings_per_share_diluted_fy': 'earnings_per_share_diluted_fy', 2896 'earnings_per_share_diluted_fy_h': 'earnings_per_share_diluted_fy_h', 2897 'earnings_per_share_diluted_qoq_growth_fq': 'earnings_per_share_diluted_qoq_growth_fq', 2898 'earnings_per_share_diluted_ttm': 'earnings_per_share_diluted_ttm', 2899 'earnings_per_share_diluted_ttm_h': 'earnings_per_share_diluted_ttm_h', 2900 'earnings_per_share_diluted_yoy_growth_fq': 'earnings_per_share_diluted_yoy_growth_fq', 2901 'earnings_per_share_diluted_yoy_growth_fy': 'earnings_per_share_diluted_yoy_growth_fy', 2902 'earnings_per_share_diluted_yoy_growth_ttm': 'earnings_per_share_diluted_yoy_growth_ttm', 2903 'earnings_per_share_forecast_fq': 'earnings_per_share_forecast_fq', 2904 'earnings_per_share_forecast_next_fq': 'earnings_per_share_forecast_next_fq', 2905 'earnings_per_share_forecast_next_fy': 'earnings_per_share_forecast_next_fy', 2906 'earnings_per_share_fq': 'earnings_per_share_fq', 2907 'earnings_per_share_fy': 'earnings_per_share_fy', 2908 'earnings_publication_type_fq': 'earnings_publication_type_fq', 2909 'earnings_publication_type_next_fq': 'earnings_publication_type_next_fq', 2910 'earnings_release_calendar_date': 'earnings_release_calendar_date', 2911 'earnings_release_date': 'earnings_release_date', 2912 'earnings_release_next_calendar_date': 'earnings_release_next_calendar_date', 2913 'earnings_release_next_date': 'earnings_release_next_date', 2914 'earnings_release_next_time': 'earnings_release_next_time', 2915 'earnings_release_next_trading_date_fq': 'earnings_release_next_trading_date_fq', 2916 'earnings_release_next_trading_date_fy': 'earnings_release_next_trading_date_fy', 2917 'earnings_release_time': 'earnings_release_time', 2918 'earnings_release_trading_date_fq': 'earnings_release_trading_date_fq', 2919 'earnings_release_trading_date_fy': 'earnings_release_trading_date_fy', 2920 'ebit_ttm': 'ebit_ttm', 2921 'ebitda': 'ebitda', 2922 'ebitda_fq_h': 'ebitda_fq_h', 2923 'ebitda_fy': 'ebitda_fy', 2924 'ebitda_fy_h': 'ebitda_fy_h', 2925 'ebitda_interst_cover_fy': 'ebitda_interst_cover_fy', 2926 'ebitda_interst_cover_ttm': 'ebitda_interst_cover_ttm', 2927 'ebitda_less_capex_interst_cover_fy': 'ebitda_less_capex_interst_cover_fy', 2928 'ebitda_less_capex_interst_cover_ttm': 'ebitda_less_capex_interst_cover_ttm', 2929 'ebitda_per_employee_fy': 'ebitda_per_employee_fy', 2930 'ebitda_qoq_growth_fq': 'ebitda_qoq_growth_fq', 2931 'ebitda_ttm': 'ebitda_ttm', 2932 'ebitda_ttm_h': 'ebitda_ttm_h', 2933 'ebitda_yoy_growth_fq': 'ebitda_yoy_growth_fq', 2934 'ebitda_yoy_growth_fy': 'ebitda_yoy_growth_fy', 2935 'ebitda_yoy_growth_ttm': 'ebitda_yoy_growth_ttm', 2936 'economic-category-id': 'economic-category-id', 2937 'enterprise_value_current': 'enterprise_value_current', 2938 'enterprise_value_ebitda_current': 'enterprise_value_ebitda_current', 2939 'enterprise_value_ebitda_ttm': 'enterprise_value_ebitda_ttm', 2940 'enterprise_value_fq': 'enterprise_value_fq', 2941 'enterprise_value_to_ebit_ttm': 'enterprise_value_to_ebit_ttm', 2942 'enterprise_value_to_free_cash_flow_ttm': 'enterprise_value_to_free_cash_flow_ttm', 2943 'enterprise_value_to_gross_profit_ttm': 'enterprise_value_to_gross_profit_ttm', 2944 'enterprise_value_to_revenue_ttm': 'enterprise_value_to_revenue_ttm', 2945 'eps_diluted_growth_percent_fq': 'eps_diluted_growth_percent_fq', 2946 'eps_diluted_growth_percent_fy': 'eps_diluted_growth_percent_fy', 2947 'eps_surprise_fq': 'eps_surprise_fq', 2948 'eps_surprise_percent_fq': 'eps_surprise_percent_fq', 2949 'etf_fund_currency': 'etf_fund_currency', 2950 'ex_dividend_date_recent': 'ex_dividend_date_recent', 2951 'ex_dividend_date_upcoming': 'ex_dividend_date_upcoming', 2952 'exchange': 'exchange', 2953 'expected_annual_dividends': 'expected_annual_dividends', 2954 'expense_ratio': 'expense_ratio', 2955 'expiration': 'expiration', 2956 'first_bar_time': 'first_bar_time', 2957 'fiscal_period_end_fh': 'fiscal_period_end_fh', 2958 'fiscal_period_end_fq': 'fiscal_period_end_fq', 2959 'fiscal_period_fy_h': 'fiscal_period_fy_h', 2960 'fixed_assets_turnover_fq': 'fixed_assets_turnover_fq', 2961 'fixed_assets_turnover_fy': 'fixed_assets_turnover_fy', 2962 'float_shares_outstanding': 'float_shares_outstanding', 2963 'float_shares_outstanding_current': 'float_shares_outstanding_current', 2964 'float_shares_percent_current': 'float_shares_percent_current', 2965 'focus': 'focus', 2966 'forex_exotic_priority': 'forex_exotic_priority', 2967 'forex_minor_priority': 'forex_minor_priority', 2968 'forex_priority': 'forex_priority', 2969 'fractional': 'fractional', 2970 'free_cash_flow': 'free_cash_flow', 2971 'free_cash_flow_fq': 'free_cash_flow_fq', 2972 'free_cash_flow_fq_h': 'free_cash_flow_fq_h', 2973 'free_cash_flow_fy': 'free_cash_flow_fy', 2974 'free_cash_flow_fy_h': 'free_cash_flow_fy_h', 2975 'free_cash_flow_margin_fy': 'free_cash_flow_margin_fy', 2976 'free_cash_flow_margin_ttm': 'free_cash_flow_margin_ttm', 2977 'free_cash_flow_per_employee_fy': 'free_cash_flow_per_employee_fy', 2978 'free_cash_flow_qoq_growth_fq': 'free_cash_flow_qoq_growth_fq', 2979 'free_cash_flow_ttm': 'free_cash_flow_ttm', 2980 'free_cash_flow_ttm_h': 'free_cash_flow_ttm_h', 2981 'free_cash_flow_yoy_growth_fq': 'free_cash_flow_yoy_growth_fq', 2982 'free_cash_flow_yoy_growth_fy': 'free_cash_flow_yoy_growth_fy', 2983 'free_cash_flow_yoy_growth_ttm': 'free_cash_flow_yoy_growth_ttm', 2984 'frequency_recent': 'frequency_recent', 2985 'frequency_upcoming': 'frequency_upcoming', 2986 'fully_diluted_value': 'fully_diluted_value', 2987 'fund_flows.1M': 'fund_flows.1M', 2988 'fund_flows.1Y': 'fund_flows.1Y', 2989 'fund_flows.3M': 'fund_flows.3M', 2990 'fund_flows.3Y': 'fund_flows.3Y', 2991 'fund_flows.5Y': 'fund_flows.5Y', 2992 'fund_flows.YTD': 'fund_flows.YTD', 2993 'fundamental_currency_code': 'fundamental_currency_code', 2994 'gap': 'gap', 2995 'gap|1': 'gap|1', 2996 'gap|5': 'gap|5', 2997 'gap|15': 'gap|15', 2998 'gap|30': 'gap|30', 2999 'gap|60': 'gap|60', 3000 'gap|120': 'gap|120', 3001 'gap|240': 'gap|240', 3002 'gap|1W': 'gap|1W', 3003 'gap|1M': 'gap|1M', 3004 'gap_down': 'gap_down', 3005 'gap_down|1': 'gap_down|1', 3006 'gap_down|5': 'gap_down|5', 3007 'gap_down|15': 'gap_down|15', 3008 'gap_down|30': 'gap_down|30', 3009 'gap_down|60': 'gap_down|60', 3010 'gap_down|120': 'gap_down|120', 3011 'gap_down|240': 'gap_down|240', 3012 'gap_down|1W': 'gap_down|1W', 3013 'gap_down|1M': 'gap_down|1M', 3014 'gap_down_abs': 'gap_down_abs', 3015 'gap_down_abs|1': 'gap_down_abs|1', 3016 'gap_down_abs|5': 'gap_down_abs|5', 3017 'gap_down_abs|15': 'gap_down_abs|15', 3018 'gap_down_abs|30': 'gap_down_abs|30', 3019 'gap_down_abs|60': 'gap_down_abs|60', 3020 'gap_down_abs|120': 'gap_down_abs|120', 3021 'gap_down_abs|240': 'gap_down_abs|240', 3022 'gap_down_abs|1W': 'gap_down_abs|1W', 3023 'gap_down_abs|1M': 'gap_down_abs|1M', 3024 'gap_up': 'gap_up', 3025 'gap_up|1': 'gap_up|1', 3026 'gap_up|5': 'gap_up|5', 3027 'gap_up|15': 'gap_up|15', 3028 'gap_up|30': 'gap_up|30', 3029 'gap_up|60': 'gap_up|60', 3030 'gap_up|120': 'gap_up|120', 3031 'gap_up|240': 'gap_up|240', 3032 'gap_up|1W': 'gap_up|1W', 3033 'gap_up|1M': 'gap_up|1M', 3034 'gap_up_abs': 'gap_up_abs', 3035 'gap_up_abs|1': 'gap_up_abs|1', 3036 'gap_up_abs|5': 'gap_up_abs|5', 3037 'gap_up_abs|15': 'gap_up_abs|15', 3038 'gap_up_abs|30': 'gap_up_abs|30', 3039 'gap_up_abs|60': 'gap_up_abs|60', 3040 'gap_up_abs|120': 'gap_up_abs|120', 3041 'gap_up_abs|240': 'gap_up_abs|240', 3042 'gap_up_abs|1W': 'gap_up_abs|1W', 3043 'gap_up_abs|1M': 'gap_up_abs|1M', 3044 'github_commits': 'github_commits', 3045 'goodwill': 'goodwill', 3046 'goodwill_fq': 'goodwill_fq', 3047 'gross_margin': 'gross_margin', 3048 'gross_margin_fy': 'gross_margin_fy', 3049 'gross_margin_percent_ttm': 'gross_margin_percent_ttm', 3050 'gross_margin_ttm': 'gross_margin_ttm', 3051 'gross_profit': 'gross_profit', 3052 'gross_profit_fq': 'gross_profit_fq', 3053 'gross_profit_fq_h': 'gross_profit_fq_h', 3054 'gross_profit_fy': 'gross_profit_fy', 3055 'gross_profit_fy_h': 'gross_profit_fy_h', 3056 'gross_profit_margin_fy': 'gross_profit_margin_fy', 3057 'gross_profit_qoq_growth_fq': 'gross_profit_qoq_growth_fq', 3058 'gross_profit_ttm': 'gross_profit_ttm', 3059 'gross_profit_ttm_h': 'gross_profit_ttm_h', 3060 'gross_profit_yoy_growth_fq': 'gross_profit_yoy_growth_fq', 3061 'gross_profit_yoy_growth_fy': 'gross_profit_yoy_growth_fy', 3062 'gross_profit_yoy_growth_ttm': 'gross_profit_yoy_growth_ttm', 3063 'high': 'high', 3064 'high|1': 'high|1', 3065 'high|5': 'high|5', 3066 'high|15': 'high|15', 3067 'high|30': 'high|30', 3068 'high|60': 'high|60', 3069 'high|120': 'high|120', 3070 'high|240': 'high|240', 3071 'high|1W': 'high|1W', 3072 'high|1M': 'high|1M', 3073 'holdings_region': 'holdings_region', 3074 'holds_derivatives_flag': 'holds_derivatives_flag', 3075 'in_the_money_addresses_percentage': 'in_the_money_addresses_percentage', 3076 'index': 'index', 3077 'index_id': 'index_id', 3078 'index_priority': 'index_priority', 3079 'index_provider': 'index_provider', 3080 'indicated_annual_dividend': 'indicated_annual_dividend', 3081 'indicators_bars_count': 'indicators_bars_count', 3082 'indicators_bars_count|1': 'indicators_bars_count|1', 3083 'indicators_bars_count|5': 'indicators_bars_count|5', 3084 'indicators_bars_count|15': 'indicators_bars_count|15', 3085 'indicators_bars_count|30': 'indicators_bars_count|30', 3086 'indicators_bars_count|60': 'indicators_bars_count|60', 3087 'indicators_bars_count|120': 'indicators_bars_count|120', 3088 'indicators_bars_count|240': 'indicators_bars_count|240', 3089 'indicators_bars_count|1W': 'indicators_bars_count|1W', 3090 'indicators_bars_count|1M': 'indicators_bars_count|1M', 3091 'industry': 'industry', 3092 'interst_cover_fy': 'interst_cover_fy', 3093 'interst_cover_ttm': 'interst_cover_ttm', 3094 'invent_turnover_current': 'invent_turnover_current', 3095 'invent_turnover_fy': 'invent_turnover_fy', 3096 'inverse_flag': 'inverse_flag', 3097 'is_blacklisted': 'is_blacklisted', 3098 'is_primary': 'is_primary', 3099 'is_shariah_compliant': 'is_shariah_compliant', 3100 'issuance_of_stock_net_ttm': 'issuance_of_stock_net_ttm', 3101 'issuer': 'issuer', 3102 'k1_form': 'k1_form', 3103 'large_tx_count': 'large_tx_count', 3104 'large_tx_volume_usd': 'large_tx_volume_usd', 3105 'last_annual_eps': 'last_annual_eps', 3106 'last_annual_revenue': 'last_annual_revenue', 3107 'last_bar_update_time': 'last_bar_update_time', 3108 'last_bar_update_time|1': 'last_bar_update_time|1', 3109 'last_bar_update_time|5': 'last_bar_update_time|5', 3110 'last_bar_update_time|15': 'last_bar_update_time|15', 3111 'last_bar_update_time|30': 'last_bar_update_time|30', 3112 'last_bar_update_time|60': 'last_bar_update_time|60', 3113 'last_bar_update_time|120': 'last_bar_update_time|120', 3114 'last_bar_update_time|240': 'last_bar_update_time|240', 3115 'last_bar_update_time|1W': 'last_bar_update_time|1W', 3116 'last_bar_update_time|1M': 'last_bar_update_time|1M', 3117 'last_report_frequency': 'last_report_frequency', 3118 'launch_date': 'launch_date', 3119 'leverage': 'leverage', 3120 'leverage_ratio': 'leverage_ratio', 3121 'leveraged_flag': 'leveraged_flag', 3122 'long_term_capital': 'long_term_capital', 3123 'long_term_debt_to_assets_fq': 'long_term_debt_to_assets_fq', 3124 'long_term_debt_to_assets_fy': 'long_term_debt_to_assets_fy', 3125 'long_term_debt_to_equity_fq': 'long_term_debt_to_equity_fq', 3126 'losses_addresses_percentage': 'losses_addresses_percentage', 3127 'low': 'low', 3128 'low|1': 'low|1', 3129 'low|5': 'low|5', 3130 'low|15': 'low|15', 3131 'low|30': 'low|30', 3132 'low|60': 'low|60', 3133 'low|120': 'low|120', 3134 'low|240': 'low|240', 3135 'low|1W': 'low|1W', 3136 'low|1M': 'low|1M', 3137 'low_after_high_all_change': 'low_after_high_all_change', 3138 'low_after_high_all_change_abs': 'low_after_high_all_change_abs', 3139 'market': 'market', 3140 'market_cap': 'market_cap', 3141 'market_cap_basic': 'market_cap_basic', 3142 'market_cap_calc': 'market_cap_calc', 3143 'market_cap_diluted_calc': 'market_cap_diluted_calc', 3144 'market_cap_to_tvl': 'market_cap_to_tvl', 3145 'maturity_date': 'maturity_date', 3146 'max_supply': 'max_supply', 3147 'measure': 'measure', 3148 'minmov': 'minmov', 3149 'minmove2': 'minmove2', 3150 'most_recent_quarter_date': 'most_recent_quarter_date', 3151 'name': 'name', 3152 'nav': 'nav', 3153 'nav_discount_premium': 'nav_discount_premium', 3154 'nav_perf.1M': 'nav_perf.1M', 3155 'nav_perf.1Y': 'nav_perf.1Y', 3156 'nav_perf.3M': 'nav_perf.3M', 3157 'nav_perf.3Y': 'nav_perf.3Y', 3158 'nav_perf.5Y': 'nav_perf.5Y', 3159 'nav_perf.YTD': 'nav_perf.YTD', 3160 'nav_total_return.1M': 'nav_total_return.1M', 3161 'nav_total_return.1Y': 'nav_total_return.1Y', 3162 'nav_total_return.3M': 'nav_total_return.3M', 3163 'nav_total_return.3Y': 'nav_total_return.3Y', 3164 'nav_total_return.5Y': 'nav_total_return.5Y', 3165 'nav_total_return.6M': 'nav_total_return.6M', 3166 'nav_total_return.YTD': 'nav_total_return.YTD', 3167 'net_debt': 'net_debt', 3168 'net_debt_fq': 'net_debt_fq', 3169 'net_debt_to_ebitda_fq': 'net_debt_to_ebitda_fq', 3170 'net_debt_to_ebitda_fy': 'net_debt_to_ebitda_fy', 3171 'net_income': 'net_income', 3172 'net_income_bef_disc_oper_fy': 'net_income_bef_disc_oper_fy', 3173 'net_income_bef_disc_oper_margin_fy': 'net_income_bef_disc_oper_margin_fy', 3174 'net_income_fq_h': 'net_income_fq_h', 3175 'net_income_fy': 'net_income_fy', 3176 'net_income_fy_h': 'net_income_fy_h', 3177 'net_income_per_employee_fy': 'net_income_per_employee_fy', 3178 'net_income_qoq_growth_fq': 'net_income_qoq_growth_fq', 3179 'net_income_ttm': 'net_income_ttm', 3180 'net_income_ttm_h': 'net_income_ttm_h', 3181 'net_income_yoy_growth_fq': 'net_income_yoy_growth_fq', 3182 'net_income_yoy_growth_fy': 'net_income_yoy_growth_fy', 3183 'net_income_yoy_growth_ttm': 'net_income_yoy_growth_ttm', 3184 'net_margin': 'net_margin', 3185 'net_margin_fy': 'net_margin_fy', 3186 'net_margin_ttm': 'net_margin_ttm', 3187 'next_dividend_date': 'next_dividend_date', 3188 'niche': 'niche', 3189 'non_gaap_price_to_earnings_per_share_forecast_next_fy': 'non_gaap_price_to_earnings_per_share_forecast_next_fy', 3190 'number_of_employees': 'number_of_employees', 3191 'number_of_employees_fy': 'number_of_employees_fy', 3192 'number_of_shareholders': 'number_of_shareholders', 3193 'number_of_shareholders_fy': 'number_of_shareholders_fy', 3194 'nvt': 'nvt', 3195 'open': 'open', 3196 'open|1': 'open|1', 3197 'open|5': 'open|5', 3198 'open|15': 'open|15', 3199 'open|30': 'open|30', 3200 'open|60': 'open|60', 3201 'open|120': 'open|120', 3202 'open|240': 'open|240', 3203 'open|1W': 'open|1W', 3204 'open|1M': 'open|1M', 3205 'open_interest': 'open_interest', 3206 'oper_income_fy': 'oper_income_fy', 3207 'oper_income_margin_fy': 'oper_income_margin_fy', 3208 'oper_income_per_employee_fy': 'oper_income_per_employee_fy', 3209 'oper_income_ttm': 'oper_income_ttm', 3210 'operating_margin': 'operating_margin', 3211 'operating_margin_fy': 'operating_margin_fy', 3212 'operating_margin_ttm': 'operating_margin_ttm', 3213 'option-type': 'option-type', 3214 'out_the_money_addresses_percentage': 'out_the_money_addresses_percentage', 3215 'payment_date_recent': 'payment_date_recent', 3216 'payment_date_upcoming': 'payment_date_upcoming', 3217 'popularity_rank': 'popularity_rank', 3218 'post_change': 'post_change', 3219 'post_change|1': 'post_change|1', 3220 'post_change|5': 'post_change|5', 3221 'post_change|15': 'post_change|15', 3222 'post_change|30': 'post_change|30', 3223 'post_change|60': 'post_change|60', 3224 'post_change|120': 'post_change|120', 3225 'post_change|240': 'post_change|240', 3226 'post_change|1W': 'post_change|1W', 3227 'post_change|1M': 'post_change|1M', 3228 'postmarket_change': 'postmarket_change', 3229 'postmarket_change_abs': 'postmarket_change_abs', 3230 'postmarket_close': 'postmarket_close', 3231 'postmarket_high': 'postmarket_high', 3232 'postmarket_low': 'postmarket_low', 3233 'postmarket_open': 'postmarket_open', 3234 'postmarket_time': 'postmarket_time', 3235 'postmarket_volume': 'postmarket_volume', 3236 'pre_change': 'pre_change', 3237 'pre_change|1': 'pre_change|1', 3238 'pre_change|5': 'pre_change|5', 3239 'pre_change|15': 'pre_change|15', 3240 'pre_change|30': 'pre_change|30', 3241 'pre_change|60': 'pre_change|60', 3242 'pre_change|120': 'pre_change|120', 3243 'pre_change|240': 'pre_change|240', 3244 'pre_change|1W': 'pre_change|1W', 3245 'pre_change|1M': 'pre_change|1M', 3246 'pre_change_abs': 'pre_change_abs', 3247 'pre_change_abs|1': 'pre_change_abs|1', 3248 'pre_change_abs|5': 'pre_change_abs|5', 3249 'pre_change_abs|15': 'pre_change_abs|15', 3250 'pre_change_abs|30': 'pre_change_abs|30', 3251 'pre_change_abs|60': 'pre_change_abs|60', 3252 'pre_change_abs|120': 'pre_change_abs|120', 3253 'pre_change_abs|240': 'pre_change_abs|240', 3254 'pre_change_abs|1W': 'pre_change_abs|1W', 3255 'pre_change_abs|1M': 'pre_change_abs|1M', 3256 'pre_tax_margin': 'pre_tax_margin', 3257 'pre_tax_margin_ttm': 'pre_tax_margin_ttm', 3258 'preferred_dividends': 'preferred_dividends', 3259 'premarket_change': 'premarket_change', 3260 'premarket_change_abs': 'premarket_change_abs', 3261 'premarket_change_from_open': 'premarket_change_from_open', 3262 'premarket_change_from_open_abs': 'premarket_change_from_open_abs', 3263 'premarket_close': 'premarket_close', 3264 'premarket_gap': 'premarket_gap', 3265 'premarket_high': 'premarket_high', 3266 'premarket_low': 'premarket_low', 3267 'premarket_open': 'premarket_open', 3268 'premarket_time': 'premarket_time', 3269 'premarket_volume': 'premarket_volume', 3270 'price_52_week_high': 'price_52_week_high', 3271 'price_52_week_high_date': 'price_52_week_high_date', 3272 'price_52_week_low': 'price_52_week_low', 3273 'price_52_week_low_date': 'price_52_week_low_date', 3274 'price_annual_book': 'price_annual_book', 3275 'price_annual_sales': 'price_annual_sales', 3276 'price_book_current': 'price_book_current', 3277 'price_book_fq': 'price_book_fq', 3278 'price_book_ratio': 'price_book_ratio', 3279 'price_cash_flow_current': 'price_cash_flow_current', 3280 'price_earnings_current': 'price_earnings_current', 3281 'price_earnings_forward_fy': 'price_earnings_forward_fy', 3282 'price_earnings_growth_ttm': 'price_earnings_growth_ttm', 3283 'price_earnings_ttm': 'price_earnings_ttm', 3284 'price_free_cash_flow_current': 'price_free_cash_flow_current', 3285 'price_free_cash_flow_ttm': 'price_free_cash_flow_ttm', 3286 'price_revenue_ttm': 'price_revenue_ttm', 3287 'price_sales': 'price_sales', 3288 'price_sales_current': 'price_sales_current', 3289 'price_sales_ratio': 'price_sales_ratio', 3290 'price_target_1y': 'price_target_1y', 3291 'price_target_1y_delta': 'price_target_1y_delta', 3292 'price_target_average': 'price_target_average', 3293 'price_target_high': 'price_target_high', 3294 'price_target_low': 'price_target_low', 3295 'price_target_median': 'price_target_median', 3296 'price_to_cash_f_operating_activities_ttm': 'price_to_cash_f_operating_activities_ttm', 3297 'price_to_cash_ratio': 'price_to_cash_ratio', 3298 'price_to_working_capital_fq': 'price_to_working_capital_fq', 3299 'pricescale': 'pricescale', 3300 'profit_addresses_percentage': 'profit_addresses_percentage', 3301 'provider-id': 'provider-id', 3302 'quick_ratio': 'quick_ratio', 3303 'quick_ratio_current': 'quick_ratio_current', 3304 'quick_ratio_fq': 'quick_ratio_fq', 3305 'rates_cf': 'rates_cf', 3306 'rates_current': 'rates_current', 3307 'rates_dividend_recent': 'rates_dividend_recent', 3308 'rates_dividend_upcoming': 'rates_dividend_upcoming', 3309 'rates_earnings_fq': 'rates_earnings_fq', 3310 'rates_earnings_next_fq': 'rates_earnings_next_fq', 3311 'rates_fh': 'rates_fh', 3312 'rates_fq': 'rates_fq', 3313 'rates_fy': 'rates_fy', 3314 'rates_mc': 'rates_mc', 3315 'rates_pt': 'rates_pt', 3316 'rates_time_series': 'rates_time_series', 3317 'rates_ttm': 'rates_ttm', 3318 'receivables_turnover_fq': 'receivables_turnover_fq', 3319 'receivables_turnover_fy': 'receivables_turnover_fy', 3320 'recommendation_buy': 'recommendation_buy', 3321 'recommendation_hold': 'recommendation_hold', 3322 'recommendation_mark': 'recommendation_mark', 3323 'recommendation_over': 'recommendation_over', 3324 'recommendation_sell': 'recommendation_sell', 3325 'recommendation_total': 'recommendation_total', 3326 'recommendation_under': 'recommendation_under', 3327 'region': 'region', 3328 'relative_volume': 'relative_volume', 3329 'relative_volume_10d_calc': 'relative_volume_10d_calc', 3330 'relative_volume_10d_calc|1': 'relative_volume_10d_calc|1', 3331 'relative_volume_10d_calc|5': 'relative_volume_10d_calc|5', 3332 'relative_volume_10d_calc|15': 'relative_volume_10d_calc|15', 3333 'relative_volume_10d_calc|30': 'relative_volume_10d_calc|30', 3334 'relative_volume_10d_calc|60': 'relative_volume_10d_calc|60', 3335 'relative_volume_10d_calc|120': 'relative_volume_10d_calc|120', 3336 'relative_volume_10d_calc|240': 'relative_volume_10d_calc|240', 3337 'relative_volume_10d_calc|1W': 'relative_volume_10d_calc|1W', 3338 'relative_volume_10d_calc|1M': 'relative_volume_10d_calc|1M', 3339 'relative_volume_intraday|5': 'relative_volume_intraday|5', 3340 'research_and_dev_fy': 'research_and_dev_fy', 3341 'research_and_dev_per_employee_fy': 'research_and_dev_per_employee_fy', 3342 'research_and_dev_ratio_fy': 'research_and_dev_ratio_fy', 3343 'research_and_dev_ratio_ttm': 'research_and_dev_ratio_ttm', 3344 'research_and_dev_ttm': 'research_and_dev_ttm', 3345 'return_of_invested_capital_percent_ttm': 'return_of_invested_capital_percent_ttm', 3346 'return_on_assets': 'return_on_assets', 3347 'return_on_assets_fq': 'return_on_assets_fq', 3348 'return_on_assets_fy': 'return_on_assets_fy', 3349 'return_on_capital_employed_fq': 'return_on_capital_employed_fq', 3350 'return_on_capital_employed_fy': 'return_on_capital_employed_fy', 3351 'return_on_equity': 'return_on_equity', 3352 'return_on_equity_fq': 'return_on_equity_fq', 3353 'return_on_equity_fy': 'return_on_equity_fy', 3354 'return_on_invested_capital': 'return_on_invested_capital', 3355 'return_on_invested_capital_fq': 'return_on_invested_capital_fq', 3356 'return_on_invested_capital_fy': 'return_on_invested_capital_fy', 3357 'return_on_tang_assets_fq': 'return_on_tang_assets_fq', 3358 'return_on_tang_assets_fy': 'return_on_tang_assets_fy', 3359 'return_on_tang_equity_fq': 'return_on_tang_equity_fq', 3360 'return_on_tang_equity_fy': 'return_on_tang_equity_fy', 3361 'return_on_total_capital_fq': 'return_on_total_capital_fq', 3362 'return_on_total_capital_fy': 'return_on_total_capital_fy', 3363 'revenue_forecast_fq': 'revenue_forecast_fq', 3364 'revenue_forecast_next_fq': 'revenue_forecast_next_fq', 3365 'revenue_fq': 'revenue_fq', 3366 'revenue_per_employee': 'revenue_per_employee', 3367 'revenue_per_share_fy': 'revenue_per_share_fy', 3368 'revenue_per_share_ttm': 'revenue_per_share_ttm', 3369 'revenue_surprise_fq': 'revenue_surprise_fq', 3370 'revenue_surprise_percent_fq': 'revenue_surprise_percent_fq', 3371 'rtc': 'rtc', 3372 'sector': 'sector', 3373 'selection_criteria': 'selection_criteria', 3374 'sell_gen_admin_exp_other_fy': 'sell_gen_admin_exp_other_fy', 3375 'sell_gen_admin_exp_other_ratio_fy': 'sell_gen_admin_exp_other_ratio_fy', 3376 'sell_gen_admin_exp_other_ratio_ttm': 'sell_gen_admin_exp_other_ratio_ttm', 3377 'sell_gen_admin_exp_other_ttm': 'sell_gen_admin_exp_other_ttm', 3378 'shrhldrs_equity_fq': 'shrhldrs_equity_fq', 3379 'shrhldrs_equity_fy': 'shrhldrs_equity_fy', 3380 'shrhldrs_equity_to_total_assets_fq': 'shrhldrs_equity_to_total_assets_fq', 3381 'shrhldrs_equity_to_total_assets_fy': 'shrhldrs_equity_to_total_assets_fy', 3382 'source-logoid': 'source-logoid', 3383 'strategy': 'strategy', 3384 'strike': 'strike', 3385 'study-inputs': 'study-inputs', 3386 'submarket': 'submarket', 3387 'subtype': 'subtype', 3388 'telegram_members': 'telegram_members', 3389 'telegram_negative': 'telegram_negative', 3390 'telegram_positive': 'telegram_positive', 3391 'term-to-maturity': 'term-to-maturity', 3392 'time': 'time', 3393 'time|1': 'time|1', 3394 'time|5': 'time|5', 3395 'time|15': 'time|15', 3396 'time|30': 'time|30', 3397 'time|60': 'time|60', 3398 'time|120': 'time|120', 3399 'time|240': 'time|240', 3400 'time|1W': 'time|1W', 3401 'time|1M': 'time|1M', 3402 'time_business_day': 'time_business_day', 3403 'total_addresses_with_balance': 'total_addresses_with_balance', 3404 'total_assets': 'total_assets', 3405 'total_assets_fq': 'total_assets_fq', 3406 'total_assets_fq_h': 'total_assets_fq_h', 3407 'total_assets_fy': 'total_assets_fy', 3408 'total_assets_fy_h': 'total_assets_fy_h', 3409 'total_assets_per_employee_fy': 'total_assets_per_employee_fy', 3410 'total_assets_qoq_growth_fq': 'total_assets_qoq_growth_fq', 3411 'total_assets_to_equity_fq': 'total_assets_to_equity_fq', 3412 'total_assets_to_equity_fy': 'total_assets_to_equity_fy', 3413 'total_assets_yoy_growth_fq': 'total_assets_yoy_growth_fq', 3414 'total_assets_yoy_growth_fy': 'total_assets_yoy_growth_fy', 3415 'total_capital': 'total_capital', 3416 'total_cash_dividends_paid_fy': 'total_cash_dividends_paid_fy', 3417 'total_current_assets': 'total_current_assets', 3418 'total_current_assets_fq': 'total_current_assets_fq', 3419 'total_current_liabilities_fq': 'total_current_liabilities_fq', 3420 'total_current_liabilities_fy': 'total_current_liabilities_fy', 3421 'total_debt': 'total_debt', 3422 'total_debt_fq': 'total_debt_fq', 3423 'total_debt_fq_h': 'total_debt_fq_h', 3424 'total_debt_fy': 'total_debt_fy', 3425 'total_debt_fy_h': 'total_debt_fy_h', 3426 'total_debt_per_employee_fy': 'total_debt_per_employee_fy', 3427 'total_debt_qoq_growth_fq': 'total_debt_qoq_growth_fq', 3428 'total_debt_to_capital_fq': 'total_debt_to_capital_fq', 3429 'total_debt_to_capital_fy': 'total_debt_to_capital_fy', 3430 'total_debt_to_ebitda_fq': 'total_debt_to_ebitda_fq', 3431 'total_debt_to_ebitda_fy': 'total_debt_to_ebitda_fy', 3432 'total_debt_yoy_growth_fq': 'total_debt_yoy_growth_fq', 3433 'total_debt_yoy_growth_fy': 'total_debt_yoy_growth_fy', 3434 'total_equity_fq': 'total_equity_fq', 3435 'total_liabilities_fq': 'total_liabilities_fq', 3436 'total_liabilities_fy': 'total_liabilities_fy', 3437 'total_revenue': 'total_revenue', 3438 'total_revenue_fq_h': 'total_revenue_fq_h', 3439 'total_revenue_fy': 'total_revenue_fy', 3440 'total_revenue_fy_h': 'total_revenue_fy_h', 3441 'total_revenue_qoq_growth_fq': 'total_revenue_qoq_growth_fq', 3442 'total_revenue_ttm': 'total_revenue_ttm', 3443 'total_revenue_ttm_h': 'total_revenue_ttm_h', 3444 'total_revenue_yoy_growth_fq': 'total_revenue_yoy_growth_fq', 3445 'total_revenue_yoy_growth_fy': 'total_revenue_yoy_growth_fy', 3446 'total_revenue_yoy_growth_ttm': 'total_revenue_yoy_growth_ttm', 3447 'total_shares_diluted': 'total_shares_diluted', 3448 'total_shares_outstanding': 'total_shares_outstanding', 3449 'total_shares_outstanding_calculated': 'total_shares_outstanding_calculated', 3450 'total_shares_outstanding_current': 'total_shares_outstanding_current', 3451 'total_shares_outstanding_fundamental': 'total_shares_outstanding_fundamental', 3452 'total_supply': 'total_supply', 3453 'total_to_max_supply_ratio': 'total_to_max_supply_ratio', 3454 'total_value_traded': 'total_value_traded', 3455 'transparent_holding_flag': 'transparent_holding_flag', 3456 'tvl': 'tvl', 3457 'twitter_negative': 'twitter_negative', 3458 'twitter_positive': 'twitter_positive', 3459 'txs_count': 'txs_count', 3460 'txs_volume': 'txs_volume', 3461 'txs_volume_usd': 'txs_volume_usd', 3462 'type': 'type', 3463 'typespecs': 'typespecs', 3464 'ucits_compliant_flag': 'ucits_compliant_flag', 3465 'unit-id': 'unit-id', 3466 'update-time': 'update-time', 3467 'update_mode': 'update_mode', 3468 'update_mode|1': 'update_mode|1', 3469 'update_mode|5': 'update_mode|5', 3470 'update_mode|15': 'update_mode|15', 3471 'update_mode|30': 'update_mode|30', 3472 'update_mode|60': 'update_mode|60', 3473 'update_mode|120': 'update_mode|120', 3474 'update_mode|240': 'update_mode|240', 3475 'update_mode|1W': 'update_mode|1W', 3476 'update_mode|1M': 'update_mode|1M', 3477 'update_time': 'update_time', 3478 'value-unit-id': 'value-unit-id', 3479 'velocity': 'velocity', 3480 'volume': 'volume', 3481 'volume|1': 'volume|1', 3482 'volume|5': 'volume|5', 3483 'volume|15': 'volume|15', 3484 'volume|30': 'volume|30', 3485 'volume|60': 'volume|60', 3486 'volume|120': 'volume|120', 3487 'volume|240': 'volume|240', 3488 'volume|1W': 'volume|1W', 3489 'volume|1M': 'volume|1M', 3490 'volume-type': 'volume-type', 3491 'volume_base': 'volume_base', 3492 'volume_base|1': 'volume_base|1', 3493 'volume_base|5': 'volume_base|5', 3494 'volume_base|15': 'volume_base|15', 3495 'volume_base|30': 'volume_base|30', 3496 'volume_base|60': 'volume_base|60', 3497 'volume_base|120': 'volume_base|120', 3498 'volume_base|240': 'volume_base|240', 3499 'volume_base|1W': 'volume_base|1W', 3500 'volume_base|1M': 'volume_base|1M', 3501 'volume_change': 'volume_change', 3502 'volume_change|1': 'volume_change|1', 3503 'volume_change|5': 'volume_change|5', 3504 'volume_change|15': 'volume_change|15', 3505 'volume_change|30': 'volume_change|30', 3506 'volume_change|60': 'volume_change|60', 3507 'volume_change|120': 'volume_change|120', 3508 'volume_change|240': 'volume_change|240', 3509 'volume_change|1W': 'volume_change|1W', 3510 'volume_change|1M': 'volume_change|1M', 3511 'volume_change_abs': 'volume_change_abs', 3512 'volume_change_abs|1': 'volume_change_abs|1', 3513 'volume_change_abs|5': 'volume_change_abs|5', 3514 'volume_change_abs|15': 'volume_change_abs|15', 3515 'volume_change_abs|30': 'volume_change_abs|30', 3516 'volume_change_abs|60': 'volume_change_abs|60', 3517 'volume_change_abs|120': 'volume_change_abs|120', 3518 'volume_change_abs|240': 'volume_change_abs|240', 3519 'volume_change_abs|1W': 'volume_change_abs|1W', 3520 'volume_change_abs|1M': 'volume_change_abs|1M', 3521 'volume_quote': 'volume_quote', 3522 'volume_quote|1': 'volume_quote|1', 3523 'volume_quote|5': 'volume_quote|5', 3524 'volume_quote|15': 'volume_quote|15', 3525 'volume_quote|30': 'volume_quote|30', 3526 'volume_quote|60': 'volume_quote|60', 3527 'volume_quote|120': 'volume_quote|120', 3528 'volume_quote|240': 'volume_quote|240', 3529 'volume_quote|1W': 'volume_quote|1W', 3530 'volume_quote|1M': 'volume_quote|1M', 3531 'weight_top_10': 'weight_top_10', 3532 'weight_top_25': 'weight_top_25', 3533 'weight_top_50': 'weight_top_50', 3534 'weighting_scheme': 'weighting_scheme', 3535 'working_capital_fq': 'working_capital_fq', 3536 'yield_recent': 'yield_recent', 3537 'yield_upcoming': 'yield_upcoming', 3538} 3539 3540""" 3541These are all the columns available that you can use in your queries, 3542either by passing the key, e.g. "Volume Weighted Average Price", 3543or by passing the value, e.g. "VWAP". 3544 3545One important thing to note is that some fields are available only with certain markets, 3546for example `market_cap_basic` wont work with forex as you cant do the calculation `shares * 3547price`. 3548 3549You can choose the timeframe for some columns, such as the close price: 3550 3551| Timeframe | Column | 3552|---|---| 3553| 1 Minute | `close\|1` | 3554| 5 Minutes | `close\|5` | 3555| 15 Minutes | `close\|15` | 3556| 30 Minutes | `close\|30` | 3557| 1 Hour | `close\|60` | 3558| 2 Hours | `close\|120` | 3559| 4 Hours | `close\|240` | 3560| 1 Day | `close` | 3561| 1 Week | `close\|1W` | 3562| 1 Month | `close\|1M` | 3563 3564Get scanner data with different timeframes: 3565```py 3566from tradingview_screener import Query 3567 3568(Query() 3569 .select('close', 'close|1M', 'volume', 'volume|1', 'RSI5|15') 3570 .get_scanner_data()) 3571``` 3572``` 3573(17829, 3574 ticker close close|1M volume volume|1 RSI5|15 3575 0 NASDAQ:TSLA 216.1350 216.1350 84218164 52082 23.958212 3576 1 AMEX:SPY 434.3900 434.3900 36438753 27719 33.231938 3577 2 NASDAQ:NVDA 452.2800 452.2800 27854819 15048 42.992968 3578 3 NASDAQ:QQQ 367.7600 367.7600 23474255 18785 38.779725 3579 4 NASDAQ:AAPL 178.3699 178.3699 38685909 17793 34.885195 3580 .. ... ... ... ... ... ... 3581 45 NYSE:BABA 85.3250 85.3250 6816970 3318 20.488758 3582 46 NASDAQ:IEF 91.1496 91.1496 6256164 2511 37.831837 3583 47 NYSE:DIS 83.9100 83.9100 6776768 8429 5.136948 3584 48 AMEX:ARKK 39.3650 39.3650 14207531 20762 30.582295 3585 49 NYSE:UNH 532.9000 532.9000 1048587 384 44.263227 3586 [50 rows x 6 columns]) 3587``` 3588 3589--- 3590 3591 3592## How to find a given column and format it like in the website 3593 3594 3595This tutorial will show you how to find the "Technical Rating" column. 3596 35971. **Locate the Column**: Use `ctrl` + `f` to search for the desired column in the file `tradingview_screener/constants.py`. In this case, the column is named `Recommend.All`. 3598 35992. **Raw Data vs. Formatted Data**: This package retrieves raw data directly from TradingView's API. The website then uses JavaScript to format the values for user readability. 3600 36013. **Formatting the Data**: You'll need to create a custom function to convert the raw rating values into human-readable strings like "Buy" or "Sell". 3602 3603--- 3604 3605The raw data: 3606```py 3607from tradingview_screener import Query 3608 3609count, df = Query().select('Recommend.All').get_scanner_data() 3610print(df) 3611``` 3612``` 3613 ticker Recommend.All 36140 AMEX:SPY 0.466667 36151 NASDAQ:TSLA 0.512121 36162 NASDAQ:QQQ 0.466667 36173 NASDAQ:NVDA 0.378788 36184 NASDAQ:AMD 0.557576 3619.. ... ... 362045 NYSE:CRM 0.490909 362146 NYSE:UNH 0.400000 362247 NASDAQ:CRSP -0.024242 362348 NASDAQ:VCIT 0.354545 362449 NYSE:BAC 0.557576 3625 3626[50 rows x 2 columns] 3627``` 3628 3629And the data nicely formatted: 3630```py 3631# define a function to format rating values 3632def format_technical_rating(rating: float) -> str: 3633 if rating >= 0.5: 3634 return 'Strong Buy' 3635 elif rating >= 0.1: 3636 return 'Buy' 3637 elif rating >= -0.1: 3638 return 'Neutral' 3639 elif rating >= -0.5: 3640 return 'Sell' 3641 else: 3642 return 'Strong Sell' 3643 3644 3645# apply the formatting function to the column 3646df['rating'] = df['Recommend.All'].apply(format_technical_rating) 3647 3648print(df) 3649``` 3650``` 3651 ticker Recommend.All rating 36520 AMEX:SPY 0.466667 Buy 36531 NASDAQ:TSLA 0.512121 Strong Buy 36542 NASDAQ:QQQ 0.466667 Buy 36553 NASDAQ:NVDA 0.378788 Buy 36564 NASDAQ:AMD 0.557576 Strong Buy 3657.. ... ... ... 365845 NYSE:CRM 0.490909 Buy 365946 NYSE:UNH 0.400000 Buy 366047 NASDAQ:CRSP -0.024242 Neutral 366148 NASDAQ:VCIT 0.354545 Buy 366249 NYSE:BAC 0.557576 Strong Buy 3663 3664[50 rows x 3 columns] 3665``` 3666 3667And just like that we got the same data as in the website, you can follow the same process for 3668any other field. 3669 3670You are more than welcome to open a PR to add more formatters. 3671"""
These are all the columns available that you can use in your queries, either by passing the key, e.g. "Volume Weighted Average Price", or by passing the value, e.g. "VWAP".
One important thing to note is that some fields are available only with certain markets,
for example market_cap_basic
wont work with forex as you cant do the calculation shares *
price
.
You can choose the timeframe for some columns, such as the close price:
Timeframe | Column |
---|---|
1 Minute | close|1 |
5 Minutes | close|5 |
15 Minutes | close|15 |
30 Minutes | close|30 |
1 Hour | close|60 |
2 Hours | close|120 |
4 Hours | close|240 |
1 Day | close |
1 Week | close|1W |
1 Month | close|1M |
Get scanner data with different timeframes:
from tradingview_screener import Query
(Query()
.select('close', 'close|1M', 'volume', 'volume|1', 'RSI5|15')
.get_scanner_data())
(17829,
ticker close close|1M volume volume|1 RSI5|15
0 NASDAQ:TSLA 216.1350 216.1350 84218164 52082 23.958212
1 AMEX:SPY 434.3900 434.3900 36438753 27719 33.231938
2 NASDAQ:NVDA 452.2800 452.2800 27854819 15048 42.992968
3 NASDAQ:QQQ 367.7600 367.7600 23474255 18785 38.779725
4 NASDAQ:AAPL 178.3699 178.3699 38685909 17793 34.885195
.. ... ... ... ... ... ...
45 NYSE:BABA 85.3250 85.3250 6816970 3318 20.488758
46 NASDAQ:IEF 91.1496 91.1496 6256164 2511 37.831837
47 NYSE:DIS 83.9100 83.9100 6776768 8429 5.136948
48 AMEX:ARKK 39.3650 39.3650 14207531 20762 30.582295
49 NYSE:UNH 532.9000 532.9000 1048587 384 44.263227
[50 rows x 6 columns])
How to find a given column and format it like in the website
This tutorial will show you how to find the "Technical Rating" column.
Locate the Column: Use
ctrl
+f
to search for the desired column in the filetradingview_screener/constants.py
. In this case, the column is namedRecommend.All
.Raw Data vs. Formatted Data: This package retrieves raw data directly from TradingView's API. The website then uses JavaScript to format the values for user readability.
Formatting the Data: You'll need to create a custom function to convert the raw rating values into human-readable strings like "Buy" or "Sell".
The raw data:
from tradingview_screener import Query
count, df = Query().select('Recommend.All').get_scanner_data()
print(df)
ticker Recommend.All
0 AMEX:SPY 0.466667
1 NASDAQ:TSLA 0.512121
2 NASDAQ:QQQ 0.466667
3 NASDAQ:NVDA 0.378788
4 NASDAQ:AMD 0.557576
.. ... ...
45 NYSE:CRM 0.490909
46 NYSE:UNH 0.400000
47 NASDAQ:CRSP -0.024242
48 NASDAQ:VCIT 0.354545
49 NYSE:BAC 0.557576
[50 rows x 2 columns]
And the data nicely formatted:
# define a function to format rating values
def format_technical_rating(rating: float) -> str:
if rating >= 0.5:
return 'Strong Buy'
elif rating >= 0.1:
return 'Buy'
elif rating >= -0.1:
return 'Neutral'
elif rating >= -0.5:
return 'Sell'
else:
return 'Strong Sell'
# apply the formatting function to the column
df['rating'] = df['Recommend.All'].apply(format_technical_rating)
print(df)
ticker Recommend.All rating
0 AMEX:SPY 0.466667 Buy
1 NASDAQ:TSLA 0.512121 Strong Buy
2 NASDAQ:QQQ 0.466667 Buy
3 NASDAQ:NVDA 0.378788 Buy
4 NASDAQ:AMD 0.557576 Strong Buy
.. ... ... ...
45 NYSE:CRM 0.490909 Buy
46 NYSE:UNH 0.400000 Buy
47 NASDAQ:CRSP -0.024242 Neutral
48 NASDAQ:VCIT 0.354545 Buy
49 NYSE:BAC 0.557576 Strong Buy
[50 rows x 3 columns]
And just like that we got the same data as in the website, you can follow the same process for any other field.
You are more than welcome to open a PR to add more formatters.