Michael Fischer

Results 16 comments of Michael Fischer

Seems like the above link is broken, this link worked for me [app.setAboutPanelOptions(options)](https://www.electronjs.org/docs/all#appsetaboutpaneloptionsoptions).

method: `POST` endpoint: `https://brokerage.fidelity.com/ftgw/brkg/equityticket/balance` body: ``` json {"acctNum": "X00000000"} ``` resposne: ``` json [ { "acctNum": "X00000000", "brokerageAcctDetail": { "asOfDateTime": 1612201675, "recentBalanceDetail": { "asOfDateTime": 1612201675, "acctValDetail": { "netWorth": 1.00, "netWorthChg":...

method: `POST` endpoint: `https://brokerage.fidelity.com/ftgw/brkg/equityticket/getquote` body: ``` json { "symbols": "EXROF" } ``` resposne: ``` json { "SYMBOL": "EXROF", "STATUS": { "ERROR_CODE": "0", "ERROR_TEXT": "" }, "QUOTE_DATA": { "ASK_PRICE": "2.97", "ASK_SIZE":...

method: `POST` endpoint: `https://brokerage.fidelity.com/ftgw/brkg/equityticket/extendedhour` body: n/a response: ``` json { "sessionType": "CLO" } ```

method: `GET` endpoint: `https://www.fidelity.com/search/autosuggest?callback=searchJSONCallback&q=ts` response: ``` json [ { "quotes": { "count": 6, "suggestions": [ { "term": "TS", "count": 334, "desc": "TENARIS ADR REP 2 ORD SHS", "symbol": "TS", "cusip":...

[webull-api-ts](https://github.com/edmundpf/webull-api-ts) may be a good starting point

I'm a fan of this feature, still planning on implementing it? `pool.query()` could do the reset by default whereas acquiring a connection might require an api call to reset. ```...