- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Labels
APINeeds API-related discussionNeeds API-related discussionenhancementNew feature or requestNew feature or request

Description
Im trying to backtest a pairs trading strategy but i don't know how to add multiple data frames to the backtester in order to add positions to each instruments according to the hedge ratio.
Is there a way to do this?
AlgoQ, TimPchelintsev, villesokk, fanconic, xbno and 15 moreshep-analytics
Metadata
Metadata
Assignees
Labels
APINeeds API-related discussionNeeds API-related discussionenhancementNew feature or requestNew feature or request
Projects
Milestone
Relationships
Development
Select code repository
Activity
chhudson commentedon Sep 17, 2019
@jetychill
Definitely!
You just need to setup a
for
statement to pull from a list ofinstruments
IE. `instruments = ['USD_JPY', 'EUR_USD']
Obviously there is likely a bunch of data cleanup but that is something left to the user.
Hope this helps!
ghost commentedon Sep 17, 2019
Thanks for the help!
Another question, does the back tester has some sort of default maximum holding time where it closes the position after n amount of time has passed I'm comparing results to my back tester and they seem identical, but when there is a long holding period the the results vary significantly, could also be a bug on my side but just asking if the back tester by default closes positions earlier.
Thanks
kernc commentedon Sep 17, 2019
Multiple positions/instruments aren't yet supported. Welcome a discussion if someone would have a look.
@jetychill By default it doesn't. Can you share a minimal working example?
kernc commentedon Sep 24, 2019
Sounds like a good idea for a composable base strategy,
HoldNBarsStrategy
. 💡ridulfo commentedon Mar 22, 2020
I would also be interested in being able to have multiple instruments at the same. This could possibly be implemented using a pandas panel.
In this way arbitrage strategies would be possible to backtest.
kernc commentedon Mar 22, 2020
@nicoloridulfo Can't one backtest arbitrage opportunities by providing the strategy with extra data?
ridulfo commentedon Mar 22, 2020
@kernc Thanks for answering.
I believe that is not the case. Correct me if I am wrong.
I have studied the code and from what i see: one backtest = one instrument. It is not possible to look at multiple instruments in the same backtest and e.g. go long one instrument and short an other. If the order placing would be instrument specific and with some minor changes to the broker and strategy classes, I believe that it could be possible. The rest of the code is written in such a way that it seems like it was made to support this kind of feature.
I would be interested in trying to implement such a feature if you'll assign me to it.
kernc commentedon Mar 22, 2020
Ah, pairs arbitrage. 😅 I don't know how multiple instruments fit into the existing API. I'd foremost like to keep it simple and straightforward for the 95% use case. If you do care to look into it, however, please certainly base your findings on PR #47 as that's about to get merged soon.
ridulfo commentedon Mar 22, 2020
Not only for arbitrage! I was thinking multi instrument portfolios.
One of the most important parts of trading is risk management. Portfolio optimization through asset diversification is one way. I'll look into it 👍
sdmovie commentedon May 27, 2020
Would suggest first make the single equity finished(which is 90+% od the use case) then considering enhance to support multiple equities in one strategy. Can imaging things will go complex towards what backtrader looks like.
Ther are still gaps for single equity case to fill or to verify, suppoorting of Future/Stocks with options of:
Margin/NonMargin
Shortable/NonShortable
T+0 or T+N
If putting everything in one backtest too complicated, possible split another parallel backtestbroker to deal with subset of cases ?
diegolovison commentedon Aug 17, 2020
You also will need to support TP or SP per group of instruments.
Example:
buy: A, B, and C
TP 5% [A,B,C]
SL 10% [A,B,C]
ttfreeman commentedon Nov 7, 2020
Is this assigned?
ttfreeman commentedon Nov 8, 2020
I also was looking at one of the other issues that has suggested adding support for stock options. I think this would be a prerequisite for that, because option strategies are usually a combination of one, two , or more long or short trades on Put or Call options.
arisliang commentedon Jun 16, 2021
What is the API implication to implement this? Though I tend to think this is a feature very worth to have.
lawrence910426 commentedon Mar 24, 2023
It would be really helpful if we could do pair tradings. Thank you so much :D
truongthanh96 commentedon May 13, 2023
Pair trading seems like a popular algorithm yet no one bothers to develop a proper backtest API for its. Fine, I will do it myself
BradKML commentedon Feb 21, 2024
@truongthanh96 how is the progress?
[-]Is there a way to backtest more instruments at once [/-][+]Backtest multiple instruments at once [/+]