Here is the base code class for strategy. class StrategyBase(bt.Strategy): def __init__(self): self.order = None self.last_operation = "SELL" ...
確定! 回上一頁