For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Is there an analyzer that saves all the orders?
-
So, I know about pyfolio, where you can get all the transactions with the get_pf_items, however I would like to see all the orders and that were made.
I am particularly interested in the Stop and Limit orders placed through buy_bracket/sell_bracket, I want to see the stop/limit prices they set.
I guess I could use notify_order to append the data to a pandas dataframe and save to csv in the end, but I would prefer a made solution before go deep into that.