[docs]defset_period_counts(self,fast_period_count:int,slow_period_count:int):"""Sets the period counts for the fast and slow moving averages used in the Chaikin Oscillator. Args: fast_period_count (int): The number of periods for the fast moving average. slow_period_count (int): The number of periods for the slow moving average. """self.instance.send(self.id,'setPeriodCountsChaikinOscillator',{'fastPeriodCount':fast_period_count,'slowPeriodCount':slow_period_count,},)returnself