GET api/Crossover?symbol={symbol}&exchange={exchange}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
symbol

string

Required

exchange

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Collection of decimal number

Response Formats

application/json, text/json

Sample:
[
  [
    1.0,
    1.0
  ],
  [
    1.0,
    1.0
  ]
]

text/html

Sample:
[[1.0,1.0],[1.0,1.0]]

application/xml, text/xml

Sample:
<ArrayOfArrayOfNullableOfdecimal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/System">
  <ArrayOfNullableOfdecimal>
    <decimal>1</decimal>
    <decimal>1</decimal>
  </ArrayOfNullableOfdecimal>
  <ArrayOfNullableOfdecimal>
    <decimal>1</decimal>
    <decimal>1</decimal>
  </ArrayOfNullableOfdecimal>
</ArrayOfArrayOfNullableOfdecimal>