For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Extending a Datafeed
-
Yes I know, yet another 'extending a datafeed' topic... sorry about that=>
-
If If wrote this code
import queue class MyQueue(queue.Queue): def __init__(self, **kwargs): print('doing something')
Would you expect
MyQueue
to be inside thequeue
module?The same applies to something you define in your own script named
Seasonals
. It's not going to be insidebt.feeds
(orbacktrader.feeds
without aliasing) -
got it , thanks