diff --git a/zipline/assets/assets.py b/zipline/assets/assets.py index 89a5274e..7ce6d0a5 100644 --- a/zipline/assets/assets.py +++ b/zipline/assets/assets.py @@ -831,6 +831,12 @@ class AssetFinder(object): """ Lookup a list of equities by symbol. + Equivalent to:: + + [finder.lookup_symbol(s, as_of, fuzzy) for s in symbols] + + but potentially faster because repeated lookups are memoized. + Parameters ---------- symbols : sequence[str]