예제 #1
0
파일: Aroon.cs 프로젝트: lulzzz/Quant
 public static IObservable <double> AroonDown(this IObservable <double> source, uint period)
 {
     return(source.AroonDown_V2(period));
 }
예제 #2
0
파일: Aroon.cs 프로젝트: lulzzz/Quant
 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));
 }