andyb1979
andyb1979
Hey there! First of all, this is a great library and wanted to thank you for creating it. I'm using Trady in an experimental backtesting engine for cryptocurrencies with charting...
Hi there! Does Trade support indicators on indicators? If I try this -> ```sharp var rsi = new RelativeStrength(PrimaryPriceData, 14).Compute(); var emaOnRsi = new ExponentialMovingAverage(rsi, tick => tick.Tick, 9).Compute(); ```...
Very small change to allow get/set of MarketingStatus. We are populating a CRM after signup from a website and need to set MarketingStatus to subscribed. For our own IntegrationTest purposes...
Checklist: - [x] I've read and understood [Contributing Guidelines](CONTRIBUTING.md). - [x] I've added the new resource at the end of its section. - [x] This resource is out there for...
hey I added scichart, would be very pleased if you could include it!
Suggestion to add SciChart - an [Android Chart Library](http://scichart.com/android-chart-features/) Chart Types include Line, Mountain, Area, Bar, Column, StackedBar, StackedColumn, Pie, Donut, Candlestick, OHLC, Band, Error Bars, Scatter, Bubble, 3D Scatter,...
Hi all, I'm attempting to build a wasm module with Emscripten once with `-msimd128 -msse2` and have a fallback without. This uses the makeflags ``` ifeq ($(P_SIMD),1) LINKFLAGS += -msimd128...