Context class drafted
This commit is contained in:
parent
de57da3249
commit
55e3dee4ad
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']
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user