コード例 #1
0
ファイル: RSI.cs プロジェクト: zxt1121/hf_at
 public RSI RSI(DataSeries input, int period, int smooth)
 {
     return(Indicator.RSI(input, period, smooth));
 }