redtorch icon indicating copy to clipboard operation
redtorch copied to clipboard

Kotlin(Java)开源量化交易开发框架

Results 1 redtorch issues
Sort by recently updated
recently updated
newest added

// OrderStatusEnum是一个报单状态类型 enum class OrderStatusEnum(val value: Int) { AllTraded("0"), // 全部成交 PartTradedQueueing("1"), // 部分成交还在队列中 PartTradedNotQueueing("2"), // 部分成交不在队列中 NoTradeQueueing("3"), // 未成交还在队列中 NoTradeNotQueueing("4"), // 未成交不在队列中 Canceled(“5”), // 撤单 Unkown(“a”), // 未知 NotTouched(“b"),...