예제 #1
0
파일: RSI.cs 프로젝트: zxt1121/hf_at
 public RSI RSI(DataSeries input, int period, int smooth)
 {
     return(Indicator.RSI(input, period, smooth));
 }