You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def _find_turns(self, swing_days):
for i in range(swing_days+1, len(self.bars)):
for j in range(1, swing_days):
if self.__down_day(i-j) and self.__up_day(i+j):
break
row = pd.DataFrame({'Swing': self.bars.iloc[i]})
pass
The text was updated successfully, but these errors were encountered:
this section of the code seems to be incomplete:
def _find_turns(self, swing_days):
for i in range(swing_days+1, len(self.bars)):
for j in range(1, swing_days):
if self.__down_day(i-j) and self.__up_day(i+j):
break
row = pd.DataFrame({'Swing': self.bars.iloc[i]})
pass
The text was updated successfully, but these errors were encountered: