Documentation ¶
Overview ¶
Copyright 2021 Sander Ruscigno
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Signal ¶
type Signal struct { SignalID int64 `json:"SignalID"` SourceAccountID int64 `json:"SourceAccountID"` DestinationAccountID int64 `json:"DestinationAccountID"` Active bool `json:"Active"` MaxDepositPercent int32 `json:"MaxDepositPercent"` StopIfLessThan int32 `json:"StopIfLessThan"` MaxSpread int64 `json:"MaxSpread"` MinutesToExpire int32 `json:"MinutesToExpire"` }
type SignalResult ¶
type SignalResult struct { SourceAccountID int64 `json:"SourceAccountID"` DestinationAccountID int64 `json:"DestinationAccountID"` SourceBeatsID sql.NullInt64 `json:"SourceBeatsID"` DestinationBeatsID sql.NullInt64 `json:"DestinationBeatsID"` SourcePositionID int64 `json:"SourcePositionID"` DestinationPositionID sql.NullInt64 `json:"DestinationPositionID"` SignalType string `json:"SignalType"` SignalStatus int16 `json:"SignalStatus"` ExternalID int64 `json:"ExternalID"` GroupId string `json:"GroupId"` Entry string `json:"Entry"` SentTime sql.NullTime `json:"SentTime"` ConfirmationTime sql.NullTime `json:"ConfirmationTime"` ExpireAt sql.NullTime `json:"ExpireAt"` Created time.Time `json:"Created"` Updated time.Time `json:"Updated"` }
type SignalStatusEnum ¶ added in v0.13.3
type SignalStatusEnum int
const ( Canceled SignalStatusEnum = 1 Created SignalStatusEnum = 2 Sent SignalStatusEnum = 4 Expired SignalStatusEnum = 8 Failed SignalStatusEnum = 16 TransactionConfirmed SignalStatusEnum = 32 OrderConfirmed SignalStatusEnum = 64 DealConfirmed SignalStatusEnum = 128 PositionConfirmed SignalStatusEnum = 256 PositionClose SignalStatusEnum = 512 )
Click to show internal directories.
Click to hide internal directories.