Calculating an indicator such as a EMA on the High rather than the close #1053
theodorebeodore
started this conversation in
Help and support
Replies: 1 comment 4 replies
-
The helper .Use() function will do what you’re seeking. var results = quotes
.Use(CandlePart.High)
.GetEma(14); |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
Sorry if this is very simplistic but I have been trying to calculate the EMA of the High using the standard Quote class. Even if someone can point me in the direction of the appropriate documentation that would be awesome.
Beta Was this translation helpful? Give feedback.
All reactions