Sha256: 9ae2b4acd24ac852884057b79f6a35060b67c7d2ecc0072fc7c4b071ccfa49cf
Contents?: true
Size: 1.01 KB
Versions: 7
Compression:
Stored size: 1.01 KB
Contents
# SnapTrade::ManualTrade ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **String** | | [optional] | | **account** | **String** | | [optional] | | **order_type** | [**OrderType**](OrderType.md) | | [optional] | | **time_in_force** | **String** | Trade time in force examples: * FOK - Fill Or Kill * Day - Day * GTC - Good Til Canceled * GTD - Good Til Date | [optional] | | **symbol** | [**ManualTradeSymbol**](ManualTradeSymbol.md) | | [optional] | | **action** | [**Action**](Action.md) | | [optional] | | **units** | **Float** | Trade Units. Cannot work with notional value. | [optional] | | **price** | **Float** | Trade Price if limit or stop limit order | [optional] | ## Example ```ruby require 'snaptrade' instance = SnapTrade::ManualTrade.new( id: 2bcd7cc3-e922-4976-bce1-9858296801c3, account: 2bcd7cc3-e922-4976-bce1-9855556801c3, order_type: null, time_in_force: null, symbol: null, action: null, units: null, price: 31.33 ) ```
Version data entries
7 entries across 7 versions & 1 rubygems