parent_command: stocks/ta/
usage: recom              [-s {australia,brazil,cfd,crypto,euronext,forex,france,germany,hongkong,india,indonesia,malaysia,philippines,russia,ksa,rsa,korea,spain,sweden,taiwan,thailand,turkey,uk,america,vietnam}]              [-e EXCHANGE] [-i {1m,5m,15m,1h,4h,1d,1W,1M}] [-h]              [--export EXPORT] [--sheet-name SHEET_NAME [SHEET_NAME ...]]  Print tradingview recommendation based on technical indicators. [Source: Tradingview]  optional arguments:   -s {australia,brazil,cfd,crypto,euronext,forex,france,germany,hongkong,india,indonesia,malaysia,philippines,russia,ksa,rsa,korea,spain,sweden,taiwan,thailand,turkey,uk,america,vietnam}, --screener {australia,brazil,cfd,crypto,euronext,forex,france,germany,hongkong,india,indonesia,malaysia,philippines,russia,ksa,rsa,korea,spain,sweden,taiwan,thailand,turkey,uk,america,vietnam}                         Screener. See https://python-tradingview-                         ta.readthedocs.io/en/latest/usage.html (default:                         america)   -e EXCHANGE, --exchange EXCHANGE                         Set exchange. For Forex use: 'FX_IDC', and for crypto                         use 'TVC'. See https://python-tradingview-                         ta.readthedocs.io/en/latest/usage.html. By default                         Alpha Vantage tries to get this data from the ticker.                         (default: )   -i {1m,5m,15m,1h,4h,1d,1W,1M}, --interval {1m,5m,15m,1h,4h,1d,1W,1M}                         Interval, that corresponds to the recommendation given                         by tradingview based on technical indicators. See                         https://python-tradingview-                         ta.readthedocs.io/en/latest/usage.html (default: )   -h, --help            show this help message (default: False)   --export EXPORT       Export raw data into csv, json, xlsx (default: )   --sheet-name SHEET_NAME [SHEET_NAME ...]                         Name of excel sheet to save data to. Only valid for                         .xlsx files. (default: None)  For more information and examples, use 'about recom' to access the related guide.
Summary: This command prints tradingview recommendations based on technical indicators for various markets and intervals. You can choose a screener, set an exchange, select an interval, and export the data in different formats. The data source is Tradingview.

Examples:
- Get Tradingview recommendations for <SYMBOL> in the US market: stocks/load <SYMBOL>/ta/recom -s america
- Get Tradingview recommendations for <COIN> in the crypto market: crypto/load <COIN>/ta/recom -s crypto
- Get Tradingview recommendations for <PAIR> in the forex market with a specific exchange: forex/load <PAIR>/ta/recom -s forex -e FX_IDC
- Get Tradingview recommendations for <SYMBOL> in the German market with a specific interval: stocks/load <SYMBOL>/ta/recom -s germany -i 1h
- Get Tradingview recommendations for <FUTURE> in the Brazilian market for a weekly interval: futures/load <FUTURE>/ta/recom -s brazil -i 1W
- Export Tradingview recommendations for <SYMBOL> in the UK market to a csv file: stocks/load <SYMBOL>/ta/recom -s uk --export csv
- Save Tradingview recommendations for <SYMBOL> in the Taiwanese market to a specific excel sheet: stocks/load <SYMBOL>/ta/recom -s taiwan --sheet-name Sheet1