Why CandlePart was discarded in getting EMA? #963
-
I found out that in the latest release, CandlePart.Close is invalid when we get the EMA. Why do we discard it? |
Beta Was this translation helpful? Give feedback.
Answered by
DaveSkender
Dec 9, 2022
Replies: 2 comments
-
With version 2, we added a more comprehensive chaining model, so the same can be achieved with (example): var results = quotes
.Use(CandlePart.HL2)
.GetEma(..); There are also more candle part options now. See utilities and helpers for more information. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DaveSkender
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With version 2, we added a more comprehensive chaining model, so the same can be achieved with (example):
There are also more candle part options now. See utilities and helpers for more information.