stable/freqtrade/context.py
2018-11-17 23:35:55 +01:00

12 lines
199 B
Python

from typing import Any, Dict
from collections import namedtuple
class Context(object):
# context data structure
context = namedtuple(
'context',
['trades', 'ticker']
)