Siddharth
Siddharth's Blog

Siddharth's Blog

Follow
Follow
homeAlgoTradingCloudRustnewsletter
Tag

Rust

#rust

More content

Read more stories on Hashnode


Articles with this tag

Navigating Safely with `Option` in Rust

Oct 8, 20236 min read

Rust is SERIOUS about safety and control over memory. Option type – an essential tool in Rust's arsenal that keeps your code safe and sound. Option is...

Navigating Safely with `Option` in Rust

Multithreading in Rust for Algorithmic Trading

May 24, 20234 min read

In algorithmic trading, speed, correctness and efficiency are paramount, and utilizing multithreading can significantly enhance the performance of...

Multithreading in Rust for Algorithmic Trading

Demystifying Order Execution Algorithms in Trading: Part 1 - Understanding TWAP

May 5, 20236 min read

Often when we hear algorithmic trading, we think about alpha-seeking algorithms i.e. generating profits by predicting market movements or identifying...

Demystifying Order Execution Algorithms in Trading: Part 1 - Understanding TWAP

Monte Carlo Simulation using Rust Part-1

Nov 15, 20227 min read

In a nutshell, the concept of Monte Carlo simulation is pretty straightforward; it involves generating random numbers and averaging of the outcome. We...

Monte Carlo Simulation using Rust Part-1

Random Number Generation in Rust

Oct 29, 20226 min read

I was obviously not happy when out of all the interesting projects, I was assigned to improve the quality of correlated random numbers. I had started...

Random Number Generation in Rust

Traits: Rust's take on interfaces

Oct 19, 20224 min read

We know structs represents complex data types. Rust's struct acts more like classes in Python and C++ once we implements struct using impl keyword and...

Traits: Rust's take on interfaces