We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f42c0d commit 24f2accCopy full SHA for 24f2acc
btplotting/tabs/metadata.py
@@ -80,6 +80,8 @@ def _get_datas(self, strategy):
80
'Live:': f'{"Yes" if data.islive() else "No"}',
81
'Length:': len(data),
82
'Granularity:': f'{data._compression} {bt.TimeFrame.getname(data._timeframe, data._compression)}',
83
+ 'Resample:': f'{"Yes" if data.resampling else "No"}',
84
+ 'Replay:': f'{"Yes" if data.replaying else "No"}'
85
}
86
# live trading does not have valid data parameters (other datas
87
# might also not have)
0 commit comments