Endt4sk

Results 3 comments of Endt4sk

这个问题好像是HPSocket使用malloc和系统的冲突了,需要禁用

@huacnlee > 你调用这个是个股行情接口,期权行情是另外一个函数: > > * https://longportapp.github.io/openapi-sdk/cpp/classlongport_1_1quote_1_1_quote_context.html#a0671aa3a2b863d3e8b02e6501d8c0aa2 > * https://open.longportapp.com/docs/quote/pull/option-quote 谢谢,那用那个API可以获取期权的Gamma Delta这些数值?

@sunli829 感谢回复,我使用的C语言,用下面的方式获取的期权信息,怎么数据都是错的?除了收盘价行权价,其他的IV DELTA这些数据都对不上: ```c++ void OnSecurityCalcIndexCreated(const struct lb_async_result_t* res) { if (res->error) { printf("failed to create quote context: %s\n", lb_error_message(res->error)); return; } *((const lb_quote_context_t**)res->userdata) = (const lb_quote_context_t*)res->ctx; std::vector symbols; symbols.push_back("NVDA240419C900000.US");...