I'm assessing various backtrading platform and that one seems to be missing in the best one I found so far.
For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/

Latest posts made by Vincere
-
Is it possible to include multiple instruments in one same strategy (ex: long GOOG when IRX crosses below SMA 20)?
-
RE: How to load data with a 60 min timeframe from a CSV file?
@vincere (I don't need any resampling)
-
How to load data with a 60 min timeframe from a CSV file?
My data is on a 60 min timeframe.
I am not sure if I have to do :
timeframe = bt.TimeFrame.Days or
timeframe = bt.TimeFrame.Minutesand if I have to set a compression
Thanks
-
Let strategies communicate with each other
Hi,
I would like to know if there is a way for a strategy to retrieve the unrealized pnl of an order placed by another strategy:- Strategy A : enters a long position on data0
- Strategy B: checks on each next() iteration the pnl of the long position ordered by Strategy A (and possibly place an order)
Where Strategy A and B run over the same period of time.
Thanks