[Fix] Fixed an type annotation error: type of OrderRequest.price_type should be PriceType but not string.

This commit is contained in:
nanoric 2019-02-26 09:12:38 -04:00
parent d41485459c
commit a5f9171713

View File

@ -6,7 +6,7 @@ from dataclasses import dataclass
from datetime import datetime
from logging import INFO
from .constant import Direction, Exchange, Interval, Offset, Status, Product, OptionType
from .constant import Direction, Exchange, Interval, Offset, Status, Product, OptionType, PriceType
ACTIVE_STATUSES = set([Status.SUBMITTING, Status.NOTTRADED, Status.PARTTRADED])
@ -265,7 +265,7 @@ class OrderRequest:
symbol: str
exchange: Exchange
direction: Direction
price_type: str
price_type: PriceType
volume: float
price: float = 0
offset: Offset = Offset.NONE