Skip to content

The application is designed as a trade generator for creating dummy order book data, which it then transmits via WebSocket using GraphQL queries.

Notifications You must be signed in to change notification settings

Igor-Koniukhov/order-book-genarator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
  }
}

About

The application is designed as a trade generator for creating dummy order book data, which it then transmits via WebSocket using GraphQL queries.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages