For MACD values I can create three series, like,
macd(12, 26, 9);
macdSignal(12, 26, 9),;
macdHist(12, 26, 9) ;
or one using the "builtin" study
MACDStudy(12,26,9,"Close",false)
and then use the .getValue(MACDStudy.MACD) etc
Why the choice?
What's the difference? Performance?
Does the same answer apply to the other "duplicates"?
Why doesn't the documentation explain this kind of stuff?
Thanks
Dave
macd(12, 26, 9);
macdSignal(12, 26, 9),;
macdHist(12, 26, 9) ;
or one using the "builtin" study
MACDStudy(12,26,9,"Close",false)
and then use the .getValue(MACDStudy.MACD) etc
Why the choice?
What's the difference? Performance?
Does the same answer apply to the other "duplicates"?
Why doesn't the documentation explain this kind of stuff?
Thanks
Dave
Comment