C# Had a few questions regarding intraday technical analysis #590
-
Thanks for creating this library! Going to sift through some of the source code and samples to check it out more. =) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Yes, there's nothing wrong with providing contiguous data. Dates are not actually used in any of the formulas, but are rather kept together with results for context. The only word of caution here is that the 7pm to 7am gap could be missing after-hours information that might be useful; you'd have to interpret a potential rapid change in prices accordingly.
If you do not provide enough historical quotes for calculation, you'll get (and can catch) a Generally speaking, I recommend providing more than the minimum required history for any indicator that has a ⌛ Convergence Warning in the documentation because there are scenarios where precision improves when more history is provided. In other words, if you're always only providing minimum history, there's a good chance you're using less precise indicator results.
By design and as the default, almost all the indicators in this library return the same number of elements as the provided historical quotes -- they're exactly the same length, though with Inversely, to exclude this initialization period, you can opt-out with the |
Beta Was this translation helpful? Give feedback.
Yes, there's nothing wrong with providing contiguous data. Dates are not actually used in any of the formulas, but are rather kept together with results for context. The only word of caution here is that the 7pm to 7am gap could be missing after-hours information that might be useful; you'd have to interpret a potential rapid change in prices accordingly.