i'm trying to convert this strategy from pinescript to python but im getting enormous output value when i backtest it, someone can find if there's something wrong? thank tou
class WaveTrendStrategy(bt.Strategy):
def __init__(self) :
n1 = 21
n2 = 14
obLevel1 = 60
obLevel1 = 60
obLevel2 = 53
osLevel1 = -60
osLevel2 = -53
hlc3 = (self.data.high+self.data.low+self.data.close)/3
ap = hlc3
esa = bt.ind.EMA(ap,period=n1)
d = bt.ind.EMA(abs(ap - esa), period=n1)
ci = (ap - esa) / (0.015 * d)
tci = bt.ind.EMA(ci, period=n2)
wt1 = tci
wt2 = bt.ind.SMA(wt1,period=4)
self.longCondition = bt.ind.CrossUp(wt2,osLevel2)
self.shortCondition = bt.ind.CrossDown(wt2,obLevel2)
def next(self):
if self.longCondition:
self.buy()
elif self.shortCondition:
self.sell()
I'm not sure why you are having problems. I've copied your code and it's running fine. Perhaps your data feed has someting wrong?
The only thing I added in was assuming you wanted to go long AND short. Your current code goes either long to flat, or short to flat. I've added in a close trade before the short/long trades.
Here's your code just added to my shell. Have a look and run this. It works of yfinance so will go around any data issues. Let us know if you still have problems.