Chaikin Money Flow
Install and import
npm install fintech-algorithmsimport { chaikin_money_flow } from "fintech-algorithms/technical-indicators/volume-indicators/chaikin-money-flow";Signature
chaikin_money_flow(high, low, close, volume, p)Money-flow volume summed over a lookback and divided by total volume over the same window — the accumulation/distribution idea as a bounded oscillator rather than a running total.
Parameters
| Name | Type | Notes |
|---|---|---|
high | number[] | Per-bar high prices, chronological. |
low | number[] | Per-bar low prices, chronological. |
close | number[] | Per-bar closing prices, chronological. |
volume | number[] | Per-bar traded volume, aligned index-for-index with the price series. |
p | number | Lookback in bars. min: 1 · integer: true |
Returns
Record<string, (number | null)[]> · length same-as-input
Parallel series: money_flow_multiplier, money_flow_volume, rolling_mfv, rolling_volume and cmf.
Warm-up
The first p − 1 positions are null.
Errors
- When p < 1 or is not an integer — throws RangeError
- When the input series are not all the same length — throws RangeError
Complexity: time O(n),
space O(n).
Worked example
executed Captured by running this function on the input its own test provides. Real output of real code — but not asserted against a published figure.
Input
[101.05, 101.52482, 102.098461, 102.729464, 103.36806, 103.963227]Showing 6 of 120 elements.
[99.4, 99.462904, 99.936275, 100.512674, 101.151059, 101.802588]Showing 6 of 120 elements.
[100.28, 100.686113, 101.200346, 101.789282, 102.408843, 103.010585]Showing 6 of 120 elements.
[990000, 1066468.036, 1130033.236, 1170141.961, 1180511.26, 1160272.794]Showing 6 of 120 elements.
Call
chaikin_money_flow(high, low, close, volume, p)Returns
object with 5 fields: money_flow_multiplier, money_flow_volume, rolling_mfv, rolling_volume, cmf
{
"money_flow_multiplier": [
0.06666666666666667,
0.1864780136533253,
0.16925278398805474,
0.1517626838807486,
0.1346715675816141,
0.118184944361371
],
"money_flow_volume": [
66000,
198872.84097804304,
191261.2711920305,
177583.88452284224,
158981.30193194642,
137126.7756029025
],
"rolling_mfv": [null, null, null, null, null, null],
"rolling_volume": [null, null, null, null, null, null],
"cmf": [null, null, null, null, null, null]
}Other exports
This module also exports
obv, accumulation_distribution_line, money_flow_index, volume_price_trend, force_index. Every module additionally exports run as an alias of its
primary function, and a meta object carrying its catalog id, domain, family,
shape and article URL.
Diagrams
How it works
This page states the contract — how to call it correctly. The article explains the concept: why it works, and where it breaks.
References
- Chaikin Money Flow — Chaikin Analytics
- Chaikin Oscillator — TradingView
- Volume — TradingView
- Consolidated Tape — U.S. Securities and Exchange Commission, Investor.gov
- Closing Price — U.S. Securities and Exchange Commission, Investor.gov
- What is Volume? — CME Group
- Claim-role ledger
- Evidence boundary
- Enhanced claim-to-source map
- Public evidence boundary