parent_command: stocks/options/hedge/
usage: plot [-p] [-x {ltd,s,lp,b,a,c,pc,v,oi,iv}]             [-y {ltd,s,lp,b,a,c,pc,v,oi,iv}] [-c {smile}] [-h]             [--export EXPORT]  Shows a plot for the given x and y variables  optional arguments:   -p, --put             Shows puts instead of calls (default: False)   -x {ltd,s,lp,b,a,c,pc,v,oi,iv}, --x_axis {ltd,s,lp,b,a,c,pc,v,oi,iv}                         ltd- last trade date, s- strike, lp- last price, b-                         bid, a- ask,c- change, pc- percent change, v- volume,                         oi- open interest, iv- implied volatility (default: s)   -y {ltd,s,lp,b,a,c,pc,v,oi,iv}, --y_axis {ltd,s,lp,b,a,c,pc,v,oi,iv}                         ltd- last trade date, s- strike, lp- last price, b-                         bid, a- ask,c- change, pc- percent change, v- volume,                         oi- open interest, iv- implied volatility (default:                         iv)   -c {smile}, --custom {smile}                         Choose from already created graphs (default: None)   -h, --help            show this help message (default: False)   --export EXPORT       Export figure into png, jpg, pdf, svg (default: )  For more information and examples, use 'about plot' to access the related guide.
Summary: Display a customizable plot for various x and y variables related to options data such as last trade date, strike, last price, bid, ask, change, percent change, volume, open interest, and implied volatility. You can choose to show puts instead of calls, select from predefined graphs, and export the figure in different formats.

Examples:
- To plot the strike price (x-axis) against implied volatility (y-axis) for call options of a specific stock symbol: stocks/load <SYMBOL>/options/hedge/plot
- To plot the strike price (x-axis) against open interest (y-axis) for put options of a specific stock symbol: stocks/load <SYMBOL>/options/hedge/plot -p -x s -y oi
- To plot the last trade date (x-axis) against volume (y-axis) for call options of a specific stock symbol: stocks/load <SYMBOL>/options/hedge/plot -x ltd -y v
- To display a predefined "smile" graph for a specific stock symbol: stocks/load <SYMBOL>/options/hedge/plot -c smile
- To plot the percent change (x-axis) against last price (y-axis) for put options of a specific stock symbol and export the figure in png format: stocks/load <SYMBOL>/options/hedge/plot -p -x pc -y lp --export png