以下代码中self.my_exitprice < bar.high_price - self.b1 * self.atr_value2 的 bar.high_price前面是否应该添加self?
elif self.pos > 0:
if self.my_exitprice < bar.high_price - self.b1 * self.atr_value2
以下代码中self.my_exitprice < bar.high_price - self.b1 * self.atr_value2 的 bar.high_price前面是否应该添加self?
elif self.pos > 0:
if self.my_exitprice < bar.high_price - self.b1 * self.atr_value2
不用,因为bar通过on_bar函数传递进来了