OoplesFinance.StockIndicators
OoplesFinance.StockIndicators copied to clipboard
Largest C# stock indicator library with over 750 to choose from and easiest to use with abilities such as making an indicator out of any other indicator or using any moving average with any indicator....
Hi Franklin, Thank you for this collection of indicators! Here are some suggestions which you may decide to apply: 1. Design each indicator as a simple function This kind of...
Hello, Firstly, thanks for your big Indicator Collection :) Is there a way you can add TDI ( Traders Dynamic Index ) to your lib? TDI is a combination of...
https://github.com/ooples/OoplesFinance.StockIndicators/blob/ddc4c11d395f163c219b64b8d6c8d004786a39c9/src/Calculations/Volume.cs#L267 The problem is here: double prevNvi = nviList.LastOrDefault(); double nvi = currentVolume >= prevVolume ? prevNvi : prevNvi + (prevNvi * pctChg); nviList.AddRounded(nvi); because prevNvi is initialized as 0...
Greetings Franklin, This code ``` var bars = stockHistoryDaily[@"RELIANCE"]; var stockData = new StockData(bars.Select(x => x.Open), bars.Select(x => x.High), bars.Select(x => x.Low), bars.Select(x => x.Close), bars.Select(x => x.Volume), bars.Select(x =>...
Hey, love your lib, using long time, many times first :3 second, maybe you can add the UT Indicator Signals to your lib? original here: https://www.tradingview.com/script/n8ss8BID-UT-Bot-Alerts/ many thanks :)
Hey, You have a normal STC Indicator in your lib, maybe you can add this too? Its a modded one with macd added :) https://www.tradingview.com/script/WhRRThMI-STC-Indicator-A-Better-MACD-SHK/ many thanks :)
While testing I noticed a significant difference in the Keltner Channel calculation that is produced by this library when compared to what I see displayed in Trading View using what...
Hi ooples, thank you for sharing such a big collection of indicators. Can you please disclose your sources of them? For me it is often not clear on which source...
Thanks for assigning this issue to me. I'm starting to work on it and will keep this PR's description up to date as I form a plan and make progress....
I have been using the OooplesFinance API for the last year and it has worked great. In the last week, I get a "Failed to get crumb" error trying to...