Dmitry

Results 97 comments of Dmitry

> Also I think the replay doesn't need to be tracked per strategy, but rather on the PubSubImpl. The replay buffer can be independent of the subscriber-based logic. I don't...

The `replay` feature is pretty commonly used. In RxJS – [ReplaySubject](https://rxjs.dev/api/index/class/ReplaySubject) is one of the most important classes. I implemented this feature for myself, because i really need it in...

Another reason why i think it should be a `PubSub` is because it will enable us to make a replayable shared stream with the `share()` operator from my another PR...

> wouldn't share be memory unsafe? I don't see any reason for it. Why do you think it could be? Actually, i just copied the code for`share()` from some of...

In trading, there is a concept known as technical analysis. There are various indicators, such as [RSI](https://en.wikipedia.org/wiki/Relative_strength_index). To calculate RSI, you need the last N candles (klines) (usually 14). Let's...

RxJS also do have a [switchMap](https://rxjs.dev/api/index/function/switchMap) operator, and it's one of the most important and widely used operator. I decided to make it as a separate operator not just because...

@mikearnaldi done

> @dilame can you pls fix the version in `since` to 3.5 and I'll merge it Hi! Just wanted to remind that i changed the version in `since` that time...

Now it should be a correct way