For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Historical exectype
-
I was looking for a way to perform a price transaction outside the OHLC bar. I couldn't find any information about this possibility on the documentation site and started looking through the source code to find a solution. In the order.py file, I found the Historical order execution type, which solved my problem.
(Market, Close, Limit, Stop, StopLimit, StopTrail, StopTrailLimit, Historical) = range(8) ExecTypes = ['Market', 'Close', 'Limit', 'Stop', 'StopLimit', 'StopTrail', 'StopTrailLimit', 'Historical']
I could not find this exectype in the documentation and how exactly it works. I think it is worth adding a description of this exectype to the official documentation.