adosc
Calculate the Accumulation/Distribution Oscillator.
Also known as the Chaikin Oscillator.
Essentially a momentum indicator, but of the Accumulation-Distribution line rather than merely price. It looks at both the strength of price moves and the underlying buying and selling pressure during a given time period. The oscillator reading above zero indicates net buying pressure, while one below zero registers net selling pressure. Divergence between the indicator and pure price moves are the most common signals from the indicator, and often flag market turning points.
Parameters
- standard
data
: list[openbb_core.provider.abstract.data.Data]
list of data to be used for the calculation.
• Optional: False
fast
: int
Number of periods to be used for the fast calculation, by default 3.
• Default: 3
• Optional: True
slow
: int
Number of periods to be used for the slow calculation, by default 10.
• Default: 10
• Optional: True
offset
: int
Offset to be used for the calculation, by default 0.
• Optional: True
index
: str
• Default: date
• Optional: True
Returns
results
: list[Data]
Serializable results.
provider
: None
Provider name.
warnings
: Optional[list[Warning_]]
list of warnings.
chart
: Optional[Chart]
Chart object.
extra
: dict[str, Any]
Extra info.