示例#1
0
文件: Aroon.cs 项目: lulzzz/Quant
 public static IObservable <double> AroonUp(this IObservable <double> source, uint period)
 {
     return(source.AroonUp_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));
 }