Enum DMBCS_KRAKEN_API::Order_Type
source · pub enum Order_Type {
MARKET,
LIMIT,
STOP_LOSS,
TAKE_PROFIT,
STOP_LOSS_PROFIT,
STOP_LOSS_PROFIT_LIMIT,
STOP_LOSS_LIMIT,
TAKE_PROFIT_LIMIT,
TRAILING_STOP,
TRAILING_STOP_LIMIT,
STOP_LOSS_AND_LIMIT,
SETTLE_POSITION,
}
Expand description
When submitting a trade instruction, what order type do we want to make?
Variants§
MARKET
A market order: to be executed as soon as possible at whatever the market price happens to be.
LIMIT
A limit order: to be executed when the price is below the limit when buying, or above the limit when selling.
STOP_LOSS
A stop-loss order: to be executed when the price is above the order when buying, or below the order when selling.
TAKE_PROFIT
Execute the order when the price is below the order when buying, above the order when selling.
STOP_LOSS_PROFIT
STOP_LOSS_PROFIT_LIMIT
STOP_LOSS_LIMIT
TAKE_PROFIT_LIMIT
TRAILING_STOP
TRAILING_STOP_LIMIT
STOP_LOSS_AND_LIMIT
SETTLE_POSITION
Implementations§
source§impl Order_Type
impl Order_Type
sourcepub fn as_kraken_string(&self) -> &'static str
pub fn as_kraken_string(&self) -> &'static str
Present the order type precisely as the Kraken API specifies.
Auto Trait Implementations§
impl RefUnwindSafe for Order_Type
impl Send for Order_Type
impl Sync for Order_Type
impl Unpin for Order_Type
impl UnwindSafe for Order_Type
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more