Replies: 1 comment
-
As part of our guiding principles, we wanted this library to be more usable than legacy libraries like TA-LIB. Array based APIs leave a tremendous amount of work for developers to transform quotes into and out of arrays and back into an end-use contextual point in time. With that said, having an overload that takes plain arrays could be an option to explore; want to submit a PR to demonstrate the concept? Array-based librariesflowchart TD
OHLCV[standard OHLCV quotes] --> C1[transform quotes to arrays] --> LIB[an old library, like TA-LIB] --> C2[tranform arrays to time contexts] --> USAGE[Time-based end-use contexts]
Our libraryflowchart TD
OHLCV[standard OHLCV quotes] --> LIB[our NuGet library API] --> USAGE[Time-based end-use contexts]
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've just started exploring this library and started looking the Sma indicator.
I noticed it required a Date along with the actual value, but I didn't quite understand why.
Maybe there is a need (which I haven't figured out yet), but then in that case, do you think it would make sense to add an overload which doesn't required a Date and simply accepts an array/list of values and assumes it is in the correct order?
Beta Was this translation helpful? Give feedback.
All reactions