sqa 0.0.37 → 0.0.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +62 -0
  3. data/docs/api-reference/alphavantageapi.md +105 -105
  4. data/docs/api-reference/apierror.md +2 -2
  5. data/docs/api-reference/index.md +2 -2
  6. data/docs/api-reference/notimplemented.md +2 -2
  7. data/docs/api-reference/sqa.md +12 -12
  8. data/docs/api-reference/sqa_backtest.md +43 -9
  9. data/docs/api-reference/sqa_backtest_results.md +34 -34
  10. data/docs/api-reference/sqa_badparametererror.md +1 -1
  11. data/docs/api-reference/sqa_config.md +31 -31
  12. data/docs/api-reference/sqa_configurationerror.md +1 -1
  13. data/docs/api-reference/sqa_datafetcherror.md +3 -3
  14. data/docs/api-reference/sqa_dataframe.md +63 -36
  15. data/docs/api-reference/sqa_dataframe_alphavantage.md +2 -2
  16. data/docs/api-reference/sqa_dataframe_data.md +18 -18
  17. data/docs/api-reference/sqa_dataframe_yahoofinance.md +2 -2
  18. data/docs/api-reference/sqa_ensemble.md +21 -21
  19. data/docs/api-reference/sqa_fpop.md +8 -8
  20. data/docs/api-reference/sqa_geneticprogram.md +20 -20
  21. data/docs/api-reference/sqa_geneticprogram_individual.md +8 -8
  22. data/docs/api-reference/sqa_marketregime.md +10 -10
  23. data/docs/api-reference/sqa_multitimeframe.md +11 -11
  24. data/docs/api-reference/sqa_patternmatcher.md +9 -9
  25. data/docs/api-reference/sqa_pluginmanager.md +4 -4
  26. data/docs/api-reference/sqa_portfolio.md +84 -27
  27. data/docs/api-reference/sqa_portfolio_position.md +12 -12
  28. data/docs/api-reference/sqa_portfolio_trade.md +16 -16
  29. data/docs/api-reference/sqa_portfoliooptimizer.md +10 -10
  30. data/docs/api-reference/sqa_riskmanager.md +12 -12
  31. data/docs/api-reference/sqa_seasonalanalyzer.md +6 -6
  32. data/docs/api-reference/sqa_sectoranalyzer.md +9 -9
  33. data/docs/api-reference/sqa_stock.md +48 -36
  34. data/docs/api-reference/sqa_strategy.md +8 -8
  35. data/docs/api-reference/sqa_strategy_bollingerbands.md +2 -2
  36. data/docs/api-reference/sqa_strategy_common.md +3 -3
  37. data/docs/api-reference/sqa_strategy_consensus.md +12 -12
  38. data/docs/api-reference/sqa_strategy_ema.md +4 -4
  39. data/docs/api-reference/sqa_strategy_kbs.md +11 -11
  40. data/docs/api-reference/sqa_strategy_macd.md +2 -2
  41. data/docs/api-reference/sqa_strategy_mp.md +4 -4
  42. data/docs/api-reference/sqa_strategy_mr.md +4 -4
  43. data/docs/api-reference/sqa_strategy_random.md +4 -4
  44. data/docs/api-reference/sqa_strategy_rsi.md +4 -4
  45. data/docs/api-reference/sqa_strategy_sma.md +4 -4
  46. data/docs/api-reference/sqa_strategy_stochastic.md +2 -2
  47. data/docs/api-reference/sqa_strategy_volumebreakout.md +2 -2
  48. data/docs/api-reference/sqa_strategygenerator.md +19 -19
  49. data/docs/api-reference/sqa_strategygenerator_pattern.md +17 -17
  50. data/docs/api-reference/sqa_strategygenerator_patterncontext.md +21 -21
  51. data/docs/api-reference/sqa_strategygenerator_profitablepoint.md +27 -27
  52. data/docs/api-reference/sqa_stream.md +18 -18
  53. data/docs/api-reference/sqa_ticker.md +8 -8
  54. data/docs/api-reference/string.md +11 -11
  55. data/docs/file_formats.md +250 -0
  56. data/lib/sqa/backtest.rb +32 -0
  57. data/lib/sqa/data_frame.rb +25 -0
  58. data/lib/sqa/portfolio.rb +54 -0
  59. data/lib/sqa/stock.rb +11 -0
  60. data/lib/sqa/version.rb +1 -1
  61. data/mkdocs.yml +1 -0
  62. metadata +2 -2
  63. data/docs/IMPROVEMENT_PLAN.md +0 -531
@@ -1,7 +1,7 @@
1
1
  # 📦 AlphaVantageAPI
2
2
 
3
3
  !!! abstract "Source Information"
4
- **Defined in:** `lib/api/alpha_vantage_api.rb:11`
4
+ **Defined in:** [`lib/api/alpha_vantage_api.rb:11`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L11)
5
5
 
6
6
  **Inherits from:** `Object`
7
7
 
@@ -19,7 +19,7 @@
19
19
  a new instance of AlphaVantageAPI
20
20
 
21
21
  ??? info "Source Location"
22
- `lib/api/alpha_vantage_api.rb:14`
22
+ [`lib/api/alpha_vantage_api.rb:14`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L14)
23
23
 
24
24
  ---
25
25
 
@@ -29,7 +29,7 @@
29
29
 
30
30
 
31
31
  ??? info "Source Location"
32
- `lib/api/alpha_vantage_api.rb:19`
32
+ [`lib/api/alpha_vantage_api.rb:19`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L19)
33
33
 
34
34
  ---
35
35
 
@@ -39,7 +39,7 @@
39
39
 
40
40
 
41
41
  ??? info "Source Location"
42
- `lib/api/alpha_vantage_api.rb:45`
42
+ [`lib/api/alpha_vantage_api.rb:45`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L45)
43
43
 
44
44
  ---
45
45
 
@@ -49,7 +49,7 @@
49
49
 
50
50
 
51
51
  ??? info "Source Location"
52
- `lib/api/alpha_vantage_api.rb:49`
52
+ [`lib/api/alpha_vantage_api.rb:49`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L49)
53
53
 
54
54
  ---
55
55
 
@@ -59,7 +59,7 @@
59
59
 
60
60
 
61
61
  ??? info "Source Location"
62
- `lib/api/alpha_vantage_api.rb:53`
62
+ [`lib/api/alpha_vantage_api.rb:53`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L53)
63
63
 
64
64
  ---
65
65
 
@@ -69,7 +69,7 @@
69
69
 
70
70
 
71
71
  ??? info "Source Location"
72
- `lib/api/alpha_vantage_api.rb:57`
72
+ [`lib/api/alpha_vantage_api.rb:57`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L57)
73
73
 
74
74
  ---
75
75
 
@@ -79,7 +79,7 @@
79
79
 
80
80
 
81
81
  ??? info "Source Location"
82
- `lib/api/alpha_vantage_api.rb:61`
82
+ [`lib/api/alpha_vantage_api.rb:61`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L61)
83
83
 
84
84
  ---
85
85
 
@@ -89,7 +89,7 @@
89
89
 
90
90
 
91
91
  ??? info "Source Location"
92
- `lib/api/alpha_vantage_api.rb:65`
92
+ [`lib/api/alpha_vantage_api.rb:65`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L65)
93
93
 
94
94
  ---
95
95
 
@@ -99,7 +99,7 @@
99
99
 
100
100
 
101
101
  ??? info "Source Location"
102
- `lib/api/alpha_vantage_api.rb:69`
102
+ [`lib/api/alpha_vantage_api.rb:69`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L69)
103
103
 
104
104
  ---
105
105
 
@@ -109,7 +109,7 @@
109
109
 
110
110
 
111
111
  ??? info "Source Location"
112
- `lib/api/alpha_vantage_api.rb:73`
112
+ [`lib/api/alpha_vantage_api.rb:73`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L73)
113
113
 
114
114
  ---
115
115
 
@@ -119,7 +119,7 @@
119
119
 
120
120
 
121
121
  ??? info "Source Location"
122
- `lib/api/alpha_vantage_api.rb:77`
122
+ [`lib/api/alpha_vantage_api.rb:77`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L77)
123
123
 
124
124
  ---
125
125
 
@@ -129,7 +129,7 @@
129
129
 
130
130
 
131
131
  ??? info "Source Location"
132
- `lib/api/alpha_vantage_api.rb:81`
132
+ [`lib/api/alpha_vantage_api.rb:81`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L81)
133
133
 
134
134
  ---
135
135
 
@@ -139,7 +139,7 @@
139
139
 
140
140
 
141
141
  ??? info "Source Location"
142
- `lib/api/alpha_vantage_api.rb:85`
142
+ [`lib/api/alpha_vantage_api.rb:85`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L85)
143
143
 
144
144
  ---
145
145
 
@@ -149,7 +149,7 @@
149
149
 
150
150
 
151
151
  ??? info "Source Location"
152
- `lib/api/alpha_vantage_api.rb:89`
152
+ [`lib/api/alpha_vantage_api.rb:89`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L89)
153
153
 
154
154
  ---
155
155
 
@@ -159,7 +159,7 @@
159
159
 
160
160
 
161
161
  ??? info "Source Location"
162
- `lib/api/alpha_vantage_api.rb:93`
162
+ [`lib/api/alpha_vantage_api.rb:93`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L93)
163
163
 
164
164
  ---
165
165
 
@@ -169,7 +169,7 @@
169
169
 
170
170
 
171
171
  ??? info "Source Location"
172
- `lib/api/alpha_vantage_api.rb:97`
172
+ [`lib/api/alpha_vantage_api.rb:97`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L97)
173
173
 
174
174
  ---
175
175
 
@@ -179,7 +179,7 @@
179
179
 
180
180
 
181
181
  ??? info "Source Location"
182
- `lib/api/alpha_vantage_api.rb:101`
182
+ [`lib/api/alpha_vantage_api.rb:101`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L101)
183
183
 
184
184
  ---
185
185
 
@@ -189,7 +189,7 @@
189
189
 
190
190
 
191
191
  ??? info "Source Location"
192
- `lib/api/alpha_vantage_api.rb:105`
192
+ [`lib/api/alpha_vantage_api.rb:105`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L105)
193
193
 
194
194
  ---
195
195
 
@@ -199,7 +199,7 @@
199
199
 
200
200
 
201
201
  ??? info "Source Location"
202
- `lib/api/alpha_vantage_api.rb:109`
202
+ [`lib/api/alpha_vantage_api.rb:109`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L109)
203
203
 
204
204
  ---
205
205
 
@@ -209,7 +209,7 @@
209
209
 
210
210
 
211
211
  ??? info "Source Location"
212
- `lib/api/alpha_vantage_api.rb:113`
212
+ [`lib/api/alpha_vantage_api.rb:113`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L113)
213
213
 
214
214
  ---
215
215
 
@@ -219,7 +219,7 @@
219
219
 
220
220
 
221
221
  ??? info "Source Location"
222
- `lib/api/alpha_vantage_api.rb:117`
222
+ [`lib/api/alpha_vantage_api.rb:117`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L117)
223
223
 
224
224
  ---
225
225
 
@@ -229,7 +229,7 @@
229
229
 
230
230
 
231
231
  ??? info "Source Location"
232
- `lib/api/alpha_vantage_api.rb:121`
232
+ [`lib/api/alpha_vantage_api.rb:121`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L121)
233
233
 
234
234
  ---
235
235
 
@@ -239,7 +239,7 @@
239
239
 
240
240
 
241
241
  ??? info "Source Location"
242
- `lib/api/alpha_vantage_api.rb:125`
242
+ [`lib/api/alpha_vantage_api.rb:125`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L125)
243
243
 
244
244
  ---
245
245
 
@@ -249,7 +249,7 @@
249
249
 
250
250
 
251
251
  ??? info "Source Location"
252
- `lib/api/alpha_vantage_api.rb:129`
252
+ [`lib/api/alpha_vantage_api.rb:129`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L129)
253
253
 
254
254
  ---
255
255
 
@@ -259,7 +259,7 @@
259
259
 
260
260
 
261
261
  ??? info "Source Location"
262
- `lib/api/alpha_vantage_api.rb:133`
262
+ [`lib/api/alpha_vantage_api.rb:133`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L133)
263
263
 
264
264
  ---
265
265
 
@@ -269,7 +269,7 @@
269
269
 
270
270
 
271
271
  ??? info "Source Location"
272
- `lib/api/alpha_vantage_api.rb:137`
272
+ [`lib/api/alpha_vantage_api.rb:137`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L137)
273
273
 
274
274
  ---
275
275
 
@@ -279,7 +279,7 @@
279
279
 
280
280
 
281
281
  ??? info "Source Location"
282
- `lib/api/alpha_vantage_api.rb:141`
282
+ [`lib/api/alpha_vantage_api.rb:141`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L141)
283
283
 
284
284
  ---
285
285
 
@@ -289,7 +289,7 @@
289
289
 
290
290
 
291
291
  ??? info "Source Location"
292
- `lib/api/alpha_vantage_api.rb:145`
292
+ [`lib/api/alpha_vantage_api.rb:145`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L145)
293
293
 
294
294
  ---
295
295
 
@@ -299,7 +299,7 @@
299
299
 
300
300
 
301
301
  ??? info "Source Location"
302
- `lib/api/alpha_vantage_api.rb:149`
302
+ [`lib/api/alpha_vantage_api.rb:149`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L149)
303
303
 
304
304
  ---
305
305
 
@@ -309,7 +309,7 @@
309
309
 
310
310
 
311
311
  ??? info "Source Location"
312
- `lib/api/alpha_vantage_api.rb:153`
312
+ [`lib/api/alpha_vantage_api.rb:153`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L153)
313
313
 
314
314
  ---
315
315
 
@@ -319,7 +319,7 @@
319
319
 
320
320
 
321
321
  ??? info "Source Location"
322
- `lib/api/alpha_vantage_api.rb:157`
322
+ [`lib/api/alpha_vantage_api.rb:157`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L157)
323
323
 
324
324
  ---
325
325
 
@@ -329,7 +329,7 @@
329
329
 
330
330
 
331
331
  ??? info "Source Location"
332
- `lib/api/alpha_vantage_api.rb:161`
332
+ [`lib/api/alpha_vantage_api.rb:161`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L161)
333
333
 
334
334
  ---
335
335
 
@@ -339,7 +339,7 @@
339
339
 
340
340
 
341
341
  ??? info "Source Location"
342
- `lib/api/alpha_vantage_api.rb:165`
342
+ [`lib/api/alpha_vantage_api.rb:165`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L165)
343
343
 
344
344
  ---
345
345
 
@@ -349,7 +349,7 @@
349
349
 
350
350
 
351
351
  ??? info "Source Location"
352
- `lib/api/alpha_vantage_api.rb:170`
352
+ [`lib/api/alpha_vantage_api.rb:170`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L170)
353
353
 
354
354
  ---
355
355
 
@@ -359,7 +359,7 @@
359
359
 
360
360
 
361
361
  ??? info "Source Location"
362
- `lib/api/alpha_vantage_api.rb:174`
362
+ [`lib/api/alpha_vantage_api.rb:174`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L174)
363
363
 
364
364
  ---
365
365
 
@@ -369,7 +369,7 @@
369
369
 
370
370
 
371
371
  ??? info "Source Location"
372
- `lib/api/alpha_vantage_api.rb:178`
372
+ [`lib/api/alpha_vantage_api.rb:178`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L178)
373
373
 
374
374
  ---
375
375
 
@@ -379,7 +379,7 @@
379
379
 
380
380
 
381
381
  ??? info "Source Location"
382
- `lib/api/alpha_vantage_api.rb:182`
382
+ [`lib/api/alpha_vantage_api.rb:182`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L182)
383
383
 
384
384
  ---
385
385
 
@@ -389,7 +389,7 @@
389
389
 
390
390
 
391
391
  ??? info "Source Location"
392
- `lib/api/alpha_vantage_api.rb:186`
392
+ [`lib/api/alpha_vantage_api.rb:186`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L186)
393
393
 
394
394
  ---
395
395
 
@@ -399,7 +399,7 @@
399
399
 
400
400
 
401
401
  ??? info "Source Location"
402
- `lib/api/alpha_vantage_api.rb:190`
402
+ [`lib/api/alpha_vantage_api.rb:190`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L190)
403
403
 
404
404
  ---
405
405
 
@@ -409,7 +409,7 @@
409
409
 
410
410
 
411
411
  ??? info "Source Location"
412
- `lib/api/alpha_vantage_api.rb:194`
412
+ [`lib/api/alpha_vantage_api.rb:194`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L194)
413
413
 
414
414
  ---
415
415
 
@@ -419,7 +419,7 @@
419
419
 
420
420
 
421
421
  ??? info "Source Location"
422
- `lib/api/alpha_vantage_api.rb:198`
422
+ [`lib/api/alpha_vantage_api.rb:198`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L198)
423
423
 
424
424
  ---
425
425
 
@@ -429,7 +429,7 @@
429
429
 
430
430
 
431
431
  ??? info "Source Location"
432
- `lib/api/alpha_vantage_api.rb:202`
432
+ [`lib/api/alpha_vantage_api.rb:202`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L202)
433
433
 
434
434
  ---
435
435
 
@@ -439,7 +439,7 @@
439
439
 
440
440
 
441
441
  ??? info "Source Location"
442
- `lib/api/alpha_vantage_api.rb:206`
442
+ [`lib/api/alpha_vantage_api.rb:206`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L206)
443
443
 
444
444
  ---
445
445
 
@@ -449,7 +449,7 @@
449
449
 
450
450
 
451
451
  ??? info "Source Location"
452
- `lib/api/alpha_vantage_api.rb:210`
452
+ [`lib/api/alpha_vantage_api.rb:210`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L210)
453
453
 
454
454
  ---
455
455
 
@@ -459,7 +459,7 @@
459
459
 
460
460
 
461
461
  ??? info "Source Location"
462
- `lib/api/alpha_vantage_api.rb:214`
462
+ [`lib/api/alpha_vantage_api.rb:214`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L214)
463
463
 
464
464
  ---
465
465
 
@@ -469,7 +469,7 @@
469
469
 
470
470
 
471
471
  ??? info "Source Location"
472
- `lib/api/alpha_vantage_api.rb:218`
472
+ [`lib/api/alpha_vantage_api.rb:218`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L218)
473
473
 
474
474
  ---
475
475
 
@@ -479,7 +479,7 @@
479
479
 
480
480
 
481
481
  ??? info "Source Location"
482
- `lib/api/alpha_vantage_api.rb:222`
482
+ [`lib/api/alpha_vantage_api.rb:222`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L222)
483
483
 
484
484
  ---
485
485
 
@@ -489,7 +489,7 @@
489
489
 
490
490
 
491
491
  ??? info "Source Location"
492
- `lib/api/alpha_vantage_api.rb:226`
492
+ [`lib/api/alpha_vantage_api.rb:226`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L226)
493
493
 
494
494
  ---
495
495
 
@@ -499,7 +499,7 @@
499
499
 
500
500
 
501
501
  ??? info "Source Location"
502
- `lib/api/alpha_vantage_api.rb:230`
502
+ [`lib/api/alpha_vantage_api.rb:230`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L230)
503
503
 
504
504
  ---
505
505
 
@@ -509,7 +509,7 @@
509
509
 
510
510
 
511
511
  ??? info "Source Location"
512
- `lib/api/alpha_vantage_api.rb:234`
512
+ [`lib/api/alpha_vantage_api.rb:234`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L234)
513
513
 
514
514
  ---
515
515
 
@@ -519,7 +519,7 @@
519
519
 
520
520
 
521
521
  ??? info "Source Location"
522
- `lib/api/alpha_vantage_api.rb:238`
522
+ [`lib/api/alpha_vantage_api.rb:238`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L238)
523
523
 
524
524
  ---
525
525
 
@@ -529,7 +529,7 @@
529
529
 
530
530
 
531
531
  ??? info "Source Location"
532
- `lib/api/alpha_vantage_api.rb:242`
532
+ [`lib/api/alpha_vantage_api.rb:242`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L242)
533
533
 
534
534
  ---
535
535
 
@@ -539,7 +539,7 @@
539
539
 
540
540
 
541
541
  ??? info "Source Location"
542
- `lib/api/alpha_vantage_api.rb:246`
542
+ [`lib/api/alpha_vantage_api.rb:246`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L246)
543
543
 
544
544
  ---
545
545
 
@@ -549,7 +549,7 @@
549
549
 
550
550
 
551
551
  ??? info "Source Location"
552
- `lib/api/alpha_vantage_api.rb:250`
552
+ [`lib/api/alpha_vantage_api.rb:250`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L250)
553
553
 
554
554
  ---
555
555
 
@@ -559,7 +559,7 @@
559
559
 
560
560
 
561
561
  ??? info "Source Location"
562
- `lib/api/alpha_vantage_api.rb:254`
562
+ [`lib/api/alpha_vantage_api.rb:254`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L254)
563
563
 
564
564
  ---
565
565
 
@@ -569,7 +569,7 @@
569
569
 
570
570
 
571
571
  ??? info "Source Location"
572
- `lib/api/alpha_vantage_api.rb:258`
572
+ [`lib/api/alpha_vantage_api.rb:258`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L258)
573
573
 
574
574
  ---
575
575
 
@@ -579,7 +579,7 @@
579
579
 
580
580
 
581
581
  ??? info "Source Location"
582
- `lib/api/alpha_vantage_api.rb:262`
582
+ [`lib/api/alpha_vantage_api.rb:262`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L262)
583
583
 
584
584
  ---
585
585
 
@@ -589,7 +589,7 @@
589
589
 
590
590
 
591
591
  ??? info "Source Location"
592
- `lib/api/alpha_vantage_api.rb:266`
592
+ [`lib/api/alpha_vantage_api.rb:266`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L266)
593
593
 
594
594
  ---
595
595
 
@@ -599,7 +599,7 @@
599
599
 
600
600
 
601
601
  ??? info "Source Location"
602
- `lib/api/alpha_vantage_api.rb:270`
602
+ [`lib/api/alpha_vantage_api.rb:270`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L270)
603
603
 
604
604
  ---
605
605
 
@@ -609,7 +609,7 @@
609
609
 
610
610
 
611
611
  ??? info "Source Location"
612
- `lib/api/alpha_vantage_api.rb:274`
612
+ [`lib/api/alpha_vantage_api.rb:274`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L274)
613
613
 
614
614
  ---
615
615
 
@@ -619,7 +619,7 @@
619
619
 
620
620
 
621
621
  ??? info "Source Location"
622
- `lib/api/alpha_vantage_api.rb:278`
622
+ [`lib/api/alpha_vantage_api.rb:278`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L278)
623
623
 
624
624
  ---
625
625
 
@@ -629,7 +629,7 @@
629
629
 
630
630
 
631
631
  ??? info "Source Location"
632
- `lib/api/alpha_vantage_api.rb:282`
632
+ [`lib/api/alpha_vantage_api.rb:282`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L282)
633
633
 
634
634
  ---
635
635
 
@@ -639,7 +639,7 @@
639
639
 
640
640
 
641
641
  ??? info "Source Location"
642
- `lib/api/alpha_vantage_api.rb:286`
642
+ [`lib/api/alpha_vantage_api.rb:286`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L286)
643
643
 
644
644
  ---
645
645
 
@@ -649,7 +649,7 @@
649
649
 
650
650
 
651
651
  ??? info "Source Location"
652
- `lib/api/alpha_vantage_api.rb:290`
652
+ [`lib/api/alpha_vantage_api.rb:290`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L290)
653
653
 
654
654
  ---
655
655
 
@@ -659,7 +659,7 @@
659
659
 
660
660
 
661
661
  ??? info "Source Location"
662
- `lib/api/alpha_vantage_api.rb:295`
662
+ [`lib/api/alpha_vantage_api.rb:295`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L295)
663
663
 
664
664
  ---
665
665
 
@@ -669,7 +669,7 @@
669
669
 
670
670
 
671
671
  ??? info "Source Location"
672
- `lib/api/alpha_vantage_api.rb:299`
672
+ [`lib/api/alpha_vantage_api.rb:299`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L299)
673
673
 
674
674
  ---
675
675
 
@@ -679,7 +679,7 @@
679
679
 
680
680
 
681
681
  ??? info "Source Location"
682
- `lib/api/alpha_vantage_api.rb:303`
682
+ [`lib/api/alpha_vantage_api.rb:303`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L303)
683
683
 
684
684
  ---
685
685
 
@@ -689,7 +689,7 @@
689
689
 
690
690
 
691
691
  ??? info "Source Location"
692
- `lib/api/alpha_vantage_api.rb:307`
692
+ [`lib/api/alpha_vantage_api.rb:307`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L307)
693
693
 
694
694
  ---
695
695
 
@@ -699,7 +699,7 @@
699
699
 
700
700
 
701
701
  ??? info "Source Location"
702
- `lib/api/alpha_vantage_api.rb:311`
702
+ [`lib/api/alpha_vantage_api.rb:311`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L311)
703
703
 
704
704
  ---
705
705
 
@@ -709,7 +709,7 @@
709
709
 
710
710
 
711
711
  ??? info "Source Location"
712
- `lib/api/alpha_vantage_api.rb:315`
712
+ [`lib/api/alpha_vantage_api.rb:315`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L315)
713
713
 
714
714
  ---
715
715
 
@@ -719,7 +719,7 @@
719
719
 
720
720
 
721
721
  ??? info "Source Location"
722
- `lib/api/alpha_vantage_api.rb:319`
722
+ [`lib/api/alpha_vantage_api.rb:319`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L319)
723
723
 
724
724
  ---
725
725
 
@@ -729,7 +729,7 @@
729
729
 
730
730
 
731
731
  ??? info "Source Location"
732
- `lib/api/alpha_vantage_api.rb:327`
732
+ [`lib/api/alpha_vantage_api.rb:327`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L327)
733
733
 
734
734
  ---
735
735
 
@@ -739,7 +739,7 @@
739
739
 
740
740
 
741
741
  ??? info "Source Location"
742
- `lib/api/alpha_vantage_api.rb:331`
742
+ [`lib/api/alpha_vantage_api.rb:331`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L331)
743
743
 
744
744
  ---
745
745
 
@@ -749,7 +749,7 @@
749
749
 
750
750
 
751
751
  ??? info "Source Location"
752
- `lib/api/alpha_vantage_api.rb:335`
752
+ [`lib/api/alpha_vantage_api.rb:335`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L335)
753
753
 
754
754
  ---
755
755
 
@@ -759,7 +759,7 @@
759
759
 
760
760
 
761
761
  ??? info "Source Location"
762
- `lib/api/alpha_vantage_api.rb:339`
762
+ [`lib/api/alpha_vantage_api.rb:339`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L339)
763
763
 
764
764
  ---
765
765
 
@@ -769,7 +769,7 @@
769
769
 
770
770
 
771
771
  ??? info "Source Location"
772
- `lib/api/alpha_vantage_api.rb:343`
772
+ [`lib/api/alpha_vantage_api.rb:343`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L343)
773
773
 
774
774
  ---
775
775
 
@@ -779,7 +779,7 @@
779
779
 
780
780
 
781
781
  ??? info "Source Location"
782
- `lib/api/alpha_vantage_api.rb:347`
782
+ [`lib/api/alpha_vantage_api.rb:347`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L347)
783
783
 
784
784
  ---
785
785
 
@@ -789,7 +789,7 @@
789
789
 
790
790
 
791
791
  ??? info "Source Location"
792
- `lib/api/alpha_vantage_api.rb:351`
792
+ [`lib/api/alpha_vantage_api.rb:351`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L351)
793
793
 
794
794
  ---
795
795
 
@@ -799,7 +799,7 @@
799
799
 
800
800
 
801
801
  ??? info "Source Location"
802
- `lib/api/alpha_vantage_api.rb:355`
802
+ [`lib/api/alpha_vantage_api.rb:355`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L355)
803
803
 
804
804
  ---
805
805
 
@@ -809,7 +809,7 @@
809
809
 
810
810
 
811
811
  ??? info "Source Location"
812
- `lib/api/alpha_vantage_api.rb:359`
812
+ [`lib/api/alpha_vantage_api.rb:359`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L359)
813
813
 
814
814
  ---
815
815
 
@@ -819,7 +819,7 @@
819
819
 
820
820
 
821
821
  ??? info "Source Location"
822
- `lib/api/alpha_vantage_api.rb:363`
822
+ [`lib/api/alpha_vantage_api.rb:363`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L363)
823
823
 
824
824
  ---
825
825
 
@@ -829,7 +829,7 @@
829
829
 
830
830
 
831
831
  ??? info "Source Location"
832
- `lib/api/alpha_vantage_api.rb:367`
832
+ [`lib/api/alpha_vantage_api.rb:367`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L367)
833
833
 
834
834
  ---
835
835
 
@@ -839,7 +839,7 @@
839
839
 
840
840
 
841
841
  ??? info "Source Location"
842
- `lib/api/alpha_vantage_api.rb:371`
842
+ [`lib/api/alpha_vantage_api.rb:371`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L371)
843
843
 
844
844
  ---
845
845
 
@@ -849,7 +849,7 @@
849
849
 
850
850
 
851
851
  ??? info "Source Location"
852
- `lib/api/alpha_vantage_api.rb:375`
852
+ [`lib/api/alpha_vantage_api.rb:375`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L375)
853
853
 
854
854
  ---
855
855
 
@@ -859,7 +859,7 @@
859
859
 
860
860
 
861
861
  ??? info "Source Location"
862
- `lib/api/alpha_vantage_api.rb:379`
862
+ [`lib/api/alpha_vantage_api.rb:379`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L379)
863
863
 
864
864
  ---
865
865
 
@@ -869,7 +869,7 @@
869
869
 
870
870
 
871
871
  ??? info "Source Location"
872
- `lib/api/alpha_vantage_api.rb:383`
872
+ [`lib/api/alpha_vantage_api.rb:383`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L383)
873
873
 
874
874
  ---
875
875
 
@@ -879,7 +879,7 @@
879
879
 
880
880
 
881
881
  ??? info "Source Location"
882
- `lib/api/alpha_vantage_api.rb:387`
882
+ [`lib/api/alpha_vantage_api.rb:387`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L387)
883
883
 
884
884
  ---
885
885
 
@@ -889,7 +889,7 @@
889
889
 
890
890
 
891
891
  ??? info "Source Location"
892
- `lib/api/alpha_vantage_api.rb:391`
892
+ [`lib/api/alpha_vantage_api.rb:391`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L391)
893
893
 
894
894
  ---
895
895
 
@@ -899,7 +899,7 @@
899
899
 
900
900
 
901
901
  ??? info "Source Location"
902
- `lib/api/alpha_vantage_api.rb:395`
902
+ [`lib/api/alpha_vantage_api.rb:395`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L395)
903
903
 
904
904
  ---
905
905
 
@@ -909,7 +909,7 @@
909
909
 
910
910
 
911
911
  ??? info "Source Location"
912
- `lib/api/alpha_vantage_api.rb:399`
912
+ [`lib/api/alpha_vantage_api.rb:399`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L399)
913
913
 
914
914
  ---
915
915
 
@@ -919,7 +919,7 @@
919
919
 
920
920
 
921
921
  ??? info "Source Location"
922
- `lib/api/alpha_vantage_api.rb:403`
922
+ [`lib/api/alpha_vantage_api.rb:403`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L403)
923
923
 
924
924
  ---
925
925
 
@@ -929,7 +929,7 @@
929
929
 
930
930
 
931
931
  ??? info "Source Location"
932
- `lib/api/alpha_vantage_api.rb:407`
932
+ [`lib/api/alpha_vantage_api.rb:407`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L407)
933
933
 
934
934
  ---
935
935
 
@@ -939,7 +939,7 @@
939
939
 
940
940
 
941
941
  ??? info "Source Location"
942
- `lib/api/alpha_vantage_api.rb:411`
942
+ [`lib/api/alpha_vantage_api.rb:411`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L411)
943
943
 
944
944
  ---
945
945
 
@@ -949,7 +949,7 @@
949
949
 
950
950
 
951
951
  ??? info "Source Location"
952
- `lib/api/alpha_vantage_api.rb:415`
952
+ [`lib/api/alpha_vantage_api.rb:415`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L415)
953
953
 
954
954
  ---
955
955
 
@@ -959,7 +959,7 @@
959
959
 
960
960
 
961
961
  ??? info "Source Location"
962
- `lib/api/alpha_vantage_api.rb:419`
962
+ [`lib/api/alpha_vantage_api.rb:419`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L419)
963
963
 
964
964
  ---
965
965
 
@@ -969,7 +969,7 @@
969
969
 
970
970
 
971
971
  ??? info "Source Location"
972
- `lib/api/alpha_vantage_api.rb:423`
972
+ [`lib/api/alpha_vantage_api.rb:423`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L423)
973
973
 
974
974
  ---
975
975
 
@@ -979,7 +979,7 @@
979
979
 
980
980
 
981
981
  ??? info "Source Location"
982
- `lib/api/alpha_vantage_api.rb:427`
982
+ [`lib/api/alpha_vantage_api.rb:427`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L427)
983
983
 
984
984
  ---
985
985
 
@@ -989,7 +989,7 @@
989
989
 
990
990
 
991
991
  ??? info "Source Location"
992
- `lib/api/alpha_vantage_api.rb:431`
992
+ [`lib/api/alpha_vantage_api.rb:431`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L431)
993
993
 
994
994
  ---
995
995
 
@@ -999,7 +999,7 @@
999
999
 
1000
1000
 
1001
1001
  ??? info "Source Location"
1002
- `lib/api/alpha_vantage_api.rb:435`
1002
+ [`lib/api/alpha_vantage_api.rb:435`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L435)
1003
1003
 
1004
1004
  ---
1005
1005
 
@@ -1009,7 +1009,7 @@
1009
1009
 
1010
1010
 
1011
1011
  ??? info "Source Location"
1012
- `lib/api/alpha_vantage_api.rb:439`
1012
+ [`lib/api/alpha_vantage_api.rb:439`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L439)
1013
1013
 
1014
1014
  ---
1015
1015
 
@@ -1019,7 +1019,7 @@
1019
1019
 
1020
1020
 
1021
1021
  ??? info "Source Location"
1022
- `lib/api/alpha_vantage_api.rb:443`
1022
+ [`lib/api/alpha_vantage_api.rb:443`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L443)
1023
1023
 
1024
1024
  ---
1025
1025
 
@@ -1029,7 +1029,7 @@
1029
1029
 
1030
1030
 
1031
1031
  ??? info "Source Location"
1032
- `lib/api/alpha_vantage_api.rb:447`
1032
+ [`lib/api/alpha_vantage_api.rb:447`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L447)
1033
1033
 
1034
1034
  ---
1035
1035
 
@@ -1039,7 +1039,7 @@
1039
1039
 
1040
1040
 
1041
1041
  ??? info "Source Location"
1042
- `lib/api/alpha_vantage_api.rb:451`
1042
+ [`lib/api/alpha_vantage_api.rb:451`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L451)
1043
1043
 
1044
1044
  ---
1045
1045
 
@@ -1049,7 +1049,7 @@
1049
1049
 
1050
1050
 
1051
1051
  ??? info "Source Location"
1052
- `lib/api/alpha_vantage_api.rb:455`
1052
+ [`lib/api/alpha_vantage_api.rb:455`](https://github.com/madbomber/sqa/blob/main/lib/api/alpha_vantage_api.rb#L455)
1053
1053
 
1054
1054
  ---
1055
1055