예제 #1
0
 public BolingerBandsIndicator(long timeframe, double stdMultiplicator)
 {
     this.stdMultiplicator = stdMultiplicator;
     this.timeframe        = timeframe;
     this.ma  = new MovingAverageIndicator(timeframe);
     this.std = new StandartDeviationIndicator(timeframe);
 }