cuemacro / finmarketpy

Python library for backtesting trading strategies & analyzing financial markets (formerly pythalesians)
http://www.cuemacro.com
Apache License 2.0
3.41k stars 490 forks source link

Incorrect strike property setter #6

Open tazimmerman opened 8 years ago

tazimmerman commented 8 years ago

In market/request/backtestrequest.py, the strike property setter is using the tenor decorator.

@tenor.setter
def strike(self, strike):
    self.__strike = strike
saeedamen commented 8 years ago

Thanks @tazimmerman for spotting that! I've now removed that property and a few others in that file, given they weren't being used elsewhere.