You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var rsi = new RelativeStrength(PrimaryPriceData, 14).Compute();
var emaOnRsi = new ExponentialMovingAverage<AnalyzableTick<decimal?>, AnalyzableTick<decimal?>>(rsi, tick => tick.Tick, 9).Compute();
Then I get an exception
System.ArgumentException: 'TInput, TOutput not matched!'
at Trady.Analysis.Infrastructure.AnalyzableBase`4..ctor(IEnumerable`1 inputs, Func`2 inputMapper)
Any ideas?
The text was updated successfully, but these errors were encountered:
Take a look here .
If you map AnalyzableTick<decimal?> to IOhclv, it should work, I think.
Like rsi.Compute().Select(c=> new Candle(c.DateTime, c.Tick, c.Tick....)
Hi there!
Does Trade support indicators on indicators?
If I try this ->
Then I get an exception
Any ideas?
The text was updated successfully, but these errors were encountered: