daily update
This commit is contained in:
@ -2,34 +2,35 @@
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 4,
|
||||
"execution_count": 5,
|
||||
"metadata": {},
|
||||
"outputs": [
|
||||
{
|
||||
"name": "stdout",
|
||||
"output_type": "stream",
|
||||
"text": [
|
||||
"MACD.run(\n",
|
||||
"BBANDS.run(\n",
|
||||
" close,\n",
|
||||
" fastperiod=Default(value=12),\n",
|
||||
" slowperiod=Default(value=26),\n",
|
||||
" signalperiod=Default(value=9),\n",
|
||||
" timeperiod=Default(value=5),\n",
|
||||
" nbdevup=Default(value=2.0),\n",
|
||||
" nbdevdn=Default(value=2.0),\n",
|
||||
" matype=Default(value=0),\n",
|
||||
" timeframe=Default(value=None),\n",
|
||||
" short_name='macd',\n",
|
||||
" short_name='bbands',\n",
|
||||
" hide_params=None,\n",
|
||||
" hide_default=True,\n",
|
||||
" **kwargs\n",
|
||||
"):\n",
|
||||
" Run `MACD` indicator.\n",
|
||||
" Run `BBANDS` indicator.\n",
|
||||
" \n",
|
||||
" * Inputs: `close`\n",
|
||||
" * Parameters: `fastperiod`, `slowperiod`, `signalperiod`, `timeframe`\n",
|
||||
" * Outputs: `macd`, `macdsignal`, `macdhist`\n",
|
||||
" * Parameters: `timeperiod`, `nbdevup`, `nbdevdn`, `matype`, `timeframe`\n",
|
||||
" * Outputs: `upperband`, `middleband`, `lowerband`\n",
|
||||
" \n",
|
||||
" Pass a list of parameter names as `hide_params` to hide their column levels, or True to hide all.\n",
|
||||
" Set `hide_default` to False to show the column levels of the parameters with a default value.\n",
|
||||
" \n",
|
||||
" Other keyword arguments are passed to `MACD.run_pipeline`.\n"
|
||||
" Other keyword arguments are passed to `BBANDS.run_pipeline`.\n"
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -37,7 +38,7 @@
|
||||
"import vectorbtpro as vbt\n",
|
||||
"\n",
|
||||
"vbt.IF.list_indicators(\"*SMA\")\n",
|
||||
"vbt.phelp(vbt.indicator(\"talib:MACD\").run)\n"
|
||||
"vbt.phelp(vbt.indicator(\"talib:BBANDS\").run)\n"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user