What is the default behavior for result calculation when no parameters are provided? #865
-
Hi Dave, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, some indicators have default values set on parameters, when there is a standard value. If you do not provide a parameter value, the default will be used. You can see the default value in both 1) the documentation and 2) in the tooltip as you're typing in most IDEs.
The current v2 library returns all indicator values that can be calculated for the entire time series of With that said, any warmup periods that cannot be calculated will have |
Beta Was this translation helpful? Give feedback.
Yes, some indicators have default values set on parameters, when there is a standard value. If you do not provide a parameter value, the default will be used. You can see the default value in both 1) the documentation and 2) in the tooltip as you're typing in most IDEs.
Example ref: RSI docs
The current v2 library returns all indicator values that can be calculated for the entire time series of
quotes
provided. If you provide 1000 quotes, you'll get back 1000 result records for almost all indicators (there are a few exceptions).With that said, any warmup periods that cannot be calculated will have
null
values. Each indicator has a different amount of both incalculable warmup periods or …