Replies: 2 comments 1 reply
-
While I don't think the full indicator would pass our sniff test for direct inclusion in the library, it might make for a good custom indicator. Our standard deviation indicator returns the information you'd need. If I understood this right, it’s simply: // base COR indicator
var results = quotes
.GetStdDev(..)
.Select(x => x.Date, x.StdDev / x.Mean); We're also planning to add more array math functions for things like median. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@DaveSkender public static List<TQuote> ToCandles<TQuote>(this IEnumerable<(DateTime Date, double Value)> tuples, int candlePeriod) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Trend Finder with Coefficient of Variation
Is this indicator exists or there is any way to implement it?
I found it in the trading view on this link with the script https://www.tradingview.com/script/XseYRWFH-Trend-Finder-with-Coefficient-of-Variation/
I will be thankful if this we can implement.
[Update]
One more question:
Did we have
median
function somewhere in the package?Beta Was this translation helpful? Give feedback.
All reactions