Add dollar volume fsp config section to display in subchart
parent
0f200d9596
commit
8e81f8bd81
|
@ -932,7 +932,7 @@ async def maybe_open_vlm_display(
|
||||||
|
|
||||||
async with open_fsp_sidepane(
|
async with open_fsp_sidepane(
|
||||||
linked, {
|
linked, {
|
||||||
'$_vlm': {
|
'vlm': {
|
||||||
|
|
||||||
'params': {
|
'params': {
|
||||||
|
|
||||||
|
@ -1102,6 +1102,20 @@ async def display_symbol_data(
|
||||||
# TODO: eventually we'll support some kind of n-compose syntax
|
# TODO: eventually we'll support some kind of n-compose syntax
|
||||||
fsp_conf = {
|
fsp_conf = {
|
||||||
|
|
||||||
|
'dolla_vlm': {
|
||||||
|
'func_name': 'dolla_vlm',
|
||||||
|
'zero_on_step': True,
|
||||||
|
'params': {
|
||||||
|
'price_func': {
|
||||||
|
'default_value': 'chl3',
|
||||||
|
# tell target ``Edit`` widget to not allow
|
||||||
|
# edits for now.
|
||||||
|
'widget_kwargs': {'readonly': True},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'chart_kwargs': {'style': 'step'}
|
||||||
|
},
|
||||||
|
|
||||||
'rsi': {
|
'rsi': {
|
||||||
'func_name': 'rsi', # literal python func ref lookup name
|
'func_name': 'rsi', # literal python func ref lookup name
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue