StockExchangeTradingOptionsDto

data class StockExchangeTradingOptionsDto(var tradingAllowed: Boolean, var onlineTradingAllowed: Boolean, var executionDeadline: String? = null)

Options available in the stock exchange.

Parameters

tradingAllowed

Is trading allowed at this stock exchange?

onlineTradingAllowed

Is online trading allowed at this stock exchange?

executionDeadline

Last time when an order can be placed so that it can be executed on the current day. *Is displayed in 24 hour format with seconds HH:MM:SS.

Constructors

Link copied to clipboard
constructor(tradingAllowed: Boolean, onlineTradingAllowed: Boolean, executionDeadline: String? = null)

Properties

Link copied to clipboard
@get:Pattern(regexp = "^\d{2}:\d{2}:\d{2}$")
var executionDeadline: String?
Link copied to clipboard
Link copied to clipboard