-
Notifications
You must be signed in to change notification settings - Fork 2
/
stocks_quotes.go
187 lines (169 loc) · 6.98 KB
/
stocks_quotes.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// Package client includes types and methods to access the Stock Quotes endpoint.
// Retrieve live quotes for any supported stock symbol.
//
// # Making Requests
//
// Utilize [StockQuoteRequest] to make requests to the endpoint through one of the three supported execution methods:
//
// | Method | Execution | Return Type | Description |
// |------------|---------------|----------------------------|-----------------------------------------------------------------------------------------------------------|
// | **Get** | Direct | `[]StockQuote` | Directly returns a slice of `[]StockQuote`, facilitating individual access to each stock quote. |
// | **Packed** | Intermediate | `StockQuotesResponse` | Returns a packed `StockQuotesResponse` object. Must be unpacked to access the `[]StockQuote` slice. |
// | **Raw** | Low-level | `resty.Response` | Offers the raw `resty.Response` for utmost flexibility. Direct access to raw JSON or `*http.Response`. |
package client
import (
"context"
"fmt"
"github.com/MarketDataApp/sdk-go/helpers/parameters"
"github.com/MarketDataApp/sdk-go/models"
"github.com/go-resty/resty/v2"
)
// StockQuoteRequest represents a request to the [/v1/stocks/quotes/] endpoint.
// It encapsulates parameters for symbol and fifty-two-week data to be used in the request.
// This struct provides methods such as Symbol() and FiftyTwoWeek() to set these parameters respectively.
//
// # Setter Methods
//
// - Symbol(string) *StockQuoteRequest: Sets the symbol parameter for the request.
// - FiftyTwoWeek(bool) *StockQuoteRequest: Sets the fifty-two-week data parameter for the request.
//
// # Execution Methods
//
// These methods are used to send the request in different formats or retrieve the data.
// They handle the actual communication with the API endpoint.
//
// - Get() ([]Candle, error): Sends the request, unpacks the response, and returns the data in a user-friendly format.
// - Packed() (*IndicesCandlesResponse, error): Returns a struct that contains equal-length slices of primitives. This packed response mirrors Market Data's JSON response.
// - Raw() (*resty.Response, error): Sends the request as is and returns the raw HTTP response.
//
// [/v1/stocks/quotes/]: https://www.marketdata.app/docs/api/stocks/quotes
type StockQuoteRequest struct {
*baseRequest
symbolParams *parameters.SymbolParams
fiftyTwoWeekParams *parameters.FiftyTwoWeekParams
}
// Symbol sets the symbol parameter for the StockQuoteRequest.
// This method is used to specify the stock symbol for which quote data is requested.
//
// # Parameters
//
// - string: A string representing the stock symbol to be set.
//
// # Returns
//
// - *StockQuoteRequest: This method returns a pointer to the *StockQuoteRequest instance it was called on. This allows for method chaining.
func (sqr *StockQuoteRequest) Symbol(q string) *StockQuoteRequest {
if sqr == nil {
return nil
}
err := sqr.symbolParams.SetSymbol(q)
if err != nil {
sqr.Error = err
}
return sqr
}
// FiftyTwoWeek sets the fifty-two-week data parameter for the StockQuoteRequest.
// This method indicates whether to include fifty-two-week high and low data in the quote.
//
// # Parameters
//
// - bool: A bool indicating whether to include fifty-two-week data.
//
// # Returns
//
// - *StockQuoteRequest: This method returns a pointer to the *StockQuoteRequest instance it was called on. This allows for method chaining.
func (sqr *StockQuoteRequest) FiftyTwoWeek(q bool) *StockQuoteRequest {
if sqr == nil {
return nil
}
sqr.fiftyTwoWeekParams.SetFiftyTwoWeek(q)
return sqr
}
// getParams packs the StockQuoteRequest struct into a slice of interface{} and returns it.
func (sqr *StockQuoteRequest) getParams() ([]parameters.MarketDataParam, error) {
if sqr == nil {
return nil, fmt.Errorf("StockQuoteRequest is nil")
}
params := []parameters.MarketDataParam{sqr.symbolParams, sqr.fiftyTwoWeekParams}
return params, nil
}
// Raw executes the StockQuoteRequest with the provided context and returns the raw *resty.Response.
// This method returns the raw HTTP response from the executed request.
//
// # Parameters
//
// - ctx context.Context: The context to use for the request execution.
//
// # Returns
//
// - *resty.Response: The raw HTTP response from the executed request.
// - error: An error object if the request fails due to being nil, or other execution errors.
func (sqr *StockQuoteRequest) Raw(ctx context.Context) (*resty.Response, error) {
return sqr.baseRequest.Raw(ctx)
}
// Packed sends the StockQuoteRequest with the provided context and returns the StockQuotesResponse.
//
// # Parameters
//
// - ctx context.Context: The context to use for the request execution.
//
// # Returns
//
// - *models.StockQuotesResponse: A pointer to the StockQuotesResponse obtained from the request.
// - error: An error object that indicates a failure in sending the request.
func (sqr *StockQuoteRequest) Packed(ctx context.Context) (*models.StockQuotesResponse, error) {
if sqr == nil {
return nil, fmt.Errorf("StockQuoteRequest is nil")
}
var sqrResp models.StockQuotesResponse
_, err := sqr.baseRequest.client.getFromRequest(ctx, sqr.baseRequest, &sqrResp)
if err != nil {
return nil, err
}
return &sqrResp, nil
}
// Get sends the StockQuoteRequest with the provided context, unpacks the StockQuotesResponse, and returns a slice of StockQuote.
// It returns an error if the request or unpacking fails.
//
// # Parameters
//
// - ctx context.Context: The context to use for the request execution.
//
// # Returns
//
// - []models.StockQuote: A slice of StockQuote containing the unpacked quote data from the response.
// - error: An error object that indicates a failure in sending the request or unpacking the response.
func (sqr *StockQuoteRequest) Get(ctx context.Context) ([]models.StockQuote, error) {
if sqr == nil {
return nil, fmt.Errorf("StockQuoteRequest is nil")
}
// Use the Packed method to make the request
sqrResp, err := sqr.Packed(ctx)
if err != nil {
return nil, err
}
// Unpack the data using the Unpack method in the response
data, err := sqrResp.Unpack()
if err != nil {
return nil, err
}
return data, nil
}
// StockQuote creates a new StockQuoteRequest and associates it with the default client. This function initializes the request
// with default parameters for symbol and fifty-two-week data, and sets the request path based on
// the predefined endpoints for stock quotes.
//
// # Returns
//
// - *StockQuoteRequest: A pointer to the newly created StockQuoteRequest with default parameters and associated client.
func StockQuote() *StockQuoteRequest {
baseReq := newBaseRequest()
baseReq.path = endpoints[1]["stocks"]["quotes"]
sqr := &StockQuoteRequest{
baseRequest: baseReq,
symbolParams: ¶meters.SymbolParams{},
fiftyTwoWeekParams: ¶meters.FiftyTwoWeekParams{},
}
baseReq.child = sqr
return sqr
}