marketsurge-client 0.2.1

Unofficial HTTP client library for the MarketSurge platform
1
2
3
4
5
6
7
8
9
10
11
12
query IndustryGroupRS($symbols: [String!]!, $symbolDialectType: MDSymbolDialectType!) {
  marketData(symbols: $symbols, symbolDialectType: $symbolDialectType) {
    originRequest {
      symbol
    }
    industry {
      groupRS(where: { periodOffset: { eq: CURRENT }, period: { eq: P6M } }) {
        value
      }
    }
  }
}