-
-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Volume Weighted Average Price (VWAP) #32
Labels
Comments
Closed
Closed
Isn't it the same thing as |
I believe that |
Ah, I see, thanks |
I managed to get this easily on node.js wrapper: const { high, low, close, volume } = ohlcv
const hlcAverage = high.map((h, i) => (h + low[i] + close[i]) / 3)
const vwapResults = await vwma.indicator([[...hlcAverage], [...volume]], [14]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Indicator to add: https://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:vwap_intraday
The text was updated successfully, but these errors were encountered: