2019-11-14 21:46:16 +00:00
|
|
|
package main
|
2019-11-09 03:26:17 +00:00
|
|
|
|
2019-11-20 01:26:56 +00:00
|
|
|
import (
|
|
|
|
"encoding/xml"
|
2020-01-20 00:21:32 +00:00
|
|
|
"time"
|
2019-11-20 01:26:56 +00:00
|
|
|
)
|
2019-11-14 21:46:16 +00:00
|
|
|
|
2019-11-27 13:29:14 +00:00
|
|
|
type Accountbalance struct {
|
|
|
|
XMLName xml.Name `xml:"accountbalance"`
|
|
|
|
Account string `xml:"account"`
|
|
|
|
Accountvalue float64 `xml:"accountvalue"`
|
|
|
|
Buyingpower struct {
|
|
|
|
Text string `xml:",chardata"`
|
|
|
|
Cashavailableforwithdrawal float64 `xml:"cashavailableforwithdrawal"`
|
|
|
|
Daytrading float64 `xml:"daytrading"`
|
|
|
|
Equitypercentage float64 `xml:"equitypercentage"`
|
|
|
|
Options float64 `xml:"options"`
|
|
|
|
Soddaytrading float64 `xml:"soddaytrading"`
|
|
|
|
Sodoptions float64 `xml:"sodoptions"`
|
|
|
|
Sodstock float64 `xml:"sodstock"`
|
|
|
|
Stock float64 `xml:"stock"`
|
|
|
|
} `xml:"buyingpower"`
|
|
|
|
Fedcall float64 `xml:"fedcall"`
|
|
|
|
Housecall float64 `xml:"housecall"`
|
|
|
|
Money struct {
|
|
|
|
Text string `xml:",chardata"`
|
|
|
|
Accruedinterest float64 `xml:"accruedinterest"`
|
|
|
|
Cash float64 `xml:"cash"`
|
|
|
|
Cashavailable float64 `xml:"cashavailable"`
|
|
|
|
Marginbalance float64 `xml:"marginbalance"`
|
|
|
|
Mmf float64 `xml:"mmf"`
|
|
|
|
Total float64 `xml:"total"`
|
|
|
|
Uncleareddeposits float64 `xml:"uncleareddeposits"`
|
|
|
|
Unsettledfunds float64 `xml:"unsettledfunds"`
|
|
|
|
Yield float64 `xml:"yield"`
|
|
|
|
} `xml:"money"`
|
|
|
|
Securities struct {
|
2019-11-20 01:26:56 +00:00
|
|
|
Text string `xml:",chardata"`
|
2019-11-27 13:29:14 +00:00
|
|
|
Longoptions float64 `xml:"longoptions"`
|
|
|
|
Longstocks float64 `xml:"longstocks"`
|
|
|
|
Options float64 `xml:"options"`
|
|
|
|
Shortoptions float64 `xml:"shortoptions"`
|
|
|
|
Shortstocks float64 `xml:"shortstocks"`
|
|
|
|
Stocks float64 `xml:"stocks"`
|
|
|
|
Total float64 `xml:"total"`
|
|
|
|
} `xml:"securities"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Accountholdings struct {
|
|
|
|
XMLName xml.Name `xml:"accountholdings"`
|
|
|
|
Displaydata struct {
|
|
|
|
Text string `xml:",chardata"`
|
|
|
|
Totalsecurities string `xml:"totalsecurities"`
|
|
|
|
} `xml:"displaydata"`
|
|
|
|
Holding []struct {
|
2019-11-15 18:01:19 +00:00
|
|
|
Text string `xml:",chardata"`
|
2019-11-27 13:29:14 +00:00
|
|
|
Accounttype string `xml:"accounttype"`
|
|
|
|
Costbasis string `xml:"costbasis"`
|
2019-11-15 18:01:19 +00:00
|
|
|
Displaydata struct {
|
2019-11-27 13:29:14 +00:00
|
|
|
Text string `xml:",chardata"`
|
|
|
|
Accounttype string `xml:"accounttype"`
|
|
|
|
Assetclass string `xml:"assetclass"`
|
|
|
|
Change string `xml:"change"`
|
|
|
|
Costbasis string `xml:"costbasis"`
|
|
|
|
Desc string `xml:"desc"`
|
|
|
|
Lastprice string `xml:"lastprice"`
|
|
|
|
Marketvalue string `xml:"marketvalue"`
|
|
|
|
Marketvaluechange string `xml:"marketvaluechange"`
|
|
|
|
Qty string `xml:"qty"`
|
|
|
|
Symbol string `xml:"symbol"`
|
2019-11-15 18:01:19 +00:00
|
|
|
} `xml:"displaydata"`
|
2019-11-27 13:29:14 +00:00
|
|
|
Gainloss float64 `xml:"gainloss"`
|
|
|
|
Instrument struct {
|
|
|
|
Text string `xml:",chardata"`
|
|
|
|
Cusip string `xml:"cusip"`
|
|
|
|
Desc string `xml:"desc"`
|
|
|
|
Factor string `xml:"factor"`
|
|
|
|
Sectyp string `xml:"sectyp"`
|
|
|
|
Sym string `xml:"sym"`
|
|
|
|
} `xml:"instrument"`
|
|
|
|
Marketvalue float64 `xml:"marketvalue"`
|
|
|
|
Marketvaluechange float64 `xml:"marketvaluechange"`
|
|
|
|
Price float64 `xml:"price"`
|
|
|
|
Purchaseprice float64 `xml:"purchaseprice"`
|
|
|
|
Qty float64 `xml:"qty"`
|
|
|
|
Quote struct {
|
|
|
|
Text string `xml:",chardata"`
|
|
|
|
Change float64 `xml:"change"`
|
|
|
|
Lastprice float64 `xml:"lastprice"`
|
|
|
|
} `xml:"quote"`
|
|
|
|
Underlying string `xml:"underlying"`
|
|
|
|
} `xml:"holding"`
|
|
|
|
Totalsecurities float64 `xml:"totalsecurities"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type AccountSummary struct {
|
|
|
|
XMLName xml.Name `xml:"accountsummary"`
|
|
|
|
Text string `xml:",chardata"`
|
|
|
|
Account string `xml:"account"`
|
|
|
|
Accountbalance Accountbalance `xml:"accountbalance"`
|
|
|
|
Accountholdings Accountholdings `xml:"accountholdings"`
|
2019-11-09 03:26:17 +00:00
|
|
|
}
|
|
|
|
|
2019-11-15 18:01:19 +00:00
|
|
|
type AccountResponse struct {
|
|
|
|
XMLName xml.Name `xml:"response"`
|
|
|
|
Text string `xml:",chardata"`
|
|
|
|
ID string `xml:"id,attr"`
|
|
|
|
Accounts struct {
|
|
|
|
Text string `xml:",chardata"`
|
|
|
|
Accountsummary []AccountSummary `xml:"accountsummary"`
|
|
|
|
} `xml:"accounts"`
|
2019-11-14 21:46:16 +00:00
|
|
|
}
|
2019-11-26 20:35:50 +00:00
|
|
|
|
|
|
|
type AccountBalance struct {
|
|
|
|
XMLName xml.Name `xml:"accountbalance"`
|
|
|
|
Account int `xml:"account"`
|
|
|
|
AccountName string `xml:"accountname"`
|
|
|
|
AccountValue float64 `xml:"accountvalue"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type AccountBalanceResponse struct {
|
|
|
|
XMLName xml.Name `xml:"response"`
|
|
|
|
AccountBalances []AccountBalance `xml:"accountbalance"`
|
|
|
|
TotalBalance float64 `xml:"totalbalance>accountvalue"`
|
|
|
|
}
|
2019-11-27 13:29:14 +00:00
|
|
|
|
|
|
|
type AccountDetailResponse struct {
|
|
|
|
XMLName xml.Name `xml:"response"`
|
|
|
|
AccountBalance Accountbalance `xml:"accountbalance"`
|
|
|
|
AccountHoldings Accountholdings `xml:"accountholdings"`
|
|
|
|
}
|
2019-11-27 13:39:26 +00:00
|
|
|
|
|
|
|
type AccountDetailBalanceResponse struct {
|
|
|
|
XMLName xml.Name `xml:"response"`
|
|
|
|
AccountBalance Accountbalance `xml:"accountbalance"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type AccountDetailHoldingsResponse struct {
|
|
|
|
XMLName xml.Name `xml:"response"`
|
|
|
|
AccountHoldings Accountholdings `xml:"accountholdings"`
|
|
|
|
}
|
2020-01-20 00:21:32 +00:00
|
|
|
|
|
|
|
type MarketClockResponse struct {
|
|
|
|
XMLName xml.Name `xml:"response"`
|
|
|
|
Date string `xml:"date"`
|
|
|
|
CurrentStatus string `xml:"status>current"`
|
|
|
|
Message string `xml:"message"`
|
|
|
|
UnixTime time.Time `xml:"unixtime"`
|
|
|
|
}
|
2020-01-20 19:16:20 +00:00
|
|
|
|
|
|
|
type MarketQuotesResponse struct {
|
|
|
|
XMLName xml.Name `xml:"response"`
|
|
|
|
Quotes []Quote `xml:"quotes"'`
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
TODO: Finish this page https://www.ally.com/api/invest/documentation/market-ext-quotes-get-post/
|
|
|
|
*/
|
|
|
|
type Quote struct {
|
2020-01-20 19:25:21 +00:00
|
|
|
XMLName xml.Name `xml:"quote"`
|
|
|
|
AverageDailyPrice100 float64 `xml:"adp_100"`
|
|
|
|
AverageDailyPrice200 float64 `xml:"adp_200"`
|
|
|
|
AverageDailyPrice50 float64 `xml:"adp_50"`
|
|
|
|
AverageDailyVolume21 float64 `xml:"adv_21"`
|
|
|
|
AverageDailyVolume30 float64 `xml:"adv_30"`
|
|
|
|
AverageDailyVolume90 float64 `xml:"adv_90"`
|
|
|
|
AskPrice float64 `xml:"ask"`
|
|
|
|
AskTime time.Time `xml:"ask_time"`
|
|
|
|
AskSize int `xml:"asksz"`
|
|
|
|
Basis float64 `xml:"basis"`
|
|
|
|
Beta float64 `xml:"beta"`
|
|
|
|
Bid float64 `xml:"bid"`
|
|
|
|
BidTime time.Time `xml:"bid_time"`
|
|
|
|
BidSize int `xml:"bidsz"`
|
|
|
|
BidTick int `xml:"bidtick"`
|
|
|
|
Change float64 `xml:"chg"`
|
|
|
|
ChangeSign string `xml:"chg_sign"`
|
|
|
|
ChangeText string `xml:"chg_t"`
|
|
|
|
Close float64 `xml:"cl"`
|
|
|
|
Cusip float64 `xml:"cusip"`
|
|
|
|
Date string `xml:"date"`
|
|
|
|
Datetime string `xml:"datetime"`
|
|
|
|
Dividend float64 `xml:"div"`
|
|
|
|
DividendFrequency string `xml:"divfreq"`
|
|
|
|
DollarValue float64 `xml:"dollar_value"`
|
|
|
|
EarningsPerShare float64 `xml:"eps"`
|
|
|
|
CompanyName string `xml:"name"`
|
|
|
|
PercentChangeSinceClose float64 `xml:"pchg"`
|
|
|
|
PriorDayClose float64 `xml:"pcls"`
|
|
|
|
PriceEarningRatio float64 `xml:"pe"`
|
|
|
|
PriorDayHigh float64 `xml:"phi"`
|
|
|
|
PriorDayLow float64 `xml:"plo"`
|
|
|
|
PriorDayOpen float64 `xml:"popn"`
|
2020-01-20 19:16:20 +00:00
|
|
|
}
|