Trady icon indicating copy to clipboard operation
Trady copied to clipboard

Trady is a handy library for computing technical indicators, and it targets to be an automated trading system that provides stock data feeding, indicator computing, strategy building and automatic tra...

Results 45 Trady issues
Sort by recently updated
recently updated
newest added

I have some tick data and I want to convert them to various period candles. I could not find any method to load using trady import. So, I want to...

I want to use trade, but I got error unfortunately. `Trade trade = new Trade(DateTime.Now, 10, 100, false);` error message: `System.MissingMethodException: 'Method not found: 'Void Trady.Core.Trade..ctor(System.DateTimeOffset, System.Decimal, System.Decimal, Boolean)'.'`

Hello. I am testing this library for backtesting. But I realize the performance of this library is poor. I have a sample data 4hr candles with 1 year of data...

The class of AccumulationDistributionLine has not accessible constructor and all constructors are protected. Please modify it.

I've applied the trades.TransformToCandles(); to a group of trades to get daily candles but the last day is return 3 times with different values. They should've been group together ![image](https://user-images.githubusercontent.com/53838441/114489612-d0574e80-9be9-11eb-8569-807bc2f3d294.png)

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...

This is more of an issue with CsvHelper making a breaking change by adding a CultureInfo parameter to their constructors, but I think it'd be good to get this updated....

Hey FYI just sharing this implementation of Trady in Node.js: https://github.com/lropero/trady

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(); ```...

Updates CsvHelper to resolve CsvHelper constructor breaking change introduced into version 13.0.0; Resolves #116 This should change should help users who use this library AND CsvHelper to use CsvHelpers newer...