Volume Exponential Moving Average #568
myalgomate
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
|
As long as your historical quotes contain volume information, EMA on Volume can be done like this: quotes.getEma(14, CandlePart.Volume);Incidentally, since we augmented SMA to accept quotes.getSma(14, CandlePart.Volume);
quotes.getVolSma(14);These |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Thanks for your valuable library.
I would like to share a thought if we can make a generic indicator like you already have an EMA indicator for EMA Results.
you are using a candle close to calculate the same.
Now in case, I need EMA on volume then I will need to change the src of the EMA indicator.
Instead, can we have an argument to use the input as close/volume likewise
Or if it's not possible can you please add Volume Exponential Moving Average
Beta Was this translation helpful? Give feedback.
All reactions