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 ¶
View Source
const TableName = "tickerbeats.positions"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Position ¶
type Position struct { PositionID int64 `json:"position_id"` AccountID int64 `json:"account_id"` Ticket int64 `json:"ticket"` Symbol sql.NullString `json:"symbol"` PositionTime sql.NullTime `json:"position_time"` PositionType string `json:"position_type"` Volume float64 `json:"volume"` PriceOpen float64 `json:"price_open"` StopLoss float64 `json:"stop_loss"` TakeProfit float64 `json:"take_profit"` PriceCurrent float64 `json:"price_current"` Commission float64 `json:"commission"` Swap float64 `json:"swap"` Profit float64 `json:"profit"` Comment string `json:"comment"` Created time.Time `json:"created"` Updated time.Time `json:"updated"` Deleted sql.NullTime `json:"deleted"` PositionUpdate sql.NullTime `json:"position_update"` Reason string `json:"reason"` ExternalID string `json:"external_id"` Magic sql.NullInt64 `json:"magic"` }
Position Properties
Click to show internal directories.
Click to hide internal directories.