6
Follow
0
Followers
템플릿의 기능들을 테스트했습니다.
def SetParam1(p1):
global param1
param1 = p1
def GetParam1():
Log("param1:", param1)
return param1
ext.SetParam1 = SetParam1
ext.GetParam1 = GetParam1
결과는 틀렸습니다.
Traceback (most recent call last): File "<string>", line 1606, in Run File "<string>", line 10, in <module> File "<string>", line 2, in main AttributeError: 'i1Iii1i1I' object has no attribute 'GetParam1'
왜 이런 일이 일어나는 걸까요?
Related Recommendations
How to Specify Different Versions of Data for the Rented Strategy by Its Rental Code MetadataAdvanced Tutorial for FMZ Quant platform Strategy WritingElementary Tutorial for FMZ Quant platform Strategy WritingGet Started with FMZ Quant PlatformSECURITY BUGI keep getting error: Exchange_GetAccount: Invalid ContractTypeWe have an incredibly profitable market making algorithm for sideways markets on Bitmex - but need expert to help eliminate wait times during downward volatility in the marketError with deribitLimitations of the backtesting engineHow to install ta-lib on linux docker?
