NameError: name 'current_portfolio' is not defined

NameError: name 'current_portfolio' is not defined

我收到 NameError:名称 'current_portfolio' 未定义

def initialize(context):
context.sym = symbol('xxx')
context.i = 0


def handle_data(context, data):

context.i += 1
if context.i < 60:
    return

sma1 = data.history(context.sym, 'price', 5, '1d').mean()
sma2 = data.history(context.sym, 'price', 60, '1d').mean()

current_price = data[context.sym].price
**current_position = current_portfolio.positions[symbol('xxx')].amount**
cash = context.portfolio.cash

如果有人能提供帮助,我将不胜感激。

至少从显示的内容来看,您没有在此代码中的任何地方定义 current_portfolio。

为了调用 current_portfolio 它必须在您调用它的上方的某处定义。

这就是您收到 "not defined" 错误的原因。