1 Star 0 Fork 0

顾志成/quantcup-orderbook

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
engine.h 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
Andrew Tulloch 提交于 2014-01-21 20:34 . With clang-format
#ifndef ENGINE_H_
#define ENGINE_H_
#include "limits.h"
#include "types.h"
// EXTERNAL
/* IN:
OUT: */
void init();
/* IN:
OUT: */
void destroy();
/* IN: order: limit order to add to book
OUT: orderid assigned to order
start from 1 and increment with each call */
t_orderid limit(t_order order);
/* IN: orderid: id of order to cancel
OUT:
cancel request ignored if orderid not in book
*/
void cancel(t_orderid orderid);
// CALLBACKS
/* IN: execution: execution report
OUT: */
void execution(t_execution exec);
#endif // ENGINE_H_
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gu_zhicheng/quantcup-orderbook.git
[email protected]:gu_zhicheng/quantcup-orderbook.git
gu_zhicheng
quantcup-orderbook
quantcup-orderbook
master

搜索帮助