1
Follow
0
Followers
어떤 오빠가 어떻게 코인의 투자비율을 확인하고, 변수를 호출하고, 오류를 계속 표시하는지 알려주실 수 있나요?
"아, 난 정말 잘 모르겠어요.
글쓰기1:
function main() {
var res = exchange.IO(
"api",
"GET",
"/linear-swap-api/v1/swap_funding_rate","contract_code=BTC-USDT"
); // 계약금의 수급률
return res;
}
실수가 발생했습니다.
Futures_OP 4: 400: {"timestamp":"2021-04-21T07:07:54.715+0000","status":400,"error":"Bad Request","message":"Required String parameter 'contract_code' is not present","path":"/linear-swap-api/v1/swap_funding_rate"}
글쓰기 2:
function main() {
var res = exchange.IO(
"api",
"GET",
"/linear-swap-api/v1/swap_funding_rate?contract_code=BTC-USDT"
); // 계약금의 수급률
return res;
}
실수가 발생했습니다.
Futures_OP 4: map[err_code:1014 err_msg:This contract doesnt exist. status:error ts:1.618988994379e+12]
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?
