TheCookieLab
TheCookieLab
So this is the code from TradingView's official Relative Strength Index indicator: `rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 /...
After further "enlightening" discussion with spaceMonkeySpace we will not be changing this after all. The current implementation is inline with prevailing conventions (i.e. TradingView) so any changes would put us...
I certainly could be incompetent. On other hand I'm also financially independent (self-made) largely achieved through 15+ years of successful trading and investing. Is it possible that I have no...
Sure, if that's what helps you sleep at night. On Sat, Jul 20, 2024 at 1:01 PM aquarius ***@***.***> wrote: > Dishonest person tend to sleep well because they dont...
Thanks for clarifying. I agree in principle. Indicators shouldn't be able to mutate the BarSeries when calculating values, and the fact that it's possible to do is an API design/usability...
You’ll have to be more specific as there are multiple ways to determine support and resistance. On Fri, Dec 8, 2023 at 7:33 AM Moritz Weichert ***@***.***> wrote: > Dear...
So by “reaction” do you mean just mean volume or some combination of volume and price action chop? You’ll need to formally define your process in order to implement it...
OK so trendline based resistance and support. We don't have anything like this right now. I think you'd need to do some research on how best to programmatically identify and...
I'm currently out of the country on vacation until the end of the year but just thinking out loud, perhaps we may be able to implement this as an indicator...
I'm open to exploring this further, although am confused by the line: > Too high a precision leads to excessive computational effort and has de facto no added value. If...