Is there a possibility to make the default input-values dependent on one of the input-values? I tried this:
def getHigh(pricedata, start=min(pricedata), end=max(pricedata)):
## do something
But it doesn’t work, because pricedata is not yet defined.
Keep it simple 🙂