7 lines
125 B
Python
7 lines
125 B
Python
|
|
"""
|
||
|
|
Meta Supertrend strategy package.
|
||
|
|
"""
|
||
|
|
from .strategy import MetaSupertrendStrategy
|
||
|
|
|
||
|
|
__all__ = ['MetaSupertrendStrategy']
|