-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmarket_data_openapi.yaml
More file actions
4519 lines (4519 loc) · 128 KB
/
Copy pathmarket_data_openapi.yaml
File metadata and controls
4519 lines (4519 loc) · 128 KB
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: Market Data
version: 1.0.0
description: Trader API - Market data
contact:
email: TraderAPI@Schwab.com
name: Schwab Trader API team
servers:
- url: https://api.schwabapi.com/marketdata/v1
security:
- oauth:
- read
- write
tags:
- name: Quotes
description: Get Quotes Web Service.
- name: Option Chains
description: Get Option Chains Web Service.
- name: Option Expiration Chain
description: Get Option Expiration Chain Web Service.
- name: PriceHistory
description: Get Price History Web Service.
- name: Movers
description: Get Movers Web Service.
- name: MarketHours
description: Get MarketHours Web Service.
- name: Instruments
description: Get Instruments Web Service.
paths:
/quotes:
get:
summary: Get Quotes by list of symbols.
operationId: getQuotes
tags:
- Quotes
parameters:
- $ref: '#/components/parameters/quotes-query-param-symbols'
- $ref: '#/components/parameters/quotes-query-param-fields'
- $ref: '#/components/parameters/quotes-query-param-indicative'
responses:
'200':
description: Quote Response
headers:
Schwab-Client-CorrelId:
$ref: '#/components/headers/Schwab-Client-CorrelId'
content:
application/json:
schema:
$ref: '#/components/schemas/QuoteResponse'
examples:
MultiCriteriaSearch:
$ref: '#/components/examples/MultiCriteriaSearch'
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'500':
$ref: '#/components/responses/ErrorResponse500'
/{symbol_id}/quotes:
get:
summary: Get Quote by single symbol.
operationId: getQuote
tags:
- Quotes
parameters:
- $ref: '#/components/parameters/quotes-path-param-symbol'
- $ref: '#/components/parameters/quotes-query-param-fields'
responses:
'200':
description: Quote Response
headers:
Schwab-Client-CorrelId:
$ref: '#/components/headers/Schwab-Client-CorrelId'
content:
application/json:
schema:
$ref: '#/components/schemas/QuoteResponse'
examples:
SingleCriteriaSearch:
$ref: '#/components/examples/SingleSymbolCriteriaSearch'
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'404':
$ref: '#/components/responses/ErrorResponse404'
'500':
$ref: '#/components/responses/ErrorResponse500'
/chains:
get:
tags:
- Option Chains
summary: Get option chain for an optionable Symbol
description: >-
Get Option Chain including information on options contracts associated
with each expiration.
operationId: getChain
parameters:
- $ref: '#/components/parameters/QueryParamSymbol'
- $ref: '#/components/parameters/QueryParamContractType'
- $ref: '#/components/parameters/QueryParamStrikeCount'
- $ref: '#/components/parameters/QueryParamIncludeQuotes'
- $ref: '#/components/parameters/QueryParamStrategy'
- $ref: '#/components/parameters/QueryParamInterval'
- $ref: '#/components/parameters/QueryParamStrikePrice'
- $ref: '#/components/parameters/QueryParamRange'
- $ref: '#/components/parameters/QueryParamFromDate'
- $ref: '#/components/parameters/QueryParamToDate'
- $ref: '#/components/parameters/QueryParamVolatility'
- $ref: '#/components/parameters/QueryParamUnderlyingPrice'
- $ref: '#/components/parameters/QueryParamInterestRate'
- $ref: '#/components/parameters/QueryParamDaysToExpiration'
- $ref: '#/components/parameters/QueryParamExpMonth'
- $ref: '#/components/parameters/QueryParamOptionType'
- $ref: '#/components/parameters/QueryParamEntitlement'
responses:
'200':
description: The Chain for the symbol was returned successfully.
headers:
Schwab-Client-CorrelId:
$ref: '#/components/headers/Schwab-Client-CorrelId'
content:
application/json:
schema:
$ref: '#/components/schemas/OptionChain'
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'404':
$ref: '#/components/responses/ErrorResponse404'
'500':
$ref: '#/components/responses/ErrorResponse500'
/expirationchain:
get:
tags:
- Option Expiration Chain
summary: Get option expiration chain for an optionable symbol
description: >-
Get Option Expiration (Series) information for an optionable symbol.
Does not include individual options contracts for the underlying.
operationId: getExpirationChain
parameters:
- $ref: '#/components/parameters/QueryParamSymbol'
responses:
'200':
description: The Expiration Chain for the symbol was returned successfully.
headers:
Schwab-Client-CorrelId:
$ref: '#/components/headers/Schwab-Client-CorrelId'
content:
application/json:
schema:
$ref: '#/components/schemas/ExpirationChain'
examples:
GetExpirationChain:
$ref: '#/components/examples/GetExpirationChain'
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'404':
$ref: '#/components/responses/ErrorResponse404'
'500':
$ref: '#/components/responses/ErrorResponse500'
/pricehistory:
get:
summary: Get PriceHistory for a single symbol and date ranges.
description: >-
Get historical Open, High, Low, Close, and Volume for a given frequency
(i.e. aggregation). Frequency available is dependent on periodType
selected. The datetime format is in EPOCH milliseconds.
operationId: getPriceHistory
tags:
- PriceHistory
parameters:
- $ref: '#/components/parameters/QueryParamsymbol'
- $ref: '#/components/parameters/QueryParamperiodtype'
- $ref: '#/components/parameters/QueryParamperiod'
- $ref: '#/components/parameters/QueryParamfrequencytype'
- $ref: '#/components/parameters/QueryParamfrequency'
- $ref: '#/components/parameters/QueryParamstartdate'
- $ref: '#/components/parameters/QueryParamenddate'
- $ref: '#/components/parameters/QueryParamneedextendedhoursdata'
- $ref: '#/components/parameters/QueryParamneedpreviousclose'
responses:
'200':
description: Get all candles for given date range
content:
application/json:
schema:
$ref: '#/components/schemas/CandleList'
examples:
SingleSymbolCriteriaSearch:
$ref: '#/components/examples/SingleSymbolCriteriaSearch'
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'404':
$ref: '#/components/responses/ErrorResponse404'
'500':
$ref: '#/components/responses/ErrorResponse500'
/movers/{symbol_id}:
get:
summary: Get Movers for a specific index.
description: Get a list of top 10 securities movement for a specific index.
operationId: getMovers
tags:
- Movers
parameters:
- $ref: '#/components/parameters/PathParamSymbol'
- $ref: '#/components/parameters/QueryParamSort'
- $ref: '#/components/parameters/QueryParamFrequency'
responses:
'200':
description: Analytics for the symbol was returned successfully.
content:
application/json:
schema:
type: object
properties:
screeners:
type: array
items:
$ref: '#/components/schemas/Screener'
examples:
SearchMoversByIndexSymbol:
$ref: '#/components/examples/SearchMoversByIndexSymbol'
headers:
Schwab-Client-CorrelId:
$ref: '#/components/headers/Schwab-Client-CorrelId'
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'404':
$ref: '#/components/responses/ErrorResponse404'
'500':
$ref: '#/components/responses/ErrorResponse500'
/markets:
get:
summary: Get Market Hours for different markets.
description: Get Market Hours for dates in the future across different markets.
operationId: getMarketHours
tags:
- MarketHours
parameters:
- $ref: '#/components/parameters/QueryParamMarkets'
- $ref: '#/components/parameters/QueryParamDate'
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
additionalProperties:
type: object
additionalProperties:
$ref: '#/components/schemas/Hours'
examples:
GetMarketHours:
$ref: '#/components/examples/GetMarketHours'
headers:
Schwab-Client-CorrelId:
$ref: '#/components/headers/SchwabClientCorrelId'
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'500':
$ref: '#/components/responses/ErrorResponse500'
/markets/{market_id}:
get:
summary: Get Market Hours for a single market.
description: Get Market Hours for dates in the future for a single market.
operationId: getMarketHour
tags:
- MarketHours
parameters:
- $ref: '#/components/parameters/PathParamMarket'
- $ref: '#/components/parameters/QueryParamDate'
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
additionalProperties:
type: object
additionalProperties:
$ref: '#/components/schemas/Hours'
examples:
GetMarketHour:
$ref: '#/components/examples/GetMarketHour'
headers:
Schwab-Client-CorrelId:
$ref: '#/components/headers/SchwabClientCorrelId'
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'404':
$ref: '#/components/responses/ErrorResponse404'
'500':
$ref: '#/components/responses/ErrorResponse500'
/instruments:
get:
summary: Get Instruments by symbols and projections.
description: >-
Get Instruments details by using different projections. Get more
specific fundamental instrument data by using fundamental as the
projection.
operationId: getInstruments
tags:
- Instruments
parameters:
- $ref: '#/components/parameters/QueryParamSsymbol'
- $ref: '#/components/parameters/QueryParamprojection'
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
instruments:
type: array
items:
$ref: '#/components/schemas/InstrumentResponse'
examples:
GetInstruments:
$ref: '#/components/examples/GetInstruments'
headers:
Schwab-Resource-Version:
description: Used to identify desired and returned version of an API resource
schema:
type: integer
format: int32
example: 3
required: true
Schwab-Client-CorrelId:
description: >-
Used to identify an individual request throughout the lifetime
of the request and across systems.
schema:
type: string
example: 0a7f446a-7d74-49c8-a1e5-ca8ed59a3386
required: true
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'500':
$ref: '#/components/responses/ErrorResponse500'
/instruments/{cusip_id}:
get:
summary: Get Instrument by specific cusip
description: Get basic instrument details by cusip
operationId: getInstrumentsByCusip
tags:
- Instruments
parameters:
- $ref: '#/components/parameters/PathParamCusip'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/InstrumentResponse'
examples:
GetInstrumentByCusip:
$ref: '#/components/examples/GetInstrumentByCusip'
headers:
Schwab-Resource-Version:
description: Used to identify desired and returned version of an API resource
schema:
type: integer
format: int32
example: 3
required: true
Schwab-Client-CorrelId:
description: >-
Used to identify an individual request throughout the lifetime
of the request and across systems.
schema:
type: string
example: 0a7f446a-7d74-49c8-a1e5-ca8ed59a3386
required: true
'400':
$ref: '#/components/responses/ErrorResponse400'
'401':
$ref: '#/components/responses/ErrorResponse401'
'404':
$ref: '#/components/responses/ErrorResponse404'
'500':
$ref: '#/components/responses/ErrorResponse500'
components:
securitySchemes:
oauth:
type: oauth2
flows:
authorizationCode:
authorizationUrl: >-
https://api.schwabapi.com/v1/oauth/authorize?response_type=code&client_id=fnB6k1X6JSFlQHravRt6T9m86AZlkD04&scope=readonly&redirect_uri=https://developer.schwab.com/oauth2-redirect.html
tokenUrl: https://api.schwabapi.com/v1/oauth/token
scopes: {}
examples:
GetInstruments:
summary: symbol=AAPL,BAC&projection=symbol-search
value:
instruments:
- cusip: '037833100'
symbol: AAPL
description: Apple Inc
exchange: NASDAQ
assetType: EQUITY
- cusip: '060505104'
symbol: BAC
description: Bank Of America Corp
exchange: NYSE
assetType: EQUITY
GetInstrumentByCusip:
summary: Get getinstruments for cusip
value:
cusip: '037833100'
symbol: AAPL
description: Apple Inc
exchange: NASDAQ
assetType: EQUITY
GetMarketHour:
summary: Get market hours for equity market
value:
equity:
EQ:
date: '2022-04-14'
marketType: EQUITY
exchange: 'NULL'
category: 'NULL'
product: EQ
productName: equity
isOpen: true
sessionHours:
preMarket:
- start: '2022-04-14T07:00:00-04:00'
end: '2022-04-14T09:30:00-04:00'
regularMarket:
- start: '2022-04-14T09:30:00-04:00'
end: '2022-04-14T16:00:00-04:00'
postMarket:
- start: '2022-04-14T16:00:00-04:00'
end: '2022-04-14T20:00:00-04:00'
GetMarketHours:
summary: Get getMarketHours for EQUITY and OPTION
value:
equity:
EQ:
date: '2022-04-14'
marketType: EQUITY
product: EQ
productName: equity
isOpen: true
sessionHours:
preMarket:
- start: '2022-04-14T07:00:00-04:00'
end: '2022-04-14T09:30:00-04:00'
regularMarket:
- start: '2022-04-14T09:30:00-04:00'
end: '2022-04-14T16:00:00-04:00'
postMarket:
- start: '2022-04-14T16:00:00-04:00'
end: '2022-04-14T20:00:00-04:00'
option:
EQO:
date: '2022-04-14'
marketType: OPTION
product: EQO
productName: equity option
isOpen: true
sessionHours:
regularMarket:
- start: '2022-04-14T09:30:00-04:00'
end: '2022-04-14T16:00:00-04:00'
IND:
date: '2022-04-14'
marketType: OPTION
product: IND
productName: index option
isOpen: true
sessionHours:
regularMarket:
- start: '2022-04-14T09:30:00-04:00'
end: '2022-04-14T16:15:00-04:00'
SearchMoversByIndexSymbol:
summary: Search by "$DJI"
value:
screeners:
- change: 10
description: Dow jones
direction: up
last: 100
symbol: $DJI
totalVolume: 100
- change: 10
description: Dow jones
direction: up
last: 100
symbol: $DJI
totalVolume: 100
- change: 10
description: Dow jones
direction: up
last: 100
symbol: $DJI
totalVolume: 100
SingleSymbolCriteriaSearch:
summary: Search by symbol AAPL
value:
symbol: AAPL
empty: false
previousClose: 174.56
previousCloseDate: 1639029600000
candles:
- open: 175.01
high: 175.15
low: 175.01
close: 175.04
volume: 10719
datetime: 1639137600000
- open: 175.08
high: 175.09
low: 175.05
close: 175.05
volume: 500
datetime: 1639137660000
- open: 176.22
high: 176.27
low: 176.22
close: 176.25
volume: 3395
datetime: 1640307300000
- open: 176.26
high: 176.27
low: 176.26
close: 176.26
volume: 2174
datetime: 1640307360000
- open: 176.26
high: 176.31
low: 176.26
close: 176.3
volume: 15401
datetime: 1640307420000
- open: 176.3
high: 176.3
low: 176.3
close: 176.3
volume: 1700
datetime: 1640307480000
- open: 176.3
high: 176.5
low: 176.3
close: 176.32
volume: 5941
datetime: 1640307540000
GetExpirationChain:
summary: Get ExpirationChain for AAPL
value:
expirationList:
- expirationDate: '2022-01-07'
daysToExpiration: 2
expirationType: W
standard: true
- expirationDate: '2022-01-14'
daysToExpiration: 9
expirationType: W
standard: true
- expirationDate: '2022-01-21'
daysToExpiration: 16
expirationType: S
standard: true
- expirationDate: '2022-01-28'
daysToExpiration: 23
expirationType: W
standard: true
- expirationDate: '2022-02-04'
daysToExpiration: 30
expirationType: W
standard: true
- expirationDate: '2022-02-11'
daysToExpiration: 37
expirationType: W
standard: true
- expirationDate: '2022-02-18'
daysToExpiration: 44
expirationType: S
standard: true
- expirationDate: '2022-03-18'
daysToExpiration: 72
expirationType: S
standard: true
- expirationDate: '2022-04-14'
daysToExpiration: 99
expirationType: S
standard: true
- expirationDate: '2022-05-20'
daysToExpiration: 135
expirationType: S
standard: true
- expirationDate: '2022-06-17'
daysToExpiration: 163
expirationType: S
standard: true
- expirationDate: '2022-07-15'
daysToExpiration: 191
expirationType: S
standard: true
- expirationDate: '2022-09-16'
daysToExpiration: 254
expirationType: S
standard: true
- expirationDate: '2023-01-20'
daysToExpiration: 380
expirationType: S
standard: true
- expirationDate: '2023-03-17'
daysToExpiration: 436
expirationType: S
standard: true
- expirationDate: '2023-06-16'
daysToExpiration: 527
expirationType: S
standard: true
- expirationDate: '2023-09-15'
daysToExpiration: 618
expirationType: S
standard: true
- expirationDate: '2024-01-19'
daysToExpiration: 744
expirationType: S
standard: true
MultiCriteriaSearch:
summary: Search by Symbols+Cusips+SSIDs
value:
AAPL:
assetMainType: EQUITY
symbol: AAPL
quoteType: NBBO
realtime: true
ssid: 1973757747
reference:
cusip: '037833100'
description: Apple Inc
exchange: Q
exchangeName: NASDAQ
quote:
52WeekHigh: 169
52WeekLow: 1.1
askMICId: MEMX
askPrice: 168.41
askSize: 400
askTime: 1644854683672
bidMICId: IEGX
bidPrice: 168.4
bidSize: 400
bidTime: 1644854683633
closePrice: 177.57
highPrice: 169
lastMICId: XADF
lastPrice: 168.405
lastSize: 200
lowPrice: 167.09
mark: 168.405
markChange: -9.164999999999992
markPercentChange: -5.161344821760428
netChange: -9.165
netPercentChange: -5.161344821760428
openPrice: 167.37
quoteTime: 1644854683672
securityStatus: Normal
totalVolume: 22361159
tradeTime: 1644854683408
volatility: 0.0347
regular:
regularMarketLastPrice: 168.405
regularMarketLastSize: 2
regularMarketNetChange: -9.165
regularMarketPercentChange: -5.161344821760428
regularMarketTradeTime: 1644854683408
fundamental:
avg10DaysVolume: 1
avg1YearVolume: 0
divAmount: 1.1
divFreq: 0
divPayAmount: 0
divYield: 1.1
eps: 0
fundLeverageFactor: 1.1
peRatio: 1.1
AAAIX:
assetMainType: MUTUAL_FUND
symbol: AAAIX
realtime: true
ssid: -1
reference:
cusip: '025085853'
description: 'American Century Strategic Allocation: Aggressive Fund - I Class'
exchange: '3'
exchangeName: Mutual Fund
quote:
52WeekHigh: 9.24
52WeekLow: 7.48
closePrice: 9.12
nAV: 0
netChange: -0.03
netPercentChange: -0.32894736842104566
securityStatus: Normal
totalVolume: 0
tradeTime: 0
fundamental:
avg10DaysVolume: 0
avg1YearVolume: 0
divAmount: 0
divFreq: 0
divPayAmount: 0
divYield: 0.83059
eps: 0
fundLeverageFactor: 0
peRatio: 0
AAAHX:
assetMainType: MUTUAL_FUND
symbol: AAAHX
realtime: true
ssid: -1
reference:
cusip: 02507J789
description: One Choice Blend+ 2015 Portfolio I Class
exchange: '3'
exchangeName: Mutual Fund
quote:
52WeekHigh: 10.64
52WeekLow: 9.95
closePrice: 10.53
nAV: 0
netChange: 0
netPercentChange: 0
securityStatus: Normal
totalVolume: 0
tradeTime: 0
fundamental:
avg10DaysVolume: 0
avg1YearVolume: 0
divAmount: 0
divFreq: 0
divPayAmount: 0
divYield: 0
eps: 0
fundLeverageFactor: 0
peRatio: 0
BAC:
assetMainType: EQUITY
symbol: BAC
quoteType: NBBO
realtime: true
ssid: 851234497
reference:
cusip: '060505104'
description: Bank Of America Corp
exchange: 'N'
exchangeName: NYSE
quote:
52WeekHigh: 48.185
52WeekLow: 22.95
askMICId: XNYS
askPrice: 47.2
askSize: 2100
askTime: 1644854683639
bidMICId: XNYS
bidPrice: 47.19
bidSize: 3700
bidTime: 1644854683640
closePrice: 44.49
highPrice: 48.185
lastMICId: ARCX
lastPrice: 47.195
lastSize: 200
lowPrice: 47.06
mark: 47.195
markChange: 2.7049999999999983
markPercentChange: 6.080017981568888
netChange: 2.705
netPercentChange: 6.080017981568888
openPrice: 48.02
quoteTime: 1644854683640
securityStatus: Normal
totalVolume: 13573182
tradeTime: 1644854683638
volatility: 0.0206
regular:
regularMarketLastPrice: 47.195
regularMarketLastSize: 2
regularMarketNetChange: 2.705
regularMarketPercentChange: 6.080017981568888
regularMarketTradeTime: 1644854683638
fundamental:
avg10DaysVolume: 43411957
avg1YearVolume: 40653250
declarationDate: '2021-07-21T05:00:00Z'
divAmount: 0.75
divExDate: '2021-09-02T05:00:00Z'
divFreq: 4
divPayAmount: 0.75
divPayDate: '2021-09-24T05:00:00Z'
divYield: 1.77
eps: 2.996
fundLeverageFactor: 0
nextDivExDate: '2021-12-27T06:00:00Z'
nextDivPayDate: '2021-12-27T06:00:00Z'
peRatio: 13.50133
$SPX:
assetMainType: INDEX
symbol: $SPX
realtime: true
ssid: 1819771877
reference:
description: S&P DOW JONES INDEX S&P 500
exchange: '0'
exchangeName: Index
quote:
52WeekHigh: 4423.46
52WeekLow: 4385.52
closePrice: 4766.18
highPrice: 4423.46
lastPrice: 4396.2
lowPrice: 4385.52
netChange: -369.98
netPercentChange: -7.762610728088331
openPrice: 4412.61
securityStatus: Unknown
totalVolume: 628009977
tradeTime: 1644854683056
MRAD:
assetMainType: EQUITY
assetSubType: ETF
symbol: MRAD
quoteType: NBBO
realtime: true
ssid: 67229687
reference:
cusip: '402031868'
description: Guinness Atkinson Fds SMART ETFS ADVERTISING MKT TCH ETF
exchange: P
exchangeName: NYSE Arca
quote:
52WeekHigh: 31.96
52WeekLow: 22.18
askMICId: IEGX
askPrice: 22.29
askSize: 500
askTime: 1644854676848
bidMICId: EDGX
bidPrice: 22.22
bidSize: 500
bidTime: 1644854681062
closePrice: 26.8633
highPrice: 22.18
lastPrice: 22.18
lastSize: 100
lowPrice: 22.18
mark: 22.22
markChange: -4.6433
markPercentChange: -17.284920318799255
netChange: -4.6833
netPercentChange: -17.433822352428777
openPrice: 22.18
quoteTime: 1644854681062
securityStatus: Normal
totalVolume: 100
tradeTime: 1644851921969
volatility: 0
regular:
regularMarketLastPrice: 22.18
regularMarketLastSize: 1
regularMarketNetChange: -4.6833
regularMarketPercentChange: -17.433822352428777
regularMarketTradeTime: 1644851921969
fundamental:
avg10DaysVolume: 1606
avg1YearVolume: 0
divAmount: 0
divFreq: 0
divPayAmount: 0
divYield: 0
eps: 0
fundLeverageFactor: 0
fundStrategy: A
peRatio: 0
EBIZ:
assetMainType: EQUITY
assetSubType: ETF
symbol: EBIZ
quoteType: NBBO
realtime: true
ssid: 52313178
reference:
cusip: 37954Y467
description: GLOBAL X E-COMMERCE ETF
exchange: Q
exchangeName: NASDAQ
quote:
52WeekHigh: 37.9754
52WeekLow: 24.52
askMICId: XNAS
askPrice: 24.85
askSize: 200
askTime: 1644854683318
bidMICId: XNAS
bidPrice: 24.79
bidSize: 200
bidTime: 1644854683318
closePrice: 27.45
highPrice: 24.8303
lastMICId: XADF
lastPrice: 24.8303
lastSize: 100
lowPrice: 24.52
mark: 24.8303
markChange: -2.619699999999998
markPercentChange: -9.543533697632052
netChange: -2.6197
netPercentChange: -9.543533697632052
openPrice: 24.55
quoteTime: 1644854683318
securityStatus: Normal
totalVolume: 1626
tradeTime: 1644850278470
volatility: 0
regular:
regularMarketLastPrice: 24.8303
regularMarketLastSize: 1
regularMarketNetChange: -2.6197
regularMarketPercentChange: -9.543533697632052
regularMarketTradeTime: 1644850278470
fundamental:
avg10DaysVolume: 0
avg1YearVolume: 0
declarationDate: '2020-12-29T06:00:00Z'
divAmount: 0
divExDate: '2020-12-30T06:00:00Z'
divFreq: 1
divPayAmount: 0.26641
divPayDate: '2021-01-08T06:00:00Z'
divYield: 0.88276
eps: 0
fundLeverageFactor: 0
fundStrategy: P
nextDivExDate: '2022-01-10T06:00:00Z'
nextDivPayDate: '2022-01-10T06:00:00Z'
peRatio: 0
$DJI:
assetMainType: INDEX
symbol: $DJI
realtime: true
ssid: 0
reference:
description: Dow Jones Industrial Average
exchange: '0'
exchangeName: Index
quote:
52WeekHigh: 34744.56
52WeekLow: 34364.39
closePrice: 34738.06
highPrice: 34744.56
lastPrice: 34436.13
lowPrice: 34364.39
netChange: -301.93
netPercentChange: -0.8691619508976618
openPrice: 34694.5
securityStatus: Unknown
totalVolume: 106647543
tradeTime: 1644854683055
AMZN 220617C03170000:
assetMainType: OPTION
symbol: AMZN 220617C03170000
realtime: true
ssid: 72507798
reference:
contractType: C
daysToExpiration: 123
description: Amazon.com Inc 06/17/2022 $3170 Call
exchange: o
exchangeName: OPR
expirationDay: 17
expirationMonth: 6
expirationYear: 2022