Sha256: 3e6a0ceaa17a8d498e6b0be1c20c7987ec5558e7b62264da759092a07ec5145d

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

# SnapTrade::ManualTradeForm

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **account_id** | **String** |  | [optional] |
| **action** | [**Action**](Action.md) |  | [optional] |
| **order_type** | [**OrderType**](OrderType.md) |  | [optional] |
| **price** | **Float** | Trade Price if limit or stop limit order | [optional] |
| **stop** | **Float** | Stop Price. If stop loss or stop limit order, the price to trigger the stop | [optional] |
| **time_in_force** | [**TimeInForce**](TimeInForce.md) |  | [optional] |
| **units** | **Float** | Trade Units. Cannot work with notional value. | [optional] |
| **universal_symbol_id** | **String** |  | [optional] |
| **notional_value** | **Float** | Dollar amount to trade. Cannot work with units. Can only work for market order types and day for time in force. **Only available for Alpaca and Alpaca Paper. Please contact support to get access to place notional trades** | [optional] |

## Example

```ruby
require 'snaptrade'

instance = SnapTrade::ManualTradeForm.new(
  account_id: 2bcd7cc3-e922-4976-bce1-9858296801c3,
  action: null,
  order_type: null,
  price: 31.33,
  stop: 31.33,
  time_in_force: null,
  units: null,
  universal_symbol_id: 2bcd7cc3-e922-4976-bce1-9858296801c3,
  notional_value: 100
)
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
snaptrade-1.17.11 docs/ManualTradeForm.md