For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Get analyzer result in the stop() method
-
Hi,
Is there a way to get the results of an analyzer in the stop() method of the strategy instead of waiting for cerebro.run() to finish?Thank you
-
For analyzers that constantly update, you can access what has been calculated so far, but the last step will be missing. For analyzers which calculate things when the run is over, nothing will be available.
-
Thx !
Can I set a parameter for the analyzer to constantly update? -
No. Some analyzers update constantly and for others it does only make sense to make a final calculation.
-
OK, Cheers.