hoak
hoak
You need to calculate the EMA yourself, something like this would do ``` from talib.abstract import * data['EMA'] = EMA(data, field="close") data['RSI'] = RSI(data, field="close") filtered_df = data[data['RSI'].notnull()] filtered_df =...
Looks very good already! Just the tests and this is ready :)
Hey, thanks for reporting this. How were you importing this private key? I'd like to attempt replicating this.
I attempted to replicate this and I see many things wrong but they don't seem like they're on our end. When going to view private keys, exodus is showing me...
Because the Token Lending Program isn't currently being used, rather, it's forks are, it will not be included in Solnet.Programs, this code has been moved to [Solnet.Reference.Implementations](https://github.com/bmresearch/Solnet.Reference.Implementations/) which is a...
Unknown if this issue is related to #383. We have successfully used multiple frameworks with the library (Avalonia, MAUI, Uno), so I'm wondering what makes it incompatible with Xamarin? If...
I don't think it makes much sense to push it using Solnet considering the solana-cli already has the tools to do this.. Anyway, it doesn't seem like we have the...
Need to add: - `getFeeForMessage` - `getHighestSnapshotSlot` Need to deprecate: - `getSnapshotSlot` - `getFeeCalculatorForBlockhash` - `getFeeRateGovernor` - `getFees`
Are you using the async methods? It's a known issue that the requests hang when called from UI framework threads using the non async versions.
[This](https://github.com/MonkeDAO/observer/blob/master/Observer/Models/ArweaveMetadata.cs) this may be a bit out of date but might come in handy, in that project I was deriving the PDAs for the Metadata Accounts and then getting the...