Skip to content

Latest commit

 

History

History
36 lines (36 loc) · 555 Bytes

README.md

File metadata and controls

36 lines (36 loc) · 555 Bytes

The app, for order generation, is devoted to the creation of dummy order-book data and sending via WebSocket and by graphql query.

queries:

query {
      stockDataForPeriod(startTime: ${startTime}, endTime: ${endTime}) {
        Date
        Open
        High
        Low
        Close
        Volume
      }
    }
query {
  lastBuyOrders( limit: 50) {
    ID
    OrderType
    Price
    Amount
    Total
  }
}
query {
  lastSellOrders( limit: 50) {
    ID
    OrderType
    Price
    Amount
    Total
  }
}