diff --git a/.gitignore b/.gitignore index 082bacff68e9..d1456447719c 100644 --- a/.gitignore +++ b/.gitignore @@ -30,7 +30,7 @@ openbb_terminal/portfolio/portfolios/* .coverage.* !openbb_terminal/reports/templates/*.ipynb *_tests.csv -*_sdk_audit.csv +website/terminaltest # pyinstaller artifacts *.pyo diff --git a/openbb_terminal/cryptocurrency/due_diligence/coinpaprika_model.py b/openbb_terminal/cryptocurrency/due_diligence/coinpaprika_model.py index 0d8e429c4307..4b9209db925c 100644 --- a/openbb_terminal/cryptocurrency/due_diligence/coinpaprika_model.py +++ b/openbb_terminal/cryptocurrency/due_diligence/coinpaprika_model.py @@ -72,7 +72,7 @@ def get_coin_twitter_timeline( @log_start_end(log=logger) def get_coin_events_by_id( - symbol: str = "BTC", sortby="date", ascend: bool = False + symbol: str = "BTC", sortby: str = "date", ascend: bool = False ) -> pd.DataFrame: """Get all events related to given coin like conferences, start date of futures trading etc. [Source: CoinPaprika] diff --git a/openbb_terminal/cryptocurrency/nft/nftpricefloor_model.py b/openbb_terminal/cryptocurrency/nft/nftpricefloor_model.py index 464bf34860e8..3805a194d781 100644 --- a/openbb_terminal/cryptocurrency/nft/nftpricefloor_model.py +++ b/openbb_terminal/cryptocurrency/nft/nftpricefloor_model.py @@ -43,7 +43,7 @@ def get_collections() -> pd.DataFrame: @log_start_end(log=logger) -def get_floor_price(slug) -> pd.DataFrame: +def get_floor_price(slug: str) -> pd.DataFrame: """Get nft collections [Source: https://nftpricefloor.com/] Parameters diff --git a/openbb_terminal/cryptocurrency/onchain/bitquery_view.py b/openbb_terminal/cryptocurrency/onchain/bitquery_view.py index 421d6888daa6..3b88ef8d3817 100644 --- a/openbb_terminal/cryptocurrency/onchain/bitquery_view.py +++ b/openbb_terminal/cryptocurrency/onchain/bitquery_view.py @@ -285,7 +285,7 @@ def display_ethereum_unique_senders( @log_start_end(log=logger) @check_api_key(["API_BITQUERY_KEY"]) def display_most_traded_pairs( - exchange="Uniswap", + exchange: str = "Uniswap", days: int = 10, limit: int = 10, sortby: str = "tradeAmount", @@ -297,9 +297,9 @@ def display_most_traded_pairs( Parameters ---------- - exchange: + exchange: str Decentralized exchange name - days: + days: int Number of days taken into calculation account. sortby: str Key by which to sort data @@ -307,6 +307,7 @@ def display_most_traded_pairs( Flag to sort data ascending export : str Export dataframe data to csv,json,xlsx file + Returns ------- pd.DataFrame @@ -344,8 +345,8 @@ def display_most_traded_pairs( @log_start_end(log=logger) @check_api_key(["API_BITQUERY_KEY"]) def display_spread_for_crypto_pair( - symbol="WETH", - to_symbol="USDT", + symbol: str = "WETH", + to_symbol: str = "USDT", limit: int = 10, sortby: str = "date", ascend: bool = True, diff --git a/openbb_terminal/cryptocurrency/onchain/ethplorer_model.py b/openbb_terminal/cryptocurrency/onchain/ethplorer_model.py index 76c9b8a2d3e5..eb9708488def 100644 --- a/openbb_terminal/cryptocurrency/onchain/ethplorer_model.py +++ b/openbb_terminal/cryptocurrency/onchain/ethplorer_model.py @@ -303,7 +303,7 @@ def get_top_tokens(sortby: str = "rank", ascend: bool = False) -> pd.DataFrame: @log_start_end(log=logger) def get_top_token_holders( - address, sortby: str = "balance", ascend: bool = True + address: str, sortby: str = "balance", ascend: bool = True ) -> pd.DataFrame: """Get info about top token holders. [Source: Ethplorer] @@ -334,7 +334,7 @@ def get_top_token_holders( @log_start_end(log=logger) def get_address_history( - address, sortby: str = "timestamp", ascend: bool = True + address: str, sortby: str = "timestamp", ascend: bool = True ) -> pd.DataFrame: """Get information about balance historical transactions. [Source: Ethplorer] @@ -441,7 +441,7 @@ def get_token_info(address) -> pd.DataFrame: @log_start_end(log=logger) -def get_tx_info(tx_hash) -> pd.DataFrame: +def get_tx_info(tx_hash: str) -> pd.DataFrame: """Get info about transaction. [Source: Ethplorer] Parameters @@ -487,7 +487,7 @@ def get_tx_info(tx_hash) -> pd.DataFrame: @log_start_end(log=logger) def get_token_history( - address, sortby: str = "timestamp", ascend: bool = False + address: str, sortby: str = "timestamp", ascend: bool = False ) -> pd.DataFrame: """Get info about token historical transactions. [Source: Ethplorer] @@ -543,7 +543,7 @@ def get_token_history( @log_start_end(log=logger) def get_token_historical_price( - address, + address: str, sortby: str = "date", ascend: bool = False, ) -> pd.DataFrame: diff --git a/openbb_terminal/econometrics/regression_model.py b/openbb_terminal/econometrics/regression_model.py index a3890869b56b..7741064a49e7 100644 --- a/openbb_terminal/econometrics/regression_model.py +++ b/openbb_terminal/econometrics/regression_model.py @@ -67,34 +67,35 @@ def get_regressions_results( >>> Y = df["lwage"] >>> pooled_ols_model = openbb.econometrics.panel(Y,X,"POLS") >>> print(pooled_ols_model.summary) - PooledOLS Estimation Summary - ================================================================================ - Dep. Variable: lwage R-squared: 0.1634 - Estimator: PooledOLS R-squared (Between): 0.1686 - No. Observations: 4360 R-squared (Within): 0.1575 - Date: Sun, Nov 13 2022 R-squared (Overall): 0.1634 - Time: 13:04:02 Log-likelihood -3050.4 - Cov. Estimator: Unadjusted - F-statistic: 283.68 - Entities: 545 P-value 0.0000 - Avg Obs: 8.0000 Distribution: F(3,4356) - Min Obs: 8.0000 - Max Obs: 8.0000 F-statistic (robust): 283.68 - P-value 0.0000 - Time periods: 8 Distribution: F(3,4356) - Avg Obs: 545.00 - Min Obs: 545.00 - Max Obs: 545.00 - - Parameter Estimates - ============================================================================== - Parameter Std. Err. T-stat P-value Lower CI Upper CI - ------------------------------------------------------------------------------ - const -0.0308 0.0620 -0.4965 0.6196 -0.1523 0.0908 - exper 0.0561 0.0028 20.220 0.0000 0.0507 0.0616 - educ 0.1080 0.0045 24.034 0.0000 0.0992 0.1168 - union 0.1777 0.0172 10.344 0.0000 0.1441 0.2114 - ============================================================================== + SDK Snippet: + >>> PooledOLS Estimation Summary + >>> ================================================================================ + >>> Dep. Variable: lwage R-squared: 0.1634 + >>> Estimator: PooledOLS R-squared (Between): 0.1686 + >>> No. Observations: 4360 R-squared (Within): 0.1575 + >>> Date: Sun, Nov 13 2022 R-squared (Overall): 0.1634 + >>> Time: 13:04:02 Log-likelihood -3050.4 + >>> Cov. Estimator: Unadjusted + >>> F-statistic: 283.68 + >>> Entities: 545 P-value 0.0000 + >>> Avg Obs: 8.0000 Distribution: F(3,4356) + >>> Min Obs: 8.0000 + >>> Max Obs: 8.0000 F-statistic (robust): 283.68 + >>> P-value 0.0000 + >>> Time periods: 8 Distribution: F(3,4356) + >>> Avg Obs: 545.00 + >>> Min Obs: 545.00 + >>> Max Obs: 545.00 + >>> Parameter Estimates + >>> ============================================================================== + >>> Parameter Std. Err. T-stat P-value Lower CI Upper CI + >>> ------------------------------------------------------------------------------ + >>> const -0.0308 0.0620 -0.4965 0.6196 -0.1523 0.0908 + >>> exper 0.0561 0.0028 20.220 0.0000 0.0507 0.0616 + >>> educ 0.1080 0.0045 24.034 0.0000 0.0992 0.1168 + >>> union 0.1777 0.0172 10.344 0.0000 0.1441 0.2114 + >>> ============================================================================== + Results: """ regressions = { "OLS": lambda: get_ols(Y, X), @@ -131,8 +132,10 @@ def get_regression_data( Returns ------- Tuple[DataFrame, Any, List[Any]] - The dataset used, the dependent variable, the independent variable and - the OLS model. + The dataset used, + Dependent variable, + Independent variable, + OLS model. """ datasets = get_datasets(data) @@ -195,34 +198,35 @@ def get_ols( >>> import openbb_terminal.sdk as openbb >>> df = openbb.econometrics.load("wage_panel") >>> OLS_model = openbb.econometrics.OLS(df["lwage"], df[["educ", "exper", "expersq"]]) - >>> print(OLS_model.summary()) - OLS Regression Results - ======================================================================================= - Dep. Variable: lwage R-squared (uncentered): 0.920 - Model: OLS Adj. R-squared (uncentered): 0.919 - Method: Least Squares F-statistic: 1.659e+04 - Date: Thu, 10 Nov 2022 Prob (F-statistic): 0.00 - Time: 15:28:11 Log-Likelihood: -3091.3 - No. Observations: 4360 AIC: 6189. - Df Residuals: 4357 BIC: 6208. - Df Model: 3 - Covariance Type: nonrobust - ============================================================================== - coef std err t P>|t| [0.025 0.975] - ------------------------------------------------------------------------------ - educ 0.0986 0.002 39.879 0.000 0.094 0.103 - exper 0.1018 0.009 10.737 0.000 0.083 0.120 - expersq -0.0034 0.001 -4.894 0.000 -0.005 -0.002 - ============================================================================== - Omnibus: 1249.642 Durbin-Watson: 0.954 - Prob(Omnibus): 0.000 Jarque-Bera (JB): 9627.436 - Skew: -1.152 Prob(JB): 0.00 - Kurtosis: 9.905 Cond. No. 86.4 - ============================================================================== - - Notes: - [1] R² is computed without centering (uncentered) since the model does not contain a constant. - [2] Standard Errors assume that the covariance matrix of the errors is correctly specified. + >>> print(OLS_model.summary())` + SDK Snippet: + >>> OLS Regression Results + >>> ======================================================================================= + >>> Dep. Variable: lwage R-squared (uncentered): 0.920 + >>> Model: OLS Adj. R-squared (uncentered): 0.919 + >>> Method: Least Squares F-statistic: 1.659e+04 + >>> Date: Thu, 10 Nov 2022 Prob (F-statistic): 0.00 + >>> Time: 15:28:11 Log-Likelihood: -3091.3 + >>> No. Observations: 4360 AIC: 6189. + >>> Df Residuals: 4357 BIC: 6208. + >>> Df Model: 3 + >>> Covariance Type: nonrobust + >>> ============================================================================== + >>> coef std err t P>|t| [0.025 0.975] + >>> ------------------------------------------------------------------------------ + >>> educ 0.0986 0.002 39.879 0.000 0.094 0.103 + >>> exper 0.1018 0.009 10.737 0.000 0.083 0.120 + >>> expersq -0.0034 0.001 -4.894 0.000 -0.005 -0.002 + >>> ============================================================================== + >>> Omnibus: 1249.642 Durbin-Watson: 0.954 + >>> Prob(Omnibus): 0.000 Jarque-Bera (JB): 9627.436 + >>> Skew: -1.152 Prob(JB): 0.00 + >>> Kurtosis: 9.905 Cond. No. 86.4 + >>> ============================================================================== + >>> Notes: + >>> [1] R² is computed without centering (uncentered) since the model does not contain a constant. + >>> [2] Standard Errors assume that the covariance matrix of the errors is correctly specified. + Results: """ if X.empty or Y.empty: @@ -245,14 +249,18 @@ def get_pols(Y: pd.DataFrame, X: pd.DataFrame) -> Any: Parameters ---------- - Y: pd.DataFrame - Dataframe containing the dependent variable. - X: pd.DataFrame - Dataframe containing the independent variables. + regression_variables : list + The regressions variables entered where the first variable is + the dependent variable. + data : dict + A dictionary containing the datasets. Returns ------- - Any + Tuple[DataFrame, Any, List[Any], Any] + The dataset used, + Dependent variable, + Independent variable, PooledOLS model """ @@ -279,14 +287,18 @@ def get_re(Y: pd.DataFrame, X: pd.DataFrame) -> Any: Parameters ---------- - Y: pd.DataFrame - Dataframe containing the dependent variable. - X: pd.DataFrame - Dataframe containing the independent variables. + regression_variables : list + The regressions variables entered where the first variable is + the dependent variable. + data : dict + A dictionary containing the datasets. Returns ------- - Any + Tuple[DataFrame, Any, List[Any], Any] + The dataset used, + Dependent variable, + Independent variable, RandomEffects model """ @@ -313,15 +325,19 @@ def get_bols(Y: pd.DataFrame, X: pd.DataFrame) -> Any: Parameters ---------- - Y: pd.DataFrame - Dataframe containing the dependent variable. - X: pd.DataFrame - Dataframe containing the independent variables. + regression_variables : list + The regressions variables entered where the first variable is + the dependent variable. + data : dict + A dictionary containing the datasets. Returns ------- - Any - BetweenOLS model + Tuple[DataFrame, Any, List[Any], Any] + The dataset used, + Dependent variable, + Independent variable, + Between OLS model. """ if Y.empty or X.empty: model = None @@ -351,10 +367,11 @@ def get_fe( Parameters ---------- - Y: pd.DataFrame - Dataframe containing the dependent variable. - X: pd.DataFrame - Dataframe containing the independent variables. + regression_variables : list + The regressions variables entered where the first variable is + the dependent variable. + data : dict + A dictionary containing the datasets. entity_effects : bool Whether to include entity effects time_effects : bool @@ -362,7 +379,10 @@ def get_fe( Returns ------- - Any + Tuple[DataFrame, Any, List[Any], Any] + The dataset used, + Dependent variable, + Independent variable, PanelOLS model with Fixed Effects """ if X.empty or Y.empty: @@ -395,14 +415,18 @@ def get_fdols(Y: pd.DataFrame, X: pd.DataFrame) -> Any: Parameters ---------- - Y: pd.DataFrame - Dataframe containing the dependent variable. - X: pd.DataFrame - Dataframe containing the independent variables. + regression_variables : list + The regressions variables entered where the first variable is + the dependent variable. + data : dict + A dictionary containing the datasets. Returns ------- - Any + Tuple[DataFrame, Any, List[Any], Any] + The dataset used, + Dependent variable, + Independent variable, First Difference OLS model """ if X.empty or Y.empty: @@ -495,8 +519,9 @@ def get_dwat( >>> Y, X = df["lwage"], df[["exper","educ"]] >>> model = openbb.econometrics.ols(Y,X) >>> durbin_watson_value = openbb.econometrics.dwat(model) - >>> durbin_watson_value - 0.96 + SDK Snippet: + >>> 0.96 + Result: """ # Durbin Watson test: The test statistic is approximately equal to 2*(1-r) where r is the # sample autocorrelation of the residuals. Thus, for r == 0, indicating no serial correlation, @@ -509,9 +534,7 @@ def get_dwat( @log_start_end(log=logger) -def get_bgod( - model: statsmodels.regression.linear_model.RegressionResultsWrapper, lags: int = 3 -) -> pd.DataFrame: +def get_bgod(model: pd.DataFrame, lags: int = 3) -> Tuple[float, float, float, float]: """Calculate test statistics for autocorrelation Parameters diff --git a/openbb_terminal/etf/discovery/wsj_view.py b/openbb_terminal/etf/discovery/wsj_view.py index 7c518a8e9ac7..3e02268af314 100644 --- a/openbb_terminal/etf/discovery/wsj_view.py +++ b/openbb_terminal/etf/discovery/wsj_view.py @@ -13,7 +13,7 @@ @log_start_end(log=logger) -def show_top_mover(sort_type: str = "gainers", limit: int = 10, export=""): +def show_top_mover(sort_type: str = "gainers", limit: int = 10, export: str = ""): """ Show top ETF movers from wsj.com diff --git a/openbb_terminal/miscellaneous/library/trail_map.csv b/openbb_terminal/miscellaneous/library/trail_map.csv index e2b1f3f45e9a..5cc7d8e5fd30 100644 --- a/openbb_terminal/miscellaneous/library/trail_map.csv +++ b/openbb_terminal/miscellaneous/library/trail_map.csv @@ -348,7 +348,7 @@ portfolio.po.relriskparity,openbb_terminal.portfolio.portfolio_optimization.po_m portfolio.po.hrp,openbb_terminal.portfolio.portfolio_optimization.po_model.get_hrp, portfolio.po.herc,openbb_terminal.portfolio.portfolio_optimization.po_model.get_herc, portfolio.po.nco,openbb_terminal.portfolio.portfolio_optimization.po_model.get_nco, -portfolio.po.hcp,openbb_terminal.portfolio.portfolio_optimization.po_model.get_hcp, +portfolio.po.hcp,openbb_terminal.portfolio.portfolio_optimization.optimizer_model.get_hcp_portfolio, portfolio.po.equal,openbb_terminal.portfolio.portfolio_optimization.po_model.get_equal, portfolio.po.mktcap,openbb_terminal.portfolio.portfolio_optimization.po_model.get_mktcap, portfolio.po.dividend,openbb_terminal.portfolio.portfolio_optimization.po_model.get_dividend, diff --git a/openbb_terminal/portfolio/portfolio_optimization/optimizer_view.py b/openbb_terminal/portfolio/portfolio_optimization/optimizer_view.py index 16aac95a05d2..5bde7dcb45c2 100644 --- a/openbb_terminal/portfolio/portfolio_optimization/optimizer_view.py +++ b/openbb_terminal/portfolio/portfolio_optimization/optimizer_view.py @@ -710,9 +710,9 @@ def display_property_weighting( threshold: float = 0, method: str = "time", s_property: str = "marketCap", - risk_measure="mv", + risk_measure: str = "mv", risk_free_rate: float = 0, - alpha=0.05, + alpha: float = 0.05, value: float = 1, table: bool = False, ) -> Dict[str, float]: @@ -3696,7 +3696,7 @@ def pie_chart_weights( @log_start_end(log=logger) def additional_plots( - weights, + weights: Dict, data: pd.DataFrame, category: Dict = None, title_opt: str = "", @@ -3791,20 +3791,20 @@ def additional_plots( Optional axes to plot data on """ if category is not None: - weights = pd.DataFrame.from_dict( + weights_df = pd.DataFrame.from_dict( data=weights, orient="index", columns=["value"], dtype=float ) category_df = pd.DataFrame.from_dict( data=category, orient="index", columns=["category"] ) - weights = weights.join(category_df, how="inner") - weights.sort_index(inplace=True) + weights_df = weights_df.join(category_df, how="inner") + weights_df.sort_index(inplace=True) # Calculating classes returns - classes = list(set(weights["category"])) - weights_classes = weights.groupby(["category"]).sum() - matrix_classes = np.zeros((len(weights), len(classes))) - labels = weights["category"].tolist() + classes = list(set(weights_df["category"])) + weights_classes = weights_df.groupby(["category"]).sum() + matrix_classes = np.zeros((len(weights_df), len(classes))) + labels = weights_df["category"].tolist() j_value = 0 for i in classes: @@ -3813,23 +3813,23 @@ def additional_plots( ) matrix_classes[:, j_value] = ( matrix_classes[:, j_value] - * weights["value"] + * weights_df["value"] / weights_classes.loc[i, "value"] ) j_value += 1 matrix_classes = pd.DataFrame( - matrix_classes, columns=classes, index=weights.index + matrix_classes, columns=classes, index=weights_df.index ) data = data @ matrix_classes - weights = weights_classes["value"].copy() - weights.replace(0, np.nan, inplace=True) - weights.dropna(inplace=True) - weights.sort_values(ascending=True, inplace=True) - data = data[weights.index.tolist()] + weights_df = weights_classes["value"].copy() + weights_df.replace(0, np.nan, inplace=True) + weights_df.dropna(inplace=True) + weights_df.sort_values(ascending=True, inplace=True) + data = data[weights_df.index.tolist()] data.columns = [i.title() for i in data.columns] - weights.index = [i.title() for i in weights.index] - weights = weights.to_dict() + weights_df.index = [i.title() for i in weights_df.index] + weights = weights_df.to_dict() colors = theme.get_colors() if pie: diff --git a/openbb_terminal/stocks/dark_pool_shorts/stockgrid_model.py b/openbb_terminal/stocks/dark_pool_shorts/stockgrid_model.py index bf7afa90a660..2e2563662382 100644 --- a/openbb_terminal/stocks/dark_pool_shorts/stockgrid_model.py +++ b/openbb_terminal/stocks/dark_pool_shorts/stockgrid_model.py @@ -13,8 +13,6 @@ logger = logging.getLogger(__name__) # pylint: disable=unsupported-assignment-operation -# pylint: disable=unsupported-assignment-operation - @log_start_end(log=logger) def get_dark_pool_short_positions( diff --git a/openbb_terminal/stocks/technical_analysis/ta_controller.py b/openbb_terminal/stocks/technical_analysis/ta_controller.py index 7234c3bcf98a..050a0ccab11e 100644 --- a/openbb_terminal/stocks/technical_analysis/ta_controller.py +++ b/openbb_terminal/stocks/technical_analysis/ta_controller.py @@ -1158,11 +1158,11 @@ def call_kc(self, other_args: List[str]): formatter_class=argparse.ArgumentDefaultsHelpFormatter, prog="kc", description=""" - Keltner Channels are volatility-based bands that are placed - on either side of an asset's price and can aid in determining - the direction of a trend.The Keltner channel uses the average - true range (ATR) or volatility, with breaks above or below the top - and bottom barriers signaling a continuation. + Keltner Channels are volatility-based bands that are placed + on either side of an asset's price and can aid in determining + the direction of a trend.The Keltner channel uses the average + true range (ATR) or volatility, with breaks above or below the top + and bottom barriers signaling a continuation. """, ) parser.add_argument( @@ -1267,13 +1267,13 @@ def call_adosc(self, other_args: List[str]): formatter_class=argparse.ArgumentDefaultsHelpFormatter, prog="adosc", description=""" - Accumulation/Distribution Oscillator, also known as the Chaikin Oscillator - is essentially a momentum indicator, but of the Accumulation-Distribution line - rather than merely price. It looks at both the strength of price moves and the - underlying buying and selling pressure during a given time period. The oscillator - reading above zero indicates net buying pressure, while one below zero registers - net selling pressure. Divergence between the indicator and pure price moves are - the most common signals from the indicator, and often flag market turning points. + Accumulation/Distribution Oscillator, also known as the Chaikin Oscillator + is essentially a momentum indicator, but of the Accumulation-Distribution line + rather than merely price. It looks at both the strength of price moves and the + underlying buying and selling pressure during a given time period. The oscillator + reading above zero indicates net buying pressure, while one below zero registers + net selling pressure. Divergence between the indicator and pure price moves are + the most common signals from the indicator, and often flag market turning points. """, ) parser.add_argument( @@ -1460,7 +1460,7 @@ def call_atr(self, other_args: List[str]): formatter_class=argparse.ArgumentDefaultsHelpFormatter, prog="atr", description=""" - Averge True Range is used to measure volatility, especially volatility caused by + Averge True Range is used to measure volatility, especially volatility caused by gaps or limit moves. """, ) diff --git a/website/___init__.py b/website/___init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/website/content/terminal/alternative/_index.md b/website/content/terminal/alt/_index.md similarity index 100% rename from website/content/terminal/alternative/_index.md rename to website/content/terminal/alt/_index.md diff --git a/website/content/terminal/alternative/covid/_index.md b/website/content/terminal/alt/covid/_index.md similarity index 100% rename from website/content/terminal/alternative/covid/_index.md rename to website/content/terminal/alt/covid/_index.md diff --git a/website/content/terminal/alternative/covid/cases/_index.md b/website/content/terminal/alt/covid/cases/_index.md similarity index 100% rename from website/content/terminal/alternative/covid/cases/_index.md rename to website/content/terminal/alt/covid/cases/_index.md diff --git a/website/content/terminal/alternative/covid/country/_index.md b/website/content/terminal/alt/covid/country/_index.md similarity index 100% rename from website/content/terminal/alternative/covid/country/_index.md rename to website/content/terminal/alt/covid/country/_index.md diff --git a/website/content/terminal/alternative/covid/deaths/_index.md b/website/content/terminal/alt/covid/deaths/_index.md similarity index 100% rename from website/content/terminal/alternative/covid/deaths/_index.md rename to website/content/terminal/alt/covid/deaths/_index.md diff --git a/website/content/terminal/alternative/covid/ov/_index.md b/website/content/terminal/alt/covid/ov/_index.md similarity index 100% rename from website/content/terminal/alternative/covid/ov/_index.md rename to website/content/terminal/alt/covid/ov/_index.md diff --git a/website/content/terminal/alternative/covid/rates/_index.md b/website/content/terminal/alt/covid/rates/_index.md similarity index 100% rename from website/content/terminal/alternative/covid/rates/_index.md rename to website/content/terminal/alt/covid/rates/_index.md diff --git a/website/content/terminal/alternative/covid/slopes/_index.md b/website/content/terminal/alt/covid/slopes/_index.md similarity index 97% rename from website/content/terminal/alternative/covid/slopes/_index.md rename to website/content/terminal/alt/covid/slopes/_index.md index 714a70f3db10..7c195c22641a 100644 --- a/website/content/terminal/alternative/covid/slopes/_index.md +++ b/website/content/terminal/alt/covid/slopes/_index.md @@ -20,7 +20,7 @@ optional arguments: ``` ``` -2022 Feb 14, 10:26 (✨) /alternative/covid/ $ slopes +2022 Feb 14, 10:26 (🦋) /alternative/covid/ $ slopes Highest Sloping Cases (Cases/Day) ┌────────────────┬───────────┐ │ Country │ Slope │ diff --git a/website/content/terminal/alternative/oss/_index.md b/website/content/terminal/alt/oss/_index.md similarity index 100% rename from website/content/terminal/alternative/oss/_index.md rename to website/content/terminal/alt/oss/_index.md diff --git a/website/content/terminal/alternative/oss/rossidx/_index.md b/website/content/terminal/alt/oss/rossidx/_index.md similarity index 100% rename from website/content/terminal/alternative/oss/rossidx/_index.md rename to website/content/terminal/alt/oss/rossidx/_index.md diff --git a/website/content/terminal/alternative/oss/rs/_index.md b/website/content/terminal/alt/oss/rs/_index.md similarity index 100% rename from website/content/terminal/alternative/oss/rs/_index.md rename to website/content/terminal/alt/oss/rs/_index.md diff --git a/website/content/terminal/alternative/oss/sh/_index.md b/website/content/terminal/alt/oss/sh/_index.md similarity index 100% rename from website/content/terminal/alternative/oss/sh/_index.md rename to website/content/terminal/alt/oss/sh/_index.md diff --git a/website/content/terminal/alternative/oss/tr/_index.md b/website/content/terminal/alt/oss/tr/_index.md similarity index 100% rename from website/content/terminal/alternative/oss/tr/_index.md rename to website/content/terminal/alt/oss/tr/_index.md diff --git a/website/content/terminal/common/ba/_index.md b/website/content/terminal/ba/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ba/_index.md rename to website/content/terminal/ba/_index.md diff --git a/website/content/terminal/common/ba/bullbear/_index.md b/website/content/terminal/ba/bullbear/_index.md old mode 100755 new mode 100644 similarity index 88% rename from website/content/terminal/common/ba/bullbear/_index.md rename to website/content/terminal/ba/bullbear/_index.md index f2317a7a294c..24787565b21e --- a/website/content/terminal/common/ba/bullbear/_index.md +++ b/website/content/terminal/ba/bullbear/_index.md @@ -10,8 +10,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:07 (✨) /stocks/ba/ $ bullbear +2022 Feb 16, 10:07 (🦋) /stocks/ba/ $ bullbear Watchlist count: 381324 Last 16 sentiment messages: diff --git a/website/content/terminal/common/ba/getdd/_index.md b/website/content/terminal/ba/getdd/_index.md old mode 100755 new mode 100644 similarity index 96% rename from website/content/terminal/common/ba/getdd/_index.md rename to website/content/terminal/ba/getdd/_index.md index 95b2040d31fb..62e452b85d58 --- a/website/content/terminal/common/ba/getdd/_index.md +++ b/website/content/terminal/ba/getdd/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:18 (✨) /stocks/ba/ $ getdd -d 50 +2022 Feb 16, 10:18 (🦋) /stocks/ba/ $ getdd -d 50 2022-02-15 17:51:11 - $ATVI free money even if MSFT deal falls through. https://old.reddit.com/r/wallstreetbets/comments/st8s1i/atvi_free_money_even_if_msft_deal_falls_through/ diff --git a/website/content/terminal/common/ba/headlines/_index.md b/website/content/terminal/ba/headlines/_index.md old mode 100755 new mode 100644 similarity index 95% rename from website/content/terminal/common/ba/headlines/_index.md rename to website/content/terminal/ba/headlines/_index.md index d6aa0ac31f02..307d004d4922 --- a/website/content/terminal/common/ba/headlines/_index.md +++ b/website/content/terminal/ba/headlines/_index.md @@ -3,7 +3,7 @@ usage: headlines [-h] [--export {csv,json,xlsx,png,jpg,pdf,svg}] ``` FinBrain collects the news headlines from 15+ major financial news sources on a daily basis and analyzes them to generate sentiment scores for more than 4500 US stocks.FinBrain Technologies develops deep learning algorithms for financial analysis and prediction, which -currently serves traders from more than 150 countries all around the world. [Source: https://finbrain.tech] +currently serves traders from more than 150 countries all around the world. [Source: ] ``` optional arguments: @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:20 (✨) /stocks/ba/ $ headlines +2022 Feb 16, 10:20 (🦋) /stocks/ba/ $ headlines FinBrain Ticker Sentiment ┏━━━━━━━━━━━━┳━━━━━━━━━━━┓ @@ -41,5 +42,5 @@ FinBrain Ticker Sentiment │ 2022-02-16 │ 0.329 │ └────────────┴───────────┘ ``` -![headlines](https://user-images.githubusercontent.com/46355364/154296211-b0380095-5f84-4bae-955e-9ef96c9704af.png) +![headlines](https://user-images.githubusercontent.com/46355364/154296211-b0380095-5f84-4bae-955e-9ef96c9704af.png) diff --git a/website/content/terminal/common/ba/hist/_index.md b/website/content/terminal/ba/hist/_index.md old mode 100755 new mode 100644 similarity index 94% rename from website/content/terminal/common/ba/hist/_index.md rename to website/content/terminal/ba/hist/_index.md index 92d94eb5d709..5a48c102befe --- a/website/content/terminal/common/ba/hist/_index.md +++ b/website/content/terminal/ba/hist/_index.md @@ -6,13 +6,14 @@ Plot historical sentiment data of RHI and AHI by hour. Source: [Sentiment Invest AHI (Absolute Hype Index) --- + AHI is a measure of how much people are talking about a stock on social media. It is calculated by dividing the total number of mentions for the chosen stock on a social network by the mean number of mentions any stock receives on that social medium. RHI (Relative Hype Index) --- -RHI is a measure of whether people are talking about a stock more or less than usual, calculated by dividing the mean AHI for the past day by the mean AHI for for the past week for that stock. +RHI is a measure of whether people are talking about a stock more or less than usual, calculated by dividing the mean AHI for the past day by the mean AHI for for the past week for that stock. ``` optional arguments: @@ -28,9 +29,11 @@ optional arguments: -l LIMIT, --limit LIMIT Number of entries to show in data. (default: 10) ``` + Example: + ``` -2022 Feb 16, 10:23 (✨) /stocks/ba/ $ load TSLA +2022 Feb 16, 10:23 (🦋) /stocks/ba/ $ load TSLA Loading Daily TSLA stock with starting period 2019-02-11 for analysis. @@ -39,11 +42,7 @@ Timezone: America/New_York Currency: USD Market: CLOSED -2022 Feb 16, 10:23 (✨) /stocks/ba/ $ hist +2022 Feb 16, 10:23 (🦋) /stocks/ba/ $ hist ``` ![hist](https://user-images.githubusercontent.com/46355364/154296923-af6a4b2d-ab16-44d1-8270-e5926f4bac16.png) - - - - diff --git a/website/content/terminal/common/ba/infer/_index.md b/website/content/terminal/ba/infer/_index.md old mode 100755 new mode 100644 similarity index 90% rename from website/content/terminal/common/ba/infer/_index.md rename to website/content/terminal/ba/infer/_index.md index 572c32967357..64b4d80df48c --- a/website/content/terminal/common/ba/infer/_index.md +++ b/website/content/terminal/ba/infer/_index.md @@ -3,7 +3,7 @@ usage: infer [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` Displays a quick sentiment inference from last tweets that contain the ticker. This model splits the text into character-level tokens and uses vader -sentiment analysis. Source: https://Twitter.com +sentiment analysis. Source: ``` optional arguments: @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 19, 13:05 (✨) /stocks/ba/ $ infer +2022 Feb 19, 13:05 (🦋) /stocks/ba/ $ infer From: 2022-02-19 17:08:20 To: 2022-02-19 18:04:18 100 tweets were analyzed. diff --git a/website/content/terminal/common/ba/interest/_index.md b/website/content/terminal/ba/interest/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ba/interest/_index.md rename to website/content/terminal/ba/interest/_index.md diff --git a/website/content/terminal/common/ba/mentions/_index.md b/website/content/terminal/ba/mentions/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ba/mentions/_index.md rename to website/content/terminal/ba/mentions/_index.md diff --git a/website/content/terminal/common/ba/messages/_index.md b/website/content/terminal/ba/messages/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ba/messages/_index.md rename to website/content/terminal/ba/messages/_index.md diff --git a/website/content/terminal/common/ba/popular/_index.md b/website/content/terminal/ba/popular/_index.md old mode 100755 new mode 100644 similarity index 99% rename from website/content/terminal/common/ba/popular/_index.md rename to website/content/terminal/ba/popular/_index.md index 348653faf652..6ee0fc2c7ab7 --- a/website/content/terminal/common/ba/popular/_index.md +++ b/website/content/terminal/ba/popular/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:31 (✨) /stocks/ba/ $ popular +2022 Feb 16, 10:31 (🦋) /stocks/ba/ $ popular Search for latest tickers for 50 'Superstonk' posts 217 potential tickers found. Search for latest tickers for 50 'pennystocks' posts @@ -33,7 +34,7 @@ Search for latest tickers for 50 'investing' posts 37 potential tickers found. Search for latest tickers for 50 'wallstreetbets' posts 31 potential tickers found. - + The following TOP 10 tickers have been mentioned: ┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Mentions ┃ Ticker ┃ Company ┃ Sector ┃ Price ┃ Change ┃ Perf Month ┃ URL ┃ diff --git a/website/content/terminal/common/ba/queries/_index.md b/website/content/terminal/ba/queries/_index.md old mode 100755 new mode 100644 similarity index 97% rename from website/content/terminal/common/ba/queries/_index.md rename to website/content/terminal/ba/queries/_index.md index 08e47c896ffc..e9a41ba9208e --- a/website/content/terminal/common/ba/queries/_index.md +++ b/website/content/terminal/ba/queries/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:38 (✨) /stocks/ba/ $ queries +2022 Feb 16, 10:38 (🦋) /stocks/ba/ $ queries Top AMZN's related queries ┏━━━━━━━━━━━━━━━━━━┳━━━━━━━┓ ┃ query ┃ value ┃ diff --git a/website/content/terminal/common/ba/redditsent/_index.md b/website/content/terminal/ba/redditsent/_index.md similarity index 100% rename from website/content/terminal/common/ba/redditsent/_index.md rename to website/content/terminal/ba/redditsent/_index.md diff --git a/website/content/terminal/common/ba/regions/_index.md b/website/content/terminal/ba/regions/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ba/regions/_index.md rename to website/content/terminal/ba/regions/_index.md diff --git a/website/content/terminal/common/ba/rise/_index.md b/website/content/terminal/ba/rise/_index.md old mode 100755 new mode 100644 similarity index 97% rename from website/content/terminal/common/ba/rise/_index.md rename to website/content/terminal/ba/rise/_index.md index 2ec97365d617..b769502a9fbf --- a/website/content/terminal/common/ba/rise/_index.md +++ b/website/content/terminal/ba/rise/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:40 (✨) /stocks/ba/ $ rise +2022 Feb 16, 10:40 (🦋) /stocks/ba/ $ rise Top rising AAPL's related queries ┏━━━━━━━━━━━━━━━━━┳━━━━━━━━┓ ┃ query ┃ value ┃ diff --git a/website/content/terminal/common/ba/sentiment/_index.md b/website/content/terminal/ba/sentiment/_index.md old mode 100755 new mode 100644 similarity index 95% rename from website/content/terminal/common/ba/sentiment/_index.md rename to website/content/terminal/ba/sentiment/_index.md index 78b3937712d5..19d569330b47 --- a/website/content/terminal/common/ba/sentiment/_index.md +++ b/website/content/terminal/ba/sentiment/_index.md @@ -14,9 +14,11 @@ optional arguments: --export {csv,json,xlsx,png,jpg,pdf,svg} Export raw data into csv, json, xlsx and figure into png, jpg, pdf, svg (default: ) ``` + Example: + ``` -2022 Feb 19, 13:16 (✨) /stocks/ba/ $ sentiment +2022 Feb 19, 13:16 (🦋) /stocks/ba/ $ sentiment From 2022-02-19 retrieving 360 tweets (15 tweets/hour) From 2022-02-18 retrieving 360 tweets (15 tweets/hour) From 2022-02-17 retrieving 360 tweets (15 tweets/hour) diff --git a/website/content/terminal/common/ba/snews/_index.md b/website/content/terminal/ba/snews/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ba/snews/_index.md rename to website/content/terminal/ba/snews/_index.md diff --git a/website/content/terminal/common/ba/spac/_index.md b/website/content/terminal/ba/spac/_index.md old mode 100755 new mode 100644 similarity index 96% rename from website/content/terminal/common/ba/spac/_index.md rename to website/content/terminal/ba/spac/_index.md index e5d73615e2f0..1eb2d209a4d2 --- a/website/content/terminal/common/ba/spac/_index.md +++ b/website/content/terminal/ba/spac/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:42 (✨) /stocks/ba/ $ spac +2022 Feb 16, 10:42 (🦋) /stocks/ba/ $ spac 2022-02-15 22:31:56 - 2020 vs 2021 https://old.reddit.com/r/wallstreetbets/comments/stfcdu/2020_vs_2021/ diff --git a/website/content/terminal/common/ba/spacc/_index.md b/website/content/terminal/ba/spacc/_index.md old mode 100755 new mode 100644 similarity index 96% rename from website/content/terminal/common/ba/spacc/_index.md rename to website/content/terminal/ba/spacc/_index.md index 9004cfe4a84d..7ad2c873d138 --- a/website/content/terminal/common/ba/spacc/_index.md +++ b/website/content/terminal/ba/spacc/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:43 (✨) /stocks/ba/ $ spacc +2022 Feb 16, 10:43 (🦋) /stocks/ba/ $ spacc 2022-02-16 11:35:01 - I scraped r/SPACs for the top ticker mentions in the last 24H. Here are the results (Wednesday February 16, 2022) https://old.reddit.com/r/SPACs/comments/sttsnl/i_scraped_rspacs_for_the_top_ticker_mentions_in/ diff --git a/website/content/terminal/common/ba/stalker/_index.md b/website/content/terminal/ba/stalker/_index.md old mode 100755 new mode 100644 similarity index 99% rename from website/content/terminal/common/ba/stalker/_index.md rename to website/content/terminal/ba/stalker/_index.md index dafff83c92d3..d77a311cd3e3 --- a/website/content/terminal/common/ba/stalker/_index.md +++ b/website/content/terminal/ba/stalker/_index.md @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:44 (✨) /stocks/ba/ $ stalker +2022 Feb 16, 10:44 (🦋) /stocks/ba/ $ stalker ------------------------------------------------------------------------------ 2022-02-16 15:44:24 diff --git a/website/content/terminal/common/ba/stats/_index.md b/website/content/terminal/ba/stats/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ba/stats/_index.md rename to website/content/terminal/ba/stats/_index.md diff --git a/website/content/terminal/common/ba/trend/_index.md b/website/content/terminal/ba/trend/_index.md old mode 100755 new mode 100644 similarity index 98% rename from website/content/terminal/common/ba/trend/_index.md rename to website/content/terminal/ba/trend/_index.md index fdcb8557db36..90ebbf03cd69 --- a/website/content/terminal/common/ba/trend/_index.md +++ b/website/content/terminal/ba/trend/_index.md @@ -20,8 +20,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:50 (✨) /stocks/ba/ $ trend +2022 Feb 16, 10:50 (🦋) /stocks/ba/ $ trend Most trending stocks at 2022-02-16 00:00 ┏━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━┳━━━━━━┓ ┃ TICKER ┃ TOTAL ┃ LIKES ┃ RHI ┃ AHI ┃ diff --git a/website/content/terminal/common/ba/trending/_index.md b/website/content/terminal/ba/trending/_index.md old mode 100755 new mode 100644 similarity index 99% rename from website/content/terminal/common/ba/trending/_index.md rename to website/content/terminal/ba/trending/_index.md index 4eb6ea568459..4babe06d3ddf --- a/website/content/terminal/common/ba/trending/_index.md +++ b/website/content/terminal/ba/trending/_index.md @@ -10,8 +10,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:50 (✨) /stocks/ba/ $ trending +2022 Feb 16, 10:50 (🦋) /stocks/ba/ $ trending Trending Stocks ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Ticker ┃ Watchlist Count ┃ Name ┃ diff --git a/website/content/terminal/common/ba/watchlist/_index.md b/website/content/terminal/ba/watchlist/_index.md old mode 100755 new mode 100644 similarity index 96% rename from website/content/terminal/common/ba/watchlist/_index.md rename to website/content/terminal/ba/watchlist/_index.md index 5246fe616884..c023a66b9d35 --- a/website/content/terminal/common/ba/watchlist/_index.md +++ b/website/content/terminal/ba/watchlist/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:52 (✨) /stocks/ba/ $ watchlist +2022 Feb 16, 10:52 (🦋) /stocks/ba/ $ watchlist 2022-02-16 14:16:31 - Morning Update for Wednesday, 2/16/22 https://old.reddit.com/r/StockMarket/comments/stwy68/morning_update_for_wednesday_21622/ diff --git a/website/content/terminal/common/ba/wsb/_index.md b/website/content/terminal/ba/wsb/_index.md old mode 100755 new mode 100644 similarity index 97% rename from website/content/terminal/common/ba/wsb/_index.md rename to website/content/terminal/ba/wsb/_index.md index a7bcb8817f1d..8bcf3ad87df4 --- a/website/content/terminal/common/ba/wsb/_index.md +++ b/website/content/terminal/ba/wsb/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:52 (✨) /stocks/ba/ $ wsb +2022 Feb 16, 10:52 (🦋) /stocks/ba/ $ wsb 2022-02-16 11:00:14 - Daily Discussion Thread for February 16, 2022 https://old.reddit.com/r/wallstreetbets/comments/stt7n0/daily_discussion_thread_for_february_16_2022/ diff --git a/website/content/terminal/common/_index.md b/website/content/terminal/common/_index.md index aeb1afbb35de..4da4cde32950 100755 --- a/website/content/terminal/common/_index.md +++ b/website/content/terminal/common/_index.md @@ -7,7 +7,7 @@ geekdocCollapseSection: true There are several sub-menus containing features that can be applied across all asset classes. These are grouped in the directory trees under, common. - - Introduction to the Behavioural Analysis Menu - - Introduction to the Quantitative Analysis Menu - - Introduction to the Technical Analysis Menu - - Introduction to the Forecast Menu +- Introduction to the Behavioural Analysis Menu +- Introduction to the Quantitative Analysis Menu +- Introduction to the Technical Analysis Menu +- Introduction to the Forecast Menu diff --git a/website/content/terminal/crypto/dd/ath/_index.md b/website/content/terminal/crypto/dd/ath/_index.md index bccb857e56ce..e6215f7c195e 100644 --- a/website/content/terminal/crypto/dd/ath/_index.md +++ b/website/content/terminal/crypto/dd/ath/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:04 (✨) /crypto/dd/ $ ath +2022 Feb 15, 07:04 (🦋) /crypto/dd/ $ ath Coin Highs ┌─────────────────────────────────────┬──────────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/atl/_index.md b/website/content/terminal/crypto/dd/atl/_index.md index 51f0abfc09b6..d7cf95cd6b7b 100644 --- a/website/content/terminal/crypto/dd/atl/_index.md +++ b/website/content/terminal/crypto/dd/atl/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:05 (✨) /crypto/dd/ $ atl +2022 Feb 15, 07:05 (🦋) /crypto/dd/ $ atl Coin Lows ┌────────────────────────────────────┬──────────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/basic/_index.md b/website/content/terminal/crypto/dd/basic/_index.md index 63bcd39c0dd0..34e35748fe23 100644 --- a/website/content/terminal/crypto/dd/basic/_index.md +++ b/website/content/terminal/crypto/dd/basic/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:10 (✨) /crypto/dd/ $ basic +2022 Feb 15, 07:10 (🦋) /crypto/dd/ $ basic Basic Coin Information ┌─────────────┬───────────────────────────────────────────────────────────────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/bc/_index.md b/website/content/terminal/crypto/dd/bc/_index.md index 48a90c068f79..1caa58e72d0d 100644 --- a/website/content/terminal/crypto/dd/bc/_index.md +++ b/website/content/terminal/crypto/dd/bc/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:10 (✨) /crypto/dd/ $ bc +2022 Feb 15, 07:10 (🦋) /crypto/dd/ $ bc Blockchain URLs ┌────────┬─────────────────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/dev/_index.md b/website/content/terminal/crypto/dd/dev/_index.md index db9325594e7d..92e4285919e4 100644 --- a/website/content/terminal/crypto/dd/dev/_index.md +++ b/website/content/terminal/crypto/dd/dev/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:13 (✨) /crypto/dd/ $ dev +2022 Feb 15, 07:13 (🦋) /crypto/dd/ $ dev Developers Data for Loaded Coin ┌───────────────────────────┬───────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/events/_index.md b/website/content/terminal/crypto/dd/events/_index.md index 3d698f4ffeb3..5e5f5aea7c16 100644 --- a/website/content/terminal/crypto/dd/events/_index.md +++ b/website/content/terminal/crypto/dd/events/_index.md @@ -22,8 +22,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:14 (✨) /crypto/dd/ $ events +2022 Feb 15, 07:14 (🦋) /crypto/dd/ $ events All Events ┌────────────┬────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────┬─────────────────────────────────────────┬───────────────┐ │ date │ date_to │ name │ description │ is_conference │ diff --git a/website/content/terminal/crypto/dd/info/_index.md b/website/content/terminal/crypto/dd/info/_index.md index fb44bfc217d2..40deea5ef6a0 100644 --- a/website/content/terminal/crypto/dd/info/_index.md +++ b/website/content/terminal/crypto/dd/info/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:34 (✨) /crypto/dd/ $ info +2022 Feb 15, 07:34 (🦋) /crypto/dd/ $ info Basic Coin Information ┌─────────────────────────────┬──────────────────────────────────────────────────────────────────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/market/_index.md b/website/content/terminal/crypto/dd/market/_index.md index 416f2ff0cfce..e3acd6b7d271 100644 --- a/website/content/terminal/crypto/dd/market/_index.md +++ b/website/content/terminal/crypto/dd/market/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:41 (✨) /crypto/dd/ $ market +2022 Feb 15, 07:41 (🦋) /crypto/dd/ $ market Market Data ┌──────────────────────────────────────────┬─────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/mkt/_index.md b/website/content/terminal/crypto/dd/mkt/_index.md index 26125980f599..2f3719078f44 100644 --- a/website/content/terminal/crypto/dd/mkt/_index.md +++ b/website/content/terminal/crypto/dd/mkt/_index.md @@ -26,8 +26,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:41 (✨) /crypto/dd/ $ mkt +2022 Feb 15, 07:41 (🦋) /crypto/dd/ $ mkt All Markets ┌─────────────────────┬──────────┬─────────────┬──────────────────┬───────────┬────────────────┐ │ exchange │ pair │ trust_score │ pct_volume_share │ usd_price │ usd_volume │ diff --git a/website/content/terminal/crypto/dd/ps/_index.md b/website/content/terminal/crypto/dd/ps/_index.md index 603d7bfdb463..5aaed0d4efef 100644 --- a/website/content/terminal/crypto/dd/ps/_index.md +++ b/website/content/terminal/crypto/dd/ps/_index.md @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:46 (✨) /crypto/dd/ $ ps +2022 Feb 15, 07:46 (🦋) /crypto/dd/ $ ps Coin Information ┌────────────────────────────┬─────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/score/_index.md b/website/content/terminal/crypto/dd/score/_index.md index 8d4c7a799fac..73357917c884 100644 --- a/website/content/terminal/crypto/dd/score/_index.md +++ b/website/content/terminal/crypto/dd/score/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:47 (✨) /crypto/dd/ $ score +2022 Feb 15, 07:47 (🦋) /crypto/dd/ $ score Different Scores for Loaded Coin ┌─────────────────────────────────┬────────────┐ diff --git a/website/content/terminal/crypto/dd/social/_index.md b/website/content/terminal/crypto/dd/social/_index.md index 5847ba16cd41..bedc72191189 100644 --- a/website/content/terminal/crypto/dd/social/_index.md +++ b/website/content/terminal/crypto/dd/social/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:47 (✨) /crypto/dd/ $ social +2022 Feb 15, 07:47 (🦋) /crypto/dd/ $ social Social Media for Loaded Coin ┌───────────┬───────────────────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/dd/stats/_index.md b/website/content/terminal/crypto/dd/stats/_index.md index e2ce91a8d633..6428d54954c0 100644 --- a/website/content/terminal/crypto/dd/stats/_index.md +++ b/website/content/terminal/crypto/dd/stats/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:47 (✨) /crypto/dd/ $ stats +2022 Feb 15, 07:47 (🦋) /crypto/dd/ $ stats 24 hr Product Stats ┌──────────────┬────────────────┐ diff --git a/website/content/terminal/crypto/dd/twitter/_index.md b/website/content/terminal/crypto/dd/twitter/_index.md index 5e188ccd8c74..4ca4d7b7d172 100644 --- a/website/content/terminal/crypto/dd/twitter/_index.md +++ b/website/content/terminal/crypto/dd/twitter/_index.md @@ -19,8 +19,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:49 (✨) /crypto/dd/ $ twitter +2022 Feb 15, 07:49 (🦋) /crypto/dd/ $ twitter Twitter Timeline ┌────────────┬────────────────┬──────────────────────────────────────────────────────────────────────────────────┬───────────────┬────────────┐ │ date │ user_name │ status │ retweet_count │ like_count │ diff --git a/website/content/terminal/crypto/dd/web/_index.md b/website/content/terminal/crypto/dd/web/_index.md index 83778d57791d..a14bdd0e52ec 100644 --- a/website/content/terminal/crypto/dd/web/_index.md +++ b/website/content/terminal/crypto/dd/web/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:49 (✨) /crypto/dd/ $ web +2022 Feb 15, 07:49 (🦋) /crypto/dd/ $ web Websites for Loaded Coin ┌────────────────────┬──────────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/defi/anchor/_index.md b/website/content/terminal/crypto/defi/anchor/_index.md index 1b99f48dbd70..f6e3642b47e4 100644 --- a/website/content/terminal/crypto/defi/anchor/_index.md +++ b/website/content/terminal/crypto/defi/anchor/_index.md @@ -2,7 +2,7 @@ usage: anchor [--transactions] [--address ADDRESS] [-h] [--export {csv,json,xlsx}] ``` -Displays anchor protocol earnings data of a certain terra address [Source: https://cryptosaurio.com/] +Displays anchor protocol earnings data of a certain terra address [Source: ] ``` optional arguments: @@ -16,7 +16,7 @@ optional arguments: Example: ``` -2022 Mar 18, 14:29 (✨) /crypto/defi/ $ anchor terra13kc0x8kr3sq8226myf4nmanmn2mrk9s5s9wsnz --transactions +2022 Mar 18, 14:29 (🦋) /crypto/defi/ $ anchor terra13kc0x8kr3sq8226myf4nmanmn2mrk9s5s9wsnz --transactions ``` ![anchor](https://user-images.githubusercontent.com/43375532/159065235-e8fb189d-f670-4391-a7fc-064640b9607d.png) diff --git a/website/content/terminal/crypto/defi/aterra/_index.md b/website/content/terminal/crypto/defi/aterra/_index.md index 1dc25e4b4c5c..d23757b0de11 100644 --- a/website/content/terminal/crypto/defi/aterra/_index.md +++ b/website/content/terminal/crypto/defi/aterra/_index.md @@ -2,7 +2,7 @@ usage: aterra [--asset {ust,luna,sdt}] [--address ADDRESS] [-h] [--export {csv,json,xlsx}] ``` -Displays the 30-day history of an asset in a certain terra address. [Source: https://terra.engineer/] +Displays the 30-day history of an asset in a certain terra address. [Source: ] ``` optional arguments: @@ -15,7 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:00 (✨) /crypto/defi/ $ aterra --asset luna --address terra18vnrzlzm2c4xfsx382pj2xndqtt00rvhu24sqe +2022 Feb 15, 06:00 (🦋) /crypto/defi/ $ aterra --asset luna --address terra18vnrzlzm2c4xfsx382pj2xndqtt00rvhu24sqe ``` + ![aterra](https://user-images.githubusercontent.com/46355364/154049081-7f2298ba-8a0e-4aaa-a5b1-5bc4f92af312.png) diff --git a/website/content/terminal/crypto/defi/ldapps/_index.md b/website/content/terminal/crypto/defi/ldapps/_index.md index 4f12e26cda18..4cce531fda75 100644 --- a/website/content/terminal/crypto/defi/ldapps/_index.md +++ b/website/content/terminal/crypto/defi/ldapps/_index.md @@ -2,7 +2,7 @@ usage: ldapps [-l LIMIT] [-s {tvl,symbol,category,chains,change_1h,change_1d,change_7d,name}] [--reverse] [--desc] [-h] [--export {csv,json,xlsx}] ``` -Display information about listed DeFi Protocols on DeFi Llama. [Source:https://docs.llama.fi/api] +Display information about listed DeFi Protocols on DeFi Llama. [Source:] ``` optional arguments: @@ -19,8 +19,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:24 (✨) /crypto/defi/ $ ldapps +2022 Feb 15, 06:24 (🦋) /crypto/defi/ $ ldapps ┌──────────────────────────┬────────┬──────────┬──────────────────────────────────────────────────┬───────────────┬───────────────┬───────────────┬──────────┐ │ Name │ Symbol │ Category │ Chains │ Change 1H (%) │ Change 1D (%) │ Change 7D (%) │ TVL ($) │ ├──────────────────────────┼────────┼──────────┼──────────────────────────────────────────────────┼───────────────┼───────────────┼───────────────┼──────────┤ diff --git a/website/content/terminal/crypto/defi/newsletter/_index.md b/website/content/terminal/crypto/defi/newsletter/_index.md index d6d35bdbcd58..7d667ed9760b 100644 --- a/website/content/terminal/crypto/defi/newsletter/_index.md +++ b/website/content/terminal/crypto/defi/newsletter/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:26 (✨) /crypto/defi/ $ newsletter +2022 Feb 15, 06:26 (🦋) /crypto/defi/ $ newsletter Substack Newsletters ┌───────────────────────────────────────────────────┬─────────────────────┬─────────────────────────────────────────────────────────────────────────┐ │ Title │ Date │ Link │ diff --git a/website/content/terminal/crypto/defi/pairs/_index.md b/website/content/terminal/crypto/defi/pairs/_index.md index e9c3c2595403..2d187d957da0 100644 --- a/website/content/terminal/crypto/defi/pairs/_index.md +++ b/website/content/terminal/crypto/defi/pairs/_index.md @@ -2,7 +2,7 @@ usage: pairs [-l LIMIT] [-v VOL] [-tx TX] [--days DAYS] [-s {created,pair,token0,token1,volumeUSD,txCount,totalSupply}] [--reverse] [-h] [--export {csv,json,xlsx}] ``` -Display Lastly added pairs on Uniswap DEX. [Source: https://thegraph.com/en/] +Display Lastly added pairs on Uniswap DEX. [Source: ] ``` optional arguments: @@ -22,8 +22,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:27 (✨) /crypto/defi/ $ pairs +2022 Feb 15, 06:27 (🦋) /crypto/defi/ $ pairs Latest Added Pairs on Uniswap DEX ┌─────────────────────┬────────────────┬──────────────────────────────────────┬────────────────────┬───────────┬─────────┬─────────────┐ │ created │ pair │ token0 │ token1 │ volumeUSD │ txCount │ totalSupply │ diff --git a/website/content/terminal/crypto/defi/pools/_index.md b/website/content/terminal/crypto/defi/pools/_index.md index c386ffa7c92f..2812111858a5 100644 --- a/website/content/terminal/crypto/defi/pools/_index.md +++ b/website/content/terminal/crypto/defi/pools/_index.md @@ -2,7 +2,7 @@ usage: pairs [-l LIMIT] [-s {volumeUSD,token0.name,token0.symbol,token1.name,token1.symbol,volumeUSD,txCount}] [--reverse] [-h] [--export {csv,json,xlsx}] ``` -Display uniswap pools by volume. [Source: https://thegraph.com/en/] +Display uniswap pools by volume. [Source: ] ``` optional arguments: @@ -19,8 +19,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:28 (✨) /crypto/defi/ $ pools +2022 Feb 15, 06:28 (🦋) /crypto/defi/ $ pools Uniswap Pools ┌───────────────────────┬───────────────┬───────────────────┬───────────────┬───────────┬─────────┐ │ token0.name │ token0.symbol │ token1.name │ token1.symbol │ volumeUSD │ txCount │ diff --git a/website/content/terminal/crypto/defi/stats/_index.md b/website/content/terminal/crypto/defi/stats/_index.md index 4b59c31cfb6c..e50b42db07ef 100644 --- a/website/content/terminal/crypto/defi/stats/_index.md +++ b/website/content/terminal/crypto/defi/stats/_index.md @@ -1,7 +1,8 @@ ``` usage: stats [-h] [--export {csv,json,xlsx}] ``` -Display base statistics about Uniswap DEX. [Source: https://thegraph.com/en/] + +Display base statistics about Uniswap DEX. [Source: ] ``` optional arguments: @@ -11,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:33 (✨) /crypto/defi/ $ stats +2022 Feb 15, 06:33 (🦋) /crypto/defi/ $ stats Uniswap DEX Base Statistics ┌───────────────────┬────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/defi/swaps/_index.md b/website/content/terminal/crypto/defi/swaps/_index.md index e3bb87e4ebe4..1a3705b5eac7 100644 --- a/website/content/terminal/crypto/defi/swaps/_index.md +++ b/website/content/terminal/crypto/defi/swaps/_index.md @@ -2,7 +2,7 @@ usage: swaps [-l LIMIT] [-s {timestamp,token0,token1,amountUSD}] [--reverse] [-h] [--export {csv,json,xlsx}] ``` -Display last swaps done on Uniswap DEX. [Source: https://thegraph.com/en/] +Display last swaps done on Uniswap DEX. [Source: ] ``` optional arguments: @@ -19,8 +19,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:34 (✨) /crypto/defi/ $ swaps +2022 Feb 15, 06:34 (🦋) /crypto/defi/ $ swaps Last Uniswap Swaps ┌─────────────────────────────────────┬─────────┬────────┬─────────────────────┐ │ timestamp │ token0 │ token1 │ amountUSD │ diff --git a/website/content/terminal/crypto/defi/tokens/_index.md b/website/content/terminal/crypto/defi/tokens/_index.md index 7164432b783b..5daa3fc7bdc5 100644 --- a/website/content/terminal/crypto/defi/tokens/_index.md +++ b/website/content/terminal/crypto/defi/tokens/_index.md @@ -1,7 +1,8 @@ ``` usage: tokens [--skip SKIP] [--limit LIMIT] [-s {index,symbol,name,tradeVolumeUSD,totalLiquidity,txCount}] [--reverse] [-h] [--export {csv,json,xlsx}] ``` -Display tokens trade-able on Uniswap DEX [Source: https://thegraph.com/en/] + +Display tokens trade-able on Uniswap DEX [Source: ] ``` optional arguments: @@ -17,8 +18,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:36 (✨) /crypto/defi/ $ tokens +2022 Feb 15, 06:36 (🦋) /crypto/defi/ $ tokens UniSwarp DEX Trade-able Tokens ┌───────┬──────────────┬────────────────────────────┬────────────────┬────────────────┬─────────┐ │ index │ symbol │ name │ tradeVolumeUSD │ totalLiquidity │ txCount │ diff --git a/website/content/terminal/crypto/defi/validators/_index.md b/website/content/terminal/crypto/defi/validators/_index.md index ca9230dac24b..69a42ab60a13 100644 --- a/website/content/terminal/crypto/defi/validators/_index.md +++ b/website/content/terminal/crypto/defi/validators/_index.md @@ -2,7 +2,7 @@ usage: validators [-l LIMIT] [-s {validatorName,tokensAmount,votingPower,commissionRate,status,uptime}] [--reverse] [-h] [--export {csv,json,xlsx}] ``` -Displays information about terra validators. [Source: https://fcd.terra.dev/swagger] +Displays information about terra validators. [Source: ] ``` optional arguments: @@ -18,8 +18,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:36 (✨) /crypto/defi/ $ validators +2022 Feb 15, 06:36 (🦋) /crypto/defi/ $ validators ┌──────────────────────────────────────────────┬─────────────────────┬───────────────┬────────────────┬───────────────────┬────────┬──────────┐ │ Account address │ Validator name │ Tokens amount │ Voting power % │ Commission rate % │ Status │ Uptime % │ ├──────────────────────────────────────────────┼─────────────────────┼───────────────┼────────────────┼───────────────────┼────────┼──────────┤ diff --git a/website/content/terminal/crypto/disc/dapps/_index.md b/website/content/terminal/crypto/disc/dapps/_index.md index bfa1c02b968a..2045d75442dc 100644 --- a/website/content/terminal/crypto/disc/dapps/_index.md +++ b/website/content/terminal/crypto/disc/dapps/_index.md @@ -2,7 +2,7 @@ usage: dapps [-l LIMIT] [-s SORTBY [SORTBY ...]] [-h] [--export EXPORT] ``` -Shows top decentralized applications [Source: https://dappradar.com/] +Shows top decentralized applications [Source: ] Accepts --sort {Name,Category,Protocols,Daily Users,Daily Volume [$]} to sort by column @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:52 (✨) /crypto/disc/ $ dapps +2022 Feb 15, 06:52 (🦋) /crypto/disc/ $ dapps Top Decentralized Applications ┌───────────────┬──────────────┬─────────────────────────┬─────────────┬──────────────────┐ │ Name │ Category │ Protocols │ Daily Users │ Daily Volume [$] │ diff --git a/website/content/terminal/crypto/disc/dex/_index.md b/website/content/terminal/crypto/disc/dex/_index.md index eda85ae0f65b..e65ae3a024d4 100644 --- a/website/content/terminal/crypto/disc/dex/_index.md +++ b/website/content/terminal/crypto/disc/dex/_index.md @@ -2,7 +2,7 @@ usage: dex [-l LIMIT] [-s SORTBY [SORTBY ...]] [-h] [--export EXPORT] ``` -Shows top decentralized exchanges [Source: https://dappradar.com/] +Shows top decentralized exchanges [Source: ] Accepts --sort {Name,Daily Users,Daily Volume [$]} to sort by column @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:52 (✨) /crypto/disc/ $ dex +2022 Feb 15, 06:52 (🦋) /crypto/disc/ $ dex Top Decentralized Exchanges ┌───────────────┬─────────────┬──────────────────┐ │ Name │ Daily Users │ Daily Volume [$] │ diff --git a/website/content/terminal/crypto/disc/gainers/_index.md b/website/content/terminal/crypto/disc/gainers/_index.md index 857bd11d0336..9f9b6e8e7993 100644 --- a/website/content/terminal/crypto/disc/gainers/_index.md +++ b/website/content/terminal/crypto/disc/gainers/_index.md @@ -18,8 +18,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:38 (✨) /crypto/disc/ $ gainers +2022 Feb 15, 06:38 (🦋) /crypto/disc/ $ gainers ┌────────┬─────────────────┬───────────┬────────────────┬─────────────────┬────────────┬───────────────┐ │ Symbol │ Name │ Price [$] │ Market Cap [$] │ Market Cap Rank │ Volume [$] │ Change 1h [%] │ ├────────┼─────────────────┼───────────┼────────────────┼─────────────────┼────────────┼───────────────┤ diff --git a/website/content/terminal/crypto/disc/games/_index.md b/website/content/terminal/crypto/disc/games/_index.md index b57c1cc0adcb..82f05fab7ff4 100644 --- a/website/content/terminal/crypto/disc/games/_index.md +++ b/website/content/terminal/crypto/disc/games/_index.md @@ -2,7 +2,7 @@ usage: games [-l LIMIT] [-s SORTBY [SORTBY ...]] [-h] [--export EXPORT] ``` -Shows top blockchain games [Source: https://dappradar.com/] +Shows top blockchain games [Source: ] Accepts --sort {Name,Daily Users,Daily Volume [$]} to sort by column @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:53 (✨) /crypto/disc/ $ games +2022 Feb 15, 06:53 (🦋) /crypto/disc/ $ games Top Blockchain Games ┌───────────────┬─────────────┬──────────────────┐ │ Name │ Daily Users │ Daily Volume [$] │ diff --git a/website/content/terminal/crypto/disc/losers/_index.md b/website/content/terminal/crypto/disc/losers/_index.md index f8be7e43f885..2a7c5ed79842 100644 --- a/website/content/terminal/crypto/disc/losers/_index.md +++ b/website/content/terminal/crypto/disc/losers/_index.md @@ -18,8 +18,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:43 (✨) /crypto/disc/ $ losers +2022 Feb 15, 06:43 (🦋) /crypto/disc/ $ losers ┌────────┬─────────────────┬───────────┬────────────────┬─────────────────┬────────────┬───────────────┐ │ Symbol │ Name │ Price [$] │ Market Cap [$] │ Market Cap Rank │ Volume [$] │ Change 1h [%] │ ├────────┼─────────────────┼───────────┼────────────────┼─────────────────┼────────────┼───────────────┤ diff --git a/website/content/terminal/crypto/disc/search/_index.md b/website/content/terminal/crypto/disc/search/_index.md index ff0e16253173..67263a1331d7 100644 --- a/website/content/terminal/crypto/disc/search/_index.md +++ b/website/content/terminal/crypto/disc/search/_index.md @@ -24,8 +24,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:51 (✨) /crypto/disc/ $ search -q bitcoin +2022 Feb 15, 06:51 (🦋) /crypto/disc/ $ search -q bitcoin CoinPaprika Results ┌─────────────────────────┬──────────────────────┬────────────┐ │ id │ name │ category │ diff --git a/website/content/terminal/crypto/disc/top/_index.md b/website/content/terminal/crypto/disc/top/_index.md index 70b37970e587..9fc48d10944b 100644 --- a/website/content/terminal/crypto/disc/top/_index.md +++ b/website/content/terminal/crypto/disc/top/_index.md @@ -25,8 +25,9 @@ Cap,Market Cap Rank,Volume [$]} with CoinGecko Number of coins to show: -l 10 ``` Example: + ``` -2022 Feb 15, 06:44 (✨) /crypto/disc/ $ top +2022 Feb 15, 06:44 (🦋) /crypto/disc/ $ top ┌────────┬──────────────┬────────────┬────────────────┬─────────────────┬───────────────┬────────────────┐ │ Symbol │ Name │ Volume [$] │ Market Cap [$] │ Market Cap Rank │ 7D Change [%] │ 24H Change [%] │ ├────────┼──────────────┼────────────┼────────────────┼─────────────────┼───────────────┼────────────────┤ diff --git a/website/content/terminal/crypto/disc/trending/_index.md b/website/content/terminal/crypto/disc/trending/_index.md index 61f7c73ebfc8..a028c4798098 100644 --- a/website/content/terminal/crypto/disc/trending/_index.md +++ b/website/content/terminal/crypto/disc/trending/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 06:45 (✨) /crypto/disc/ $ trending +2022 Feb 15, 06:45 (🦋) /crypto/disc/ $ trending Trending coins on CoinGecko ┌────────────────────┬────────────────────┬─────────────────┐ │ Symbol │ Name │ Market Cap Rank │ diff --git a/website/content/terminal/crypto/find/_index.md b/website/content/terminal/crypto/find/_index.md index f08c469c027a..94f5692fa2fb 100644 --- a/website/content/terminal/crypto/find/_index.md +++ b/website/content/terminal/crypto/find/_index.md @@ -44,8 +44,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:52 (✨) /crypto/ $ find -c btc +2022 Feb 15, 07:52 (🦋) /crypto/ $ find -c btc Similar Coins ┌───────┬────────┬──────────────────────────────┬──────────────────────────────┐ │ index │ symbol │ id │ name │ diff --git a/website/content/terminal/crypto/headlines/_index.md b/website/content/terminal/crypto/headlines/_index.md index cfa40f24a8fb..7aade864ca9f 100644 --- a/website/content/terminal/crypto/headlines/_index.md +++ b/website/content/terminal/crypto/headlines/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:52 (✨) /crypto/ $ headlines +2022 Feb 15, 07:52 (🦋) /crypto/ $ headlines date 2022-02-06 0.137 @@ -28,4 +29,5 @@ date 2022-02-14 0.103 2022-02-15 0.158 ``` + ![headlines](https://user-images.githubusercontent.com/46355364/154066006-d281a8c8-bd25-4355-9cd5-3affd4477bd6.png) diff --git a/website/content/terminal/crypto/nft/stats/_index.md b/website/content/terminal/crypto/nft/stats/_index.md index 2a132a98ff14..abc91948c20c 100644 --- a/website/content/terminal/crypto/nft/stats/_index.md +++ b/website/content/terminal/crypto/nft/stats/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 07:56 (✨) /crypto/nft/ $ stats mutant-ape-yacht-club +2022 Feb 15, 07:56 (🦋) /crypto/nft/ $ stats mutant-ape-yacht-club Collection Stats ┌────────────────────────────────┬───────────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/onchain/top/_index.md b/website/content/terminal/crypto/onchain/top/_index.md index 79835755d690..bf868e17f8d0 100644 --- a/website/content/terminal/crypto/onchain/top/_index.md +++ b/website/content/terminal/crypto/onchain/top/_index.md @@ -21,8 +21,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:04 (✨) /crypto/onchain/ $ top +2022 Feb 15, 08:04 (🦋) /crypto/onchain/ $ top Top ERC20 Tokens ┌──────┬───────────────┬────────┬─────────┬──────────┬────────────────┬──────────────┬────────────────┬───────────────┐ │ rank │ name │ symbol │ price │ txsCount │ transfersCount │ holdersCount │ twitter │ coingecko │ diff --git a/website/content/terminal/crypto/ov/categories/_index.md b/website/content/terminal/crypto/ov/categories/_index.md index 95e34a6be525..1670113a32c8 100644 --- a/website/content/terminal/crypto/ov/categories/_index.md +++ b/website/content/terminal/crypto/ov/categories/_index.md @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:10 (✨) /crypto/ov/ $ categories +2022 Feb 15, 08:10 (🦋) /crypto/ov/ $ categories ┌──────────────────────────────────┬────────────┬───────────────────────┬───────────────────────────────────────────────────────┬────────────┐ │ Name │ Market Cap │ Market Cap Change 24H │ Top 3 Coins │ Volume 24H │ ├──────────────────────────────────┼────────────┼───────────────────────┼───────────────────────────────────────────────────────┼────────────┤ diff --git a/website/content/terminal/crypto/ov/ch/_index.md b/website/content/terminal/crypto/ov/ch/_index.md index fdf86a8d80dd..dfd9cbd9b751 100644 --- a/website/content/terminal/crypto/ov/ch/_index.md +++ b/website/content/terminal/crypto/ov/ch/_index.md @@ -2,7 +2,7 @@ usage: ch [-l N] [-s {Platform,Date,Amount [$],Audit,Slug,URL}] [--reverse] [-h] [--export {csv,json,xlsx}] ``` -Display list of major crypto-related hacks [Source: https://rekt.news] +Display list of major crypto-related hacks [Source: ] Can be sorted by {Platform,Date,Amount [$],Audit,Slug,URL} with --sort and reverse the display order with --reverse Show only N elements with --limit N Accepts --slug or -s to check individual crypto hack (e.g., -s polynetwork-rekt) @@ -22,8 +22,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:16 (✨) /crypto/ov/ $ ch +2022 Feb 15, 08:16 (🦋) /crypto/ov/ $ ch Major Crypto Hacks ┌────────────────────────┬────────────┬────────────┬────────────────────────┬────────────────────┬───────────────────────────────────────┐ │ Platform │ Date │ Amount [$] │ Audit │ Slug │ URL │ diff --git a/website/content/terminal/crypto/ov/contracts/_index.md b/website/content/terminal/crypto/ov/contracts/_index.md index df81494d3337..f1558e9de579 100644 --- a/website/content/terminal/crypto/ov/contracts/_index.md +++ b/website/content/terminal/crypto/ov/contracts/_index.md @@ -24,8 +24,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:16 (✨) /crypto/ov/ $ contracts +2022 Feb 15, 08:16 (🦋) /crypto/ov/ $ contracts Contract Addresses ┌────────────────────────────────────────────────────┬───────┬────────┐ │ id │ type │ active │ diff --git a/website/content/terminal/crypto/ov/defi/_index.md b/website/content/terminal/crypto/ov/defi/_index.md index 708faa740114..4280a29bcee2 100644 --- a/website/content/terminal/crypto/ov/defi/_index.md +++ b/website/content/terminal/crypto/ov/defi/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:11 (✨) /crypto/ov/ $ defi +2022 Feb 15, 08:11 (🦋) /crypto/ov/ $ defi Global DEFI Statistics ┌─────────────────────────┬─────────────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/ov/derivatives/_index.md b/website/content/terminal/crypto/ov/derivatives/_index.md index b02505aada59..83148bddeaa5 100644 --- a/website/content/terminal/crypto/ov/derivatives/_index.md +++ b/website/content/terminal/crypto/ov/derivatives/_index.md @@ -22,8 +22,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:11 (✨) /crypto/ov/ $ derivatives +2022 Feb 15, 08:11 (🦋) /crypto/ov/ $ derivatives Crypto Derivatives ┌──────┬───────────────────────────────┬───────────────┬──────────┬────────────────┬───────────────┬───────┬────────┬──────────────┬────────────────┐ │ Rank │ Market │ Symbol │ Price │ Pct_Change_24h │ Contract_Type │ Basis │ Spread │ Funding_Rate │ Volume_24h │ diff --git a/website/content/terminal/crypto/ov/ewf/_index.md b/website/content/terminal/crypto/ov/ewf/_index.md index 24cb6ae86e0c..ba26baef5ef6 100644 --- a/website/content/terminal/crypto/ov/ewf/_index.md +++ b/website/content/terminal/crypto/ov/ewf/_index.md @@ -4,7 +4,7 @@ usage: ewf [-l N] ``` Display exchange withdrawal fees -[Source: https://withdrawalfees.com/] +[Source: ] ``` optional arguments: @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:20 (✨) /crypto/ov/ $ ewf +2022 Feb 15, 08:20 (🦋) /crypto/ov/ $ ewf Withdrawal fees per exchange: Withdrawal Fees diff --git a/website/content/terminal/crypto/ov/exchanges/_index.md b/website/content/terminal/crypto/ov/exchanges/_index.md index 0b1330c913b5..35f6c36cd472 100644 --- a/website/content/terminal/crypto/ov/exchanges/_index.md +++ b/website/content/terminal/crypto/ov/exchanges/_index.md @@ -27,8 +27,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:12 (✨) /crypto/ov/ $ exchanges +2022 Feb 15, 08:12 (🦋) /crypto/ov/ $ exchanges Top CoinGecko Exchanges ┌──────┬─────────────┬────────────┬─────────────────────┬────────────────────────┬──────────────────┬──────────────────────┐ │ Rank │ Trust_Score │ Id │ Name │ Country │ Year_Established │ Trade_Volume_24h_BTC │ diff --git a/website/content/terminal/crypto/ov/exmarkets/_index.md b/website/content/terminal/crypto/ov/exmarkets/_index.md index fe2294d217c5..27990f39cd61 100644 --- a/website/content/terminal/crypto/ov/exmarkets/_index.md +++ b/website/content/terminal/crypto/ov/exmarkets/_index.md @@ -25,8 +25,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:18 (✨) /crypto/ov/ $ exmarkets +2022 Feb 15, 08:18 (🦋) /crypto/ov/ $ exmarkets Exchange Markets ┌─────────────┬───────────┬────────────────────┬─────────────────────┬──────────┬───────────────────────────┬─────────────┐ │ exchange_id │ pair │ base_currency_name │ quote_currency_name │ category │ reported_volume_24h_share │ trust_score │ diff --git a/website/content/terminal/crypto/ov/exrates/_index.md b/website/content/terminal/crypto/ov/exrates/_index.md index 3f7b6fb3ba3c..ecab120130e6 100644 --- a/website/content/terminal/crypto/ov/exrates/_index.md +++ b/website/content/terminal/crypto/ov/exrates/_index.md @@ -19,8 +19,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:12 (✨) /crypto/ov/ $ exrates +2022 Feb 15, 08:12 (🦋) /crypto/ov/ $ exrates Exchange Rates ┌───────┬─────────────────────────────┬──────┬────────────┬────────┐ │ Index │ Name │ Unit │ Value │ Type │ diff --git a/website/content/terminal/crypto/ov/global/_index.md b/website/content/terminal/crypto/ov/global/_index.md index 67d54ade9edd..2d6b20c48b4d 100644 --- a/website/content/terminal/crypto/ov/global/_index.md +++ b/website/content/terminal/crypto/ov/global/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:13 (✨) /crypto/ov/ $ global +2022 Feb 15, 08:13 (🦋) /crypto/ov/ $ global Global Statistics ┌──────────────────────────────────────┬──────────┐ │ Metric │ Value │ diff --git a/website/content/terminal/crypto/ov/hm/_index.md b/website/content/terminal/crypto/ov/hm/_index.md index 74f5349e24dd..b7fde56b079f 100644 --- a/website/content/terminal/crypto/ov/hm/_index.md +++ b/website/content/terminal/crypto/ov/hm/_index.md @@ -2,7 +2,7 @@ usage: hm [-c CATEGORY] [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Displays cryptocurrencies heatmap. [Source: https://coingecko.com] +Displays cryptocurrencies heatmap. [Source: ] Accepts --category or -c to display only coins of a certain category (default no category to display all coins ranked by market cap). You can look on only top N number of records with --limit. @@ -21,7 +21,7 @@ optional arguments: Example: ``` -2022 Feb 15, 06:44 (✨) /crypto/disc/ $ cgtop +2022 Feb 15, 06:44 (🦋) /crypto/disc/ $ cgtop ┌────────┬──────────────┬────────────┬────────────────┬─────────────────┬───────────────┬────────────────┐ │ Symbol │ Name │ Volume [$] │ Market Cap [$] │ Market Cap Rank │ 7D Change [%] │ 24H Change [%] │ ├────────┼──────────────┼────────────┼────────────────┼─────────────────┼───────────────┼────────────────┤ diff --git a/website/content/terminal/crypto/ov/hold/_index.md b/website/content/terminal/crypto/ov/hold/_index.md index 497606db8d32..c09001ebe9f1 100644 --- a/website/content/terminal/crypto/ov/hold/_index.md +++ b/website/content/terminal/crypto/ov/hold/_index.md @@ -16,8 +16,9 @@ optional arguments: ``` Example + ``` -2022 Feb 15, 08:13 (✨) /crypto/ov/ $ hold +2022 Feb 15, 08:13 (🦋) /crypto/ov/ $ hold 27 companies hold a total of 217.240 K bitcoin (1.15% of market cap dominance) with the current value of 9.618 B USD dollars diff --git a/website/content/terminal/crypto/ov/indexes/_index.md b/website/content/terminal/crypto/ov/indexes/_index.md index 228c64ece78d..5467212027b7 100644 --- a/website/content/terminal/crypto/ov/indexes/_index.md +++ b/website/content/terminal/crypto/ov/indexes/_index.md @@ -20,8 +20,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:13 (✨) /crypto/ov/ $ indexes +2022 Feb 15, 08:13 (🦋) /crypto/ov/ $ indexes Crypto Indexes ┌──────┬─────────────────────────────┬────────┬───────────────────────┬───────┬────────────┐ │ Rank │ Name │ Id │ Market │ Last │ MultiAsset │ diff --git a/website/content/terminal/crypto/ov/info/_index.md b/website/content/terminal/crypto/ov/info/_index.md index f6f65c36a758..3050a6ab1195 100644 --- a/website/content/terminal/crypto/ov/info/_index.md +++ b/website/content/terminal/crypto/ov/info/_index.md @@ -25,8 +25,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:18 (✨) /crypto/ov/ $ info +2022 Feb 15, 08:18 (🦋) /crypto/ov/ $ info Displaying data vs USD Basic Coin Information diff --git a/website/content/terminal/crypto/ov/markets/_index.md b/website/content/terminal/crypto/ov/markets/_index.md index 099158568569..b129d999486b 100644 --- a/website/content/terminal/crypto/ov/markets/_index.md +++ b/website/content/terminal/crypto/ov/markets/_index.md @@ -26,8 +26,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:19 (✨) /crypto/ov/ $ markets +2022 Feb 15, 08:19 (🦋) /crypto/ov/ $ markets Displaying data vs USD Basic Market Information diff --git a/website/content/terminal/crypto/ov/pairs/_index.md b/website/content/terminal/crypto/ov/pairs/_index.md index f31b6bb85827..ddfdb8c822fa 100644 --- a/website/content/terminal/crypto/ov/pairs/_index.md +++ b/website/content/terminal/crypto/ov/pairs/_index.md @@ -19,8 +19,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:09 (✨) /crypto/ov/ $ pairs +2022 Feb 15, 08:09 (🦋) /crypto/ov/ $ pairs Available Pairs for Trading ┌───────────┬──────────────┬───────────────┬────────────────┬───────────────┬───────────────┬──────────────────┬──────────────────┐ │ id │ display_name │ base_currency │ quote_currency │ base_min_size │ base_max_size │ min_market_funds │ max_market_funds │ diff --git a/website/content/terminal/crypto/ov/platforms/_index.md b/website/content/terminal/crypto/ov/platforms/_index.md index 3eff712fab91..26fb6d8458d3 100644 --- a/website/content/terminal/crypto/ov/platforms/_index.md +++ b/website/content/terminal/crypto/ov/platforms/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:19 (✨) /crypto/ov/ $ platforms +2022 Feb 15, 08:19 (🦋) /crypto/ov/ $ platforms Smart Contract Platforms ┌───────┬───────────────────────────┐ │ index │ platform_id │ diff --git a/website/content/terminal/crypto/ov/stables/_index.md b/website/content/terminal/crypto/ov/stables/_index.md index b7e9ef3206e5..115a78cbd71e 100644 --- a/website/content/terminal/crypto/ov/stables/_index.md +++ b/website/content/terminal/crypto/ov/stables/_index.md @@ -18,8 +18,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:16 (✨) /crypto/ov/ $ stables +2022 Feb 15, 08:16 (🦋) /crypto/ov/ $ stables First 15 stablecoins have a total 182.582 B dollars of market cap. diff --git a/website/content/terminal/crypto/ov/wf/_index.md b/website/content/terminal/crypto/ov/wf/_index.md index 0f8b5d6de583..9d919ea5ab2f 100644 --- a/website/content/terminal/crypto/ov/wf/_index.md +++ b/website/content/terminal/crypto/ov/wf/_index.md @@ -4,7 +4,7 @@ usage: wf [-l LIMIT] ``` Display withdrawal fees of cryptocurrencies ordered by market cap -[Source: https://withdrawalfees.com/] +[Source: ] ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:21 (✨) /crypto/ov/ $ wf +2022 Feb 15, 08:21 (🦋) /crypto/ov/ $ wf Withdrawal fees on exchanges: Top Withdrawal Fees diff --git a/website/content/terminal/crypto/ov/wfpe/_index.md b/website/content/terminal/crypto/ov/wfpe/_index.md index 211924ee25b9..543662f764bd 100644 --- a/website/content/terminal/crypto/ov/wfpe/_index.md +++ b/website/content/terminal/crypto/ov/wfpe/_index.md @@ -4,7 +4,7 @@ usage: wfpe [-c COIN] ``` Display coin withdrawal fees per exchange -[Source: https://withdrawalfees.com/] +[Source: ] ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:21 (✨) /crypto/ov/ $ wfpe +2022 Feb 15, 08:21 (🦋) /crypto/ov/ $ wfpe Withdrawal fees for bitcoin: diff --git a/website/content/terminal/econometrics/clean/_index.md b/website/content/terminal/econometrics/clean/_index.md index 77660aa67dd4..46db35afa163 100644 --- a/website/content/terminal/econometrics/clean/_index.md +++ b/website/content/terminal/econometrics/clean/_index.md @@ -20,7 +20,7 @@ optional arguments: Example: ```txt -2022 Feb 24, 04:58 (✨) /econometrics/ $ show thesis +2022 Feb 24, 04:58 (🦋) /econometrics/ $ show thesis thesis ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━┓ ┃ ┃ current_assets ┃ assets ┃ debt ┃ depr_amor ┃ income ┃ current_liabilities ┃ revenue ┃ equity ┃ interest_expense ┃ @@ -46,10 +46,11 @@ Example: │ ('AAR Corp', Timestamp('2018-04-01 00:00:00')) │ 942.70 │ 1524.70 │ 177.20 │ 9.10 │ 18.10 │ 333.30 │ 473.50 │ 936.30 │ 2.20 │ └────────────────────────────────────────────────┴────────────────┴─────────┴────────┴───────────┴────────┴─────────────────────┴─────────┴────────┴──────────────────┘ ``` + ``` -2022 Feb 24, 04:58 (✨) /econometrics/ $ clean thesis --fill rfill +2022 Feb 24, 04:58 (🦋) /econometrics/ $ clean thesis --fill rfill -2022 Feb 24, 04:59 (✨) /econometrics/ $ show thesis +2022 Feb 24, 04:59 (🦋) /econometrics/ $ show thesis thesis ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━┓ ┃ ┃ current_assets ┃ assets ┃ debt ┃ depr_amor ┃ income ┃ current_liabilities ┃ revenue ┃ equity ┃ interest_expense ┃ @@ -75,10 +76,11 @@ Example: │ ('AAR Corp', Timestamp('2018-04-01 00:00:00')) │ 942.70 │ 1524.70 │ 177.20 │ 9.10 │ 18.10 │ 333.30 │ 473.50 │ 936.30 │ 2.20 │ └────────────────────────────────────────────────┴────────────────┴─────────┴────────┴───────────┴────────┴─────────────────────┴─────────┴────────┴──────────────────┘ ``` + ``` -2022 Feb 24, 04:59 (✨) /econometrics/ $ clean thesis -d rdrop +2022 Feb 24, 04:59 (🦋) /econometrics/ $ clean thesis -d rdrop -2022 Feb 24, 05:00 (✨) /econometrics/ $ show thesis +2022 Feb 24, 05:00 (🦋) /econometrics/ $ show thesis thesis ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┓ ┃ ┃ current_assets ┃ assets ┃ debt ┃ depr_amor ┃ income ┃ current_liabilities ┃ revenue ┃ equity ┃ interest_expense ┃ diff --git a/website/content/terminal/econometrics/coint/_index.md b/website/content/terminal/econometrics/coint/_index.md index 8d48b61ed374..8752bfa43bbf 100644 --- a/website/content/terminal/econometrics/coint/_index.md +++ b/website/content/terminal/econometrics/coint/_index.md @@ -21,7 +21,7 @@ optional arguments: Example: ``` -2022 Feb 24, 06:03 (✨) /econometrics/ $ coint msft.adj_close,aapl.adj_close,tsla.adj_close,googl.adj_close -p +2022 Feb 24, 06:03 (🦋) /econometrics/ $ coint msft.adj_close,aapl.adj_close,tsla.adj_close,googl.adj_close -p Cointegration Tests ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━┓ ┃ Pairs ┃ Constant ┃ Gamma ┃ Alpha ┃ Dickey-Fuller ┃ P Value ┃ diff --git a/website/content/terminal/econometrics/compare/_index.md b/website/content/terminal/econometrics/compare/_index.md index aa7c7277f0ed..15d28c2ce93a 100644 --- a/website/content/terminal/econometrics/compare/_index.md +++ b/website/content/terminal/econometrics/compare/_index.md @@ -17,7 +17,7 @@ Below you can find a comparison of the regression estimates based on the dataset To replicate this result, please have a look at [panel](https://openbb-finance.github.io/OpenBBTerminal/terminal/econometrics/panel/). ``` -2022 Feb 25, 08:56 (✨) /econometrics/ $ compare +2022 Feb 25, 08:56 (🦋) /econometrics/ $ compare Model Comparison ========================================================================================================================================================== POLS BOLS RE FE FE_EE FE_IE FE_EE_IE FDOLS diff --git a/website/content/terminal/econometrics/dwat/_index.md b/website/content/terminal/econometrics/dwat/_index.md index eff4bc15b6c9..96786fe7828d 100644 --- a/website/content/terminal/econometrics/dwat/_index.md +++ b/website/content/terminal/econometrics/dwat/_index.md @@ -15,9 +15,10 @@ optional arguments: ``` Example: + ``` -2022 Feb 24, 05:59 (✨) /econometrics/ $ ols -d adj_close-msft -i adj_close-aapl -i adj_close-googl -i adj_close-tsla - OLS Regression Results +2022 Feb 24, 05:59 (🦋) /econometrics/ $ ols -d adj_close-msft -i adj_close-aapl -i adj_close-googl -i adj_close-tsla + OLS Regression Results ============================================================================== Dep. Variable: adj_close_msft R-squared: 0.977 Model: OLS Adj. R-squared: 0.977 @@ -26,8 +27,8 @@ Date: Thu, 24 Feb 2022 Prob (F-statistic): 0.00 Time: 12:00:01 Log-Likelihood: -2830.6 No. Observations: 759 AIC: 5669. Df Residuals: 755 BIC: 5688. -Df Model: 3 -Covariance Type: nonrobust +Df Model: 3 +Covariance Type: nonrobust =================================================================================== coef std err t P>|t| [0.025 0.975] ----------------------------------------------------------------------------------- @@ -47,10 +48,9 @@ Notes: [2] The condition number is large, 1.16e+04. This might indicate that there are strong multicollinearity or other numerical problems. -2022 Feb 24, 06:00 (✨) /statistics/ $ dwat -p +2022 Feb 24, 06:00 (🦋) /statistics/ $ dwat -p The result 0.04 is outside the range 1.5 and 2.5 and therefore autocorrelation can be problematic. Please consider lags of the dependent or independent variable. ``` ![durbin_watson example](https://user-images.githubusercontent.com/46355364/155514788-caaa65a2-1f5f-41d0-8db2-06e682d5a53e.png) - diff --git a/website/content/terminal/econometrics/export/_index.md b/website/content/terminal/econometrics/export/_index.md index 8b3f3cf2a852..b88f1f66fa6f 100644 --- a/website/content/terminal/econometrics/export/_index.md +++ b/website/content/terminal/econometrics/export/_index.md @@ -13,9 +13,10 @@ optional arguments: ``` Example: + ``` -2022 Feb 24, 04:35 (✨) /econometrics/ $ load ThesisData.xlsx thesis +2022 Feb 24, 04:35 (🦋) /econometrics/ $ load ThesisData.xlsx thesis -2022 Feb 24, 04:36 (✨) /econometrics/ $ export thesis -t csv +2022 Feb 24, 04:36 (🦋) /econometrics/ $ export thesis -t csv Saved file: /Users/jeroenbouma/My Drive/Programming/Python/OpenBBTerminal/exports/statistics/thesis_20220224_103614.csv ``` diff --git a/website/content/terminal/econometrics/load/_index.md b/website/content/terminal/econometrics/load/_index.md index a6cf2f5e2f87..be26e2811f74 100644 --- a/website/content/terminal/econometrics/load/_index.md +++ b/website/content/terminal/econometrics/load/_index.md @@ -2,10 +2,10 @@ usage: load [-f FILE [FILE ...]] [-ex] [-h] ``` -Load custom data set into a DataFrame. If a column exists titled "date", "time", "timestamp", "quarter" is +Load custom data set into a DataFrame. If a column exists titled "date", "time", "timestamp", "quarter" is automatically converted to a date format and is set as index of the DataFrame. -The load function also has the ability to load in custom datasets from Statsmodels. These datasets tend to be quite +The load function also has the ability to load in custom datasets from Statsmodels. These datasets tend to be quite illustrative for different regression techniques and statistical tests. See the example below for the available options. ``` @@ -18,10 +18,11 @@ optional arguments: ``` Example: + ``` -2022 Feb 28, 04:19 (✨) /econometrics/ $ load MSFT_20220221_140503.xlsx -a msft +2022 Feb 28, 04:19 (🦋) /econometrics/ $ load MSFT_20220221_140503.xlsx -a msft -2022 Feb 28, 04:20 (✨) /econometrics/ $ show msft +2022 Feb 28, 04:20 (🦋) /econometrics/ $ show msft msft ┏━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┓ ┃ ┃ date ┃ open ┃ high ┃ low ┃ close ┃ adj_close ┃ volume ┃ @@ -47,8 +48,9 @@ Example: │ 9 │ 2019-03-04 00:00:00 │ 113.02 │ 113.25 │ 110.80 │ 112.26 │ 108.79 │ 26608000 │ └───┴─────────────────────┴────────┴────────┴────────┴────────┴───────────┴──────────┘ ``` + ``` -2022 Feb 28, 04:16 (✨) /econometrics/ $ load -e +2022 Feb 28, 04:16 (🦋) /econometrics/ $ load -e Examples from Statsmodels ┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ file name ┃ description ┃ @@ -112,9 +114,9 @@ Example: │ wage_panel │ Veila and M. Verbeek (1998): Whose Wages Do Unions Raise? │ └────────────────────┴───────────────────────────────────────────────────────────┘ -2022 Feb 28, 04:17 (✨) /econometrics/ $ load grunfeld -a gf +2022 Feb 28, 04:17 (🦋) /econometrics/ $ load grunfeld -a gf -2022 Feb 28, 04:20 (✨) /econometrics/ $ desc -a gf +2022 Feb 28, 04:20 (🦋) /econometrics/ $ desc -a gf gf ┏━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓ ┃ ┃ invest ┃ value ┃ capital ┃ year ┃ diff --git a/website/content/terminal/econometrics/norm/_index.md b/website/content/terminal/econometrics/norm/_index.md index 85a36d617870..d58d26900535 100644 --- a/website/content/terminal/econometrics/norm/_index.md +++ b/website/content/terminal/econometrics/norm/_index.md @@ -17,9 +17,10 @@ optional arguments: ``` Example for stock data (which is not normally distributed): + ``` -2022 Feb 24, 05:31 (✨) /econometrics/ $ norm tsla.adj_close -p - Normality Test [Column: adj_close | Dataset: tsla] +2022 Feb 24, 05:31 (🦋) /econometrics/ $ norm tsla.adj_close -p + Normality Test [Column: adj_close | Dataset: tsla] ┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┓ ┃ ┃ Kurtosis ┃ Skewness ┃ Jarque-Bera ┃ Shapiro-Wilk ┃ Kolmogorov-Smirnov ┃ ┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━┩ @@ -31,11 +32,11 @@ Example for stock data (which is not normally distributed): ![histogram_adj_close_tsla](https://user-images.githubusercontent.com/46355364/155514663-90cb210a-002a-49fe-b7d3-29d9f2aeb5ac.png) - Example for returns (which is usually normally distributed): + ``` -2022 Feb 24, 05:36 (✨) /econometrics/ $ norm msft.return -p - Normality Test [Column: return | Dataset: msft] +2022 Feb 24, 05:36 (🦋) /econometrics/ $ norm msft.return -p + Normality Test [Column: return | Dataset: msft] ┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┓ ┃ ┃ Kurtosis ┃ Skewness ┃ Jarque-Bera ┃ Shapiro-Wilk ┃ Kolmogorov-Smirnov ┃ ┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━┩ @@ -46,4 +47,3 @@ Example for returns (which is usually normally distributed): ``` ![histogram_returns_msft](https://user-images.githubusercontent.com/46355364/155514702-f46da473-b340-4d68-b31e-f96606c4ed00.png) - diff --git a/website/content/terminal/econometrics/ols/_index.md b/website/content/terminal/econometrics/ols/_index.md index c0199c08ea85..11389f3ca073 100644 --- a/website/content/terminal/econometrics/ols/_index.md +++ b/website/content/terminal/econometrics/ols/_index.md @@ -18,9 +18,9 @@ optional arguments: Example (based on [Longley's Dataset](https://www.statsmodels.org/dev/datasets/generated/longley.html)): ``` -(✨) /econometrics/ $ load longley -a ll +(🦋) /econometrics/ $ load longley -a ll -(✨) /econometrics/ $ desc ll +(🦋) /econometrics/ $ desc ll ll ┏━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┓ ┃ ┃ totemp ┃ gnpdefl ┃ gnp ┃ unemp ┃ armed ┃ pop ┃ year ┃ @@ -42,7 +42,7 @@ Example (based on [Longley's Dataset](https://www.statsmodels.org/dev/datasets/g │ max │ 70551.00 │ 116.90 │ 554894.00 │ 4806.00 │ 3594.00 │ 130081.00 │ 1962.00 │ └───────┴──────────┴─────────┴───────────┴─────────┴─────────┴───────────┴─────────┘ -(✨) /econometrics/ $ ols -d ll.totemp -i ll.gnpdefl,ll.gnp,ll.unemp,ll.armed,ll.pop,ll.year +(🦋) /econometrics/ $ ols -d ll.totemp -i ll.gnpdefl,ll.gnp,ll.unemp,ll.armed,ll.pop,ll.year OLS Regression Results ======================================================================================= diff --git a/website/content/terminal/econometrics/panel/_index.md b/website/content/terminal/econometrics/panel/_index.md index bec8115dc97e..ecb015d83d6d 100644 --- a/website/content/terminal/econometrics/panel/_index.md +++ b/website/content/terminal/econometrics/panel/_index.md @@ -25,9 +25,9 @@ optional arguments: Below you can find examples of the dataset from Vella and M. Verbeek (1998), “Whose Wages Do Unions Raise? A Dynamic Model of Unionism and Wage Rate Determination for Young Men,” Journal of Applied Econometrics 13, 163-183. This is a well-known dataset also used within Chapter 14 of Introduction to Econometrics by Jeffrey Wooldridge. For these regressions, [LinearModels](https://bashtage.github.io/linearmodels/panel/examples/examples.html) is used. ``` -2022 Feb 25, 08:07 (✨) /econometrics/ $ load wage_panel -a wp +2022 Feb 25, 08:07 (🦋) /econometrics/ $ load wage_panel -a wp -2022 Feb 25, 08:08 (✨) /econometrics/ $ type +2022 Feb 25, 08:08 (🦋) /econometrics/ $ type wp ┏━━━━━━━━━━━━┳━━━━━━━━━━┓ ┃ columns ┃ dtypes ┃ @@ -57,11 +57,11 @@ Below you can find examples of the dataset from Vella and M. Verbeek (1998), “ │ occupation │ int64 │ └────────────┴──────────┘ -2022 Feb 25, 08:09 (✨) /econometrics/ $ index wp -i nr,year +2022 Feb 25, 08:09 (🦋) /econometrics/ $ index wp -i nr,year -2022 Feb 25, 08:10 (✨) /econometrics/ $ type wp.year --format category +2022 Feb 25, 08:10 (🦋) /econometrics/ $ type wp.year --format category -2022 Feb 25, 08:10 (✨) /econometrics/ $ show wp +2022 Feb 25, 08:10 (🦋) /econometrics/ $ show wp wp ┏━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ nr ┃ year ┃ black ┃ exper ┃ hisp ┃ hours ┃ married ┃ educ ┃ union ┃ lwage ┃ expersq ┃ occupation ┃ @@ -91,7 +91,7 @@ Below you can find examples of the dataset from Vella and M. Verbeek (1998), “ **Pooled OLS Estimation:** ``` -(✨) /econometrics/ $ panel -d wp.lwage -i wp.black,wp.hisp,wp.exper,wp.expersq,wp.married,wp.educ,wp.union,wp.year +(🦋) /econometrics/ $ panel -d wp.lwage -i wp.black,wp.hisp,wp.exper,wp.expersq,wp.married,wp.educ,wp.union,wp.year PooledOLS Estimation Summary ================================================================================ @@ -137,7 +137,7 @@ year_wp.1987 0.1738 0.0494 3.5165 0.0004 0.0769 0.2707 **Between OLS Estimation:** ``` -(✨) /econometrics/ $ panel -d wp.lwage -i wp.black,wp.hisp,wp.exper,wp.married,wp.educ,wp.union -r bols +(🦋) /econometrics/ $ panel -d wp.lwage -i wp.black,wp.hisp,wp.exper,wp.married,wp.educ,wp.union -r bols BetweenOLS Estimation Summary ================================================================================ @@ -175,7 +175,7 @@ union_wp 0.2587 0.0460 5.6214 0.0000 0.1683 0.3491 **Random Effects Estimation:** ``` -(✨) /econometrics/ $ panel -d wp.lwage -i wp.black,wp.hisp,wp.exper,wp.expersq,wp.married,wp.educ,wp.union,wp.year -r re +(🦋) /econometrics/ $ panel -d wp.lwage -i wp.black,wp.hisp,wp.exper,wp.expersq,wp.married,wp.educ,wp.union,wp.year -r re RandomEffects Estimation Summary ================================================================================ @@ -219,8 +219,9 @@ year_wp.1987 0.1348 0.0817 1.6504 0.0989 -0.0253 0.2950 ``` **Fixed Effects Estimation (no effects):** + ``` -(✨) /econometrics/ $ panel -d wp.lwage -i wp.expersq,wp.union,wp.married,wp.year -r fe +(🦋) /econometrics/ $ panel -d wp.lwage -i wp.expersq,wp.union,wp.married,wp.year -r fe PanelOLS Estimation Summary ================================================================================ @@ -262,7 +263,7 @@ year_wp.1987 0.5952 0.0396 15.026 0.0000 0.5176 0.6729 **Fixed Effects Estimation (entity effects):** ``` -(✨) /econometrics/ $ panel -d wp.lwage -i wp.expersq,wp.married,wp.union,wp.year -r fe -e +(🦋) /econometrics/ $ panel -d wp.lwage -i wp.expersq,wp.married,wp.union,wp.year -r fe -e PanelOLS Estimation Summary ================================================================================ @@ -308,8 +309,9 @@ Included effects: Entity ``` **Fixed Effects Estimation (time effects):** + ``` -(✨) /econometrics/ $ panel -d wp.lwage -i wp.expersq,wp.married,wp.union -r fe -t +(🦋) /econometrics/ $ panel -d wp.lwage -i wp.expersq,wp.married,wp.union -r fe -t PanelOLS Estimation Summary ================================================================================ @@ -348,8 +350,9 @@ Included effects: Time ``` **Fixed Effects Estimation (entity and time effects):** + ``` -(✨) /econometrics/ $ panel -d wp.lwage -i wp.expersq,wp.married,wp.union -r fe -t -e +(🦋) /econometrics/ $ panel -d wp.lwage -i wp.expersq,wp.married,wp.union -r fe -t -e PanelOLS Estimation Summary ================================================================================ @@ -390,7 +393,7 @@ Included effects: Entity, Time **First Difference OLS Estimation:** ``` -(✨) /econometrics/ $ panel -d wp.lwage -i wp.exper,wp.expersq,wp.married,wp.union -r fdols +(🦋) /econometrics/ $ panel -d wp.lwage -i wp.exper,wp.expersq,wp.married,wp.union -r fdols FirstDifferenceOLS Estimation Summary ================================================================================ diff --git a/website/content/terminal/econometrics/remove/_index.md b/website/content/terminal/econometrics/remove/_index.md index 6b776fca70b3..a8e1433d590c 100644 --- a/website/content/terminal/econometrics/remove/_index.md +++ b/website/content/terminal/econometrics/remove/_index.md @@ -11,6 +11,7 @@ optional arguments: ``` Example: + ``` -2022 Feb 24, 04:37 (✨) /econometrics/ $ remove thesis +2022 Feb 24, 04:37 (🦋) /econometrics/ $ remove thesis ``` diff --git a/website/content/terminal/econometrics/show/_index.md b/website/content/terminal/econometrics/show/_index.md index f1707d1cf468..ecdc08cd40ee 100644 --- a/website/content/terminal/econometrics/show/_index.md +++ b/website/content/terminal/econometrics/show/_index.md @@ -22,12 +22,13 @@ optional arguments: ``` Example: + ``` -2022 Mar 04, 05:57 (✨) /econometrics/ $ load longley -a ll +2022 Mar 04, 05:57 (🦋) /econometrics/ $ load longley -a ll -2022 Mar 04, 05:57 (✨) /econometrics/ $ index ll -i year -d +2022 Mar 04, 05:57 (🦋) /econometrics/ $ index ll -i year -d -2022 Mar 04, 05:57 (✨) /econometrics/ $ show ll -s unemp +2022 Mar 04, 05:57 (🦋) /econometrics/ $ show ll -s unemp Dataset ll | Showing 10 of 16 rows ┏━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┓ @@ -54,9 +55,9 @@ Example: │ 1955.0 │ 66019.00 │ 101.20 │ 397469.00 │ 2904.00 │ 3048.00 │ 117388.00 │ └────────┴──────────┴─────────┴───────────┴─────────┴─────────┴───────────┘ -2022 Mar 04, 05:57 (✨) /econometrics/ $ load wage_panel -a wp +2022 Mar 04, 05:57 (🦋) /econometrics/ $ load wage_panel -a wp -2022 Mar 04, 05:58 (✨) /econometrics/ $ show +2022 Mar 04, 05:58 (🦋) /econometrics/ $ show Dataset ll | Showing 10 of 16 rows ┏━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┓ ┃ ┃ totemp ┃ gnpdefl ┃ gnp ┃ unemp ┃ armed ┃ pop ┃ diff --git a/website/content/terminal/econometrics/type/_index.md b/website/content/terminal/econometrics/type/_index.md index e658f1db9779..5d4bfa4644a8 100644 --- a/website/content/terminal/econometrics/type/_index.md +++ b/website/content/terminal/econometrics/type/_index.md @@ -16,9 +16,9 @@ optional arguments: Example: ```txt -2022 Feb 28, 15:53 (✨) /econometrics/ $ load wage_panel -a wp +2022 Feb 28, 15:53 (🦋) /econometrics/ $ load wage_panel -a wp -2022 Feb 28, 15:53 (✨) /econometrics/ $ type +2022 Feb 28, 15:53 (🦋) /econometrics/ $ type wp ┏━━━━━━━━━━━━┳━━━━━━━━━┓ ┃ column ┃ dtype ┃ @@ -50,10 +50,10 @@ Example: ``` ```txt -2022 Feb 28, 15:54 (✨) /econometrics/ $ type wp.year --format category +2022 Feb 28, 15:54 (🦋) /econometrics/ $ type wp.year --format category Update 'wp.year' dataset with type 'category' -2022 Feb 28, 15:55 (✨) /econometrics/ $ type +2022 Feb 28, 15:55 (🦋) /econometrics/ $ type wp ┏━━━━━━━━━━━━┳━━━━━━━━━━┓ ┃ column ┃ dtype ┃ diff --git a/website/content/terminal/economy/fred/_index.md b/website/content/terminal/economy/fred/_index.md index fcf13475f945..48d04920c0dd 100644 --- a/website/content/terminal/economy/fred/_index.md +++ b/website/content/terminal/economy/fred/_index.md @@ -24,9 +24,10 @@ optional arguments: ``` Example: + ``` -2022 Mar 15, 07:08 (✨) /economy/ $ fred -q treasuries - Search results for treasuries +2022 Mar 15, 07:08 (🦋) /economy/ $ fred -q treasuries + Search results for treasuries ┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Series ID ┃ Title ┃ Description ┃ ┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -57,9 +58,9 @@ Example: │ │ │ center/data-chart-center/interest-rates/Pages/yieldmethod.aspx. │ └───────────┴─────────────────────────────────────────────────┴─────────────────────────────────────────────────────────────────────────────────────────────────────┘ ``` + ``` -2022 Mar 15, 07:09 (✨) /economy/ $ fred T10Y2Y,DFII10 -s 2019-01-01 -e 2022-01-01 +2022 Mar 15, 07:09 (🦋) /economy/ $ fred T10Y2Y,DFII10 -s 2019-01-01 -e 2022-01-01 ``` -![fred](https://user-images.githubusercontent.com/46355364/158575129-1d4b26de-8bd8-49b3-b1b9-e349afaf8a50.png) - +![fred](https://user-images.githubusercontent.com/46355364/158575129-1d4b26de-8bd8-49b3-b1b9-e349afaf8a50.png) diff --git a/website/content/terminal/economy/futures/_index.md b/website/content/terminal/economy/futures/_index.md index 84bac3ad5c48..cdeea3a2c776 100644 --- a/website/content/terminal/economy/futures/_index.md +++ b/website/content/terminal/economy/futures/_index.md @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Mar 15, 07:02 (✨) /economy/ $ futures +2022 Mar 15, 07:02 (🦋) /economy/ $ futures Futures/Commodities [Source: Wall St. Journal] ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┓ ┃ ┃ Price ┃ Chg ┃ %Chg ┃ @@ -44,7 +45,7 @@ Example: │ Bloomberg Commodity Index │ 121.16 │ -2.64 │ -2.13 │ └───────────────────────────┴─────────┴─────────┴───────┘ -2022 Mar 15, 07:03 (✨) /economy/ $ futures energy +2022 Mar 15, 07:03 (🦋) /economy/ $ futures energy Future Table [Source: FinViz] ┏━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ prevClose ┃ last ┃ change (%) ┃ @@ -62,7 +63,7 @@ Example: │ Crude Oil WTI │ 103.01 │ 97.14 │ -5.70 │ └─────────────────┴───────────┴────────┴────────────┘ -2022 Mar 15, 07:04 (✨) /economy/ $ futures metals +2022 Mar 15, 07:04 (🦋) /economy/ $ futures metals Future Table [Source: FinViz] ┏━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ prevClose ┃ last ┃ change (%) ┃ @@ -78,7 +79,7 @@ Example: │ Gold │ 1960.80 │ 1930.30 │ -1.56 │ └───────────┴───────────┴─────────┴────────────┘ -2022 Mar 15, 07:04 (✨) /economy/ $ futures meats +2022 Mar 15, 07:04 (🦋) /economy/ $ futures meats Future Table [Source: FinViz] ┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ prevClose ┃ last ┃ change (%) ┃ @@ -90,7 +91,7 @@ Example: │ Feeder Cattle │ 157.97 │ 162.43 │ 2.82 │ └───────────────┴───────────┴────────┴────────────┘ -2022 Mar 15, 07:04 (✨) /economy/ $ futures grains +2022 Mar 15, 07:04 (🦋) /economy/ $ futures grains Future Table [Source: FinViz] ┏━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ prevClose ┃ last ┃ change (%) ┃ @@ -112,7 +113,7 @@ Example: │ Canola │ 1139.10 │ 1113.40 │ -2.26 │ └──────────────┴───────────┴─────────┴────────────┘ -2022 Mar 15, 07:04 (✨) /economy/ $ futures softs +2022 Mar 15, 07:04 (🦋) /economy/ $ futures softs Future Table [Source: FinViz] ┏━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ prevClose ┃ last ┃ change (%) ┃ diff --git a/website/content/terminal/economy/index/_index.md b/website/content/terminal/economy/index/_index.md index d2f4b1490a5b..861612c39acf 100644 --- a/website/content/terminal/economy/index/_index.md +++ b/website/content/terminal/economy/index/_index.md @@ -32,19 +32,22 @@ optional arguments: ``` Example: + ``` -2022 Mar 15, 07:29 (✨) /economy/ $ index nasdaq,dowjones +2022 Mar 15, 07:29 (🦋) /economy/ $ index nasdaq,dowjones ``` + ![index nasdaq dowjones](https://user-images.githubusercontent.com/46355364/158573612-f2e4b04c-b833-4899-9817-62e40b9fe1d2.png) ``` -2022 Mar 15, 07:29 (✨) /economy/ $ index vix +2022 Mar 15, 07:29 (🦋) /economy/ $ index vix ``` + ![index vix](https://user-images.githubusercontent.com/46355364/158573676-9871c58e-3ffd-44d5-888a-c1d76ec98251.png) ``` -2022 Mar 15, 07:30 (✨) /economy/ $ index --show - Major Indices +2022 Mar 15, 07:30 (🦋) /economy/ $ index --show + Major Indices ┏━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓ ┃ Argument ┃ Name ┃ Ticker ┃ ┡━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩ diff --git a/website/content/terminal/economy/macro/_index.md b/website/content/terminal/economy/macro/_index.md index acef2757b694..2c4bad8b8b3b 100644 --- a/website/content/terminal/economy/macro/_index.md +++ b/website/content/terminal/economy/macro/_index.md @@ -29,23 +29,27 @@ optional arguments: ``` Example: + ``` -2022 Mar 15, 07:20 (✨) /economy/ $ macro -p CONF -c netherlands,germany,france -s 2005-01-01 -e 2022-01-01 +2022 Mar 15, 07:20 (🦋) /economy/ $ macro -p CONF -c netherlands,germany,france -s 2005-01-01 -e 2022-01-01 ``` + ![macro conf netherlands germany france](https://user-images.githubusercontent.com/46355364/159249787-a030cd2c-0b29-4522-a1a9-db0245d55d9f.png) ``` -2022 Mar 15, 07:22 (✨) /economy/ $ macro -p OILPROD -c canada,united_states -s 2004-01-01 +2022 Mar 15, 07:22 (🦋) /economy/ $ macro -p OILPROD -c canada,united_states -s 2004-01-01 ``` + ![oil production macro](https://user-images.githubusercontent.com/46355364/159251277-9381cc0a-7efe-41ce-af93-41d832103a1e.png) ``` -2022 Mar 21, 07:33 (✨) /economy/ $ macro -p GDP,PRC,PUC -c argentina -cc USD +2022 Mar 21, 07:33 (🦋) /economy/ $ macro -p GDP,PRC,PUC -c argentina -cc USD ``` + ![argentina gross domestic product in dollars](https://user-images.githubusercontent.com/46355364/159253210-c7135b12-b04a-49e4-8896-d03e4c25f520.png) ``` -2022 Mar 21, 07:10 (✨) /economy/ $ macro -sp +2022 Mar 21, 07:10 (🦋) /economy/ $ macro -sp ┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Parameter ┃ Name ┃ Period ┃ Description ┃ ┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -124,8 +128,9 @@ Example: │ POP │ Population │ Monthly │ The population of a country. This can be in thousands or, when relatively small, in actual units. │ └───────────┴─────────────────────────────────────────────────────┴───────────┴─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘ ``` + ``` -2022 Mar 15, 07:12 (✨) /economy/ $ macro -sc +2022 Mar 15, 07:12 (🦋) /economy/ $ macro -sc ┏━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓ ┃ Country ┃ Currency ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩ diff --git a/website/content/terminal/economy/options/_index.md b/website/content/terminal/economy/options/_index.md index 8f2022dc7956..dd27d54e6298 100644 --- a/website/content/terminal/economy/options/_index.md +++ b/website/content/terminal/economy/options/_index.md @@ -16,13 +16,14 @@ optional arguments: ``` Example: + ``` -2022 Mar 16, 13:20 (✨) /economy/ $ treasury -m 3y 5y -st -2022 Mar 16, 13:20 (✨) /economy/ $ index vix sp500 dowjones -st -2022 Mar 16, 13:20 (✨) /economy/ $ macro -p RGDP GDP -c Netherlands Germany -st -2022 Mar 16, 13:21 (✨) /economy/ $ fred T10Y2y T10Y2YM -st -2022 Mar 16, 13:20 (✨) /economy/ $ options - Options available to plot +2022 Mar 16, 13:20 (🦋) /economy/ $ treasury -m 3y 5y -st +2022 Mar 16, 13:20 (🦋) /economy/ $ index vix sp500 dowjones -st +2022 Mar 16, 13:20 (🦋) /economy/ $ macro -p RGDP GDP -c Netherlands Germany -st +2022 Mar 16, 13:21 (🦋) /economy/ $ fred T10Y2y T10Y2YM -st +2022 Mar 16, 13:20 (🦋) /economy/ $ options + Options available to plot ┏━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Command ┃ Options ┃ ┡━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ @@ -34,4 +35,4 @@ Example: ├──────────┼──────────────────────────────────────────────────────────────┤ │ fred │ T10Y2y, T10Y2YM │ └──────────┴──────────────────────────────────────────────────────────────┘ -``` \ No newline at end of file +``` diff --git a/website/content/terminal/economy/overview/_index.md b/website/content/terminal/economy/overview/_index.md index 2cd1da737042..4223624b1804 100644 --- a/website/content/terminal/economy/overview/_index.md +++ b/website/content/terminal/economy/overview/_index.md @@ -14,9 +14,10 @@ optional arguments: ``` Example: + ``` -2022 Mar 15, 06:59 (✨) /economy/ $ overview - Market Overview +2022 Mar 15, 06:59 (🦋) /economy/ $ overview + Market Overview ┏━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┓ ┃ ┃ Price ┃ Chg ┃ %Chg ┃ ┡━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━┩ @@ -39,8 +40,8 @@ Example: │ Euro │ 1.0996 │ 0.0055 │ 0.50 │ └───────────────────┴──────────┴─────────┴───────┘ -2022 Mar 15, 07:00 (✨) /economy/ $ overview indices - US Indices +2022 Mar 15, 07:00 (🦋) /economy/ $ overview indices + US Indices ┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┓ ┃ ┃ Price ┃ Chg ┃ %Chg ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━┩ @@ -65,8 +66,8 @@ Example: │ S&P 500 Futures │ 4160.25 │ -3.25 │ -0.08 │ └───────────────────────┴──────────┴─────────┴───────┘ -2022 Mar 15, 07:00 (✨) /economy/ $ overview usbonds -ov US Bonds +2022 Mar 15, 07:00 (🦋) /economy/ $ overview usbonds +ov US Bonds ┏━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━┓ ┃ ┃ Rate (%) ┃ Yld (%) ┃ Yld Chg (%) ┃ ┡━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━┩ @@ -91,8 +92,8 @@ ov US Bonds │ 1-Month Bill │ 0.00 │ 0.200 │ -0.007 │ └──────────────┴──────────┴─────────┴─────────────┘ -2022 Mar 15, 07:00 (✨) /economy/ $ overview glbonds - Global Bonds +2022 Mar 15, 07:00 (🦋) /economy/ $ overview glbonds + Global Bonds ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━┓ ┃ ┃ Rate (%) ┃ Yld (%) ┃ Yld Chg (%) ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━┩ @@ -109,8 +110,8 @@ ov US Bonds │ China 10 Year Government Bond │ 2.890 │ 2.846 │ 0.055 │ └───────────────────────────────────┴──────────┴─────────┴─────────────┘ -2022 Mar 15, 07:00 (✨) /economy/ $ overview currencies - Currencies +2022 Mar 15, 07:00 (🦋) /economy/ $ overview currencies + Currencies ┏━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┓ ┃ ┃ Last ┃ Chng ┃ %Chng ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━┩ diff --git a/website/content/terminal/economy/performance/_index.md b/website/content/terminal/economy/performance/_index.md index dd94a49db50d..e364555634df 100644 --- a/website/content/terminal/economy/performance/_index.md +++ b/website/content/terminal/economy/performance/_index.md @@ -21,7 +21,7 @@ optional arguments: Example: ``` -2022 Feb 15, 05:25 (✨) /economy/ $ performance +2022 Feb 15, 05:25 (🦋) /economy/ $ performance Group Performance Data ┌────────────────────────┬───────┬───────┬────────┬────────┬───────┬───────┬───────┬────────────────┬───────────┬────────┬─────────────┐ │ Name │ Week │ Month │ 3Month │ 6Month │ 1Year │ YTD │ Recom │ AvgVolume [1M] │ RelVolume │ Change │ Volume [1M] │ diff --git a/website/content/terminal/economy/plot/_index.md b/website/content/terminal/economy/plot/_index.md index d8bbf604523c..7c77a0589a44 100644 --- a/website/content/terminal/economy/plot/_index.md +++ b/website/content/terminal/economy/plot/_index.md @@ -18,24 +18,28 @@ optional arguments: ``` Comparing Unemployment Rates and Consumer Confidence of France and Italy + ``` -2022 Mar 15, 07:43 (✨) /economy/ $ macro -p URATE CONF -c france,italy -s 2005-01-01 -st -2022 Mar 15, 07:45 (✨) /economy/ $ options - Options available to plot +2022 Mar 15, 07:43 (🦋) /economy/ $ macro -p URATE CONF -c france,italy -s 2005-01-01 -st +2022 Mar 15, 07:45 (🦋) /economy/ $ options + Options available to plot ┏━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Command ┃ Options ┃ ┡━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ │ macro │ France_URATE, France_CONF, Italy_URATE, Italy_CONF │ └─────────┴────────────────────────────────────────────────────┘ -2022 Mar 15, 07:43 (✨) /economy/ $ plot -y1 France_URATE,Italy_URATE -y2 France_CONF,Italy_CONF +2022 Mar 15, 07:43 (🦋) /economy/ $ plot -y1 France_URATE,Italy_URATE -y2 France_CONF,Italy_CONF ``` + ![Figure_1](https://user-images.githubusercontent.com/46355364/158633367-783d54eb-79ab-443f-af99-8a9ecadf5949.png) Comparing U.S. treasury rate movements to the S&P 500 + ``` -2022 Mar 15, 07:39 (✨) /economy/ $ treasury -m 1y 10y -s 2005-01-01 -st -2022 Mar 15, 07:40 (✨) /economy/ $ index sp500 -s 2005-01-01 -st -2022 Mar 15, 07:40 (✨) /economy/ $ plot -y1 sp500 -y2 Nominal_1-year,Nominal_10-year +2022 Mar 15, 07:39 (🦋) /economy/ $ treasury -m 1y 10y -s 2005-01-01 -st +2022 Mar 15, 07:40 (🦋) /economy/ $ index sp500 -s 2005-01-01 -st +2022 Mar 15, 07:40 (🦋) /economy/ $ plot -y1 sp500 -y2 Nominal_1-year,Nominal_10-year ``` + ![Figure_2](https://user-images.githubusercontent.com/46355364/158633394-d948d909-d39b-4b05-9c5b-2e30b202cc32.png) diff --git a/website/content/terminal/economy/treasury/_index.md b/website/content/terminal/economy/treasury/_index.md index 4efb0d2affe6..ad0de4fa1112 100644 --- a/website/content/terminal/economy/treasury/_index.md +++ b/website/content/terminal/economy/treasury/_index.md @@ -30,8 +30,9 @@ optional arguments: ``` Example: + ``` -2022 Mar 15, 07:33 (✨) /economy/ $ treasury -sm +2022 Mar 15, 07:33 (🦋) /economy/ $ treasury -sm Maturity options per instrument ┏━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Instrument ┃ Maturities ┃ @@ -47,13 +48,13 @@ Example: ``` ```txt -2022 Mar 15, 07:33 (✨) /economy/ $ treasury -m 1y,3y,5y,10y,30y +2022 Mar 15, 07:33 (🦋) /economy/ $ treasury -m 1y,3y,5y,10y,30y ``` ![3y 5y 10y 30y nominal](https://user-images.githubusercontent.com/46355364/158575884-8ec4e1dc-fb5b-4440-be4b-5e1dcd6d2a5e.png) ```txt -2022 Mar 15, 07:35 (✨) /economy/ $ treasury -m 5y -t nominal,inflation,average -s 2005-01-01 +2022 Mar 15, 07:35 (🦋) /economy/ $ treasury -m 5y -t nominal,inflation,average -s 2005-01-01 ``` ![5y nominal inflation average](https://user-images.githubusercontent.com/46355364/158575921-ff7c387c-8eb6-4716-80c4-f4c5121633f2.png) diff --git a/website/content/terminal/economy/valuation/_index.md b/website/content/terminal/economy/valuation/_index.md index 227c128ad7f2..631724677da8 100644 --- a/website/content/terminal/economy/valuation/_index.md +++ b/website/content/terminal/economy/valuation/_index.md @@ -21,7 +21,7 @@ optional arguments: Example: ``` -2022 Feb 15, 05:44 (✨) /economy/ $ valuation +2022 Feb 15, 05:44 (🦋) /economy/ $ valuation Group Valuation Data ┌────────────────────────┬───────────┬───────┬────────┬──────┬──────┬──────┬───────┬───────┬───────────┬───────────┬─────────────┬────────┬─────────────┐ │ Name │ MarketCap │ P/E │ FwdP/E │ PEG │ P/S │ P/B │ P/C │ P/FCF │ EPSpast5Y │ EPSnext5Y │ Salespast5Y │ Change │ Volume [1M] │ diff --git a/website/content/terminal/etf/compare/_index.md b/website/content/terminal/etf/compare/_index.md index 63ed0aa82b75..d7ac835879c5 100644 --- a/website/content/terminal/etf/compare/_index.md +++ b/website/content/terminal/etf/compare/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 04:24 (✨) /etf/ $ compare VOO,SPY +2022 Feb 15, 04:24 (🦋) /etf/ $ compare VOO,SPY ETF Comparisons ┌────────────────┬────────────┬─────────────┐ │ │ VOO │ SPY │ diff --git a/website/content/terminal/etf/disc/active/_index.md b/website/content/terminal/etf/disc/active/_index.md index 1e51a3ad63b2..38c381470f58 100644 --- a/website/content/terminal/etf/disc/active/_index.md +++ b/website/content/terminal/etf/disc/active/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 04:26 (✨) /etf/disc/ $ active +2022 Feb 15, 04:26 (🦋) /etf/disc/ $ active ETF Movers ┌───────────────────────────────────────────────────┬────────┬───────┬───────┬────────┐ │ │ Price │ Chg │ %Chg │ Vol │ diff --git a/website/content/terminal/etf/disc/decliners/_index.md b/website/content/terminal/etf/disc/decliners/_index.md index e0c410d83b17..e8e5669cc4ca 100644 --- a/website/content/terminal/etf/disc/decliners/_index.md +++ b/website/content/terminal/etf/disc/decliners/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 04:26 (✨) /etf/disc/ $ decliners +2022 Feb 15, 04:26 (🦋) /etf/disc/ $ decliners ETF Movers ┌──────────────────────────────────────────────────────────┬────────┬────────┬───────┬────────┐ │ │ Price │ Chg │ %Chg │ Vol │ diff --git a/website/content/terminal/etf/disc/gainers/_index.md b/website/content/terminal/etf/disc/gainers/_index.md index 80b3d48f30c1..dd208f8a689f 100644 --- a/website/content/terminal/etf/disc/gainers/_index.md +++ b/website/content/terminal/etf/disc/gainers/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 04:25 (✨) /etf/disc/ $ gainers +2022 Feb 15, 04:25 (🦋) /etf/disc/ $ gainers ETF Movers ┌─────────────────────────────────────────────────────────────┬───────┬──────┬──────┬────────┐ │ │ Price │ Chg │ %Chg │ Vol │ diff --git a/website/content/terminal/etf/overview/_index.md b/website/content/terminal/etf/overview/_index.md index 5eb7a90f10c6..01a58bc4eac6 100644 --- a/website/content/terminal/etf/overview/_index.md +++ b/website/content/terminal/etf/overview/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 04:14 (✨) /etf/ $ overview +2022 Feb 15, 04:14 (🦋) /etf/ $ overview ETF Overview Information ┌────────────────┬────────────┐ │ │ VOO │ diff --git a/website/content/terminal/etf/scr/sbc/_index.md b/website/content/terminal/etf/scr/sbc/_index.md index 7ce465eed005..2d3c48ecf75d 100644 --- a/website/content/terminal/etf/scr/sbc/_index.md +++ b/website/content/terminal/etf/scr/sbc/_index.md @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 04:30 (✨) /etf/scr/ $ sbc Communications +2022 Feb 15, 04:30 (🦋) /etf/scr/ $ sbc Communications ETFs by Category and Total Assets ┌──────┬───────────────────────────────────────────────────────┬───────────────────────────────────┬────────────────┬──────────────────┐ │ │ Name │ Family │ Category │ Total Assets [M] │ diff --git a/website/content/terminal/etf/scr/screen/_index.md b/website/content/terminal/etf/scr/screen/_index.md index 6e08dc0a79c4..894bd63e8188 100644 --- a/website/content/terminal/etf/scr/screen/_index.md +++ b/website/content/terminal/etf/scr/screen/_index.md @@ -19,8 +19,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 04:31 (✨) /etf/scr/ $ screen -s Assets +2022 Feb 15, 04:31 (🦋) /etf/scr/ $ screen -s Assets Display Screener Output ┌──────┬───────────┬────────┬─────────┬───────┬───────────┬──────┬──────────┬──────────────┬────────┬───────────┬────────┬────────┬──────┬──────────┐ │ │ Assets │ NAV │ Expense │ PE │ SharesOut │ Div │ DivYield │ Volume │ Open │ PrevClose │ YrLow │ YrHigh │ Beta │ N_Hold │ diff --git a/website/content/terminal/etf/search/_index.md b/website/content/terminal/etf/search/_index.md index 83e78be9fac5..46bb37c998f6 100644 --- a/website/content/terminal/etf/search/_index.md +++ b/website/content/terminal/etf/search/_index.md @@ -20,7 +20,7 @@ optional arguments: Sample output: ``` -2022 Jan 18, 23:49 (✨) /etf/ $ search -n energy -l 10 +2022 Jan 18, 23:49 (🦋) /etf/ $ search -n energy -l 10 ╒══════╤═══════════════════════════════════════════════════════╤═══════════════════════════════════╤════════════════════════════╤════════════════════╕ │ │ Name │ Family │ Category │ Total Assets [M] │ ╞══════╪═══════════════════════════════════════════════════════╪═══════════════════════════════════╪════════════════════════════╪════════════════════╡ @@ -46,9 +46,8 @@ Sample output: ╘══════╧═══════════════════════════════════════════════════════╧═══════════════════════════════════╧════════════════════════════╧════════════════════╛ ``` - ``` -2022 Jan 18, 23:52 (✨) /etf/ $ search -d 3X -l 10 +2022 Jan 18, 23:52 (🦋) /etf/ $ search -d 3X -l 10 ╒══════╤═════════════════════════════════════════════════════╤══════════════╤═══════════════════════════╤════════════════════╕ │ │ Name │ Family │ Category │ Total Assets [M] │ ╞══════╪═════════════════════════════════════════════════════╪══════════════╪═══════════════════════════╪════════════════════╡ diff --git a/website/content/terminal/forex/quote/_index.md b/website/content/terminal/forex/quote/_index.md index 1260c33b5d23..f321162e5bb3 100644 --- a/website/content/terminal/forex/quote/_index.md +++ b/website/content/terminal/forex/quote/_index.md @@ -10,7 +10,7 @@ optional arguments: ``` ``` -2022 Feb 15, 04:06 (✨) /forex/ $ quote +2022 Feb 15, 04:06 (🦋) /forex/ $ quote Quote for AUD/CHF diff --git a/website/content/terminal/forex/select/_index.md b/website/content/terminal/forex/select/_index.md index af092e4d0fe9..2a3166a5bd71 100644 --- a/website/content/terminal/forex/select/_index.md +++ b/website/content/terminal/forex/select/_index.md @@ -12,7 +12,7 @@ optional arguments: From currency (default: None) -h, --help show this help message (default: False) ``` - + ``` usage: to [-n TO_SYMBOL] [-h] ``` @@ -27,14 +27,15 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 04:10 (✨) /forex/ $ from USD +2022 Feb 15, 04:10 (🦋) /forex/ $ from USD Selected pair From: USD To: USD -2022 Feb 15, 04:10 (✨) /forex/ $ to EUR +2022 Feb 15, 04:10 (🦋) /forex/ $ to EUR Selected pair From: USD diff --git a/website/content/terminal/portfolio/bro/ally/movers/_index.md b/website/content/terminal/portfolio/bro/ally/movers/_index.md index 450a04f44b08..de2f47d2fd5b 100644 --- a/website/content/terminal/portfolio/bro/ally/movers/_index.md +++ b/website/content/terminal/portfolio/bro/ally/movers/_index.md @@ -2,7 +2,9 @@ usage: ally_movers [-l {toplosers,toppctlosers,topvolume,topactive,topgainers,toppctgainers}] [-e {A,N,Q,U,V}] [-n NUM] [--export {csv,json,xlsx}] [-h] ``` + Get stock movers + ``` optional arguments: -l {toplosers,toppctlosers,topvolume,topactive,topgainers,toppctgainers}, --list {toplosers,toppctlosers,topvolume,topactive,topgainers,toppctgainers} @@ -15,9 +17,11 @@ optional arguments: Export dataframe data to csv,json,xlsx file (default: ) -h, --help show this help message (default: False) ``` + Sample Output: + ``` -(✨) (bro)>(ally)> movers -n 5 -l toplosers +(🦋) (bro)>(ally)> movers -n 5 -l toplosers ╒══════╤════════╤════════════╤═════════╤═══════════════════════╤════════╤═════════╤════════╤═════════╕ │ │ chg │ chg_sign │ last │ name │ pchg │ pcls │ rank │ vl │ ╞══════╪════════╪════════════╪═════════╪═══════════════════════╪════════╪═════════╪════════╪═════════╡ diff --git a/website/content/terminal/portfolio/bro/ally/quote/_index.md b/website/content/terminal/portfolio/bro/ally/quote/_index.md index e3882aa44dfc..faf095b04dae 100644 --- a/website/content/terminal/portfolio/bro/ally/quote/_index.md +++ b/website/content/terminal/portfolio/bro/ally/quote/_index.md @@ -1,16 +1,20 @@ ``` usage: quote [-t TICKER] [-h] ``` + Get stock quote + ``` optional arguments: -t TICKER, --ticker TICKER Ticker to get quote for. Can be in form of 'tick1,tick2...' (default: None) -h, --help show this help message (default: False) ``` + Sample Usage: + ``` -(✨) (bro)>(ally)> quote -t amc,gme,msft,aapl +(🦋) (bro)>(ally)> quote -t amc,gme,msft,aapl ╒══════╤════════╤════════╤═══════╤════════════════╤════════╤════════╤═════════════╕ │ │ ask │ bid │ chg │ dollar_value │ last │ opn │ vl │ ╞══════╪════════╪════════╪═══════╪════════════════╪════════╪════════╪═════════════╡ diff --git a/website/content/terminal/portfolio/bro/coinbase/account/_index.md b/website/content/terminal/portfolio/bro/coinbase/account/_index.md index d7901186c695..f9fb77bca733 100644 --- a/website/content/terminal/portfolio/bro/coinbase/account/_index.md +++ b/website/content/terminal/portfolio/bro/coinbase/account/_index.md @@ -1,7 +1,9 @@ ``` usage: account [--all] [-c CURRENCY] [--export {csv,json,xlsx}] [-h] ``` + Display info about your trading accounts on Coinbase + ``` optional arguments: --all Flag to display all your account (default: False) @@ -13,8 +15,9 @@ optional arguments: ``` Sample Usage: + ``` -(✨) (bro)>(cb)> account +(🦋) (bro)>(cb)> account ╒════════════╤═════════════╤═════════════╤════════════╤═════════════════════╕ │ currency │ balance │ available │ hold │ BalanceValue(USD) │ ╞════════════╪═════════════╪═════════════╪════════════╪═════════════════════╡ @@ -23,5 +26,5 @@ Sample Usage: │ ATOM │ 0.00085600 │ 0.00085600 │ 0.00000000 │ 0.03 │ ├────────────┼─────────────┼─────────────┼────────────┼─────────────────────┤ │ BTC │ 0.00043358 │ 0.00043358 │ 0.00000000 │ 18.16 │ -╘════════════╧═════════════╧═════════════╧════════════╧═════════════════════╛ +╘════════════╧═════════════╧═════════════╧════════════╧═════════════════════╛ ``` diff --git a/website/content/terminal/portfolio/es/_index.md b/website/content/terminal/portfolio/es/_index.md index b4c9c8006825..e7c8989c7163 100644 --- a/website/content/terminal/portfolio/es/_index.md +++ b/website/content/terminal/portfolio/es/_index.md @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 25, 03:09 (✨) /portfolio/ $ es +2022 Feb 25, 03:09 (🦋) /portfolio/ $ es Portfolio Expected Shortfall ┏━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ ┃ ES: ┃ Historical ES: ┃ diff --git a/website/content/terminal/portfolio/var/_index.md b/website/content/terminal/portfolio/var/_index.md index e4a270cc1db7..6eb8293ba19b 100644 --- a/website/content/terminal/portfolio/var/_index.md +++ b/website/content/terminal/portfolio/var/_index.md @@ -3,6 +3,7 @@ usage: var [-m] [-a] [-s] [-p PERCENTILE] [-h] ``` Provides value at risk (short: VaR) of the selected portfolio. + ``` optional arguments: -m, --mean If one should use the mean of the portfolio return (default: False) @@ -14,9 +15,11 @@ optional arguments: (default: 99.9) -h, --help show this help message (default: False) ``` + Example: + ``` -2022 Feb 25, 03:09 (✨) /portfolio/ $ var +2022 Feb 25, 03:09 (🦋) /portfolio/ $ var Portfolio Value at Risk ┏━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓ ┃ ┃ VaR: ┃ Historical VaR: ┃ diff --git a/website/content/terminal/common/qa/_index.md b/website/content/terminal/qa/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/_index.md rename to website/content/terminal/qa/_index.md diff --git a/website/content/terminal/common/qa/acf/_index.md b/website/content/terminal/qa/acf/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/acf/_index.md rename to website/content/terminal/qa/acf/_index.md diff --git a/website/content/terminal/common/qa/beta/_index.md b/website/content/terminal/qa/beta/_index.md similarity index 100% rename from website/content/terminal/common/qa/beta/_index.md rename to website/content/terminal/qa/beta/_index.md diff --git a/website/content/terminal/common/qa/bw/_index.md b/website/content/terminal/qa/bw/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/bw/_index.md rename to website/content/terminal/qa/bw/_index.md diff --git a/website/content/terminal/common/qa/capm/_index.md b/website/content/terminal/qa/capm/_index.md similarity index 83% rename from website/content/terminal/common/qa/capm/_index.md rename to website/content/terminal/qa/capm/_index.md index 10f1e0438b7d..3d453abf3ed2 100644 --- a/website/content/terminal/common/qa/capm/_index.md +++ b/website/content/terminal/qa/capm/_index.md @@ -10,8 +10,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:01 (✨) /stocks/qa/ $ load tsla +2022 Feb 16, 11:01 (🦋) /stocks/qa/ $ load tsla Loading Daily TSLA stock with starting period 2019-02-11 for analysis. @@ -21,7 +22,7 @@ Currency: USD Market: CLOSED -2022 Feb 16, 11:02 (✨) /stocks/qa/ $ capm +2022 Feb 16, 11:02 (🦋) /stocks/qa/ $ capm Beta: 2.02 Systematic Risk: 23.09% Unsystematic Risk: 76.91% diff --git a/website/content/terminal/common/qa/cdf/_index.md b/website/content/terminal/qa/cdf/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/cdf/_index.md rename to website/content/terminal/qa/cdf/_index.md diff --git a/website/content/terminal/common/qa/cusum/_index.md b/website/content/terminal/qa/cusum/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/cusum/_index.md rename to website/content/terminal/qa/cusum/_index.md diff --git a/website/content/terminal/common/qa/decompose/_index.md b/website/content/terminal/qa/decompose/_index.md old mode 100755 new mode 100644 similarity index 82% rename from website/content/terminal/common/qa/decompose/_index.md rename to website/content/terminal/qa/decompose/_index.md index 9900aa35be03..09f42a72fd6b --- a/website/content/terminal/common/qa/decompose/_index.md +++ b/website/content/terminal/qa/decompose/_index.md @@ -2,14 +2,15 @@ usage: decompose [-m] [--export {csv,json,xlsx}] [-h] ``` -This type of forecasting attempts to separate and index factors thought to have meaningful impact on the otherwise random movements in stock prices. +This type of forecasting attempts to separate and index factors thought to have meaningful impact on the otherwise random movements in stock prices. Decompose time series as: + - Additive Time Series = Level + CyclicTrend + Residual + Seasonality -- Multiplicative Time Series = Level * CyclicTrend * +- Multiplicative Time Series = Level *CyclicTrend* Residual * Seasonality -For a detailed research paper discussing analysis of the Indian Auto Sector, download the PDF here: https://www.researchgate.net/publication/290263806_Decomposition_of_Time_Series_Data_of_Stock_Markets_and_its_Implications_for_Prediction_-_An_Application_for_the_Indian_Auto_Sector +For a detailed research paper discussing analysis of the Indian Auto Sector, download the PDF here: "This will help in stock selection in the following ways. First, it will indicate the overall trend of the sector, hence the stock price, and help in taking a position. Second, if seasonality patterns can be seen, then during which month which sector and hence which stock should be a good buy, can be inferred. Third, the random component will throw some light on the volatility pattern of the sector and hence the stock. This decomposition will indicate which of the three components are stronger and can shed further light on the efficient market hypothesis. The decomposition will bring out the overall macroeconomic characteristic of a sector, which affects the fundamentals of a company." @@ -22,8 +23,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:06 (✨) /stocks/qa/ $ decompose +2022 Feb 16, 11:06 (🦋) /stocks/qa/ $ decompose Time-Series Level is 2660.84 Strength of Trend: 0.0000 @@ -31,6 +33,3 @@ Strength of Seasonality: 0.0032 ``` ![decompose](https://user-images.githubusercontent.com/46355364/154306626-1c5ad11e-a2e9-4107-9aec-5cf18da5358e.png) - - - diff --git a/website/content/terminal/common/qa/es/_index.md b/website/content/terminal/qa/es/_index.md similarity index 97% rename from website/content/terminal/common/qa/es/_index.md rename to website/content/terminal/qa/es/_index.md index 1c83f4003668..be162ea3bce7 100644 --- a/website/content/terminal/common/qa/es/_index.md +++ b/website/content/terminal/qa/es/_index.md @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 25, 06:50 (✨) /stocks/qa/ $ es +2022 Feb 25, 06:50 (🦋) /stocks/qa/ $ es TSLA Expected Shortfall ┏━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ ┃ ES: ┃ Historical ES: ┃ diff --git a/website/content/terminal/common/qa/hist/_index.md b/website/content/terminal/qa/hist/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/hist/_index.md rename to website/content/terminal/qa/hist/_index.md diff --git a/website/content/terminal/common/qa/kurtosis/_index.md b/website/content/terminal/qa/kurtosis/_index.md similarity index 100% rename from website/content/terminal/common/qa/kurtosis/_index.md rename to website/content/terminal/qa/kurtosis/_index.md diff --git a/website/content/terminal/common/qa/line/_index.md b/website/content/terminal/qa/line/_index.md similarity index 100% rename from website/content/terminal/common/qa/line/_index.md rename to website/content/terminal/qa/line/_index.md diff --git a/website/content/terminal/common/qa/load/_index.md b/website/content/terminal/qa/load/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/load/_index.md rename to website/content/terminal/qa/load/_index.md diff --git a/website/content/terminal/common/qa/normality/_index.md b/website/content/terminal/qa/normality/_index.md old mode 100755 new mode 100644 similarity index 92% rename from website/content/terminal/common/qa/normality/_index.md rename to website/content/terminal/qa/normality/_index.md index 3c0cd92e9314..56d641ad82b7 --- a/website/content/terminal/common/qa/normality/_index.md +++ b/website/content/terminal/qa/normality/_index.md @@ -4,7 +4,7 @@ usage: normality [--export {csv,json,xlsx}] [-h] Normality tests -To learn more about this subject, visit the Wiki page: https://en.wikipedia.org/wiki/Normality_test +To learn more about this subject, visit the Wiki page: A 2011 study concludes that Shapiro–Wilk has the best power for a given significance, followed closely by Anderson–Darling when comparing the Shapiro–Wilk, Kolmogorov–Smirnov, Lilliefors, and Anderson–Darling tests. @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:11 (✨) /stocks/qa/ $ normality +2022 Feb 16, 11:11 (🦋) /stocks/qa/ $ normality Normality Statistics ┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┓ ┃ ┃ Statistic ┃ p-value ┃ diff --git a/website/content/terminal/common/qa/om/_index.md b/website/content/terminal/qa/om/_index.md similarity index 100% rename from website/content/terminal/common/qa/om/_index.md rename to website/content/terminal/qa/om/_index.md diff --git a/website/content/terminal/common/qa/pick/_index.md b/website/content/terminal/qa/pick/_index.md old mode 100755 new mode 100644 similarity index 85% rename from website/content/terminal/common/qa/pick/_index.md rename to website/content/terminal/qa/pick/_index.md index 8b68f569825e..352d3bb1886b --- a/website/content/terminal/common/qa/pick/_index.md +++ b/website/content/terminal/qa/pick/_index.md @@ -1,6 +1,7 @@ ```text usage: pick [-t {Open,High,Low,Close,AdjClose,Volume,Returns,LogRet}] [-h] ``` + Select a target variable from the available arguments listed. ``` @@ -11,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:12 (✨) /stocks/qa/ $ load tsla +2022 Feb 16, 11:12 (🦋) /stocks/qa/ $ load tsla Loading Daily TSLA stock with starting period 2019-02-11 for analysis. @@ -22,5 +24,5 @@ Currency: USD Market: CLOSED -2022 Feb 16, 11:12 (✨) /stocks/qa/ $ pick adjclose +2022 Feb 16, 11:12 (🦋) /stocks/qa/ $ pick adjclose ``` diff --git a/website/content/terminal/common/qa/qqplot/_index.md b/website/content/terminal/qa/qqplot/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/qqplot/_index.md rename to website/content/terminal/qa/qqplot/_index.md diff --git a/website/content/terminal/common/qa/quantile/_index.md b/website/content/terminal/qa/quantile/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/quantile/_index.md rename to website/content/terminal/qa/quantile/_index.md diff --git a/website/content/terminal/common/qa/raw/_index.md b/website/content/terminal/qa/raw/_index.md old mode 100755 new mode 100644 similarity index 98% rename from website/content/terminal/common/qa/raw/_index.md rename to website/content/terminal/qa/raw/_index.md index 3815d507bbe9..f94512594bb3 --- a/website/content/terminal/common/qa/raw/_index.md +++ b/website/content/terminal/qa/raw/_index.md @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:05 (✨) /stocks/qa/ $ raw +2022 Feb 16, 11:05 (🦋) /stocks/qa/ $ raw Raw Data ┏━━━━━━━━━━━━┳━━━━━━━━━━┓ ┃ ┃ Adjclose ┃ diff --git a/website/content/terminal/common/qa/rolling/_index.md b/website/content/terminal/qa/rolling/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/rolling/_index.md rename to website/content/terminal/qa/rolling/_index.md diff --git a/website/content/terminal/common/qa/sh/_index.md b/website/content/terminal/qa/sh/_index.md similarity index 100% rename from website/content/terminal/common/qa/sh/_index.md rename to website/content/terminal/qa/sh/_index.md diff --git a/website/content/terminal/common/qa/skew/_index.md b/website/content/terminal/qa/skew/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/skew/_index.md rename to website/content/terminal/qa/skew/_index.md diff --git a/website/content/terminal/common/qa/so/_index.md b/website/content/terminal/qa/so/_index.md similarity index 100% rename from website/content/terminal/common/qa/so/_index.md rename to website/content/terminal/qa/so/_index.md diff --git a/website/content/terminal/common/qa/spread/_index.md b/website/content/terminal/qa/spread/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/qa/spread/_index.md rename to website/content/terminal/qa/spread/_index.md diff --git a/website/content/terminal/common/qa/summary/_index.md b/website/content/terminal/qa/summary/_index.md old mode 100755 new mode 100644 similarity index 98% rename from website/content/terminal/common/qa/summary/_index.md rename to website/content/terminal/qa/summary/_index.md index e88c1ce495c9..3edb96b29f45 --- a/website/content/terminal/common/qa/summary/_index.md +++ b/website/content/terminal/qa/summary/_index.md @@ -2,7 +2,7 @@ usage: summary [--export {csv,json,xlsx}] [-h] ``` -Summary of statistics derived from the target variable. +Summary of statistics derived from the target variable. ``` optional arguments: @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:16 (✨) /stocks/qa/ $ summary +2022 Feb 16, 11:16 (🦋) /stocks/qa/ $ summary Summary Statistics ┏━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━┓ diff --git a/website/content/terminal/common/qa/unitroot/_index.md b/website/content/terminal/qa/unitroot/_index.md old mode 100755 new mode 100644 similarity index 91% rename from website/content/terminal/common/qa/unitroot/_index.md rename to website/content/terminal/qa/unitroot/_index.md index 45941e26dd5c..3843d18c1934 --- a/website/content/terminal/common/qa/unitroot/_index.md +++ b/website/content/terminal/qa/unitroot/_index.md @@ -4,9 +4,9 @@ usage: unitroot [-r {c,ct,ctt,nc}] [-k {c,ct}] [--export {csv,json,xlsx}] [-h] Unit root test / stationarity (ADF, KPSS) -In statistics, a unit root test tests whether a time series variable is non-stationary and possesses a unit root. The null hypothesis is generally defined as the presence of a unit root and the alternative hypothesis is either stationarity, trend stationarity or explosive root depending on the test used. +In statistics, a unit root test tests whether a time series variable is non-stationary and possesses a unit root. The null hypothesis is generally defined as the presence of a unit root and the alternative hypothesis is either stationarity, trend stationarity or explosive root depending on the test used. -See the Wiki page on this subject for more information: https://en.wikipedia.org/wiki/Unit_root_test +See the Wiki page on this subject for more information: ``` optional arguments: @@ -20,8 +20,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:16 (✨) /stocks/qa/ $ unitroot +2022 Feb 16, 11:16 (🦋) /stocks/qa/ $ unitroot Unit Root Calculation ┏━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┓ ┃ ┃ ADF ┃ KPSS ┃ diff --git a/website/content/terminal/common/qa/var/_index.md b/website/content/terminal/qa/var/_index.md similarity index 97% rename from website/content/terminal/common/qa/var/_index.md rename to website/content/terminal/qa/var/_index.md index 4a2f87286333..6ea6c1aede4a 100644 --- a/website/content/terminal/common/qa/var/_index.md +++ b/website/content/terminal/qa/var/_index.md @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:18 (✨) /stocks/qa/ $ var +2022 Feb 16, 11:18 (🦋) /stocks/qa/ $ var FB Value at Risk ┏━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓ ┃ ┃ VaR: ┃ Historical VaR: ┃ diff --git a/website/content/terminal/stocks/bt/ema/_index.md b/website/content/terminal/stocks/bt/ema/_index.md index 1563204b7c02..590ee403beed 100755 --- a/website/content/terminal/stocks/bt/ema/_index.md +++ b/website/content/terminal/stocks/bt/ema/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:59 (✨) /stocks/bt/ $ ema +2022 Feb 16, 09:59 (🦋) /stocks/bt/ $ ema Stat AboveEMA MSFT Hold ------------------- ---------- ----------- diff --git a/website/content/terminal/stocks/bt/emacross/_index.md b/website/content/terminal/stocks/bt/emacross/_index.md index 3b33b5bc7d5d..51b4fab2f81d 100755 --- a/website/content/terminal/stocks/bt/emacross/_index.md +++ b/website/content/terminal/stocks/bt/emacross/_index.md @@ -18,7 +18,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:01 (✨) /stocks/bt/ $ emacross --spy +2022 Feb 16, 10:01 (🦋) /stocks/bt/ $ emacross --spy ``` + ![emacross](https://user-images.githubusercontent.com/46355364/154292377-dbeae301-5d8c-4793-8f04-eb5d367ca288.png) diff --git a/website/content/terminal/stocks/bt/whatif/_index.md b/website/content/terminal/stocks/bt/whatif/_index.md index ffa39cd1cd1a..32c549e1d194 100755 --- a/website/content/terminal/stocks/bt/whatif/_index.md +++ b/website/content/terminal/stocks/bt/whatif/_index.md @@ -14,18 +14,19 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 10:05 (✨) /stocks/bt/ $ whatif -d 2020-01-01 -n 100 +2022 Feb 16, 10:05 (🦋) /stocks/bt/ $ whatif -d 2020-01-01 -n 100 If you had acquired 100 shares of MSFT on 2020-01-01 with a cost of 15761.51. These would be worth 29462.01. Which represents an increase of 86.92%. -2022 Feb 16, 10:05 (✨) /stocks/bt/ $ whatif -d 2010-01-01 -n 100 +2022 Feb 16, 10:05 (🦋) /stocks/bt/ $ whatif -d 2010-01-01 -n 100 If you had acquired 100 shares of MSFT on 2010-01-01 with a cost of 2390.50. These would be worth 29444.00. Which represents an increase of 1131.71%. -2022 Feb 16, 10:05 (✨) /stocks/bt/ $ whatif -d 2000-01-01 -n 100 +2022 Feb 16, 10:05 (🦋) /stocks/bt/ $ whatif -d 2000-01-01 -n 100 If you had acquired 100 shares of MSFT on 2000-01-01 with a cost of 3679.42. These would be worth 29450.00. Which represents an increase of 700.40%. -2022 Feb 16, 10:05 (✨) /stocks/bt/ $ +2022 Feb 16, 10:05 (🦋) /stocks/bt/ $ ``` diff --git a/website/content/terminal/stocks/ca/balance/_index.md b/website/content/terminal/stocks/ca/balance/_index.md index 2442b69e57cf..a942481aac04 100755 --- a/website/content/terminal/stocks/ca/balance/_index.md +++ b/website/content/terminal/stocks/ca/balance/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:35 (✨) /stocks/ca/ $ balance +2022 Feb 15, 08:35 (🦋) /stocks/ca/ $ balance Other available yearly timeframes are: 2017, 2018, 2019, 2020, 2021 diff --git a/website/content/terminal/stocks/ca/cashflow/_index.md b/website/content/terminal/stocks/ca/cashflow/_index.md index 3eb48bd945b3..3f3245c82d94 100755 --- a/website/content/terminal/stocks/ca/cashflow/_index.md +++ b/website/content/terminal/stocks/ca/cashflow/_index.md @@ -2,7 +2,7 @@ usage: cashflow [-q] [-t S_TIMEFRAME] [-h] [--export EXPORT] ``` -Prints either yearly or quarterly cashflow statement the company, and compares it against similar companies. +Prints either yearly or quarterly cashflow statement the company, and compares it against similar companies. ``` optional arguments: @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:35 (✨) /stocks/ca/ $ cashflow +2022 Feb 15, 08:35 (🦋) /stocks/ca/ $ cashflow Other available yearly timeframes are: 2017, 2018, 2019, 2020, 2021 Cashflow Comparison diff --git a/website/content/terminal/stocks/ca/financial/_index.md b/website/content/terminal/stocks/ca/financial/_index.md index 5353f3b3f57d..7bc55b777532 100755 --- a/website/content/terminal/stocks/ca/financial/_index.md +++ b/website/content/terminal/stocks/ca/financial/_index.md @@ -2,7 +2,7 @@ usage: financial [--export {csv,json,xlsx}] [-h] ``` -Shows stock data comparing the returns, margins, and prices of the added companies. Source: https://finviz.com +Shows stock data comparing the returns, margins, and prices of the added companies. Source: ``` optional arguments: @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:36 (✨) /stocks/ca/ $ financial +2022 Feb 15, 08:36 (🦋) /stocks/ca/ $ financial Stock Screener ┌────────┬──────────────────┬──────────┬──────┬──────┬──────┬────────┬─────────┬───────────┬─────────┬─────────┬────────┬──────────┬──────────┬────────┬────────┬─────────────┐ │ Ticker │ Market Cap │ Dividend │ ROA │ ROE │ ROI │ Curr R │ Quick R │ LTDebt/Eq │ Debt/Eq │ Gross M │ Oper M │ Profit M │ Earnings │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/ca/income/_index.md b/website/content/terminal/stocks/ca/income/_index.md index 2939cff8d3fb..859f5ec15f35 100755 --- a/website/content/terminal/stocks/ca/income/_index.md +++ b/website/content/terminal/stocks/ca/income/_index.md @@ -15,11 +15,12 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:39 (✨) /stocks/ca/ $ historical +2022 Feb 15, 08:39 (🦋) /stocks/ca/ $ historical -2022 Feb 15, 08:39 (✨) /stocks/ca/ $ income +2022 Feb 15, 08:39 (🦋) /stocks/ca/ $ income Other available yearly timeframes are: 2017, 2018, 2019, 2020, 2021 Income Data diff --git a/website/content/terminal/stocks/ca/overview/_index.md b/website/content/terminal/stocks/ca/overview/_index.md index a1f409a4f383..68f50fa224ea 100755 --- a/website/content/terminal/stocks/ca/overview/_index.md +++ b/website/content/terminal/stocks/ca/overview/_index.md @@ -2,7 +2,7 @@ usage: overview [--export {csv,json,xlsx}] [-h] ``` -Displays the broad overview for each company added. Source: https://finviz.com +Displays the broad overview for each company added. Source: ``` optional arguments: @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:41 (✨) /stocks/ca/ $ overview +2022 Feb 15, 08:41 (🦋) /stocks/ca/ $ overview Stock Screener ┌────────┬───────────────────────┬────────────────────────┬────────────────────────────────┬─────────┬──────────────────┬────────┬─────────┬────────┬─────────────┐ │ Ticker │ Company │ Sector │ Industry │ Country │ Market Cap │ P/E │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/ca/ownership/_index.md b/website/content/terminal/stocks/ca/ownership/_index.md index 5de498cea9fe..f7d45bab3308 100755 --- a/website/content/terminal/stocks/ca/ownership/_index.md +++ b/website/content/terminal/stocks/ca/ownership/_index.md @@ -2,7 +2,7 @@ usage: ownership [--export {csv,json,xlsx}] [-h] ``` -Compare the outstanding shares, market cap, short interest and more. Source: https://finviz.com +Compare the outstanding shares, market cap, short interest and more. Source: ``` optional arguments: @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:41 (✨) /stocks/ca/ $ ownership +2022 Feb 15, 08:41 (🦋) /stocks/ca/ $ ownership Stock Screener ┌────────┬──────────────────┬────────────────┬────────────────┬─────────────┬───────────────┬──────────┬────────────┬─────────────┬─────────────┬──────────────┬─────────┬────────┬─────────────┐ │ Ticker │ Market Cap │ Outstanding │ Float │ Insider Own │ Insider Trans │ Inst Own │ Inst Trans │ Float Short │ Short Ratio │ Avg Volume │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/ca/performance/_index.md b/website/content/terminal/stocks/ca/performance/_index.md index 286c66a893af..8b6c0b3aa068 100755 --- a/website/content/terminal/stocks/ca/performance/_index.md +++ b/website/content/terminal/stocks/ca/performance/_index.md @@ -2,7 +2,7 @@ usage: performance [--export {csv,json,xlsx}] [-h] ``` -Compares the performance breakdown over time. Source: https://finviz.com +Compares the performance breakdown over time. Source: ``` optional arguments: @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:42 (✨) /stocks/ca/ $ performance +2022 Feb 15, 08:42 (🦋) /stocks/ca/ $ performance Stock Screener ┌────────┬───────────┬────────────┬────────────┬───────────┬───────────┬──────────┬──────────────┬──────────────┬───────┬──────────────┬────────────┬─────────┬────────┬─────────────┐ │ Ticker │ Perf Week │ Perf Month │ Perf Quart │ Perf Half │ Perf Year │ Perf YTD │ Volatility W │ Volatility M │ Recom │ Avg Volume │ Rel Volume │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/ca/technical/_index.md b/website/content/terminal/stocks/ca/technical/_index.md index 9c1d4a85d767..0a23c4a0e5e2 100755 --- a/website/content/terminal/stocks/ca/technical/_index.md +++ b/website/content/terminal/stocks/ca/technical/_index.md @@ -2,7 +2,7 @@ usage: technical [--export {csv,json,xlsx}] [-h] ``` -Compares technical stock price data for the added companies. Source: https://finviz.com +Compares technical stock price data for the added companies. Source: ``` optional arguments: @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:44 (✨) /stocks/ca/ $ technical +2022 Feb 15, 08:44 (🦋) /stocks/ca/ $ technical Stock Screener ┌────────┬──────┬───────┬───────┬───────┬────────┬──────────┬─────────┬───────┬─────────┬────────┬───────────┬───────┬─────────────┐ │ Ticker │ Beta │ ATR │ SMA20 │ SMA50 │ SMA200 │ 52W High │ 52W Low │ RSI │ Price │ Change │ from Open │ Gap │ Volume │ diff --git a/website/content/terminal/stocks/ca/ticker/_index.md b/website/content/terminal/stocks/ca/ticker/_index.md index 7d5a123c20a3..cba2451f6948 100755 --- a/website/content/terminal/stocks/ca/ticker/_index.md +++ b/website/content/terminal/stocks/ca/ticker/_index.md @@ -14,5 +14,5 @@ optional arguments: Example: ```text -2022 Feb 15, 08:33 (✨) /stocks/ca/ $ ticker AAPL +2022 Feb 15, 08:33 (🦋) /stocks/ca/ $ ticker AAPL ``` diff --git a/website/content/terminal/stocks/ca/valuation/_index.md b/website/content/terminal/stocks/ca/valuation/_index.md index bec5b6e6e0bb..743ad187109a 100755 --- a/website/content/terminal/stocks/ca/valuation/_index.md +++ b/website/content/terminal/stocks/ca/valuation/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:46 (✨) /stocks/ca/ $ valuation +2022 Feb 15, 08:46 (🦋) /stocks/ca/ $ valuation Stock Screener ┌────────┬──────────────────┬───────┬─────────┬──────┬───────┬───────┬───────┬───────┬────────────┬────────────┬─────────────┬─────────────┬───────────────┬─────────┬────────┬─────────────┐ │ Ticker │ Market Cap │ P/E │ Fwd P/E │ PEG │ P/S │ P/B │ P/C │ P/FCF │ EPS this Y │ EPS next Y │ EPS past 5Y │ EPS next 5Y │ Sales past 5Y │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/dd/analyst/_index.md b/website/content/terminal/stocks/dd/analyst/_index.md index 1d9cf63ee2a2..4ec66af81f7c 100755 --- a/website/content/terminal/stocks/dd/analyst/_index.md +++ b/website/content/terminal/stocks/dd/analyst/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:20 (✨) /stocks/dd/ $ analyst +2022 Feb 16, 04:20 (🦋) /stocks/dd/ $ analyst Display Analyst Ratings ┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━┓ ┃ ┃ category ┃ analyst ┃ rating ┃ target ┃ target_from ┃ target_to ┃ diff --git a/website/content/terminal/stocks/dd/arktrades/_index.md b/website/content/terminal/stocks/dd/arktrades/_index.md index 4d124085cd0b..98c73cc42ca6 100644 --- a/website/content/terminal/stocks/dd/arktrades/_index.md +++ b/website/content/terminal/stocks/dd/arktrades/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:23 (✨) /stocks/dd/ $ arktrades +2022 Feb 16, 04:23 (🦋) /stocks/dd/ $ arktrades ARK Trades ┏━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━┓ ┃ ┃ shares ┃ weight ┃ fund ┃ direction ┃ everything.profile.companyName ┃ Close ($) ┃ Total ($1M) ┃ diff --git a/website/content/terminal/stocks/dd/customer/_index.md b/website/content/terminal/stocks/dd/customer/_index.md index bb36af24742f..04003855d062 100755 --- a/website/content/terminal/stocks/dd/customer/_index.md +++ b/website/content/terminal/stocks/dd/customer/_index.md @@ -12,10 +12,11 @@ optional arguments: ``` Example (Apple and Tesla): + ``` -2022 Feb 16, 04:25 (✨) /stocks/dd/ $ customer +2022 Feb 16, 04:25 (🦋) /stocks/dd/ $ customer List of Customers: AMZN, T, AT, BBY, BIG, AVGO, EBAY, GME, LIVE, PTC, S, TMUS, TGT, WMT -2022 Feb 16, 04:26 (✨) /stocks/dd/ $ customer +2022 Feb 16, 04:26 (🦋) /stocks/dd/ $ customer List of Customers: Y, ALL, AIG, ACGL, AWH, AN, AZO, AVID, CAR, AXS, BRKA, BLBD, BRO, KMX, CAT, CUII, CINF, CRUS, CNFR, DGICA, DORM, DSPG, ESGR, ESNT, FNHC, GM, GBLI, HALL, THG, HCI, HRTG, HMN, JRVR, JANL, KMPR, KINS, KFS, KNX, KN, KOSS, LEAF, L, MKL, MCY, MET, MPAA, NSEC, ORLY, ORI, OSK, OB, PGR, REVG, SAFT, SMP, STFC, HIG, TRV, GTS, TRUE, UNAM, UFCS, UIHC, UVE, WRB, WTM, XL ``` diff --git a/website/content/terminal/stocks/dd/rating/_index.md b/website/content/terminal/stocks/dd/rating/_index.md index 18e4c07d159e..b7934a5a408b 100755 --- a/website/content/terminal/stocks/dd/rating/_index.md +++ b/website/content/terminal/stocks/dd/rating/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example (Google): + ``` -2022 Feb 16, 04:34 (✨) /stocks/dd/ $ rating +2022 Feb 16, 04:34 (🦋) /stocks/dd/ $ rating Rating ┏━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ Rating ┃ DCF ┃ ROE ┃ ROA ┃ DE ┃ PE ┃ PB ┃ diff --git a/website/content/terminal/stocks/dd/sec/_index.md b/website/content/terminal/stocks/dd/sec/_index.md index 7907fcb64cf1..e54ad85d21c8 100755 --- a/website/content/terminal/stocks/dd/sec/_index.md +++ b/website/content/terminal/stocks/dd/sec/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:37 (✨) /stocks/dd/ $ sec -l 10 +2022 Feb 16, 04:37 (🦋) /stocks/dd/ $ sec -l 10 SEC Filings ┏━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ ┃ Document Date ┃ Type ┃ Category ┃ Amended ┃ Link ┃ diff --git a/website/content/terminal/stocks/disc/active/_index.md b/website/content/terminal/stocks/disc/active/_index.md index f50d9f61637e..e3380c692de7 100755 --- a/website/content/terminal/stocks/disc/active/_index.md +++ b/website/content/terminal/stocks/disc/active/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 03:46 (✨) /stocks/disc/ $ active -l 25 +2022 Feb 16, 03:46 (🦋) /stocks/disc/ $ active -l 25 Most Active Stocks ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ Symbol ┃ Name ┃ Price (Intraday) ┃ Change ┃ % Change ┃ Volume ┃ Avg Vol (3 month) ┃ Market Cap ┃ PE Ratio (TTM) ┃ diff --git a/website/content/terminal/stocks/disc/arkord/_index.md b/website/content/terminal/stocks/disc/arkord/_index.md index ed6644e46ab3..65ff3ca49409 100755 --- a/website/content/terminal/stocks/disc/arkord/_index.md +++ b/website/content/terminal/stocks/disc/arkord/_index.md @@ -2,7 +2,7 @@ usage: arkord [-l LIMIT] [-s {date,volume,open,high,close,low,total,weight,shares} [{date,volume,open,high,close,low,total,weight,shares} ...]] [-a] [-b] [-c] [--fund {ARKK,ARKF,ARKW,ARKQ,ARKG,ARKX,}] [-h] [--export {csv,json,xlsx}] ``` -Orders by ARK Investment Management LLC - https://ark-funds.com/. [Source: https://cathiesark.com] +Orders by ARK Investment Management LLC - . [Source: ] ``` optional arguments: @@ -23,8 +23,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 03:49 (✨) /stocks/disc/ $ arkord +2022 Feb 16, 03:49 (🦋) /stocks/disc/ $ arkord Orders by ARK Investment Management LLC ┏━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━┳━━━━━━┳━━━━━━━━┳━━━━━━━━┓ @@ -51,7 +52,7 @@ Example: │ 2022-02-15 │ MKFG │ Buy │ 1057800 │ 4.55 │ 4.67 │ 4.73 │ 4.54 │ 22131.13 │ ARKX │ 0.0057 │ 4739 │ └────────────┴────────┴───────────┴─────────┴───────┴───────┴───────┴───────┴────────────┴──────┴────────┴────────┘ -2022 Feb 16, 03:50 (✨) /stocks/disc/ $ arkord -b --fund ARKK +2022 Feb 16, 03:50 (🦋) /stocks/disc/ $ arkord -b --fund ARKK Orders by ARK Investment Management LLC ┏━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━┳━━━━━━━━┳━━━━━━━━━┓ diff --git a/website/content/terminal/stocks/disc/asc/_index.md b/website/content/terminal/stocks/disc/asc/_index.md index 94f0c932914f..72612888e511 100755 --- a/website/content/terminal/stocks/disc/asc/_index.md +++ b/website/content/terminal/stocks/disc/asc/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 03:51 (✨) /stocks/disc/ $ asc -l 25 +2022 Feb 16, 03:51 (🦋) /stocks/disc/ $ asc -l 25 High Growth Small Caps ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ Symbol ┃ Name ┃ Price (Intraday) ┃ Change ┃ % Change ┃ Volume ┃ Avg Vol (3 month) ┃ Market Cap ┃ PE Ratio (TTM) ┃ diff --git a/website/content/terminal/stocks/disc/cnews/_index.md b/website/content/terminal/stocks/disc/cnews/_index.md index 03481634289d..67a3544b3115 100755 --- a/website/content/terminal/stocks/disc/cnews/_index.md +++ b/website/content/terminal/stocks/disc/cnews/_index.md @@ -2,7 +2,7 @@ usage: cnews [-t {top-news,on-the-move,market-pulse,notable-calls,buybacks,commodities,crypto,issuance,global,guidance,ipos,spacs,politics,m-a,consumer,energy,financials,healthcare,mlps,reits,technology}] [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Customized news based on the string arguments below. [Source: https://seekingalpha.com] +Customized news based on the string arguments below. [Source: ] ``` optional arguments: @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 03:52 (✨) /stocks/disc/ $ cnews +2022 Feb 16, 03:52 (🦋) /stocks/disc/ $ cnews 2022-02-15 19:04:21 - 3800509 - ViacomCBS earnings call: A flood of content feeding transformation to Paramount https://seekingalpha.com/news/3800509-viacomcbs-earnings-call-a-flood-of-content-feeding-transformation-to-paramount @@ -36,7 +37,7 @@ https://seekingalpha.com/news/3800380-viacomcbs-dips-as-profits-dip-despite-reve 2022-02-15 16:14:20 - 3800378 - Wynn Resorts trades lower after earnings, Encore Boston sale https://seekingalpha.com/news/3800378-wynn-resorts-trades-lower-after-earnings-encore-boston-sale -2022 Feb 16, 03:52 (✨) /stocks/disc/ $ cnews -t buybacks +2022 Feb 16, 03:52 (🦋) /stocks/disc/ $ cnews -t buybacks 2022-02-15 16:24:36 - 3800409 - DHI launches new $15M in stock repurchase program https://seekingalpha.com/news/3800409-dhi-launches-new-15m-in-stock-repurchase-program diff --git a/website/content/terminal/stocks/disc/cramer/_index.md b/website/content/terminal/stocks/disc/cramer/_index.md index a7cebaa23864..d7e706a0c799 100644 --- a/website/content/terminal/stocks/disc/cramer/_index.md +++ b/website/content/terminal/stocks/disc/cramer/_index.md @@ -1,7 +1,9 @@ ``` usage: cramer [-i] [-h] [--export {csv,json,xlsx}] ``` + Show daily Cramer recommendations + ``` optional arguments: -i, --inverse Show inverse recommendation (default: False) @@ -10,10 +12,11 @@ optional arguments: Export raw data into csv, json, xlsx (default: ) ``` + ``` -2022 Mar 01, 21:41 (✨) /stocks/disc/ $ cramer --inverse +2022 Mar 01, 21:41 (🦋) /stocks/disc/ $ cramer --inverse - Cramer Recs for 03/01 + Cramer Recs for 03/01 ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓ ┃ Company ┃ Symbol ┃ Price ┃ LastPrice ┃ Change (%) ┃ Recommendation ┃ InverseCramer ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩ @@ -35,4 +38,4 @@ optional arguments: ├────────────────────────────┼────────┼────────┼───────────┼────────────┼────────────────┼───────────────┤ │ Stem │ STEM │ 9.33 │ 9.32 │ -0.11 │ Sell │ Buy │ └────────────────────────────┴────────┴────────┴───────────┴────────────┴────────────────┴───────────────┘ -``` \ No newline at end of file +``` diff --git a/website/content/terminal/stocks/disc/divcal/_index.md b/website/content/terminal/stocks/disc/divcal/_index.md index e3d5fad84c9e..a651bc269562 100644 --- a/website/content/terminal/stocks/disc/divcal/_index.md +++ b/website/content/terminal/stocks/disc/divcal/_index.md @@ -20,8 +20,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 03:53 (✨) /stocks/disc/ $ divcal +2022 Feb 16, 03:53 (🦋) /stocks/disc/ $ divcal Dividend Calendar for 2022-02-16 ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓ ┃ Name ┃ Symbol ┃ Ex-Dividend Date ┃ Payment Date ┃ Record Date ┃ Dividend ┃ Annual Dividend ┃ diff --git a/website/content/terminal/stocks/disc/fipo/_index.md b/website/content/terminal/stocks/disc/fipo/_index.md index 2735e0cf686c..55d7f0dac30d 100755 --- a/website/content/terminal/stocks/disc/fipo/_index.md +++ b/website/content/terminal/stocks/disc/fipo/_index.md @@ -2,7 +2,7 @@ usage: fipo [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -See future IPOs dates. [Source: https://finnhub.io] +See future IPOs dates. [Source: ] ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 03:59 (✨) /stocks/disc/ $ fipo +2022 Feb 16, 03:59 (🦋) /stocks/disc/ $ fipo Future IPO Dates ┏━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┓ ┃ Future ┃ Exchange ┃ Name ┃ Number of Shares ┃ Price ┃ Status ┃ symbol ┃ Total Shares Value ┃ diff --git a/website/content/terminal/stocks/disc/gainers/_index.md b/website/content/terminal/stocks/disc/gainers/_index.md index 7358199df5b6..30054455c91c 100755 --- a/website/content/terminal/stocks/disc/gainers/_index.md +++ b/website/content/terminal/stocks/disc/gainers/_index.md @@ -2,7 +2,7 @@ usage: gainers [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Top Stock Gainers from Yfinance. Source: https://finance.yahoo.com/gainers/?offset=0&count=100 +Top Stock Gainers from Yfinance. Source: ``` optional arguments: @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:02 (✨) /stocks/disc/ $ gainers -l 25 +2022 Feb 16, 04:02 (🦋) /stocks/disc/ $ gainers -l 25 Gainers ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ Symbol ┃ Name ┃ Price (Intraday) ┃ Change ┃ % Change ┃ Volume ┃ Avg Vol (3 month) ┃ Market Cap ┃ PE Ratio (TTM) ┃ diff --git a/website/content/terminal/stocks/disc/gtech/_index.md b/website/content/terminal/stocks/disc/gtech/_index.md index 6b2f356803b8..1f5fe96fbe3d 100755 --- a/website/content/terminal/stocks/disc/gtech/_index.md +++ b/website/content/terminal/stocks/disc/gtech/_index.md @@ -2,7 +2,7 @@ usage: gtech [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Print up to 25 top tech stocks with revenue and earnings growth in excess of 25%. [Source: https://finance.yahoo.com/screener/predefined/growth_technology_stocks/] +Print up to 25 top tech stocks with revenue and earnings growth in excess of 25%. [Source: ] ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:03 (✨) /stocks/disc/ $ gtech -l 25 +2022 Feb 16, 04:03 (🦋) /stocks/disc/ $ gtech -l 25 Growth Tech Stocks ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ Symbol ┃ Name ┃ Price (Intraday) ┃ Change ┃ % Change ┃ Volume ┃ Avg Vol (3 month) ┃ Market Cap ┃ PE Ratio (TTM) ┃ diff --git a/website/content/terminal/stocks/disc/hotpenny/_index.md b/website/content/terminal/stocks/disc/hotpenny/_index.md index fc7322b54c8e..2bebaf62c993 100755 --- a/website/content/terminal/stocks/disc/hotpenny/_index.md +++ b/website/content/terminal/stocks/disc/hotpenny/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:04 (✨) /stocks/disc/ $ hotpenny +2022 Feb 16, 04:04 (🦋) /stocks/disc/ $ hotpenny Top Penny Stocks ┏━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┓ ┃ ┃ Price ┃ Change ┃ $ Volume ┃ Volume ┃ # Trades ┃ diff --git a/website/content/terminal/stocks/disc/losers/_index.md b/website/content/terminal/stocks/disc/losers/_index.md index fc058bbe4e80..f792169c3655 100755 --- a/website/content/terminal/stocks/disc/losers/_index.md +++ b/website/content/terminal/stocks/disc/losers/_index.md @@ -2,7 +2,7 @@ usage: losers [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Calls a list of the biggest losers for the day in US markets [Source: https://finance.yahoo.com/losers/] +Calls a list of the biggest losers for the day in US markets [Source: ] ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:07 (✨) /stocks/disc/ $ losers -l 25 +2022 Feb 16, 04:07 (🦋) /stocks/disc/ $ losers -l 25 Display Losers ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ Symbol ┃ Name ┃ Price (Intraday) ┃ Change ┃ % Change ┃ Volume ┃ Avg Vol (3 month) ┃ Market Cap ┃ PE Ratio (TTM) ┃ diff --git a/website/content/terminal/stocks/disc/lowfloat/_index.md b/website/content/terminal/stocks/disc/lowfloat/_index.md index ff137e2625c8..55933a103227 100755 --- a/website/content/terminal/stocks/disc/lowfloat/_index.md +++ b/website/content/terminal/stocks/disc/lowfloat/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:09 (✨) /stocks/disc/ $ lowfloat -l 10 +2022 Feb 16, 04:09 (🦋) /stocks/disc/ $ lowfloat -l 10 Top Float Stocks ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Ticker ┃ Company ┃ Exchange ┃ Float ┃ Outstd ┃ ShortInt ┃ Industry ┃ diff --git a/website/content/terminal/stocks/disc/pipo/_index.md b/website/content/terminal/stocks/disc/pipo/_index.md index 992bc06cbb46..29995a3b0bab 100755 --- a/website/content/terminal/stocks/disc/pipo/_index.md +++ b/website/content/terminal/stocks/disc/pipo/_index.md @@ -2,7 +2,7 @@ usage: pipo [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Browse IPOs from recent history, use the '-l' argument in the command string to include the number of previous days [Source: https://finnhub.io] +Browse IPOs from recent history, use the '-l' argument in the command string to include the number of previous days [Source: ] ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:10 (✨) /stocks/disc/ $ pipo +2022 Feb 16, 04:10 (🦋) /stocks/disc/ $ pipo IPO Dates ┏━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┓ ┃ Past ┃ Exchange ┃ Name ┃ Number of Shares ┃ Price ┃ Status ┃ symbol ┃ Total Shares Value ┃ diff --git a/website/content/terminal/stocks/disc/rtat/_index.md b/website/content/terminal/stocks/disc/rtat/_index.md index 6cb123453477..a7d3afa77f80 100644 --- a/website/content/terminal/stocks/disc/rtat/_index.md +++ b/website/content/terminal/stocks/disc/rtat/_index.md @@ -2,7 +2,7 @@ usage: rtat [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Tracking over $30B USD/day of individual investors trades, RTAT gives a daily view into retail activity and sentiment for over 9,500 US traded stocks, ADRs, and ETPs [Source: https://data.nasdaq.com/retailtradingactivitytracker] +Tracking over $30B USD/day of individual investors trades, RTAT gives a daily view into retail activity and sentiment for over 9,500 US traded stocks, ADRs, and ETPs [Source: ] ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:12 (✨) /stocks/disc/ $ rtat +2022 Feb 16, 04:12 (🦋) /stocks/disc/ $ rtat 2022-02-11 Top Retail: ┏━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━┓ ┃ Ticker ┃ Activity ┃ Sentiment ┃ diff --git a/website/content/terminal/stocks/disc/trending/_index.md b/website/content/terminal/stocks/disc/trending/_index.md index 3944ffe4b094..defd45516940 100755 --- a/website/content/terminal/stocks/disc/trending/_index.md +++ b/website/content/terminal/stocks/disc/trending/_index.md @@ -17,13 +17,14 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:13 (✨) /stocks/disc/ $ trending -i 10 +2022 Feb 16, 04:13 (🦋) /stocks/disc/ $ trending -i 10 2010-03-21 08:33:21 Deutsche Bank's Marc Greenberg can't justify the BUD deal. But he says Bud Light Lime is the... https://seekingalpha.com/news/10 Deutsche Bank's Marc Greenberg can't justify the BUD deal. But he says Bud Light Lime is the beer to beat. -2022 Feb 16, 04:13 (✨) /stocks/disc/ $ trending -l 10 +2022 Feb 16, 04:13 (🦋) /stocks/disc/ $ trending -l 10 2022-02-16 02:00:18 - 3800145 - Shopify Q4 Earnings Preview: What to Expect https://seekingalpha.com/news/3800145-shopify-q4-earnings-preview-what-to-expect diff --git a/website/content/terminal/stocks/disc/ugs/_index.md b/website/content/terminal/stocks/disc/ugs/_index.md index 0280460c9401..43ba0aa70900 100755 --- a/website/content/terminal/stocks/disc/ugs/_index.md +++ b/website/content/terminal/stocks/disc/ugs/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:14 (✨) /stocks/disc/ $ ugs -l 25 +2022 Feb 16, 04:14 (🦋) /stocks/disc/ $ ugs -l 25 Undervalued Growth Stocks ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ Symbol ┃ Name ┃ Price (Intraday) ┃ Change ┃ % Change ┃ Volume ┃ Avg Vol (3 month) ┃ Market Cap ┃ PE Ratio (TTM) ┃ diff --git a/website/content/terminal/stocks/disc/ulc/_index.md b/website/content/terminal/stocks/disc/ulc/_index.md index 8e95498e01b9..a1de9342f9a8 100755 --- a/website/content/terminal/stocks/disc/ulc/_index.md +++ b/website/content/terminal/stocks/disc/ulc/_index.md @@ -2,7 +2,7 @@ usage: ulc [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Print up to 25 potentially undervalued large cap stocks [Source: https://finance.yahoo.com/screener/predefined/undervalued_large_caps/] +Print up to 25 potentially undervalued large cap stocks [Source: ] ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:15 (✨) /stocks/disc/ $ ulc -l 25 +2022 Feb 16, 04:15 (🦋) /stocks/disc/ $ ulc -l 25 Undervalued Large Cap Stocks ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓ ┃ Symbol ┃ Name ┃ Price (Intraday) ┃ Change ┃ % Change ┃ Volume ┃ Avg Vol (3 month) ┃ Market Cap ┃ PE Ratio (TTM) ┃ diff --git a/website/content/terminal/stocks/disc/upcoming/_index.md b/website/content/terminal/stocks/disc/upcoming/_index.md index 30ef38b942bb..a13c1e6088fd 100755 --- a/website/content/terminal/stocks/disc/upcoming/_index.md +++ b/website/content/terminal/stocks/disc/upcoming/_index.md @@ -2,7 +2,7 @@ usage: upcoming [-l LIMIT] [-p N_PAGES] [-h] [--export {csv,json,xlsx}] ``` -Upcoming earnings release dates [Source: https://seekingalpha.com/earnings/earnings-calendar] +Upcoming earnings release dates [Source: ] ``` optional arguments: @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:17 (✨) /stocks/disc/ $ upcoming +2022 Feb 16, 04:17 (🦋) /stocks/disc/ $ upcoming Upcoming Earnings Releases ┏━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ diff --git a/website/content/terminal/stocks/dps/hsi/_index.md b/website/content/terminal/stocks/dps/hsi/_index.md index d740623b9b64..3dd926ee2c62 100755 --- a/website/content/terminal/stocks/dps/hsi/_index.md +++ b/website/content/terminal/stocks/dps/hsi/_index.md @@ -2,7 +2,7 @@ usage: hsi [-n N_NUM] [--export {csv,json,xlsx}] [-h] ``` -Browse a sorted database of stocks which have a short interest of over 20 percent. Additional key data such as the float, number of outstanding shares, and company industry is displayed. Data is presented for the Nasdaq Stock Market, the New York Stock Exchange, and the American Stock Exchange. Source: https://www.highshortinterest.com +Browse a sorted database of stocks which have a short interest of over 20 percent. Additional key data such as the float, number of outstanding shares, and company industry is displayed. Data is presented for the Nasdaq Stock Market, the New York Stock Exchange, and the American Stock Exchange. Source: ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 08:49 (✨) /stocks/dps/ $ hsi +2022 Feb 15, 08:49 (🦋) /stocks/dps/ $ hsi Top Interest Stocks ┌────────┬───────────────────────────────┬──────────┬──────────┬─────────┬─────────┬────────────────────────────────────────────┐ │ Ticker │ Company │ Exchange │ ShortInt │ Float │ Outstd │ Industry │ diff --git a/website/content/terminal/stocks/dps/pos/_index.md b/website/content/terminal/stocks/dps/pos/_index.md index d02e824d8ed6..463ed1dd3320 100755 --- a/website/content/terminal/stocks/dps/pos/_index.md +++ b/website/content/terminal/stocks/dps/pos/_index.md @@ -2,11 +2,11 @@ usage: pos [-n NUM] [-s {sv,sv_pct,nsv,nsv_dollar,dpp,dpp_dollar}] [-a] [--export {csv,json,xlsx}] [-h] ``` -Request a list of up to 200 (either positive or negative using the -a argument) Dark Pool Positions using the optional arguments to the feature command as described below. Source: https://www.stockgrid.io/darkpools +Request a list of up to 200 (either positive or negative using the -a argument) Dark Pool Positions using the optional arguments to the feature command as described below. Source: Volume and short sale data for tickers trading on US-regulated public markets is updated daily on the [FINRA website](https://www.finra.org/finra-data/browse-catalog/short-sale-volume-data/daily-short-sale-volume-files) at approximately 6PM EST. -A 'position' is the result of the net aggregagte short sale volume over a rolling twenty day period. The available daily data sets currently go back as far as 2020. For an explanation on reading this data, consult the white paper from SqueezeMetrics: https://squeezemetrics.com/monitor/download/pdf/short_is_long.pdf? +A 'position' is the result of the net aggregagte short sale volume over a rolling twenty day period. The available daily data sets currently go back as far as 2020. For an explanation on reading this data, consult the white paper from SqueezeMetrics: ? ``` optional arguments: @@ -25,7 +25,7 @@ optional arguments: Example: ``` -2022 Feb 15, 08:51 (✨) /stocks/dps/ $ pos +2022 Feb 15, 08:51 (🦋) /stocks/dps/ $ pos Data for: 2022-02-14 ┌────────┬─────────────────┬──────────────┬─────────────────────┬────────────────────────┬──────────────────┬───────────────────┐ │ Ticker │ Short Vol. [1M] │ Short Vol. % │ Net Short Vol. [1M] │ Net Short Vol. ($100M) │ DP Position [1M] │ DP Position ($1B) │ diff --git a/website/content/terminal/stocks/dps/shorted/_index.md b/website/content/terminal/stocks/dps/shorted/_index.md index 052866f2c646..5f1b37cdc01a 100755 --- a/website/content/terminal/stocks/dps/shorted/_index.md +++ b/website/content/terminal/stocks/dps/shorted/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 15, 11:06 (✨) /stocks/dps/ $ shorted +2022 Feb 15, 11:06 (🦋) /stocks/dps/ $ shorted Most Shorted Stocks ┌────────┬────────────────────────────────────────┬──────────────────┬────────┬──────────┬────────┬───────────────────┬────────────┬────────────────┐ │ Symbol │ Name │ Price (Intraday) │ Change │ % Change │ Volume │ Avg Vol (3 month) │ Market Cap │ PE Ratio (TTM) │ diff --git a/website/content/terminal/stocks/dps/sidtc/_index.md b/website/content/terminal/stocks/dps/sidtc/_index.md index 006186f72c89..2a2ed23e6a45 100755 --- a/website/content/terminal/stocks/dps/sidtc/_index.md +++ b/website/content/terminal/stocks/dps/sidtc/_index.md @@ -2,9 +2,9 @@ usage: sidtc [-n NUM] [-s {float,dtc,si}] [--export {csv,json,xlsx}] [-h] ``` -Request a list of shorted stocks, sorted by the optional arguments described below. Source: https://www.stockgrid.io/shortinterest +Request a list of shorted stocks, sorted by the optional arguments described below. Source: -Note: This data is delayed as per the short interest reporting schedule dictated by FINRA. https://www.nasdaqtrader.com/trader.aspx?id=shortintpubsch +Note: This data is delayed as per the short interest reporting schedule dictated by FINRA. ``` optional arguments: @@ -19,7 +19,7 @@ optional arguments: Example: ``` -2022 Feb 15, 11:07 (✨) /stocks/dps/ $ sidtc +2022 Feb 15, 11:07 (🦋) /stocks/dps/ $ sidtc Data for: 2022-01-31 ┌────────┬───────────────┬───────────────┬─────────────────────┐ │ Ticker │ Float Short % │ Days to Cover │ Short Interest [1M] │ diff --git a/website/content/terminal/stocks/fa/balance/_index.md b/website/content/terminal/stocks/fa/balance/_index.md index 74789fa6a00d..20d2b353234e 100755 --- a/website/content/terminal/stocks/fa/balance/_index.md +++ b/website/content/terminal/stocks/fa/balance/_index.md @@ -9,6 +9,7 @@ investments, Net debt, Net receivables, Other assets, Other current assets, Othe liabilities, Othertotal stockholders equity, Period, Property plant equipment net, Retained earnings, Short term debt, Short term investments, Tax assets, Tax payables, Total assets, Total current assets, Total current liabilities, Total debt, Total investments, Total liabilities, Total liabilities and stockholders equity, Total non current assets, Total non current liabilities, and Total stockholders equity. [Source: Alpha Vantage] + ``` optional arguments: -q, --quarter Quarter fundamental data flag. (default: False) @@ -23,8 +24,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:44 (✨) /stocks/fa/ $ balance -l 4 +2022 Feb 16, 04:44 (🦋) /stocks/fa/ $ balance -l 4 MU Balance Sheet ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ 2018-08-30 ┃ 2019-08-29 ┃ 2020-09-03 ┃ 2021-09-02 ┃ @@ -104,7 +106,7 @@ Example: │ commonStockSharesOutstanding │ 1.161 B │ 1.106 B │ 1.113 B │ 1.119 B │ └────────────────────────────────────────┴────────────┴────────────┴────────────┴────────────┘ -2022 Feb 16, 04:44 (✨) /stocks/fa/ $ balance -l 4 -q +2022 Feb 16, 04:44 (🦋) /stocks/fa/ $ balance -l 4 -q MU Balance Sheet ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ 2021-03-04 ┃ 2021-06-03 ┃ 2021-09-02 ┃ 2021-12-02 ┃ diff --git a/website/content/terminal/stocks/fa/cal/_index.md b/website/content/terminal/stocks/fa/cal/_index.md index 835b4e1660b2..518245dd5add 100755 --- a/website/content/terminal/stocks/fa/cal/_index.md +++ b/website/content/terminal/stocks/fa/cal/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example shown for the loaded ticker MSFT: + ``` -2022 Feb 16, 04:47 (✨) /stocks/fa/ $ cal +2022 Feb 16, 04:47 (🦋) /stocks/fa/ $ cal Ticker Calendar Earnings ┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ Earnings Date ┃ Earnings Average ┃ Earnings Low ┃ Earnings High ┃ Revenue Average ┃ Revenue Low ┃ Revenue High ┃ diff --git a/website/content/terminal/stocks/fa/cash/_index.md b/website/content/terminal/stocks/fa/cash/_index.md index 4677a87a89f5..d8c116b49e26 100755 --- a/website/content/terminal/stocks/fa/cash/_index.md +++ b/website/content/terminal/stocks/fa/cash/_index.md @@ -23,8 +23,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 04:52 (✨) /stocks/fa/ $ cash -l 4 +2022 Feb 16, 04:52 (🦋) /stocks/fa/ $ cash -l 4 FB Balance Sheet ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ 2018-12-31 ┃ 2019-12-31 ┃ 2020-12-31 ┃ 2021-12-31 ┃ @@ -86,7 +87,7 @@ Example: │ netIncome │ 22.112 B │ 18.485 B │ 29.146 B │ 39.370 B │ └───────────────────────────────────────────────────────────┴────────────┴────────────┴────────────┴────────────┘ -2022 Feb 16, 04:52 (✨) /stocks/fa/ $ cash -l 4 -q +2022 Feb 16, 04:52 (🦋) /stocks/fa/ $ cash -l 4 -q FB Balance Sheet ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ 2021-03-31 ┃ 2021-06-30 ┃ 2021-09-30 ┃ 2021-12-31 ┃ diff --git a/website/content/terminal/stocks/fa/divs/_index.md b/website/content/terminal/stocks/fa/divs/_index.md index 7d5c528deaaa..fb3212eaeff0 100644 --- a/website/content/terminal/stocks/fa/divs/_index.md +++ b/website/content/terminal/stocks/fa/divs/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example (from ticker MSFT): + ``` -2022 Feb 16, 05:11 (✨) /stocks/fa/ $ divs +2022 Feb 16, 05:11 (🦋) /stocks/fa/ $ divs Ticker Historical Dividends ┏━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━┓ ┃ ┃ Amount Paid ($) ┃ Change ┃ diff --git a/website/content/terminal/stocks/fa/earnings/_index.md b/website/content/terminal/stocks/fa/earnings/_index.md index a3662b6578c0..fa1fc53123e2 100755 --- a/website/content/terminal/stocks/fa/earnings/_index.md +++ b/website/content/terminal/stocks/fa/earnings/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 05:14 (✨) /stocks/fa/ $ earnings -l 12 +2022 Feb 16, 05:14 (🦋) /stocks/fa/ $ earnings -l 12 MSFT Earnings ┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ Fiscal Date Ending ┃ Reported EPS ┃ @@ -46,7 +47,7 @@ Example: │ 2011-06-30 │ 2.69 │ └────────────────────┴──────────────┘ -2022 Feb 16, 05:15 (✨) /stocks/fa/ $ earnings -l 12 -q +2022 Feb 16, 05:15 (🦋) /stocks/fa/ $ earnings -l 12 -q MSFT Earnings ┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┓ ┃ Fiscal Date Ending ┃ Reported Date ┃ Reported EPS ┃ Estimated EPS ┃ Surprise ┃ Surprise Percentage ┃ diff --git a/website/content/terminal/stocks/fa/enterprise/_index.md b/website/content/terminal/stocks/fa/enterprise/_index.md index d3f4b45368f9..5836ac47c83d 100644 --- a/website/content/terminal/stocks/fa/enterprise/_index.md +++ b/website/content/terminal/stocks/fa/enterprise/_index.md @@ -16,8 +16,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 05:26 (✨) /stocks/fa/ $ enterprise -l 10 +2022 Feb 16, 05:26 (🦋) /stocks/fa/ $ enterprise -l 10 GOOGL Enterprise ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┓ ┃ ┃ 2012 ┃ 2013 ┃ 2014 ┃ 2015 ┃ 2016 ┃ 2017 ┃ 2018 ┃ 2019 ┃ 2020 ┃ 2021 ┃ diff --git a/website/content/terminal/stocks/fa/fraud/_index.md b/website/content/terminal/stocks/fa/fraud/_index.md index fb83d0aac912..85824559f712 100755 --- a/website/content/terminal/stocks/fa/fraud/_index.md +++ b/website/content/terminal/stocks/fa/fraud/_index.md @@ -5,15 +5,16 @@ usage: fraud [-h] [-d] [-e] [--export {csv,json,xlsx}] ``` optional arguments: -e, --explanation whether to show the description for the metrics (default: false) - -d, --detail show details on the calculation of mscore + -d, --detail show details on the calculation of mscore -h, --help show this help message --export {csv,json,xlsx} Export raw data into csv, json, xlsx ``` Example (ticker is MSFT): + ``` -2022 Feb 16, 05:42 (✨) /stocks/fa/ $ fraud +2022 Feb 16, 05:42 (🦋) /stocks/fa/ $ fraud AMscore Sub Stats: DSRI : 1.03 GMI : 0.98 @@ -30,8 +31,9 @@ ZSCORE: -1.89 (high chance of bankruptcy) McKee: 0.86 (high chance of bankruptcy) ``` -Mscore: +Mscore ------------------------------------------------ + The Beneish model is a statistical model that uses financial ratios calculated with accounting data of a specific company in order to check if it is likely (high probability) that the reported earnings of the company have been manipulated. A score of -5 to -2.22 indicated a low chance of fraud, a score of -2.22 to -1.78 indicates a moderate change of fraud, and a score above -1.78 indicated a high chance of fraud.[Source: Wikipedia] DSRI: @@ -58,11 +60,13 @@ Leverage Index represents change in leverage. A LVGI greater than one indicates TATA: Total Accruals to Total Assets is a proxy for the extent that cash underlies earnigns. A higher number is associated with a higher likelihood of manipulation. -Zscore: +Zscore ------------------------------------------------ + The Zmijewski Score is a bankruptcy model used to predict a firm's bankruptcy in two years. The ratio uses in the Zmijewski score were determined by probit analysis (think of probit as probability unit). In this case, scores less than .5 represent a higher probability of default. One of the criticisms that Zmijewski made was that other bankruptcy scoring models oversampled distressed firms and favored situations with more complete data.[Source: YCharts] -McKee Score: +McKee Score ------------------------------------------------ + The McKee Score is a bankruptcy model used to predict a firm's bankruptcy in one year. It looks at a companie's size, profitability, and liquidity to determine the probability. This model is 80% accurate in predicting bankruptcy. [Source: McKee and Lensberg](https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.619.594&rep=rep1&type=pdf) diff --git a/website/content/terminal/stocks/fa/growth/_index.md b/website/content/terminal/stocks/fa/growth/_index.md index 55682e62a00f..52be907eb439 100644 --- a/website/content/terminal/stocks/fa/growth/_index.md +++ b/website/content/terminal/stocks/fa/growth/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example (ticker is BABA): + ``` -2022 Feb 16, 05:29 (✨) /stocks/fa/ $ growth -l 10 +2022 Feb 16, 05:29 (🦋) /stocks/fa/ $ growth -l 10 Ticker Growth ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓ ┃ ┃ 2012 ┃ 2013 ┃ 2014 ┃ 2015 ┃ 2016 ┃ 2017 ┃ 2018 ┃ 2019 ┃ 2020 ┃ 2021 ┃ diff --git a/website/content/terminal/stocks/fa/income/_index.md b/website/content/terminal/stocks/fa/income/_index.md index 0fd4d12bb87f..f22a1c5fe52d 100755 --- a/website/content/terminal/stocks/fa/income/_index.md +++ b/website/content/terminal/stocks/fa/income/_index.md @@ -24,8 +24,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 06:23 (✨) /stocks/fa/ $ income -l 5 +2022 Feb 16, 06:23 (🦋) /stocks/fa/ $ income -l 5 MSFT Income Statement ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ 2017-06-30 ┃ 2018-06-30 ┃ 2019-06-30 ┃ 2020-06-30 ┃ 2021-06-30 ┃ diff --git a/website/content/terminal/stocks/fa/info/_index.md b/website/content/terminal/stocks/fa/info/_index.md index 0ce588a3f71a..2af4c4b24bc4 100755 --- a/website/content/terminal/stocks/fa/info/_index.md +++ b/website/content/terminal/stocks/fa/info/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:58 (✨) /stocks/fa/ $ info +2022 Feb 16, 08:58 (🦋) /stocks/fa/ $ info Ticker Info ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ ┃ Value ┃ @@ -251,6 +252,7 @@ Example: │ Trailing peg ratio │ 2.587 │ └───────────────────────────────────┴─────────────────────────────────────┘ ``` + ``` Business Summary: Tesla, Inc. designs, develops, manufactures, leases, and sells electric vehicles, and energy generation and storage systems in the United States, China, and internationally. The company operates in two segments, Automotive, and Energy Generation and Storage. The Automotive segment offers electric vehicles, as well as sells automotive regulatory credits. It provides sedans and sport utility vehicles through direct and used vehicle sales, a network of Tesla Superchargers, and in-app upgrades; and purchase financing and leasing services. This segment is also involved in the provision of non-warranty after-sales vehicle services, sale of used vehicles, retail merchandise, and vehicle insurance, as well as sale of products to third party customers; services for electric vehicles through its company-owned service locations, and Tesla mobile service technicians; and vehicle limited warranties and extended service plans. The Energy Generation and Storage segment engages in the design, manufacture, installation, sale, and leasing of solar energy generation and energy storage products, and related services to residential, commercial, and industrial customers and utilities through its website, stores, and galleries, as well as through a network of channel partners. This segment also offers service and repairs to its energy product customers, including under warranty; and various financing options to its solar customers. The company was formerly known as Tesla Motors, Inc. and changed its name to Tesla, Inc. in February 2017. Tesla, Inc. was incorporated in 2003 and is headquartered in Austin, Texas. diff --git a/website/content/terminal/stocks/fa/key/_index.md b/website/content/terminal/stocks/fa/key/_index.md index 0e2ca629130b..9e6eab1dddea 100644 --- a/website/content/terminal/stocks/fa/key/_index.md +++ b/website/content/terminal/stocks/fa/key/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 06:54 (✨) /stocks/fa/ $ key +2022 Feb 16, 06:54 (🦋) /stocks/fa/ $ key AAPL Key Metrics ┏━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓ ┃ ┃ ┃ diff --git a/website/content/terminal/stocks/fa/metrics/_index.md b/website/content/terminal/stocks/fa/metrics/_index.md index 16eb2189ced5..d8ffad6e8e90 100644 --- a/website/content/terminal/stocks/fa/metrics/_index.md +++ b/website/content/terminal/stocks/fa/metrics/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example (ticker is AMZN): + ``` -2022 Feb 16, 05:34 (✨) /stocks/fa/ $ metrics -l 10 +2022 Feb 16, 05:34 (🦋) /stocks/fa/ $ metrics -l 10 Ticker Key Metrics ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ 2012 ┃ 2013 ┃ 2014 ┃ 2015 ┃ 2016 ┃ 2017 ┃ 2018 ┃ 2019 ┃ 2020 ┃ 2021 ┃ diff --git a/website/content/terminal/stocks/fa/overview/_index.md b/website/content/terminal/stocks/fa/overview/_index.md index 4945a3c5c7c5..d82b7e0a61a5 100755 --- a/website/content/terminal/stocks/fa/overview/_index.md +++ b/website/content/terminal/stocks/fa/overview/_index.md @@ -2,7 +2,7 @@ usage: overview [-h] [--export {csv,json,xlsx}] ``` -Prints an overview about the company. Also, the C i k field corresponds to Central Index Key, which can be used to search a company on https://www.sec.gov/edgar/searchedgar/cik.htm [Source: Alpha Vantage] +Prints an overview about the company. Also, the C i k field corresponds to Central Index Key, which can be used to search a company on [Source: Alpha Vantage] ``` optional arguments: @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:03 (✨) /stocks/fa/ $ overview +2022 Feb 16, 07:03 (🦋) /stocks/fa/ $ overview TSLA Overview ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ ┃ ┃ @@ -109,6 +110,7 @@ Example: │ Ex dividend date │ None │ └───────────────────────────────┴───────────────────────────────────────┘ ``` + ``` Company Description: diff --git a/website/content/terminal/stocks/fa/ratios/_index.md b/website/content/terminal/stocks/fa/ratios/_index.md index 620f6300b6e0..428daee63892 100644 --- a/website/content/terminal/stocks/fa/ratios/_index.md +++ b/website/content/terminal/stocks/fa/ratios/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example (ticker is AAPL): + ``` -2022 Feb 16, 05:39 (✨) /stocks/fa/ $ ratios -l 10 +2022 Feb 16, 05:39 (🦋) /stocks/fa/ $ ratios -l 10 Ticker Ratios ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓ ┃ ┃ 2012 ┃ 2013 ┃ 2014 ┃ 2015 ┃ 2016 ┃ 2017 ┃ 2018 ┃ 2019 ┃ 2020 ┃ 2021 ┃ diff --git a/website/content/terminal/stocks/fa/score/_index.md b/website/content/terminal/stocks/fa/score/_index.md index e4ee9fc219de..6eb35403014c 100755 --- a/website/content/terminal/stocks/fa/score/_index.md +++ b/website/content/terminal/stocks/fa/score/_index.md @@ -12,7 +12,8 @@ optional arguments: ``` Example (ticker is TSLA): + ``` -2022 Feb 16, 07:05 (✨) /stocks/fa/ $ score +2022 Feb 16, 07:05 (🦋) /stocks/fa/ $ score Score: 32.22 % ``` diff --git a/website/content/terminal/stocks/fa/shrs/_index.md b/website/content/terminal/stocks/fa/shrs/_index.md index 1063c4f7eab5..b30fd9474c62 100755 --- a/website/content/terminal/stocks/fa/shrs/_index.md +++ b/website/content/terminal/stocks/fa/shrs/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example (ticker is TSLA): + ``` -2022 Feb 16, 07:08 (✨) /stocks/fa/ $ shrs +2022 Feb 16, 07:08 (🦋) /stocks/fa/ $ shrs Major Holders: diff --git a/website/content/terminal/stocks/fa/sust/_index.md b/website/content/terminal/stocks/fa/sust/_index.md index 15217ae1fa39..52f16c394cc0 100755 --- a/website/content/terminal/stocks/fa/sust/_index.md +++ b/website/content/terminal/stocks/fa/sust/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:01 (✨) /stocks/fa/ $ sust +2022 Feb 16, 09:01 (🦋) /stocks/fa/ $ sust Ticker Sustainability ┏━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┓ ┃ ┃ Value ┃ diff --git a/website/content/terminal/stocks/fa/warnings/_index.md b/website/content/terminal/stocks/fa/warnings/_index.md index 705b63ff54fa..f89ba8253529 100755 --- a/website/content/terminal/stocks/fa/warnings/_index.md +++ b/website/content/terminal/stocks/fa/warnings/_index.md @@ -2,7 +2,7 @@ usage: warnings [-d] [-h] [--export {csv,json,xlsx}] ``` -Sean Seah warnings. Check: Consistent historical earnings per share; Consistently high return on equity; Consistently high return on assets; 5x Net Income > Long-Term Debt; and Interest coverage ratio more than 3. See https://www.drwealth.com/gone-fishing-with- +Sean Seah warnings. Check: Consistent historical earnings per share; Consistently high return on equity; Consistently high return on assets; 5x Net Income > Long-Term Debt; and Interest coverage ratio more than 3. See - buffett-by-sean-seah/comment-page-1/ [Source: Market Watch] ``` @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:14 (✨) /stocks/fa/ $ warnings +2022 Feb 16, 07:14 (🦋) /stocks/fa/ $ warnings Sean Seah Warnings ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓ diff --git a/website/content/terminal/stocks/gov/lastcontracts/_index.md b/website/content/terminal/stocks/gov/lastcontracts/_index.md index 03c8edb7730f..92b7c2a5f352 100644 --- a/website/content/terminal/stocks/gov/lastcontracts/_index.md +++ b/website/content/terminal/stocks/gov/lastcontracts/_index.md @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:22 (✨) /stocks/gov/ $ lastcontracts +2022 Feb 16, 07:22 (🦋) /stocks/gov/ $ lastcontracts Last Government Contracts ┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Date ┃ Ticker ┃ Amount ┃ Description ┃ Agency ┃ diff --git a/website/content/terminal/stocks/gov/lasttrades/_index.md b/website/content/terminal/stocks/gov/lasttrades/_index.md index fff1c094f202..29b07edb9492 100644 --- a/website/content/terminal/stocks/gov/lasttrades/_index.md +++ b/website/content/terminal/stocks/gov/lasttrades/_index.md @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:24 (✨) /stocks/gov/ $ lasttrades +2022 Feb 16, 07:24 (🦋) /stocks/gov/ $ lasttrades Last transactions for CONGRESS @@ -83,8 +84,9 @@ Last transactions for CONGRESS │ 2022-01-31 │ NVDA │ Thomas R. Carper │ Purchase │ $1,001 - $15,000 │ Senate │ 2022-02-03 │ └──────────────────┴────────┴───────────────────────────┴─────────────┴───────────────────────┴─────────────────┴─────────────┘ ``` + ``` -2022 Feb 16, 07:25 (✨) /stocks/gov/ $ lasttrades -r Thomas R. Carper +2022 Feb 16, 07:25 (🦋) /stocks/gov/ $ lasttrades -r Thomas R. Carper Last transactions for CONGRESS diff --git a/website/content/terminal/stocks/gov/lobbying/_index.md b/website/content/terminal/stocks/gov/lobbying/_index.md index bda1f7d85797..d236291fead3 100755 --- a/website/content/terminal/stocks/gov/lobbying/_index.md +++ b/website/content/terminal/stocks/gov/lobbying/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:27 (✨) /stocks/gov/ $ lobbying +2022 Feb 16, 07:27 (🦋) /stocks/gov/ $ lobbying 2021-01-21: TESLA INC N/A 2020-10-20: TESLA INC N/A diff --git a/website/content/terminal/stocks/gov/qtrcontracts/_index.md b/website/content/terminal/stocks/gov/qtrcontracts/_index.md index 3f786afce422..e60e98587db5 100755 --- a/website/content/terminal/stocks/gov/qtrcontracts/_index.md +++ b/website/content/terminal/stocks/gov/qtrcontracts/_index.md @@ -17,8 +17,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:33 (✨) /stocks/gov/ $ qtrcontracts -l 20 +2022 Feb 16, 07:33 (🦋) /stocks/gov/ $ qtrcontracts -l 20 Quarterly Contracts ┏━━━━━━┳━━━━━━━━━━━━━━━━━┓ ┃ ┃ Total ┃ diff --git a/website/content/terminal/stocks/ins/blcp/_index.md b/website/content/terminal/stocks/ins/blcp/_index.md index 01cb57f13ced..cbe56c181bb8 100755 --- a/website/content/terminal/stocks/ins/blcp/_index.md +++ b/website/content/terminal/stocks/ins/blcp/_index.md @@ -2,7 +2,7 @@ usage: blcp [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Search a SEC Form 4 database for the latest excutive and director dispositions or acquisitions and the corporations they are associated with. Sourece: http://openinsider.com +Search a SEC Form 4 database for the latest excutive and director dispositions or acquisitions and the corporations they are associated with. Sourece: ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:45 (✨) /stocks/ins/ $ blcp +2022 Feb 16, 07:45 (🦋) /stocks/ins/ $ blcp Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/blcs/_index.md b/website/content/terminal/stocks/ins/blcs/_index.md index b1f71478e734..3ad83de61017 100755 --- a/website/content/terminal/stocks/ins/blcs/_index.md +++ b/website/content/terminal/stocks/ins/blcs/_index.md @@ -2,7 +2,7 @@ usage: blcs [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Print big latest CEO/CFO sales ($100k+) Source: http://openinsider.com +Print big latest CEO/CFO sales ($100k+) Source: ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:47 (✨) /stocks/ins/ $ blcs +2022 Feb 16, 07:47 (🦋) /stocks/ins/ $ blcs Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/blip/_index.md b/website/content/terminal/stocks/ins/blip/_index.md index 872e1a08bd03..241d22c7e0b0 100755 --- a/website/content/terminal/stocks/ins/blip/_index.md +++ b/website/content/terminal/stocks/ins/blip/_index.md @@ -2,7 +2,7 @@ usage: blip [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Print latest insider purchases ($25k+) Source: http://openinsider.com +Print latest insider purchases ($25k+) Source: ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:47 (✨) /stocks/ins/ $ blip +2022 Feb 16, 07:47 (🦋) /stocks/ins/ $ blip Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/blis/_index.md b/website/content/terminal/stocks/ins/blis/_index.md index 00ced54f2c1b..f1f9d2224d94 100755 --- a/website/content/terminal/stocks/ins/blis/_index.md +++ b/website/content/terminal/stocks/ins/blis/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:48 (✨) /stocks/ins/ $ blis +2022 Feb 16, 07:48 (🦋) /stocks/ins/ $ blis Insider Data ┏━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/blop/_index.md b/website/content/terminal/stocks/ins/blop/_index.md index 4aeef19f72e8..989328294b68 100755 --- a/website/content/terminal/stocks/ins/blop/_index.md +++ b/website/content/terminal/stocks/ins/blop/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:49 (✨) /stocks/ins/ $ blop +2022 Feb 16, 07:49 (🦋) /stocks/ins/ $ blop Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/blos/_index.md b/website/content/terminal/stocks/ins/blos/_index.md index b4e00949747a..b14148a6fc82 100755 --- a/website/content/terminal/stocks/ins/blos/_index.md +++ b/website/content/terminal/stocks/ins/blos/_index.md @@ -2,7 +2,7 @@ usage: blos [-l LIMIT] [-h] [--export {csv,json,xlsx}] ``` -Print big latest officer sales ($100k+) Source: https://Openinsider.com +Print big latest officer sales ($100k+) Source: ``` optional arguments: @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:51 (✨) /stocks/ins/ $ blos +2022 Feb 16, 07:51 (🦋) /stocks/ins/ $ blos Insider Data ┏━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/filter/_index.md b/website/content/terminal/stocks/ins/filter/_index.md index 515d89ebf832..3c33e35425d6 100755 --- a/website/content/terminal/stocks/ins/filter/_index.md +++ b/website/content/terminal/stocks/ins/filter/_index.md @@ -4,7 +4,6 @@ usage: filter [-l LIMIT] [-u] [-h] [--export {csv,json,xlsx}] Print open insider filtered data using loaded preset. [Source: OpenInsider] - ``` optional arguments: -l LIMIT, --limit LIMIT @@ -16,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:51 (✨) /stocks/ins/ $ filter +2022 Feb 16, 07:51 (🦋) /stocks/ins/ $ filter Insider filtered ┏━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ X ┃ Trading Date ┃ Ticker ┃ Insider ┃ Title ┃ Price ┃ Quantity ┃ Owned ┃ Delta Own ┃ Value ┃ Company ┃ diff --git a/website/content/terminal/stocks/ins/lcb/_index.md b/website/content/terminal/stocks/ins/lcb/_index.md index b312f31f7c36..70a9d3cd2f78 100755 --- a/website/content/terminal/stocks/ins/lcb/_index.md +++ b/website/content/terminal/stocks/ins/lcb/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:52 (✨) /stocks/ins/ $ lcb +2022 Feb 16, 07:52 (🦋) /stocks/ins/ $ lcb Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Industry ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/lins/_index.md b/website/content/terminal/stocks/ins/lins/_index.md index ff7e97955b98..0d9c9a15dd52 100755 --- a/website/content/terminal/stocks/ins/lins/_index.md +++ b/website/content/terminal/stocks/ins/lins/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:54 (✨) /stocks/ins/ $ lins +2022 Feb 16, 07:54 (🦋) /stocks/ins/ $ lins Insider Activity ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓ ┃ ┃ Relationship ┃ Transaction ┃ #Shares ┃ Cost ┃ Value ($) ┃ #Shares Total ┃ Insider Trading ┃ SEC Form 4 ┃ diff --git a/website/content/terminal/stocks/ins/lip/_index.md b/website/content/terminal/stocks/ins/lip/_index.md index 7daa64d3de46..34db7431c887 100755 --- a/website/content/terminal/stocks/ins/lip/_index.md +++ b/website/content/terminal/stocks/ins/lip/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:55 (✨) /stocks/ins/ $ lip +2022 Feb 16, 07:55 (🦋) /stocks/ins/ $ lip Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/lis/_index.md b/website/content/terminal/stocks/ins/lis/_index.md index 47f532b5d0b0..f447d016b370 100755 --- a/website/content/terminal/stocks/ins/lis/_index.md +++ b/website/content/terminal/stocks/ins/lis/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:56 (✨) /stocks/ins/ $ lis +2022 Feb 16, 07:56 (🦋) /stocks/ins/ $ lis Insider Data ┏━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/lit/_index.md b/website/content/terminal/stocks/ins/lit/_index.md index 185298feae4d..c4fa63cf2d26 100755 --- a/website/content/terminal/stocks/ins/lit/_index.md +++ b/website/content/terminal/stocks/ins/lit/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 07:58 (✨) /stocks/ins/ $ lit +2022 Feb 16, 07:58 (🦋) /stocks/ins/ $ lit Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/lpsb/_index.md b/website/content/terminal/stocks/ins/lpsb/_index.md index 7067877565ee..0f3ec2e454b9 100755 --- a/website/content/terminal/stocks/ins/lpsb/_index.md +++ b/website/content/terminal/stocks/ins/lpsb/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:13 (✨) /stocks/ins/ $ lpsb +2022 Feb 16, 08:13 (🦋) /stocks/ins/ $ lpsb Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/tippm/_index.md b/website/content/terminal/stocks/ins/tippm/_index.md index f6a575c3a566..e4e25128fe67 100755 --- a/website/content/terminal/stocks/ins/tippm/_index.md +++ b/website/content/terminal/stocks/ins/tippm/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:15 (✨) /stocks/ins/ $ tippm +2022 Feb 16, 08:15 (🦋) /stocks/ins/ $ tippm Insider Data ┏━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/tippw/_index.md b/website/content/terminal/stocks/ins/tippw/_index.md index 453e1e7249fd..c504e5d66ab9 100755 --- a/website/content/terminal/stocks/ins/tippw/_index.md +++ b/website/content/terminal/stocks/ins/tippw/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:16 (✨) /stocks/ins/ $ tippw +2022 Feb 16, 08:16 (🦋) /stocks/ins/ $ tippw Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/tipt/_index.md b/website/content/terminal/stocks/ins/tipt/_index.md index 9153b00a8687..f5df6265b13a 100755 --- a/website/content/terminal/stocks/ins/tipt/_index.md +++ b/website/content/terminal/stocks/ins/tipt/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:18 (✨) /stocks/ins/ $ tipt +2022 Feb 16, 08:18 (🦋) /stocks/ins/ $ tipt Insider Data ┏━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/tispm/_index.md b/website/content/terminal/stocks/ins/tispm/_index.md index 5cdb4a7a90fb..cbd1be4f962e 100755 --- a/website/content/terminal/stocks/ins/tispm/_index.md +++ b/website/content/terminal/stocks/ins/tispm/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:18 (✨) /stocks/ins/ $ tispm +2022 Feb 16, 08:18 (🦋) /stocks/ins/ $ tispm Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/tispw/_index.md b/website/content/terminal/stocks/ins/tispw/_index.md index 39ff7b8bcb93..f85e499fbff8 100755 --- a/website/content/terminal/stocks/ins/tispw/_index.md +++ b/website/content/terminal/stocks/ins/tispw/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:20 (✨) /stocks/ins/ $ tispw +2022 Feb 16, 08:20 (🦋) /stocks/ins/ $ tispw Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/toppm/_index.md b/website/content/terminal/stocks/ins/toppm/_index.md index 36ab6edd9637..dca7988ca005 100755 --- a/website/content/terminal/stocks/ins/toppm/_index.md +++ b/website/content/terminal/stocks/ins/toppm/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:23 (✨) /stocks/ins/ $ toppm +2022 Feb 16, 08:23 (🦋) /stocks/ins/ $ toppm Insider Data ┏━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/toppw/_index.md b/website/content/terminal/stocks/ins/toppw/_index.md index 568f5972503e..a35c39f66a21 100755 --- a/website/content/terminal/stocks/ins/toppw/_index.md +++ b/website/content/terminal/stocks/ins/toppw/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:23 (✨) /stocks/ins/ $ toppw +2022 Feb 16, 08:23 (🦋) /stocks/ins/ $ toppw Insider Data ┏━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ X ┃ Filing Date ┃ Trade Date ┃ Ticker ┃ Company Name ┃ Insider Name ┃ Title ┃ Trade Type ┃ Price ┃ Qty ┃ Owned ┃ Diff Own ┃ Value ┃ diff --git a/website/content/terminal/stocks/ins/view/_index.md b/website/content/terminal/stocks/ins/view/_index.md index 3a7f1cf48437..75f6e6ce2177 100755 --- a/website/content/terminal/stocks/ins/view/_index.md +++ b/website/content/terminal/stocks/ins/view/_index.md @@ -14,8 +14,9 @@ optional arguments: ``` See available options: + ``` -2022 Feb 16, 08:27 (✨) /stocks/ins/ $ view +2022 Feb 16, 08:27 (🦋) /stocks/ins/ $ view PRESET: Gold-Silver Gold and Silver Producers - Last 3 Months - All Transactions diff --git a/website/content/terminal/stocks/load/_index.md b/website/content/terminal/stocks/load/_index.md index 45034be216f8..4d21a0493206 100755 --- a/website/content/terminal/stocks/load/_index.md +++ b/website/content/terminal/stocks/load/_index.md @@ -4,13 +4,13 @@ usage: load [-t TICKER] [-s START] [-e END] [-i {1,5,15,30,60}] [--source {yf,av Load a symbol to perform analysis using the string above as a template. Optional arguments and their descriptions are listed below. -The default source is, yFinance (https://pypi.org/project/yfinance/). Alternatively, one may select either AlphaVantage (https://www.alphavantage.co/documentation/) or IEX Cloud (https://iexcloud.io/docs/api/) as the data source for the analysis. Please note that certain analytical features are exclusive to the source. +The default source is, yFinance (). Alternatively, one may select either AlphaVantage () or IEX Cloud () as the data source for the analysis. Please note that certain analytical features are exclusive to the source. To load a symbol from an exchange outside of the NYSE/NASDAQ default, use yFinance as the source and add the corresponding exchange to the end of the symbol. i.e. 'BNS.TO'. BNS is a dual-listed stock, there are separate options chains and order books for each listing. Opportunities for arbitrage may arise from momentary pricing discrepancies between listings with a dynamic exchange rate as a second order opportunity in ForEx spreads. -Find the full list of supported exchanges here: https://help.yahoo.com/kb/exchanges-data-providers-yahoo-finance-sln2310.html +Find the full list of supported exchanges here: Certain analytical features, such as VWAP, require the ticker to be loaded as intraday using the '-i x' argument. When encountering this error, simply reload the symbol using the interval argument. i.e. 'load -t BNS -s YYYY-MM-DD -i 1 -p' loads one-minute intervals, including Pre/After Market data, using the default source, yFinance. @@ -46,7 +46,7 @@ Loading a custom file looks in the folder `custom_imports/stocks` and is current Example: ```txt -2022 Feb 16, 08:29 (✨) /stocks/ $ load TSLA +2022 Feb 16, 08:29 (🦋) /stocks/ $ load TSLA Loading Daily TSLA stock with starting period 2019-02-11 for analysis. @@ -55,7 +55,7 @@ Timezone: America/New_York Currency: USD Market: OPEN -2022 Feb 16, 08:30 (✨) /stocks/ $ load AAPL +2022 Feb 16, 08:30 (🦋) /stocks/ $ load AAPL Loading Daily AAPL stock with starting period 2019-02-11 for analysis. @@ -64,7 +64,7 @@ Timezone: America/New_York Currency: USD Market: OPEN -2022 Feb 16, 08:30 (✨) /stocks/ $ load AMZN +2022 Feb 16, 08:30 (🦋) /stocks/ $ load AMZN Loading Daily AMZN stock with starting period 2019-02-11 for analysis. diff --git a/website/content/terminal/stocks/options/binom/_index.md b/website/content/terminal/stocks/options/binom/_index.md index 5ad8c9730818..eccd94e98d43 100644 --- a/website/content/terminal/stocks/options/binom/_index.md +++ b/website/content/terminal/stocks/options/binom/_index.md @@ -27,15 +27,15 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:40 (✨) /stocks/options/ $ binom -s 3100 -e --plot +2022 Feb 16, 08:40 (🦋) /stocks/options/ $ binom -s 3100 -e --plot AMZN call at $3100.00 expiring on 2022-03-25 is worth $136.85 -2022 Feb 16, 08:41 (✨) /stocks/options/ $ binom -s 3500 -p --plot +2022 Feb 16, 08:41 (🦋) /stocks/options/ $ binom -s 3500 -p --plot AMZN put at $3500.00 expiring on 2022-03-25 is worth $389.72 ``` -![binom](https://user-images.githubusercontent.com/46355364/154276789-b6786517-3bea-4aa7-9d2e-e6669dd82587.png) - +![binom](https://user-images.githubusercontent.com/46355364/154276789-b6786517-3bea-4aa7-9d2e-e6669dd82587.png) diff --git a/website/content/terminal/stocks/options/calc/_index.md b/website/content/terminal/stocks/options/calc/_index.md index fad08b932973..509f86abc0df 100644 --- a/website/content/terminal/stocks/options/calc/_index.md +++ b/website/content/terminal/stocks/options/calc/_index.md @@ -18,8 +18,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:45 (✨) /stocks/options/ $ calc -s 30 -p 6 -m 1 -M 50 +2022 Feb 16, 08:45 (🦋) /stocks/options/ $ calc -s 30 -p 6 -m 1 -M 50 Strike: $30.0 Premium: $6.0 diff --git a/website/content/terminal/stocks/options/exp/_index.md b/website/content/terminal/stocks/options/exp/_index.md index 11a223aae612..61c6ccaeaf72 100644 --- a/website/content/terminal/stocks/options/exp/_index.md +++ b/website/content/terminal/stocks/options/exp/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:50 (✨) /stocks/options/ $ exp +2022 Feb 16, 08:50 (🦋) /stocks/options/ $ exp Available expiry dates: 0. 2022-02-18 @@ -41,6 +42,6 @@ Available expiry dates: 19. 2023-09-15 20. 2024-01-19 -2022 Feb 16, 08:50 (✨) /stocks/options/ $ exp 7 +2022 Feb 16, 08:50 (🦋) /stocks/options/ $ exp 7 Expiration set to 2022-04-14 ``` diff --git a/website/content/terminal/stocks/options/greeks/_index.md b/website/content/terminal/stocks/options/greeks/_index.md index 444faed82e95..b58a7283598e 100644 --- a/website/content/terminal/stocks/options/greeks/_index.md +++ b/website/content/terminal/stocks/options/greeks/_index.md @@ -20,8 +20,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 08:52 (✨) /stocks/options/ $ greeks -a +2022 Feb 16, 08:52 (🦋) /stocks/options/ $ greeks -a Greeks ┏━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━┳━━━━━━━┳━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┓ ┃ Strike ┃ Implied Vol ┃ Delta ┃ Gamma ┃ Vega ┃ Theta ┃ Rho ┃ Phi ┃ Charm ┃ Vanna ┃ Vomma ┃ diff --git a/website/content/terminal/stocks/options/hist/_index.md b/website/content/terminal/stocks/options/hist/_index.md index a1100eefd417..f711a2d041ab 100644 --- a/website/content/terminal/stocks/options/hist/_index.md +++ b/website/content/terminal/stocks/options/hist/_index.md @@ -18,8 +18,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:07 (✨) /stocks/options/ $ hist -s 3300 -p +2022 Feb 16, 09:07 (🦋) /stocks/options/ $ hist -s 3300 -p AMZN raw data ┏━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓ ┃ ┃ Date ┃ Open ┃ High ┃ Low ┃ Close ┃ Change ┃ Volume ┃ Open Interest ┃ Change Since ┃ diff --git a/website/content/terminal/stocks/options/info/_index.md b/website/content/terminal/stocks/options/info/_index.md index b1c0a392a220..05bc1d30e8b8 100644 --- a/website/content/terminal/stocks/options/info/_index.md +++ b/website/content/terminal/stocks/options/info/_index.md @@ -12,8 +12,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:09 (✨) /stocks/options/ $ info +2022 Feb 16, 09:09 (🦋) /stocks/options/ $ info Options Information ┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ ┃ ┃ diff --git a/website/content/terminal/stocks/options/load/_index.md b/website/content/terminal/stocks/options/load/_index.md index a1de09932286..6b1701a6c332 100644 --- a/website/content/terminal/stocks/options/load/_index.md +++ b/website/content/terminal/stocks/options/load/_index.md @@ -14,10 +14,11 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:13 (✨) /stocks/options/ $ load TSLA +2022 Feb 16, 09:13 (🦋) /stocks/options/ $ load TSLA -2022 Feb 16, 09:13 (✨) /stocks/options/ $ ? +2022 Feb 16, 09:13 (🦋) /stocks/options/ $ ? ╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Stocks - Options ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ │ │ unu show unusual options activity [Fdscanner.com] │ @@ -47,5 +48,5 @@ Example: │ > payoff shows payoff diagram for a selection of options [Yfinance] │ │ > pricing shows options pricing and risk neutral valuation [Yfinance] │ │ │ -╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Gamestonk Terminal ─╯ +╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── OpenBB Terminal ─╯ ``` diff --git a/website/content/terminal/stocks/options/oi/_index.md b/website/content/terminal/stocks/options/oi/_index.md index 4f6ae45badf2..57b974426e3d 100644 --- a/website/content/terminal/stocks/options/oi/_index.md +++ b/website/content/terminal/stocks/options/oi/_index.md @@ -18,13 +18,14 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:13 (✨) /stocks/options/ $ load SPY +2022 Feb 16, 09:13 (🦋) /stocks/options/ $ load SPY -2022 Feb 16, 09:14 (✨) /stocks/options/ $ exp 10 +2022 Feb 16, 09:14 (🦋) /stocks/options/ $ exp 10 Expiration set to 2022-03-11 -2022 Feb 16, 09:14 (✨) /stocks/options/ $ oi +2022 Feb 16, 09:14 (🦋) /stocks/options/ $ oi ``` ![oi](https://user-images.githubusercontent.com/46355364/154282811-b8b7d36b-2e4e-44c0-8026-b244d97a8608.png) diff --git a/website/content/terminal/stocks/options/parity/_index.md b/website/content/terminal/stocks/options/parity/_index.md index 95c394363db7..7ea573eba7da 100644 --- a/website/content/terminal/stocks/options/parity/_index.md +++ b/website/content/terminal/stocks/options/parity/_index.md @@ -16,10 +16,11 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:17 (✨) /stocks/options/ $ load TSLA +2022 Feb 16, 09:17 (🦋) /stocks/options/ $ load TSLA -2022 Feb 16, 09:18 (✨) /stocks/options/ $ parity -m 900 -M 950 +2022 Feb 16, 09:18 (🦋) /stocks/options/ $ parity -m 900 -M 950 Warning: Low volume options may be difficult to trade. ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━┓ ┃ Strike ┃ Call Difference ┃ diff --git a/website/content/terminal/stocks/options/payoff/add/_index.md b/website/content/terminal/stocks/options/payoff/add/_index.md index 0f4b66101e63..99dc15b29cd2 100644 --- a/website/content/terminal/stocks/options/payoff/add/_index.md +++ b/website/content/terminal/stocks/options/payoff/add/_index.md @@ -16,23 +16,24 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:23 (✨) /stocks/options/payoff/ $ add 3 +2022 Feb 16, 09:23 (🦋) /stocks/options/payoff/ $ add 3 # Type Hold Strike Cost 0 call Long 730.0 189.05 -2022 Feb 16, 09:23 (✨) /stocks/options/payoff/ $ add 7 +2022 Feb 16, 09:23 (🦋) /stocks/options/payoff/ $ add 7 # Type Hold Strike Cost 0 call Long 730.0 189.05 1 call Long 780.0 141.96 -2022 Feb 16, 09:23 (✨) /stocks/options/payoff/ $ add 15 +2022 Feb 16, 09:23 (🦋) /stocks/options/payoff/ $ add 15 # Type Hold Strike Cost 0 call Long 730.0 189.05 1 call Long 780.0 141.96 2 call Long 850.0 102.0 -2022 Feb 16, 09:23 (✨) /stocks/options/payoff/ $ add 20 +2022 Feb 16, 09:23 (🦋) /stocks/options/payoff/ $ add 20 # Type Hold Strike Cost 0 call Long 730.0 189.05 1 call Long 780.0 141.96 diff --git a/website/content/terminal/stocks/options/payoff/list/_index.md b/website/content/terminal/stocks/options/payoff/list/_index.md index bcf320a56186..6a27b11a9a8d 100644 --- a/website/content/terminal/stocks/options/payoff/list/_index.md +++ b/website/content/terminal/stocks/options/payoff/list/_index.md @@ -10,8 +10,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:31 (✨) /stocks/options/payoff/ $ list +2022 Feb 16, 09:31 (🦋) /stocks/options/payoff/ $ list # call put 0 600.0 200.0 1 700.0 250.0 diff --git a/website/content/terminal/stocks/options/payoff/pick/_index.md b/website/content/terminal/stocks/options/payoff/pick/_index.md index 9e3fb2cce2d5..18aabab4fab4 100644 --- a/website/content/terminal/stocks/options/payoff/pick/_index.md +++ b/website/content/terminal/stocks/options/payoff/pick/_index.md @@ -12,10 +12,11 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:25 (✨) /stocks/options/payoff/ $ pick -t long +2022 Feb 16, 09:25 (🦋) /stocks/options/payoff/ $ pick -t long -2022 Feb 16, 09:25 (✨) /stocks/options/payoff/ $ ? +2022 Feb 16, 09:25 (🦋) /stocks/options/payoff/ $ ? ╭───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Stocks - Options - Payoff ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ │ │ Ticker: TSLA │ @@ -33,5 +34,5 @@ Example: │ sop selected options │ │ plot show the option payoff diagram │ │ │ -╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Gamestonk Terminal ─╯ +╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── OpenBB Terminal ─╯ ``` diff --git a/website/content/terminal/stocks/options/payoff/rmv/_index.md b/website/content/terminal/stocks/options/payoff/rmv/_index.md index dc67d76cebca..4d55bdf6c02c 100644 --- a/website/content/terminal/stocks/options/payoff/rmv/_index.md +++ b/website/content/terminal/stocks/options/payoff/rmv/_index.md @@ -13,8 +13,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:28 (✨) /stocks/options/payoff/ $ rmv 0 +2022 Feb 16, 09:28 (🦋) /stocks/options/payoff/ $ rmv 0 # Type Hold Strike Cost 0 call Long 780.0 141.96 1 call Long 850.0 102.0 @@ -22,14 +23,14 @@ Example: 3 call Long 600.0 320.73 4 call Long 700.0 226.06 -2022 Feb 16, 09:28 (✨) /stocks/options/payoff/ $ rmv 3 +2022 Feb 16, 09:28 (🦋) /stocks/options/payoff/ $ rmv 3 # Type Hold Strike Cost 0 call Long 780.0 141.96 1 call Long 850.0 102.0 2 call Long 875.0 89.4 3 call Long 700.0 226.06 -2022 Feb 16, 09:28 (✨) /stocks/options/payoff/ $ rmv 2 +2022 Feb 16, 09:28 (🦋) /stocks/options/payoff/ $ rmv 2 # Type Hold Strike Cost 0 call Long 780.0 141.96 1 call Long 850.0 102.0 diff --git a/website/content/terminal/stocks/options/payoff/sop/_index.md b/website/content/terminal/stocks/options/payoff/sop/_index.md index c1c77802c293..73bd931b5964 100644 --- a/website/content/terminal/stocks/options/payoff/sop/_index.md +++ b/website/content/terminal/stocks/options/payoff/sop/_index.md @@ -10,8 +10,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:30 (✨) /stocks/options/payoff/ $ sop +2022 Feb 16, 09:30 (🦋) /stocks/options/payoff/ $ sop # Type Hold Strike Cost 0 call Long 780.0 141.96 1 call Long 850.0 102.0 diff --git a/website/content/terminal/stocks/options/plot/_index.md b/website/content/terminal/stocks/options/plot/_index.md index c03e09e4a0e7..f08c8fdc8070 100644 --- a/website/content/terminal/stocks/options/plot/_index.md +++ b/website/content/terminal/stocks/options/plot/_index.md @@ -19,7 +19,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:37 (✨) /stocks/options/ $ plot -p -x s -y iv +2022 Feb 16, 09:37 (🦋) /stocks/options/ $ plot -p -x s -y iv ``` + ![plot](https://user-images.githubusercontent.com/46355364/154287325-97de8945-a44c-418d-9e88-5123ee70469f.png) diff --git a/website/content/terminal/stocks/options/pricing/add/_index.md b/website/content/terminal/stocks/options/pricing/add/_index.md index 778aec10e7d1..dfb424272574 100644 --- a/website/content/terminal/stocks/options/pricing/add/_index.md +++ b/website/content/terminal/stocks/options/pricing/add/_index.md @@ -14,12 +14,13 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:42 (✨) /stocks/options/pricing/ $ add -p 175 -c 0.5 +2022 Feb 16, 09:42 (🦋) /stocks/options/pricing/ $ add -p 175 -c 0.5 -2022 Feb 16, 09:43 (✨) /stocks/options/pricing/ $ add -p 165 -c 0.5 +2022 Feb 16, 09:43 (🦋) /stocks/options/pricing/ $ add -p 165 -c 0.5 -2022 Feb 16, 09:43 (✨) /stocks/options/pricing/ $ show +2022 Feb 16, 09:43 (🦋) /stocks/options/pricing/ $ show Estimated price(s) of AAPL at 2022-05-20 ┏━━━━━━━━┳━━━━━━━━┓ ┃ Price ┃ Chance ┃ diff --git a/website/content/terminal/stocks/options/pricing/rmv/_index.md b/website/content/terminal/stocks/options/pricing/rmv/_index.md index 5bd7076c668c..5784f4129fbd 100644 --- a/website/content/terminal/stocks/options/pricing/rmv/_index.md +++ b/website/content/terminal/stocks/options/pricing/rmv/_index.md @@ -13,10 +13,11 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:44 (✨) /stocks/options/pricing/ $ rmv -p 165 +2022 Feb 16, 09:44 (🦋) /stocks/options/pricing/ $ rmv -p 165 -2022 Feb 16, 09:44 (✨) /stocks/options/pricing/ $ show +2022 Feb 16, 09:44 (🦋) /stocks/options/pricing/ $ show Estimated price(s) of AAPL at 2022-05-20 ┏━━━━━━━━┳━━━━━━━━┓ ┃ Price ┃ Chance ┃ diff --git a/website/content/terminal/stocks/options/pricing/rnval/_index.md b/website/content/terminal/stocks/options/pricing/rnval/_index.md index d105c8cf7756..9e1c17931bd9 100644 --- a/website/content/terminal/stocks/options/pricing/rnval/_index.md +++ b/website/content/terminal/stocks/options/pricing/rnval/_index.md @@ -29,12 +29,13 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:45 (✨) /stocks/options/pricing/ $ add -p 100 -c 0.5 +2022 Feb 16, 09:45 (🦋) /stocks/options/pricing/ $ add -p 100 -c 0.5 -2022 Feb 16, 09:46 (✨) /stocks/options/pricing/ $ add -p 200 -c 0.5 +2022 Feb 16, 09:46 (🦋) /stocks/options/pricing/ $ add -p 200 -c 0.5 -2022 Feb 16, 09:46 (✨) /stocks/options/pricing/ $ show +2022 Feb 16, 09:46 (🦋) /stocks/options/pricing/ $ show Estimated price(s) of AAPL at 2022-05-20 ┏━━━━━━━━┳━━━━━━━━┓ ┃ Price ┃ Chance ┃ @@ -43,7 +44,7 @@ Estimated price(s) of AAPL at 2022-05-20 ├────────┼────────┤ │ 200.00 │ 0.50 │ └────────┴────────┘ -2022 Feb 16, 09:46 (✨) /stocks/options/pricing/ $ rnval +2022 Feb 16, 09:46 (🦋) /stocks/options/pricing/ $ rnval Risk Neutral Values ┏━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━┓ ┃ Strike ┃ Last Price ┃ Value ┃ Difference ┃ diff --git a/website/content/terminal/stocks/options/pricing/show/_index.md b/website/content/terminal/stocks/options/pricing/show/_index.md index 56e229a10580..7c869b2cf9db 100644 --- a/website/content/terminal/stocks/options/pricing/show/_index.md +++ b/website/content/terminal/stocks/options/pricing/show/_index.md @@ -10,12 +10,13 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:45 (✨) /stocks/options/pricing/ $ add -p 100 -c 0.5 +2022 Feb 16, 09:45 (🦋) /stocks/options/pricing/ $ add -p 100 -c 0.5 -2022 Feb 16, 09:46 (✨) /stocks/options/pricing/ $ add -p 200 -c 0.5 +2022 Feb 16, 09:46 (🦋) /stocks/options/pricing/ $ add -p 200 -c 0.5 -2022 Feb 16, 09:46 (✨) /stocks/options/pricing/ $ show +2022 Feb 16, 09:46 (🦋) /stocks/options/pricing/ $ show Estimated price(s) of AAPL at 2022-05-20 ┏━━━━━━━━┳━━━━━━━━┓ ┃ Price ┃ Chance ┃ diff --git a/website/content/terminal/stocks/options/unu/_index.md b/website/content/terminal/stocks/options/unu/_index.md index 0fbfe1f3fc2d..ec6b7cdd6d63 100644 --- a/website/content/terminal/stocks/options/unu/_index.md +++ b/website/content/terminal/stocks/options/unu/_index.md @@ -2,7 +2,7 @@ usage: unu [-l LIMIT] [-s {Strike,Vol/OI,Vol,OI,Bid,Ask,Exp,Ticker} [{Strike,Vol/OI,Vol,OI,Bid,Ask,Exp,Ticker} ...]] [-a] [-p] [-c] [-h] [--export {csv,json,xlsx}] ``` -See unusual options activity and sort by the available columns. Source: https://fdsscanner.com +See unusual options activity and sort by the available columns. Source: Note that sorting by multiple columns can be done by using multiple arguments, i.e `-s Ticker Strike` @@ -23,8 +23,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 09:51 (✨) /stocks/options/ $ unu +2022 Feb 16, 09:51 (🦋) /stocks/options/ $ unu Last Updated: 2022-02-15 16:37:03 (EST) ┏━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┳━━━━━━━┓ ┃ Ticker ┃ Exp ┃ Strike ┃ Type ┃ Vol/OI ┃ Vol ┃ OI ┃ Bid ┃ Ask ┃ diff --git a/website/content/terminal/stocks/quote/_index.md b/website/content/terminal/stocks/quote/_index.md index 292de47354f2..db27fad0ea80 100755 --- a/website/content/terminal/stocks/quote/_index.md +++ b/website/content/terminal/stocks/quote/_index.md @@ -13,7 +13,7 @@ optional arguments: ``` ``` -2022 Feb 14, 08:59 (✨) /stocks/ $ quote +2022 Feb 14, 08:59 (🦋) /stocks/ $ quote Ticker Quote ┌────────────────┬─────────────┐ │ │ TSLA │ @@ -41,7 +41,7 @@ optional arguments: │ Change % │ -4.93% │ └────────────────┴─────────────┘ -2022 Feb 14, 09:00 (✨) /stocks/ $ quote -t AAPL +2022 Feb 14, 09:00 (🦋) /stocks/ $ quote -t AAPL Ticker Quote ┌────────────────┬────────────┐ │ │ AAPL │ diff --git a/website/content/terminal/stocks/scr/overview/_index.md b/website/content/terminal/stocks/scr/overview/_index.md index 0387cd5613b3..999b5add5f5b 100755 --- a/website/content/terminal/stocks/scr/overview/_index.md +++ b/website/content/terminal/stocks/scr/overview/_index.md @@ -23,7 +23,7 @@ optional arguments: ``` ``` -2022 Feb 14, 08:40 (✨) /stocks/scr/ $ overview -p buffett_like +2022 Feb 14, 08:40 (🦋) /stocks/scr/ $ overview -p buffett_like Finzin Screener ┌────────┬───────────────────────────────────────┬────────────────────────┬──────────────────────────────────────────┬─────────┬───────────────┬──────┬───────┬────────┬──────────────┐ │ Ticker │ Company │ Sector │ Industry │ Country │ Market Cap │ P/E │ Price │ Change │ Volume │ @@ -49,7 +49,7 @@ optional arguments: │ CRS │ Carpenter Technology Corporation │ Industrials │ Metal Fabrication │ USA │ 1600000000.00 │ │ 38.73 │ 0.17 │ 1839490.00 │ └────────┴───────────────────────────────────────┴────────────────────────┴──────────────────────────────────────────┴─────────┴───────────────┴──────┴───────┴────────┴──────────────┘ -2022 Feb 14, 08:40 (✨) /stocks/scr/ $ overview -p channel_up +2022 Feb 14, 08:40 (🦋) /stocks/scr/ $ overview -p channel_up Finzin Screener ┌────────┬───────────────────────────────────────┬────────────────────────┬──────────────────────────────────────────┬─────────┬───────────────┬──────┬───────┬────────┬──────────────┐ │ Ticker │ Company │ Sector │ Industry │ Country │ Market Cap │ P/E │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/scr/ownership/_index.md b/website/content/terminal/stocks/scr/ownership/_index.md index 3e6fb5622b5a..44ceafc6e1fa 100755 --- a/website/content/terminal/stocks/scr/ownership/_index.md +++ b/website/content/terminal/stocks/scr/ownership/_index.md @@ -25,7 +25,7 @@ optional arguments: ``` ``` -2022 Feb 14, 08:43 (✨) /stocks/scr/ $ ownership -p top_performers_all +2022 Feb 14, 08:43 (🦋) /stocks/scr/ $ ownership -p top_performers_all Finzin Screener ┌────────┬───────────────┬───────────────┬───────────────┬─────────────┬───────────────┬──────────┬────────────┬─────────────┬─────────────┬──────────────┬───────┬────────┬──────────────┐ │ Ticker │ Market Cap │ Outstanding │ Float │ Insider Own │ Insider Trans │ Inst Own │ Inst Trans │ Float Short │ Short Ratio │ Avg Volume │ Price │ Change │ Volume │ @@ -51,7 +51,7 @@ optional arguments: │ CRS │ 1600000000.00 │ 48600000.00 │ 47320000.00 │ 0.01 │ 0.00 │ 0.92 │ -0.00 │ 0.03 │ 3.67 │ 437500.00 │ 38.73 │ 0.17 │ 1839490.00 │ └────────┴───────────────┴───────────────┴───────────────┴─────────────┴───────────────┴──────────┴────────────┴─────────────┴─────────────┴──────────────┴───────┴────────┴──────────────┘ -2022 Feb 14, 08:43 (✨) /stocks/scr/ $ ownership -p double_bottom +2022 Feb 14, 08:43 (🦋) /stocks/scr/ $ ownership -p double_bottom Finzin Screener ┌────────┬───────────────┬───────────────┬───────────────┬─────────────┬───────────────┬──────────┬────────────┬─────────────┬─────────────┬──────────────┬───────┬────────┬──────────────┐ │ Ticker │ Market Cap │ Outstanding │ Float │ Insider Own │ Insider Trans │ Inst Own │ Inst Trans │ Float Short │ Short Ratio │ Avg Volume │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/scr/performance/_index.md b/website/content/terminal/stocks/scr/performance/_index.md index cc2c23d3375d..d0db65b4093f 100755 --- a/website/content/terminal/stocks/scr/performance/_index.md +++ b/website/content/terminal/stocks/scr/performance/_index.md @@ -25,7 +25,7 @@ optional arguments: ``` ``` -2022 Feb 14, 08:44 (✨) /stocks/scr/ $ performance -p rosenwald +2022 Feb 14, 08:44 (🦋) /stocks/scr/ $ performance -p rosenwald Finzin Screener ┌────────┬───────────┬────────────┬────────────┬───────────┬───────────┬──────────┬──────────────┬──────────────┬───────┬──────────────┬────────────┬───────┬────────┬──────────────┐ │ Ticker │ Perf Week │ Perf Month │ Perf Quart │ Perf Half │ Perf Year │ Perf YTD │ Volatility W │ Volatility M │ Recom │ Avg Volume │ Rel Volume │ Price │ Change │ Volume │ @@ -51,7 +51,7 @@ optional arguments: │ CRS │ 0.34 │ 0.19 │ 0.16 │ 0.05 │ 0.08 │ 0.33 │ 0.09 │ 0.07 │ 2.50 │ 437500.00 │ 4.48 │ 38.73 │ 0.17 │ 1839490.00 │ └────────┴───────────┴────────────┴────────────┴───────────┴───────────┴──────────┴──────────────┴──────────────┴───────┴──────────────┴────────────┴───────┴────────┴──────────────┘ -2022 Feb 14, 08:45 (✨) /stocks/scr/ $ performance -p head_shoulders_inverse +2022 Feb 14, 08:45 (🦋) /stocks/scr/ $ performance -p head_shoulders_inverse Finzin Screener ┌────────┬───────────┬────────────┬────────────┬───────────┬───────────┬──────────┬──────────────┬──────────────┬───────┬──────────────┬────────────┬───────┬────────┬──────────────┐ │ Ticker │ Perf Week │ Perf Month │ Perf Quart │ Perf Half │ Perf Year │ Perf YTD │ Volatility W │ Volatility M │ Recom │ Avg Volume │ Rel Volume │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/scr/technical/_index.md b/website/content/terminal/stocks/scr/technical/_index.md index fa7c4f9cf1c9..aa9830158576 100755 --- a/website/content/terminal/stocks/scr/technical/_index.md +++ b/website/content/terminal/stocks/scr/technical/_index.md @@ -24,7 +24,7 @@ optional arguments: ``` ``` -2022 Feb 14, 08:53 (✨) /stocks/scr/ $ technical -p cheap_bottom_dividend +2022 Feb 14, 08:53 (🦋) /stocks/scr/ $ technical -p cheap_bottom_dividend Finzin Screener ┌────────┬───────┬───────┬───────┬───────┬────────┬──────────┬─────────┬───────┬────────┬────────┬───────────┬───────┬─────────────┐ │ Ticker │ Beta │ ATR │ SMA20 │ SMA50 │ SMA200 │ 52W High │ 52W Low │ RSI │ Price │ Change │ from Open │ Gap │ Volume │ @@ -50,7 +50,7 @@ optional arguments: │ YELL │ 3.10 │ 0.81 │ -0.05 │ -0.14 │ 0.19 │ -0.35 │ 1.05 │ 43.45 │ 9.96 │ -0.05 │ -0.04 │ -0.01 │ 505353.00 │ └────────┴───────┴───────┴───────┴───────┴────────┴──────────┴─────────┴───────┴────────┴────────┴───────────┴───────┴─────────────┘ -2022 Feb 14, 08:53 (✨) /stocks/scr/ $ technical -p recent_insider_selling +2022 Feb 14, 08:53 (🦋) /stocks/scr/ $ technical -p recent_insider_selling Finzin Screener ┌────────┬───────┬───────┬───────┬───────┬────────┬──────────┬─────────┬───────┬────────┬────────┬───────────┬───────┬─────────────┐ │ Ticker │ Beta │ ATR │ SMA20 │ SMA50 │ SMA200 │ 52W High │ 52W Low │ RSI │ Price │ Change │ from Open │ Gap │ Volume │ diff --git a/website/content/terminal/stocks/scr/valuation/_index.md b/website/content/terminal/stocks/scr/valuation/_index.md index e8a07d1c17c2..410e42e29836 100755 --- a/website/content/terminal/stocks/scr/valuation/_index.md +++ b/website/content/terminal/stocks/scr/valuation/_index.md @@ -25,7 +25,7 @@ optional arguments: ``` ``` -2022 Feb 14, 08:55 (✨) /stocks/scr/ $ valuation -p potential_reversals +2022 Feb 14, 08:55 (🦋) /stocks/scr/ $ valuation -p potential_reversals Finzin Screener ┌────────┬────────────────┬────────┬─────────┬───────┬───────┬───────┬───────┬────────┬────────────┬────────────┬─────────────┬─────────────┬───────────────┬────────┬────────┬─────────────┐ │ Ticker │ Market Cap │ P/E │ Fwd P/E │ PEG │ P/S │ P/B │ P/C │ P/FCF │ EPS this Y │ EPS next Y │ EPS past 5Y │ EPS next 5Y │ Sales past 5Y │ Price │ Change │ Volume │ @@ -51,7 +51,7 @@ optional arguments: │ YELL │ 538640000.00 │ │ 9.31 │ │ 0.11 │ │ 1.73 │ │ -0.68 │ 0.24 │ -0.40 │ │ 0.02 │ 9.96 │ -0.05 │ 505353.00 │ └────────┴────────────────┴────────┴─────────┴───────┴───────┴───────┴───────┴────────┴────────────┴────────────┴─────────────┴─────────────┴───────────────┴────────┴────────┴─────────────┘ -2022 Feb 14, 08:56 (✨) /stocks/scr/ $ valuation -p major_news +2022 Feb 14, 08:56 (🦋) /stocks/scr/ $ valuation -p major_news Finzin Screener ┌────────┬────────────────┬────────┬─────────┬───────┬───────┬───────┬───────┬────────┬────────────┬────────────┬─────────────┬─────────────┬───────────────┬────────┬────────┬─────────────┐ │ Ticker │ Market Cap │ P/E │ Fwd P/E │ PEG │ P/S │ P/B │ P/C │ P/FCF │ EPS this Y │ EPS next Y │ EPS past 5Y │ EPS next 5Y │ Sales past 5Y │ Price │ Change │ Volume │ diff --git a/website/content/terminal/stocks/sia/metric/_index.md b/website/content/terminal/stocks/sia/metric/_index.md index 722d5007ca60..81dfbe3c033e 100644 --- a/website/content/terminal/stocks/sia/metric/_index.md +++ b/website/content/terminal/stocks/sia/metric/_index.md @@ -4,6 +4,7 @@ usage: metric [-m {roa,roe,cr,qr,de,tc,tcs,tr,rps,rg,eg,pm,gp,gm,ocf,om,fcf,td,e Visualize a particular metric with the filters selected ``` + optional arguments: -m {roa,roe,cr,qr,de,tc,tcs,tr,rps,rg,eg,pm,gp,gm,ocf,om,fcf,td,ebitda,ebitdam,rec,mc,fte,er,bv,ss,pb,beta,fs,peg,ev,fpe}, --metric {roa,roe,cr,qr,de,tc,tcs,tr,rps,rg,eg,pm,gp,gm,ocf,om,fcf,td,ebitda,ebitdam,rec,mc,fte,er,bv,ss,pb,beta,fs,peg,ev,fpe} Metric to visualize (default: None) @@ -12,10 +13,12 @@ optional arguments: -r, --raw Output all raw data (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: ) + ``` Return on Equity example: ``` + │ Industry : Software - Infrastructure │ │ Sector : Technology │ │ Country : United States │ @@ -23,14 +26,15 @@ Return on Equity example: │ Exclude Exchanges : True │ │ Period : Annual +2022 Mar 21, 09:51 (🦋) /stocks/sia/ $ metric roe -2022 Mar 21, 09:51 (✨) /stocks/sia/ $ metric roe ``` ![metric roe](https://user-images.githubusercontent.com/46355364/159276031-ad84d153-9cb3-440e-9771-090aa6c467c4.png) Full Time Employees example: ``` + │ Industry : Financial Data & Stock Exchanges │ │ Sector : Financial Services │ │ Country : United States │ @@ -38,6 +42,7 @@ Full Time Employees example: │ Exclude Exchanges : True │ │ Period : Annual -2022 Mar 21, 09:55 (✨) /stocks/sia/ $ metric fte +2022 Mar 21, 09:55 (🦋) /stocks/sia/ $ metric fte + ``` ![metric fte](https://user-images.githubusercontent.com/46355364/159276335-d0ecb16f-eac2-421f-b69e-3bbffe126bd1.png) diff --git a/website/content/terminal/common/ta/_index.md b/website/content/terminal/ta/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/_index.md rename to website/content/terminal/ta/_index.md diff --git a/website/content/terminal/common/ta/ad/_index.md b/website/content/terminal/ta/ad/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/ad/_index.md rename to website/content/terminal/ta/ad/_index.md diff --git a/website/content/terminal/common/ta/adosc/_index.md b/website/content/terminal/ta/adosc/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/adosc/_index.md rename to website/content/terminal/ta/adosc/_index.md diff --git a/website/content/terminal/common/ta/adx/_index.md b/website/content/terminal/ta/adx/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/adx/_index.md rename to website/content/terminal/ta/adx/_index.md diff --git a/website/content/terminal/common/ta/aroon/_index.md b/website/content/terminal/ta/aroon/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/aroon/_index.md rename to website/content/terminal/ta/aroon/_index.md diff --git a/website/content/terminal/common/ta/atr/_index.md b/website/content/terminal/ta/atr/_index.md similarity index 100% rename from website/content/terminal/common/ta/atr/_index.md rename to website/content/terminal/ta/atr/_index.md diff --git a/website/content/terminal/common/ta/bbands/_index.md b/website/content/terminal/ta/bbands/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/bbands/_index.md rename to website/content/terminal/ta/bbands/_index.md diff --git a/website/content/terminal/common/ta/cci/_index.md b/website/content/terminal/ta/cci/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/cci/_index.md rename to website/content/terminal/ta/cci/_index.md diff --git a/website/content/terminal/common/ta/cg/_index.md b/website/content/terminal/ta/cg/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/cg/_index.md rename to website/content/terminal/ta/cg/_index.md diff --git a/website/content/terminal/common/ta/clenow/_index.md b/website/content/terminal/ta/clenow/_index.md similarity index 100% rename from website/content/terminal/common/ta/clenow/_index.md rename to website/content/terminal/ta/clenow/_index.md diff --git a/website/content/terminal/common/ta/demark/_index.md b/website/content/terminal/ta/demark/_index.md similarity index 100% rename from website/content/terminal/common/ta/demark/_index.md rename to website/content/terminal/ta/demark/_index.md diff --git a/website/content/terminal/common/ta/donchian/_index.md b/website/content/terminal/ta/donchian/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/donchian/_index.md rename to website/content/terminal/ta/donchian/_index.md diff --git a/website/content/terminal/common/ta/ema/_index.md b/website/content/terminal/ta/ema/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/ema/_index.md rename to website/content/terminal/ta/ema/_index.md diff --git a/website/content/terminal/common/ta/fib/_index.md b/website/content/terminal/ta/fib/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/fib/_index.md rename to website/content/terminal/ta/fib/_index.md diff --git a/website/content/terminal/common/ta/fisher/_index.md b/website/content/terminal/ta/fisher/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/fisher/_index.md rename to website/content/terminal/ta/fisher/_index.md diff --git a/website/content/terminal/common/ta/hma/_index.md b/website/content/terminal/ta/hma/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/hma/_index.md rename to website/content/terminal/ta/hma/_index.md diff --git a/website/content/terminal/common/ta/kc/_index.md b/website/content/terminal/ta/kc/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/kc/_index.md rename to website/content/terminal/ta/kc/_index.md diff --git a/website/content/terminal/common/ta/macd/_index.md b/website/content/terminal/ta/macd/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/macd/_index.md rename to website/content/terminal/ta/macd/_index.md diff --git a/website/content/terminal/common/ta/obv/_index.md b/website/content/terminal/ta/obv/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/obv/_index.md rename to website/content/terminal/ta/obv/_index.md diff --git a/website/content/terminal/common/ta/recom/_index.md b/website/content/terminal/ta/recom/_index.md old mode 100755 new mode 100644 similarity index 97% rename from website/content/terminal/common/ta/recom/_index.md rename to website/content/terminal/ta/recom/_index.md index f8c9b9102ead..14e7c4f8383e --- a/website/content/terminal/common/ta/recom/_index.md +++ b/website/content/terminal/ta/recom/_index.md @@ -2,7 +2,7 @@ usage: recom [-s {crypto,forex,cfd}] [-e EXCHANGE] [-i {1M,1W,1d,4h,1h,15m,5m,1m}] [--export {csv,json,xlsx}] [-h] ``` -Print tradingview recommendation based on technical indicators. [Source: https://pypi.org/project/tradingview-ta/] +Print tradingview recommendation based on technical indicators. [Source: ] ``` optional arguments: @@ -20,8 +20,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:31 (✨) /stocks/ta/ $ recom +2022 Feb 16, 11:31 (🦋) /stocks/ta/ $ recom Ticker Recommendation ┏━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━┳━━━━━━┳━━━━━━━━━┓ ┃ ┃ RECOMMENDATION ┃ BUY ┃ SELL ┃ NEUTRAL ┃ diff --git a/website/content/terminal/common/ta/rsi/_index.md b/website/content/terminal/ta/rsi/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/rsi/_index.md rename to website/content/terminal/ta/rsi/_index.md diff --git a/website/content/terminal/common/ta/rsp/_index.md b/website/content/terminal/ta/rsp/_index.md similarity index 100% rename from website/content/terminal/common/ta/rsp/_index.md rename to website/content/terminal/ta/rsp/_index.md diff --git a/website/content/terminal/common/ta/sma/_index.md b/website/content/terminal/ta/sma/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/sma/_index.md rename to website/content/terminal/ta/sma/_index.md diff --git a/website/content/terminal/common/ta/stoch/_index.md b/website/content/terminal/ta/stoch/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/stoch/_index.md rename to website/content/terminal/ta/stoch/_index.md diff --git a/website/content/terminal/common/ta/summary/_index.md b/website/content/terminal/ta/summary/_index.md old mode 100755 new mode 100644 similarity index 85% rename from website/content/terminal/common/ta/summary/_index.md rename to website/content/terminal/ta/summary/_index.md index 7be453c924ec..dd9f555049b7 --- a/website/content/terminal/common/ta/summary/_index.md +++ b/website/content/terminal/ta/summary/_index.md @@ -2,7 +2,7 @@ usage: summary [-h] ``` -Technical summary report provided by FinBrain's API. FinBrain Technologies develops deep learning algorithms for financial analysis and prediction, which currently serves traders from more than 150 countries all around the world. [Source: https://finbrain.tech] +Technical summary report provided by FinBrain's API. FinBrain Technologies develops deep learning algorithms for financial analysis and prediction, which currently serves traders from more than 150 countries all around the world. [Source: ] ``` optional arguments: @@ -10,8 +10,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:33 (✨) /stocks/ta/ $ summary +2022 Feb 16, 11:33 (🦋) /stocks/ta/ $ summary GOOGL price has changed -1.45% in the last 3 days and 0.80% yesterday. RSI is currently neutral but close to the overbought area and the indicator is pointing downwards. MACD is in the Bullish area and the histogram is moving downwards. diff --git a/website/content/terminal/common/ta/tv/_index.md b/website/content/terminal/ta/tv/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/tv/_index.md rename to website/content/terminal/ta/tv/_index.md diff --git a/website/content/terminal/common/ta/view/_index.md b/website/content/terminal/ta/view/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/view/_index.md rename to website/content/terminal/ta/view/_index.md diff --git a/website/content/terminal/common/ta/vwap/_index.md b/website/content/terminal/ta/vwap/_index.md old mode 100755 new mode 100644 similarity index 88% rename from website/content/terminal/common/ta/vwap/_index.md rename to website/content/terminal/ta/vwap/_index.md index 0183e4f15105..1e9d5ee7dbb3 --- a/website/content/terminal/common/ta/vwap/_index.md +++ b/website/content/terminal/ta/vwap/_index.md @@ -15,8 +15,9 @@ optional arguments: ``` Example: + ``` -2022 Feb 16, 11:36 (✨) /stocks/ta/ $ load GOOGL -i 1 +2022 Feb 16, 11:36 (🦋) /stocks/ta/ $ load GOOGL -i 1 Loading Intraday 1min GOOGL stock with starting period 2022-02-10 for analysis. @@ -25,7 +26,7 @@ Timezone: America/New_York Currency: USD Market: CLOSED -2022 Feb 16, 11:36 (✨) /stocks/ta/ $ vwap +2022 Feb 16, 11:36 (🦋) /stocks/ta/ $ vwap ``` -![vwap](https://user-images.githubusercontent.com/46355364/154312502-9377c57c-6e34-42a6-b021-674e7d4561dd.png) +![vwap](https://user-images.githubusercontent.com/46355364/154312502-9377c57c-6e34-42a6-b021-674e7d4561dd.png) diff --git a/website/content/terminal/common/ta/wma/_index.md b/website/content/terminal/ta/wma/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/wma/_index.md rename to website/content/terminal/ta/wma/_index.md diff --git a/website/content/terminal/common/ta/zlma/_index.md b/website/content/terminal/ta/zlma/_index.md old mode 100755 new mode 100644 similarity index 100% rename from website/content/terminal/common/ta/zlma/_index.md rename to website/content/terminal/ta/zlma/_index.md diff --git a/website/controller_doc_classes.py b/website/controller_doc_classes.py new file mode 100644 index 000000000000..6db6f908858d --- /dev/null +++ b/website/controller_doc_classes.py @@ -0,0 +1,371 @@ +# pylint: disable=unused-argument +import argparse +import inspect +from datetime import datetime, timedelta +from importlib.util import module_from_spec, spec_from_file_location +from inspect import FullArgSpec, getmembers, isclass +from pathlib import Path +from types import FunctionType, ModuleType +from typing import Any, Dict, List, Optional +from unittest.mock import patch + +import pandas as pd +from pandas.tseries.holiday import USFederalHolidayCalendar + +import openbb_terminal +from openbb_terminal.parent_classes import BaseController, CryptoBaseController + +DF_STOCK = pd.DataFrame.from_dict( + data={ + pd.Timestamp("2020-11-30 00:00:00"): { + "Open": 75.69999694824219, + "High": 76.08999633789062, + "Low": 75.41999816894531, + "Close": 75.75, + "Adj Close": 71.90919494628906, + "Volume": 5539100, + "date_id": 1, + "OC_High": 75.75, + "OC_Low": 75.69999694824219, + }, + pd.Timestamp("2020-12-01 00:00:00"): { + "Open": 76.0199966430664, + "High": 77.12999725341797, + "Low": 75.69000244140625, + "Close": 77.02999877929688, + "Adj Close": 73.1242904663086, + "Volume": 6791700, + "date_id": 2, + "OC_High": 77.02999877929688, + "OC_Low": 76.0199966430664, + }, + }, + orient="index", +) + +sub_folders_abbr = { + "discovery": "disc", + "due_diligence": "dd", + "overview": "ov", + "alternative": "alt", + "cryptocurrency": "crypto", + "behavioural_analysis": "ba", + "comparison_analysis": "ca", + "dark_pool_shorts": "dps", + "portfolio_optimization": "po", + "quantitative_analysis": "qa", + "sector_industry_analysis": "sia", + "technical_analysis": "ta", + "tradinghours": "th", + "fundamental_analysis": "fa", + "mutual_funds": "funds", + "government": "gov", + "insider": "ins", +} + +sub_names_full = { + "alt": "Alternative", + "ba": "Behavioural Analysis", + "ca": "Comparison Analysis", + "crypto": "Cryptocurrency", + "dd": "Due Diligence", + "defi": "DeFi", + "disc": "Discovery", + "dps": "Darkpool Shorts", + "etf": "ETFs", + "fa": "Fundamental Analysis", + "forecast": "Forecasting", + "funds": "Mutual Funds", + "gov": "Government", + "ins": "Insiders", + "keys": "Keys", + "nft": "NFTs", + "onchain": "OnChain", + "ov": "Overview", + "po": "Portfolio Optimization", + "qa": "Quantitative Analysis", + "screener": "Screener", + "sia": "Sector Industry Analysis", + "ta": "Technical Analysis", + "th": "Trading Hours", +} + + +def get_expiration_date(): + """Gets the next expiration date for dummy data""" + dt = datetime.now() + bdays_indx = pd.bdate_range( + dt.strftime("%Y-%m-%d"), + (dt + timedelta(days=20)).strftime("%Y-%m-%d"), + freq=pd.offsets.CustomBusinessDay(calendar=USFederalHolidayCalendar()), + ).tolist() + expiration = [x.strftime("%Y-%m-%d") for x in bdays_indx if x.weekday() == 4][0] + return expiration + + +param_name_to_value = { + "expiration": get_expiration_date(), + "start_date": "2022-01-01", + "start": "2022-01-01", + "end_date": "2022-08-01", + "end": "2022-08-01", + "vs": "USDT", +} +param_type_to_value = { + pd.DataFrame: DF_STOCK, + (dict, Dict): {"AAPL": DF_STOCK}, + list: [], + str: "", + int: 0, + float: 0.0, + bool: False, +} + + +def get_parameters( + controller_cls: BaseController, +) -> Dict[str, Any]: + """Gets the parameters of a controller's `__init__` signature. If required parameters are missing, + we get the type and create a dummy value for it. + + Parameters: + ---------- + controller_class: Type[BaseController] + The controller class + + Returns: + ---------- + dict[str, Any] + The dummy parameters for the controller init + """ + signature = inspect.signature(controller_cls) + kwargs: Dict[str, Any] = {} + for param in signature.parameters.values(): + if param.name in ("ticker", "symbol"): + kwargs[param.name] = ( + "AAPL" + if not issubclass(controller_cls, CryptoBaseController) + else "BTC" + ) + elif ( + param.default is inspect.Parameter.empty + and param.kind is not inspect.Parameter.VAR_KEYWORD + ): + for param_name, value in param_name_to_value.items(): + if param.name == param_name: + kwargs[param.name] = value + break + if param.name not in kwargs: + for param_type, value in param_type_to_value.items(): + if isinstance(param_type, tuple): + if param.annotation in param_type: + kwargs[param.name] = value + break + elif param.annotation is param_type: + kwargs[param.name] = value + break + + return kwargs + + +class ControllerDoc: + """Class that retrieves the ArgumentParser for each command of the Controller and stores it in a dictionary + for use in auto-generating the documentation. + + Parameters: + ---------- + controller: BaseController + The controller to get the commands from + + Attributes: + ---------- + controller: BaseController + The controller to get the commands from + cmd_parsers: Dict[str, argparse.ArgumentParser] + A dictionary of the command name and the ArgumentParser for that command + cmd_funcs: Dict[str, FunctionType] + A dictionary of the command name and the function for that command + cmd_fullspec: Dict[str, FullArgSpec] + A dictionary of the command name and the full argument spec for that command + ignore: List[str] + A list of commands to ignore + commands: List[str] + A list of commands to document + + Methods: + ---------- + get_commands() + Get commands + get_command_parser(command: str) + Get the parser for a command + get_all_command_parsers() + Get all command parsers + has_commands() + Checks if controller has commands to document + """ + + def __init__(self, controller: BaseController, trailmap: str): + + self.controller = controller(**get_parameters(controller)) + self.trailmap = trailmap + self.name = trailmap.split(".")[-1] + self.cmd_parsers: Dict[str, argparse.ArgumentParser] = {} + self.cmd_funcs: Dict[str, FunctionType] = {} + self.cmd_fullspec: Dict[str, FullArgSpec] = {} + self.ignore = [ + "call_help", + "call_exit", + "call_clear", + "call_cls", + "call_quit", + "call_about", + "call_reset", + "call_support", + "call_glossary", + "call_wiki", + "call_record", + "call_stop", + "call_screenshot", + ] + self.commands: List[str] = self.get_commands() + self.get_all_command_parsers() + + def get_commands(self) -> List[str]: + """Get commands""" + commands = [] + for name, _ in getmembers(self.controller, predicate=inspect.ismethod): + + if name.startswith("call_") and name not in self.ignore: + func = getattr(self.controller, name) + + if hasattr(func, "__wrapped__"): + func = func.__wrapped__ + if hasattr(func, "__wrapped__"): + func = func.__wrapped__ + + self.cmd_funcs[name] = func + self.cmd_fullspec[name] = inspect.getfullargspec(func) + + if "_" not in self.cmd_fullspec[ + name + ].args and "from openbb_terminal." not in inspect.getsource(func): + commands.append(name) + + return commands + + def get_command_parser(self, command: str) -> Optional[argparse.ArgumentParser]: + """Get command parser""" + if command not in self.cmd_parsers: + self._get_parser(command) + + if command in self.cmd_parsers: + return self.cmd_parsers[command] + + return None + + def _get_parser(self, command: str) -> None: + """Get parser information from source""" + + def mock_func(fparser: argparse.ArgumentParser, *args, **kwargs): + self.cmd_parsers[command] = fparser + return + + def mock_print(*args, **kwargs): + return + + with patch.object( + self.controller, "parse_known_args_and_warn", new=mock_func + ) as _: + args = {} + + fullspec = self.cmd_fullspec[command] + if "_" in fullspec.args: + return + + if len(fullspec.args) > 2: + args.update({arg: ["1234"] for arg in fullspec.args[2:]}) + with patch("openbb_terminal.rich_config.console.print", mock_print): + try: + _ = getattr(self.controller, command)(["--help"], **args) + except SystemExit: + pass + + def get_all_command_parsers(self) -> None: + """Get all command parsers""" + for command in self.commands: + self.get_command_parser(command) + + def has_commands(self) -> bool: + """Checks if controller has commands""" + return len(self.commands) > 0 + + +class LoadControllersDoc: + """Class that loads all controllers and creates a ControllerDoc class instance for each one + + + Attributes: + ---------- + controller_docs: Dict[str, ControllerDoc] + A dictionary of the controller name and the ControllerDoc class instance for that controller + + Methods: + ---------- + get_controllers() + Gets all controllers to create a ControllerDoc class instance for + get_controller_doc(controller: str) + Gets the ControllerDoc class instance for a controller + available_controllers() + Gets a list of available controllers names + """ + + def __init__(self) -> None: + self.controller_docs: Dict[str, ControllerDoc] = {} + self.get_controllers() + + def get_controllers(self) -> None: + """Gets all controllers""" + for trailmap, module in self._get_modules().items(): + for name, obj in getmembers(module): + if name != "TerminalController" and "BaseController" not in name: + if isclass(obj) and issubclass(obj, BaseController): + if trailmap not in self.controller_docs: + ctrl = ControllerDoc(obj, trailmap) + if ctrl.has_commands(): + self.controller_docs[trailmap] = ctrl + + def _get_modules(self) -> Dict[str, ModuleType]: + """Gets all controllers modules""" + modules = {} + for file in Path(openbb_terminal.__file__).parent.glob("**/*controller.py"): + spec = spec_from_file_location(file.stem, file) + if spec is not None and spec.loader is not None: + module = module_from_spec(spec) + spec.loader.exec_module(module) + + ctrl_path = ( + str(file) + .replace(str(Path(openbb_terminal.__file__).parent), "") + .split("\\")[1:] + ) + for sub_name, abbr in sub_folders_abbr.items(): + ctrl_path = [ + path.lower().replace(sub_name, abbr) for path in ctrl_path + ] + + trailmap = ".".join(ctrl_path[:-1]) + if trailmap not in modules: + modules[trailmap] = module + + return modules + + def get_controller_doc(self, controller_name: str) -> ControllerDoc: + """Get the ControllerDoc instance for a controller""" + if controller_name not in self.controller_docs: + raise KeyError(f"Controller {controller_name} not found") + + return self.controller_docs[controller_name] + + def available_controllers(self) -> List[str]: + """Get available controllers""" + return [ctrl for ctrl in self.controller_docs if ctrl != ""] diff --git a/website/generate_sdk_markdown.py b/website/generate_sdk_markdown.py index 8b5b09ed9397..41bcde06c537 100644 --- a/website/generate_sdk_markdown.py +++ b/website/generate_sdk_markdown.py @@ -2,14 +2,21 @@ import importlib import inspect import os - from types import FunctionType -from typing import Dict, List, Literal, Optional +from typing import ( + Any, + Callable, + Dict, + ForwardRef, + List, + Literal, + Optional, +) from docstring_parser import parse -from openbb_terminal.rich_config import console from openbb_terminal.core.library.trail_map import FORECASTING, MISCELLANEOUS_DIRECTORY +from openbb_terminal.rich_config import console MAP_PATH = MISCELLANEOUS_DIRECTORY / "library" / "trail_map.csv" MAP_FORECASTING_PATH = MISCELLANEOUS_DIRECTORY / "library" / "trail_map_forecasting.csv" @@ -28,18 +35,41 @@ def clean_attr_desc(attr: Optional[FunctionType] = None) -> Optional[str]: ) +def get_signature_parameters( + function: Callable[..., Any], globalns: dict[str, Any] +) -> dict[str, inspect.Parameter]: + signature = inspect.signature(function) + params = {} + cache: dict[str, Any] = {} + for name, parameter in signature.parameters.items(): + annotation = parameter.annotation + if annotation is parameter.empty: + params[name] = parameter + continue + if annotation is None: + params[name] = parameter.replace(annotation=type(None)) + continue + + if isinstance(annotation, ForwardRef): + annotation = annotation.__forward_arg__ + + if isinstance(annotation, str): + annotation = eval(annotation, globalns, cache) # pylint: disable=W0123 + + params[name] = parameter.replace(annotation=annotation) + + return params + + class Trailmap: def __init__(self, trailmap: str, model: str, view: Optional[str] = None): tmap = trailmap.split(".") if len(tmap) == 1: tmap = ["", tmap[0]] self.class_attr: str = tmap.pop(-1) - self.category = tmap[0] self.location_path = tmap self.model = model self.view = view if view else None - self.model_func: Optional[str] = model if model else None - self.view_func: Optional[str] = view if view else None self.short_doc: Dict[str, Optional[str]] = {} self.long_doc: Dict[str, str] = {} self.lineon: Dict[str, int] = {} @@ -56,21 +86,29 @@ def get_docstrings(self) -> None: if func: module_path, function_name = func.rsplit(".", 1) module = importlib.import_module(module_path) - self.func_attr[key] = getattr(module, function_name) + func_attr = getattr(module, function_name) add_juan = 0 - if "__wrapped__" in dir(self.func_attr[key]): - self.func_attr[key] = self.func_attr[key].__wrapped__ - if "__wrapped__" in dir(self.func_attr[key]): - self.func_attr[key] = self.func_attr[key].__wrapped__ + if hasattr(func_attr, "__wrapped__"): + func_attr = func_attr.__wrapped__ + if hasattr(func_attr, "__wrapped__"): + func_attr = func_attr.__wrapped__ add_juan = 1 - self.lineon[key] = ( - inspect.getsourcelines(self.func_attr[key])[1] + add_juan - ) + + self.func_attr[key] = func_attr + self.lineon[key] = inspect.getsourcelines(func_attr)[1] + add_juan + + self.long_doc[key] = func_attr.__doc__ + self.short_doc[key] = clean_attr_desc(func_attr) + + self.params[key] = {} + + for k, p in get_signature_parameters( + func_attr, func_attr.__globals__ + ).items(): + self.params[key][k] = p self.func_def[key] = self.get_definition(key) - self.long_doc[key] = self.func_attr[key].__doc__ - self.short_doc[key] = clean_attr_desc(self.func_attr[key]) full_path = ( inspect.getfile(self.func_attr[key]) .replace("\\", "/") @@ -80,17 +118,14 @@ def get_docstrings(self) -> None: def get_definition(self, key: str) -> str: """Creates the function definition to be used in SDK docs.""" - funcspec = inspect.getfullargspec(self.func_attr[key]) - + funcspec = self.params[key] definition = "" added_comma = False - for arg in funcspec.args: + for arg in funcspec: + annotation = ( - funcspec.annotations[arg] if arg in funcspec.annotations else "Any" - ) - if arg in funcspec.annotations: - annotation = ( - str(annotation) + ( + str(funcspec[arg].annotation) .replace("", "") .replace("typing.", "") @@ -98,20 +133,32 @@ def get_definition(self, key: str) -> str: .replace("pandas.core.series.", "pd.") .replace("openbb_terminal.portfolio.", "") ) - definition += f"{arg}: {annotation}, " + if funcspec[arg].annotation != inspect.Parameter.empty + else "Any" + ) + + default = "" + if funcspec[arg].default is not funcspec[arg].empty: + arg_default = ( + funcspec[arg].default + if funcspec[arg].default is not inspect.Parameter.empty + else None + ) + default = ( + f" = {arg_default}" + if not isinstance(arg_default, str) + else f' = "{arg_default}"' + ) + definition += f"{arg}: {annotation}{default}, " added_comma = True if added_comma: definition = definition[:-2] - return_def = ( - funcspec.annotations["return"].__name__ - if "return" in funcspec.annotations - and hasattr(funcspec.annotations["return"], "__name__") - and funcspec.annotations["return"] is not None - else "None" - ) - definition = f"def {getattr(self, f'{key}_func').split('.')[-1]}({definition }) -> {return_def}" + sdk_name = self.class_attr if key != "view" else f"{self.class_attr}_chart" + sdk_path = f"openbb.{'.'.join(self.location_path)}.{sdk_name}" + + definition = f"{sdk_path}({definition })" return definition @@ -133,6 +180,9 @@ def get_trailmaps() -> List[Trailmap]: def get_function_meta(trailmap: Trailmap, trail_type: Literal["model", "view"]): + """Gets the function meta data.""" + if trailmap.func_attr[trail_type] is None: + return None doc_parsed = parse(trailmap.long_doc[trail_type]) line = trailmap.lineon[trail_type] path = trailmap.full_path[trail_type] @@ -146,13 +196,21 @@ def get_function_meta(trailmap: Trailmap, trail_type: Literal["model", "view"]): function_name = trailmap.view if trail_type == "view" else trailmap.model params = [] for param in doc_parsed.params: + arg_default = ( + trailmap.params[trail_type][param.arg_name].default + if param.arg_name in trailmap.params[trail_type] + else None + ) params.append( { "name": param.arg_name, "doc": param.description, "type": param.type_name, - "default": param.default, - "optional": param.is_optional, + "default": arg_default + if arg_default is not inspect.Parameter.empty + else None, + "optional": bool(arg_default is not inspect.Parameter.empty) + or param.is_optional, } ) if doc_parsed.returns: @@ -205,7 +263,7 @@ def generate_markdown(meta_model, meta_view): \n {generate_markdown_section(meta_model)}\n -\n +\n {generate_markdown_section(meta_view)}\n """ @@ -217,23 +275,23 @@ def generate_markdown(meta_model, meta_view): def generate_markdown_section(meta): # head meta https://docusaurus.io/docs/markdown-features/head-metadata # use real description but need to parse it - markdown = f"## {meta['function_name']}\n\n" - markdown += f"```python title='{meta['path']}'\n{meta['func_def']}\n```\n" - markdown += f"[Source Code]({meta['source_code_url']})\n\n" - markdown += f"Description: {meta['description']}\n\n" + markdown = ( + f"{meta['description']}\n\nSource Code: [[link]({meta['source_code_url']})]\n\n" + ) + markdown += f"```python\n{meta['func_def']}\n```\n\n" - markdown += "## Parameters\n\n" + markdown += "---\n\n## Parameters\n\n" if meta["params"]: markdown += "| Name | Type | Description | Default | Optional |\n" markdown += "| ---- | ---- | ----------- | ------- | -------- |\n" for param in meta["params"]: description = param["doc"].replace("\n", "
") markdown += f"| {param['name']} | {param['type']} | {description} | {param['default']} | {param['optional']} |\n" # noqa: E501 - markdown += "\n" + markdown += "\n\n" else: markdown += "This function does not take any parameters.\n\n" - markdown += "## Returns\n\n" + markdown += "---\n\n## Returns\n\n" if meta["returns"]: markdown += "| Type | Description |\n" markdown += "| ---- | ----------- |\n" @@ -242,18 +300,19 @@ def generate_markdown_section(meta): if meta["returns"]["doc"] else "" ) - markdown += f"| {meta['returns']['type']} | {return_desc} |\n\n" + markdown += f"| {meta['returns']['type']} | {return_desc} |\n" else: markdown += "This function does not return anything\n\n" - markdown += "## Examples\n\n" + markdown += "---\n\n## Examples\n" if meta["examples"] else "" for example in meta["examples"]: markdown += f"{example['description']}\n" - if isinstance(example["snippet"], str): snippet = example["snippet"].replace(">>> ", "") markdown += f"```python\n{snippet}\n```\n\n" + markdown += "---\n\n" + return markdown diff --git a/website/generate_terminal_markdown.py b/website/generate_terminal_markdown.py new file mode 100644 index 000000000000..0c690fb9ba0a --- /dev/null +++ b/website/generate_terminal_markdown.py @@ -0,0 +1,213 @@ +from datetime import datetime +import os +import traceback +from typing import Dict, List, Optional, Union + +from openbb_terminal.rich_config import console +from website.controller_doc_classes import ( + LoadControllersDoc, + ControllerDoc, + sub_names_full, +) + + +def existing_markdown_file_examples( + ctrl: ControllerDoc, cat: Dict[str, str] +) -> Dict[str, Optional[Union[str, List[str]]]]: + """Get existing markdown file examples""" + trail = ctrl.trailmap.split(".") + for sub in trail: + if sub in ["ba", "ta", "qa"]: + trail.remove(ctrl.trailmap.split(".")[0]) + + examples_path = f"content/terminal/{'/'.join(trail)}/{cat['cmd_name']}/_index.md" + examples_dict: Dict[str, Optional[Union[str, List[str]]]] = {} + + if os.path.exists(examples_path): + + with open(examples_path, encoding="utf-8") as f: + content = f.read() + + examples: Optional[str] = None + if "Example:" in content: + example_split = content.split("Example:")[1].split("```") + if example_split and len(example_split) > 1: + examples = f"{example_split[1].strip()}" + + examples_dict["example"] = examples + images = [ + x for x in content.split("\n") if x.startswith("!") and "TODO" not in x + ] + examples_dict["images"] = images + + return examples_dict + + +# pylint: disable=isinstance-second-argument-not-valid-type +def get_parser(ctrl: ControllerDoc) -> Dict[str, List[Dict[str, str]]]: + """Get commands and parsers from ControllerDoc""" + + commands = [] + for cmd, parser in ctrl.cmd_parsers.items(): + + actions = [] + for action in parser._actions: # pylint: disable=protected-access + if action.dest == "help": + continue + + default = action.default + if default is not None: + if isinstance(default, list): + default = ", ".join([str(x) for x in default]) + elif isinstance(default, datetime): + if "start" in action.dest: + default = "datetime.now() - timedelta(days=365)" + elif "end" in action.dest or "date" in action.dest: + default = "datetime.now()" + + choices = action.choices + if choices is not None: + + if isinstance(choices, list): + listdict = [] + for choice in choices: + if isinstance(choice, (dict, type({}.keys()))): + listdict.append([f"{k}" for k in choice]) + + if listdict: + choices = listdict + else: + choices = [f"{x}" for x in choices] + choices = ", ".join(choices) if len(choices) > 0 else None + + elif isinstance(choices, (dict, type({}.keys()))): + choices = [f"{k}" for k in choices] + choices = ", ".join(choices) if len(choices) > 0 else None + + doc = action.help + if doc is not None: + # We do this to fix multiline docstrings for the markdown + doc = " ".join(doc.split()) + + actions.append( + { + "opt_name": action.dest if action.dest else "", + "doc": doc if doc else "", + "default": default, + "optional": not action.required, + "choices": choices, + } + ) + + desc = parser.description + if desc is not None: + # We do this to fix multiline docstrings for the markdown + desc = " ".join(desc.split()) + + param = { + "cmd_name": cmd.replace("call_", ""), + "actions": actions, + "usage": parser.format_usage(), + "description": desc if desc else "", + } + commands.append(param) + + return { + "category_name": ctrl.name, + "cmds": commands, + } + + +def generate_markdown(cmd_meta: Dict[str, str], examples: Dict[str, str]): + """Generate markdown string""" + if not cmd_meta: + raise ValueError("No command metadata found") + + markdown = f"""--- +title: {cmd_meta["cmd_name"]} +description: OpenBB Terminal Function +---\n\n""" + + markdown += generate_markdown_section(cmd_meta, examples) + + return markdown + + +def generate_markdown_section(meta: Dict[str, str], examples: Dict[str, str]) -> str: + """Generate markdown section""" + + # head meta https://docusaurus.io/docs/markdown-features/head-metadata + markdown = f"# {meta['cmd_name']}\n\n{meta['description']}\n\n" + markdown += f"### Usage\n\n```python\n{meta['usage']}```\n\n" + + markdown += "---\n\n## Parameters\n\n" + if meta["actions"]: + markdown += "| Name | Description | Default | Optional | Choices |\n" + markdown += "| ---- | ----------- | ------- | -------- | ------- |\n" + + for param in meta["actions"]: + if isinstance(param, dict): + markdown += ( + f"| {param['opt_name']} | {param['doc']} | {param['default']} " + f"| {param['optional']} | {param['choices']} |\n" + ) + else: + markdown += "This command has no parameters\n\n" + + if examples.get("example", None): + markdown += "---\n\n## Examples\n\n" + markdown += f"```python\n{examples['example']}\n```\n\n" + + if examples.get("images", []): + for image in examples["images"]: + markdown += f"{image}\n\n" + + markdown += "---\n\n" + return markdown.replace("<", "").replace(">", "") + + +def main(): + """Main function to generate markdown files""" + console.print( + "Loading Controllers... Please wait and ignore any errors, this is normal." + ) + + load_ctrls = LoadControllersDoc() + ctrls = load_ctrls.available_controllers() + + console.print("Generating markdown files... Don't ignore any errors now") + for ctrlstr in ctrls: + try: + ctrl = load_ctrls.get_controller_doc(ctrlstr) + cmd_meta = get_parser(ctrl) + + for cat in cmd_meta["cmds"]: + examples = existing_markdown_file_examples(ctrl, cat) + markdown = generate_markdown(cat, examples) + + if cat["cmd_name"] == "index": + cat["cmd_name"] = "index_cmd" + + trail = [] + for sub in ctrl.trailmap.split("."): + if sub_names_full.get(sub, None): + sub = sub_names_full[sub].lower() + trail.append(sub) + + filepath = f"terminaltest/{'/'.join(trail)}/{cat['cmd_name']}.md" + + os.makedirs(os.path.dirname(filepath), exist_ok=True) + with open(filepath, "w", encoding="utf-8") as f: + f.write(markdown) + + except Exception as e: + traceback.print_exc() + console.print(f"[red]Failed to generate markdown for {ctrlstr}: {e}[/red]") + + console.print( + "[green]Markdown files generated, check the terminaltest folder[/green]" + ) + + +if __name__ == "__main__": + main()