parent_command: stocks/
usage: candle [-t TICKER] [-p]               [--sort {open,high,low,close,adjclose,volume,dividends,stock_splits}]               [-r] [--raw] [--trend] [--ma MOV_AVG] [--log] [-h]               [--export EXPORT] [--sheet-name SHEET_NAME [SHEET_NAME ...]]               [-l LIMIT]  Shows historic data for a stock  optional arguments:   -t TICKER, --ticker TICKER                         Ticker to analyze (default: None)   -p, --prepost         Pre/After market hours. Only works for 'yf' source,                         and intraday data (default: False)   --sort {open,high,low,close,adjclose,volume,dividends,stock_splits}                         Choose a column to sort by. Only works when raw data                         is displayed. (default: )   -r, --reverse         Data is sorted in descending order by default. Reverse                         flag will sort it in an ascending way. Only works when                         raw data is displayed. (default: False)   --raw                 Shows raw data instead of chart. (default: False)   --trend               Flag to add high and low trends to candle (default:                         False)   --ma MOV_AVG          Add moving average in number of days to plot and                         separate by a comma. Value for ma (moving average)                         keyword needs to be greater than 1. (default: None)   --log                 Plot with y axis on log scale (default: False)   -h, --help            show this help message (default: False)   --export EXPORT       Export raw data into csv, json, xlsx and figure into                         png, jpg, pdf, svg (default: )   --sheet-name SHEET_NAME [SHEET_NAME ...]                         Name of excel sheet to save data to. Only valid for                         .xlsx files. (default: None)   -l LIMIT, --limit LIMIT                         Number of entries to show in data. (default: 20)  For more information and examples, use 'about candle' to access the related guide.
Summary: Display historic data for a stock using candlestick charts or raw data. You can analyze a specific ticker, include pre/after market hours, sort by various columns, reverse the order, add trend lines, moving averages, and export the data. The command also allows you to set a limit on the number of entries displayed.

Examples:
- Show a candlestick chart for a specific stock: stocks/load <SYMBOL>/candle
- Display raw data for a stock with pre/after market hours: stocks/load <SYMBOL>/candle -p --raw
- Show raw data sorted by volume in ascending order: stocks/load <SYMBOL>/candle --raw --sort volume -r
- Display a candlestick chart with high and low trends: stocks/load <SYMBOL>/candle --trend
- Plot a candlestick chart with a 50-day moving average: stocks/load <SYMBOL>/candle --ma 50
- Show a candlestick chart with a log scale y-axis: stocks/load <SYMBOL>/candle --log
- Export raw data to a csv file: stocks/load <SYMBOL>/candle --export csv
- Save raw data to a specific excel sheet: stocks/load <SYMBOL>/candle --sheet-name Sheet1
- Limit the number of entries displayed to 10: stocks/load <SYMBOL>/candle -l 10
- Show me the candlestick chart for a specific stock between two dates: stocks/load <SYMBOL> -s <START_DATE> -e <END_DATE>/candle
- show me specific stock between <START_DATE> and today on candle stick: stocks/load <SYMBOL> -s <START_DATE> -e <CURRENT_DATE>/candle