-
Notifications
You must be signed in to change notification settings - Fork 89
/
pricing.py
1012 lines (804 loc) · 30.3 KB
/
pricing.py
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
import ujson as json
from v20.base_entity import BaseEntity
from v20.base_entity import EntityDict
from v20.request import Request
from v20 import spec_properties
class ClientPrice(BaseEntity):
"""
The specification of an Account-specific Price.
"""
#
# Format string used when generating a summary for this object
#
_summary_format = ""
#
# Format string used when generating a name for this object
#
_name_format = ""
#
# Property metadata for this object
#
_properties = spec_properties.pricing_ClientPrice
def __init__(self, **kwargs):
"""
Create a new ClientPrice instance
"""
super(ClientPrice, self).__init__()
#
# The string "PRICE". Used to identify the a Price object when found in
# a stream.
#
self.type = kwargs.get("type", "PRICE")
#
# The Price's Instrument.
#
self.instrument = kwargs.get("instrument")
#
# The date/time when the Price was created
#
self.time = kwargs.get("time")
#
# The status of the Price.
#
self.status = kwargs.get("status")
#
# Flag indicating if the Price is tradeable or not
#
self.tradeable = kwargs.get("tradeable")
#
# The list of prices and liquidity available on the Instrument's bid
# side. It is possible for this list to be empty if there is no bid
# liquidity currently available for the Instrument in the Account.
#
self.bids = kwargs.get("bids")
#
# The list of prices and liquidity available on the Instrument's ask
# side. It is possible for this list to be empty if there is no ask
# liquidity currently available for the Instrument in the Account.
#
self.asks = kwargs.get("asks")
#
# The closeout bid Price. This Price is used when a bid is required to
# closeout a Position (margin closeout or manual) yet there is no bid
# liquidity. The closeout bid is never used to open a new position.
#
self.closeoutBid = kwargs.get("closeoutBid")
#
# The closeout ask Price. This Price is used when a ask is required to
# closeout a Position (margin closeout or manual) yet there is no ask
# liquidity. The closeout ask is never used to open a new position.
#
self.closeoutAsk = kwargs.get("closeoutAsk")
#
# The factors used to convert quantities of this price's Instrument's
# quote currency into a quantity of the Account's home currency. When
# the includeHomeConversions is present in the pricing request
# (regardless of its value), this field will not be present.
#
self.quoteHomeConversionFactors = kwargs.get("quoteHomeConversionFactors")
#
# Representation of how many units of an Instrument are available to be
# traded by an Order depending on its postionFill option.
#
self.unitsAvailable = kwargs.get("unitsAvailable")
@staticmethod
def from_dict(data, ctx):
"""
Instantiate a new ClientPrice from a dict (generally from loading a
JSON response). The data used to instantiate the ClientPrice is a
shallow copy of the dict passed in, with any complex child types
instantiated appropriately.
"""
data = data.copy()
if data.get('bids') is not None:
data['bids'] = [
ctx.pricing_common.PriceBucket.from_dict(d, ctx)
for d in data.get('bids')
]
if data.get('asks') is not None:
data['asks'] = [
ctx.pricing_common.PriceBucket.from_dict(d, ctx)
for d in data.get('asks')
]
if data.get('closeoutBid') is not None:
data['closeoutBid'] = ctx.convert_decimal_number(
data.get('closeoutBid')
)
if data.get('closeoutAsk') is not None:
data['closeoutAsk'] = ctx.convert_decimal_number(
data.get('closeoutAsk')
)
if data.get('quoteHomeConversionFactors') is not None:
data['quoteHomeConversionFactors'] = \
ctx.pricing.QuoteHomeConversionFactors.from_dict(
data['quoteHomeConversionFactors'], ctx
)
if data.get('unitsAvailable') is not None:
data['unitsAvailable'] = \
ctx.order.UnitsAvailable.from_dict(
data['unitsAvailable'], ctx
)
return ClientPrice(**data)
class QuoteHomeConversionFactors(BaseEntity):
"""
QuoteHomeConversionFactors represents the factors that can be used used to
convert quantities of a Price's Instrument's quote currency into the
Account's home currency.
"""
#
# Format string used when generating a summary for this object
#
_summary_format = ""
#
# Format string used when generating a name for this object
#
_name_format = ""
#
# Property metadata for this object
#
_properties = spec_properties.pricing_QuoteHomeConversionFactors
def __init__(self, **kwargs):
"""
Create a new QuoteHomeConversionFactors instance
"""
super(QuoteHomeConversionFactors, self).__init__()
#
# The factor used to convert a positive amount of the Price's
# Instrument's quote currency into a positive amount of the Account's
# home currency. Conversion is performed by multiplying the quote
# units by the conversion factor.
#
self.positiveUnits = kwargs.get("positiveUnits")
#
# The factor used to convert a negative amount of the Price's
# Instrument's quote currency into a negative amount of the Account's
# home currency. Conversion is performed by multiplying the quote
# units by the conversion factor.
#
self.negativeUnits = kwargs.get("negativeUnits")
@staticmethod
def from_dict(data, ctx):
"""
Instantiate a new QuoteHomeConversionFactors from a dict (generally
from loading a JSON response). The data used to instantiate the
QuoteHomeConversionFactors is a shallow copy of the dict passed in,
with any complex child types instantiated appropriately.
"""
data = data.copy()
if data.get('positiveUnits') is not None:
data['positiveUnits'] = ctx.convert_decimal_number(
data.get('positiveUnits')
)
if data.get('negativeUnits') is not None:
data['negativeUnits'] = ctx.convert_decimal_number(
data.get('negativeUnits')
)
return QuoteHomeConversionFactors(**data)
class HomeConversions(BaseEntity):
"""
HomeConversions represents the factors to use to convert quantities of a
given currency into the Account's home currency. The conversion factor
depends on the scenario the conversion is required for.
"""
#
# Format string used when generating a summary for this object
#
_summary_format = ""
#
# Format string used when generating a name for this object
#
_name_format = ""
#
# Property metadata for this object
#
_properties = spec_properties.pricing_HomeConversions
def __init__(self, **kwargs):
"""
Create a new HomeConversions instance
"""
super(HomeConversions, self).__init__()
#
# The currency to be converted into the home currency.
#
self.currency = kwargs.get("currency")
#
# The factor used to convert any gains for an Account in the specified
# currency into the Account's home currency. This would include
# positive realized P/L and positive financing amounts. Conversion is
# performed by multiplying the positive P/L by the conversion factor.
#
self.accountGain = kwargs.get("accountGain")
#
# The string representation of a decimal number.
#
self.accountLoss = kwargs.get("accountLoss")
#
# The factor used to convert a Position or Trade Value in the specified
# currency into the Account's home currency. Conversion is performed by
# multiplying the Position or Trade Value by the conversion factor.
#
self.positionValue = kwargs.get("positionValue")
@staticmethod
def from_dict(data, ctx):
"""
Instantiate a new HomeConversions from a dict (generally from loading a
JSON response). The data used to instantiate the HomeConversions is a
shallow copy of the dict passed in, with any complex child types
instantiated appropriately.
"""
data = data.copy()
if data.get('accountGain') is not None:
data['accountGain'] = ctx.convert_decimal_number(
data.get('accountGain')
)
if data.get('accountLoss') is not None:
data['accountLoss'] = ctx.convert_decimal_number(
data.get('accountLoss')
)
if data.get('positionValue') is not None:
data['positionValue'] = ctx.convert_decimal_number(
data.get('positionValue')
)
return HomeConversions(**data)
class PricingHeartbeat(BaseEntity):
"""
A PricingHeartbeat object is injected into the Pricing stream to ensure
that the HTTP connection remains active.
"""
#
# Format string used when generating a summary for this object
#
_summary_format = "Pricing Heartbeat {time}"
#
# Format string used when generating a name for this object
#
_name_format = ""
#
# Property metadata for this object
#
_properties = spec_properties.pricing_PricingHeartbeat
def __init__(self, **kwargs):
"""
Create a new PricingHeartbeat instance
"""
super(PricingHeartbeat, self).__init__()
#
# The string "HEARTBEAT"
#
self.type = kwargs.get("type", "HEARTBEAT")
#
# The date/time when the Heartbeat was created.
#
self.time = kwargs.get("time")
@staticmethod
def from_dict(data, ctx):
"""
Instantiate a new PricingHeartbeat from a dict (generally from loading
a JSON response). The data used to instantiate the PricingHeartbeat is
a shallow copy of the dict passed in, with any complex child types
instantiated appropriately.
"""
data = data.copy()
return PricingHeartbeat(**data)
class EntitySpec(object):
"""
The pricing.EntitySpec wraps the pricing module's type definitions
and API methods so they can be easily accessed through an instance of a v20
Context.
"""
ClientPrice = ClientPrice
QuoteHomeConversionFactors = QuoteHomeConversionFactors
HomeConversions = HomeConversions
PricingHeartbeat = PricingHeartbeat
def __init__(self, ctx):
self.ctx = ctx
def base_prices(
self,
**kwargs
):
"""
Get pricing information for a specified instrument. Accounts are not
associated in any way with this endpoint.
Args:
time:
The time at which the desired price for each instrument is in
effect. The current price for each instrument is returned if no
time is provided.
Returns:
v20.response.Response containing the results from submitting the
request
"""
request = Request(
'GET',
'/v3/pricing'
)
request.set_param(
'time',
kwargs.get('time')
)
response = self.ctx.request(request)
if response.content_type is None:
return response
if not response.content_type.startswith("application/json"):
return response
jbody = json.loads(response.raw_body)
parsed_body = {}
#
# Parse responses as defined by the API specification
#
if str(response.status) == "200":
if jbody.get('prices') is not None:
parsed_body['prices'] = [
self.ctx.pricing_common.Price.from_dict(d, self.ctx)
for d in jbody.get('prices')
]
elif str(response.status) == "400":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "401":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "404":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "405":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
#
# Unexpected response status
#
else:
parsed_body = jbody
response.body = parsed_body
return response
def get_price_range(
self,
instrument,
**kwargs
):
"""
Get pricing information for a specified range of prices. Accounts are
not associated in any way with this endpoint.
Args:
instrument:
Name of the Instrument
fromTime:
The start of the time range to fetch prices for.
toTime:
The end of the time range to fetch prices for. The current time
is used if this parameter is not provided.
Returns:
v20.response.Response containing the results from submitting the
request
"""
request = Request(
'GET',
'/v3/pricing/range'
)
request.set_path_param(
'instrument',
instrument
)
request.set_param(
'from',
kwargs.get('fromTime')
)
request.set_param(
'to',
kwargs.get('toTime')
)
response = self.ctx.request(request)
if response.content_type is None:
return response
if not response.content_type.startswith("application/json"):
return response
jbody = json.loads(response.raw_body)
parsed_body = {}
#
# Parse responses as defined by the API specification
#
if str(response.status) == "200":
if jbody.get('prices') is not None:
parsed_body['prices'] = [
self.ctx.pricing_common.Price.from_dict(d, self.ctx)
for d in jbody.get('prices')
]
elif str(response.status) == "400":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "401":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "404":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "405":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
#
# Unexpected response status
#
else:
parsed_body = jbody
response.body = parsed_body
return response
def get(
self,
accountID,
**kwargs
):
"""
Get pricing information for a specified list of Instruments within an
Account.
Args:
accountID:
Account Identifier
instruments:
List of Instruments to get pricing for.
since:
Date/Time filter to apply to the response. Only prices and home
conversions (if requested) with a time later than this filter
(i.e. the price has changed after the since time) will be
provided, and are filtered independently.
includeUnitsAvailable:
Flag that enables the inclusion of the unitsAvailable field in
the returned Price objects.
includeHomeConversions:
Flag that enables the inclusion of the homeConversions field in
the returned response. An entry will be returned for each
currency in the set of all base and quote currencies present in
the requested instruments list.
Returns:
v20.response.Response containing the results from submitting the
request
"""
request = Request(
'GET',
'/v3/accounts/{accountID}/pricing'
)
request.set_path_param(
'accountID',
accountID
)
request.set_param(
'instruments',
kwargs.get('instruments')
)
request.set_param(
'since',
kwargs.get('since')
)
request.set_param(
'includeUnitsAvailable',
kwargs.get('includeUnitsAvailable')
)
request.set_param(
'includeHomeConversions',
kwargs.get('includeHomeConversions')
)
response = self.ctx.request(request)
if response.content_type is None:
return response
if not response.content_type.startswith("application/json"):
return response
jbody = json.loads(response.raw_body)
parsed_body = {}
#
# Parse responses as defined by the API specification
#
if str(response.status) == "200":
if jbody.get('prices') is not None:
parsed_body['prices'] = [
self.ctx.pricing.ClientPrice.from_dict(d, self.ctx)
for d in jbody.get('prices')
]
if jbody.get('homeConversions') is not None:
parsed_body['homeConversions'] = [
self.ctx.pricing.HomeConversions.from_dict(d, self.ctx)
for d in jbody.get('homeConversions')
]
if jbody.get('time') is not None:
parsed_body['time'] = \
jbody.get('time')
elif str(response.status) == "400":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "401":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "404":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "405":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
#
# Unexpected response status
#
else:
parsed_body = jbody
response.body = parsed_body
return response
def stream(
self,
accountID,
**kwargs
):
"""
Get a stream of Account Prices starting from when the request is made.
This pricing stream does not include every single price created for the
Account, but instead will provide at most 4 prices per second (every
250 milliseconds) for each instrument being requested. If more than one
price is created for an instrument during the 250 millisecond window,
only the price in effect at the end of the window is sent. This means
that during periods of rapid price movement, subscribers to this stream
will not be sent every price. Pricing windows for different connections
to the price stream are not all aligned in the same way (i.e. they are
not all aligned to the top of the second). This means that during
periods of rapid price movement, different subscribers may observe
different prices depending on their alignment.
Args:
accountID:
Account Identifier
instruments:
List of Instruments to stream Prices for.
snapshot:
Flag that enables/disables the sending of a pricing snapshot
when initially connecting to the stream.
Returns:
v20.response.Response containing the results from submitting the
request
"""
request = Request(
'GET',
'/v3/accounts/{accountID}/pricing/stream'
)
request.set_path_param(
'accountID',
accountID
)
request.set_param(
'instruments',
kwargs.get('instruments')
)
request.set_param(
'snapshot',
kwargs.get('snapshot')
)
request.set_stream(True)
class Parser():
def __init__(self, ctx):
self.ctx = ctx
def __call__(self, line):
j = json.loads(line.decode('utf-8'))
type = j.get("type")
if type is None:
return (
"pricing.ClientPrice",
self.ctx.pricing.ClientPrice.from_dict(j, self.ctx)
)
elif type == "HEARTBEAT":
return (
"pricing.PricingHeartbeat",
self.ctx.pricing.PricingHeartbeat.from_dict(j, self.ctx)
)
return (
"pricing.ClientPrice",
self.ctx.pricing.ClientPrice.from_dict(j, self.ctx)
)
request.set_line_parser(
Parser(self.ctx)
)
response = self.ctx.request(request)
return response
def candles(
self,
instrument,
**kwargs
):
"""
Fetch candlestick data for an instrument.
Args:
instrument:
Name of the Instrument
price:
The Price component(s) to get candlestick data for. Can contain
any combination of the characters "M" (midpoint candles) "B"
(bid candles) and "A" (ask candles).
granularity:
The granularity of the candlesticks to fetch
count:
The number of candlesticks to return in the response. Count
should not be specified if both the start and end parameters
are provided, as the time range combined with the granularity
will determine the number of candlesticks to return.
fromTime:
The start of the time range to fetch candlesticks for.
toTime:
The end of the time range to fetch candlesticks for.
smooth:
A flag that controls whether the candlestick is "smoothed" or
not. A smoothed candlestick uses the previous candle's close
price as its open price, while an unsmoothed candlestick uses
the first price from its time range as its open price.
includeFirst:
A flag that controls whether the candlestick that is covered by
the from time should be included in the results. This flag
enables clients to use the timestamp of the last completed
candlestick received to poll for future candlesticks but avoid
receiving the previous candlestick repeatedly.
dailyAlignment:
The hour of the day (in the specified timezone) to use for
granularities that have daily alignments.
alignmentTimezone:
The timezone to use for the dailyAlignment parameter.
Candlesticks with daily alignment will be aligned to the
dailyAlignment hour within the alignmentTimezone. Note that
the returned times will still be represented in UTC.
weeklyAlignment:
The day of the week used for granularities that have weekly
alignment.
units:
The number of units used to calculate the volume-weighted
average bid and ask prices in the returned candles.
Returns:
v20.response.Response containing the results from submitting the
request
"""
request = Request(
'GET',
'/v3/accounts/{accountID}/instruments/{instrument}/candles'
)
request.set_path_param(
'instrument',
instrument
)
request.set_param(
'price',
kwargs.get('price')
)
request.set_param(
'granularity',
kwargs.get('granularity')
)
request.set_param(
'count',
kwargs.get('count')
)
request.set_param(
'from',
kwargs.get('fromTime')
)
request.set_param(
'to',
kwargs.get('toTime')
)
request.set_param(
'smooth',
kwargs.get('smooth')
)
request.set_param(
'includeFirst',
kwargs.get('includeFirst')
)
request.set_param(
'dailyAlignment',
kwargs.get('dailyAlignment')
)
request.set_param(
'alignmentTimezone',
kwargs.get('alignmentTimezone')
)
request.set_param(
'weeklyAlignment',
kwargs.get('weeklyAlignment')
)
request.set_param(
'units',
kwargs.get('units')
)
response = self.ctx.request(request)
if response.content_type is None:
return response
if not response.content_type.startswith("application/json"):
return response
jbody = json.loads(response.raw_body)
parsed_body = {}
#
# Parse responses as defined by the API specification
#
if str(response.status) == "200":
if jbody.get('instrument') is not None:
parsed_body['instrument'] = \
jbody.get('instrument')
if jbody.get('granularity') is not None:
parsed_body['granularity'] = \
jbody.get('granularity')
if jbody.get('candles') is not None:
parsed_body['candles'] = [
self.ctx.instrument.Candlestick.from_dict(d, self.ctx)
for d in jbody.get('candles')
]
elif str(response.status) == "400":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "401":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "404":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \
jbody.get('errorMessage')
elif str(response.status) == "405":
if jbody.get('errorCode') is not None:
parsed_body['errorCode'] = \
jbody.get('errorCode')
if jbody.get('errorMessage') is not None:
parsed_body['errorMessage'] = \