Skip to content

Commit 15895b8

Browse files
authored
Merge pull request #968 from jozefRudy/gh-pages
new testimonial
2 parents ad5912f + 1d80b47 commit 15895b8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

_testimonials/jozef-rudy.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
id: jozef-rudy
3+
bullets:
4+
- '**Jozef Rudy, PhD**'
5+
- Founder
6+
- '[CryptoQuant](https://www.cryptoquant.dev)'
7+
keywords:
8+
- startup
9+
- fintech
10+
- trading
11+
- cryptocurrencies
12+
quote: F# is more flexible than C#, yet gives stronger type safety. It allows for fearless refactoring, which is also easier because of naturally less coupled code while at the same time codebase being 40%-size of equivalent c# one.
13+
14+
---
15+
I first ventured into F# while working at a US-based startup where one of our servers handling PnL calculations was performing sub-optimally.
16+
I decided to re-write that in F# as a test. I was surprised that without requiring any special libraries (unlike the Python version that relied on pandas and numpy) the F# code was similarly concise yet significantly more performant.
17+
18+
When I started [CryptoQuant](https://cryptoquant.dev), which allows backtesting and live testing of trading strategies on cryptocurrencies, I started writing just the trading rule parser in F#.
19+
20+
The illustration of the first version of the parser can be found on my public git [repo](https://github.com/jozefRudy/trading-rule-parser).
21+
It parses subset of Typescript into F# interpretable AST, which can later be evaluated against data to calculate entry/exit signals.
22+
23+
Because parsing with Fparsec went so well I later gradually migrated entire project into F# (from C#).
24+
The beauty of this approach is that I don't need any specialized F# libraries - I can stay very close to the original (C#) dotnet server, avoiding dependency on specialized F# third-party packages.
25+
I can still use great dotnet server features like background jobs or dependency injection.

0 commit comments

Comments
 (0)