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 232c506 commit 2c54c35Copy full SHA for 2c54c35
zipline/pipeline/data/dataset.py
@@ -290,12 +290,13 @@ def metadata(self):
290
291
@property
292
def qualname(self):
293
+ """The fully-qualified name of this column.
294
"""
- The fully-qualified name of this column.
295
-
296
- Generated by doing '.'.join([self.dataset.__name__, self.name]).
297
- """
298
- return '.'.join([self.dataset.qualname, self.name])
+ out = '.'.join([self.dataset.qualname, self.name])
+ conversion = self._currency_conversion
+ if conversion is not None:
+ out += '.fx({!r})'.format(conversion.currency.code)
299
+ return out
300
301
302
def latest(self):
0 commit comments