Skip to content

Trading DSL with real-time TypeScript validation and AST parsing

Notifications You must be signed in to change notification settings

jozefRudy/trading-rule-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 

Repository files navigation

Code parser example used by cryptoquant in v1.

It consists of angular frontend app with codemirror6 code editor with live typescript intellisense served on frontend. Trading DSL is a subset of typescript. Only valid typescript after validating on frontend is sent to backend.

Backend contains AST and AST parser in f# that validates strategy received from frontend. There is an indication below code editor on frontend showing if strategy is valid (it is valid only if it's valid typescript and was validated by backend as well).

To run this, you need both pnpm and dotnet 9. Ports are pre-configured in both services 3000 for frontend and 3001 for backend.

cd frontent-angular
pnpm start
cd backend-parser/api
dotnet run

output

Editor expects these variables to be defined: entry, exit, universe, name, start, mode.

For development I recommend opening both projects in the same editor, jetbrains rider works well for this.