public static IObservable <double> AroonDown(this IObservable <double> source, uint period) { return(source.AroonDown_V2(period)); }
public static IObservable <double> Aroon(this IObservable <double> source, Aroon type, uint period) { return((type == rx.Aroon.Down) ? source.AroonDown_V2(period) : source.AroonUp_V2(period)); }