TypeError: trading_strategy() got an unexpected keyword argument 'proportion'
时间: 2023-10-23 22:43:50 浏览: 135
TypeError: Unexpected keyword argument passed to optimizer: learning_rate 解决方法
这个错误通常意味着你的函数 `trading_strategy()` 并不接受 `proportion` 这个关键字参数。你需要检查一下你的函数定义,确保它接受这个参数。如果你确定 `trading_strategy()` 应该接受 `proportion` 参数,那么你可能需要检查一下你调用 `trading_strategy()` 函数的代码,看看是否有地方写错了参数名。
阅读全文