Context class drafted
This commit is contained in:
11
freqtrade/context.py
Normal file
11
freqtrade/context.py
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
from typing import Any, Dict
|
||||||
|
from collections import namedtuple
|
||||||
|
|
||||||
|
|
||||||
|
class Context(object):
|
||||||
|
|
||||||
|
# context data structure
|
||||||
|
context = namedtuple(
|
||||||
|
'context',
|
||||||
|
['trades', 'ticker']
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user