easyT.manager.Manager.get_timeframe

Manager.get_timeframe()[source]

This function will use the platform attribute to return the correct class between the options in the Class Platforms.

Returns

It returns the class already invoked.

Examples

>>> from easyT.manager import Manager
>>> symbol = 'BTCUSDT'
>>> manager = Manager()
>>> manager.set_platform('binance-spot')
'binance-spot'
>>> manager.get_initialize()
<binanceSpotEasyT.initialization.Initialize object>
>>> manager.get_timeframe()
<binanceSpotEasyT.timeframe.TimeFrame object>