Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
VWAP Update
Collapse
X
-
Very Nice! Can the indicator be modified to be anchored to Swing highs and lows, to simply draw VWAP for swing length?Originally posted by jhirsh View PostThis is an update to my recent VWAP indicator. Updates include: arbitrary anchor by date/time, and plot of price delta from VWAP.
Thanks
Comment
-
-
-
-
-
Great work, and Thanks for the contribution to the community. I have two suggestions:
1) Add VScore Plot (ZScore like for VWAP), formula is VScore[0] = PriceDelta[0]/deviation;
2) Add a switch to display in lower panels for VScore, PriceDelta. Right now it can be done by change the color of other plots to transparent, but it will be easier for people use it on the lower panels.
Occasionally, VScore (also ZScore) can have an single abnormally large number so it needs to be filtered out, and replacing with the previous score is a good compromise. Here is the updated code:
VScore[0] = PriceDelta[0]/deviation;
if (Math.Abs(VScore[0]) > 5) VScore[0] = VScore[1];Last edited by FutureDragon; 02-01-2023, 10:56 PM.
Comment
-
I like your vwap2 dont need more stuff. If you want retrace tool / indicator try mine EdsRetracePlan.com
Comment
-
-
Hi @FutureDragonOriginally posted by FutureDragon View PostGreat work, and Thanks for the contribution to the community. I have two suggestions:
1) Add VScore Plot (ZScore like for VWAP), formula is VScore[0] = PriceDelta[0]/deviation;
2) Add a switch to display in lower panels for VScore, PriceDelta. Right now it can be done by change the color of other plots to transparent, but it will be easier for people use it on the lower panels.
as @jhirsh probably did not have the time to implement your suggestions, would you please add them yourself into a new indicator ?
Thank you.
- Likes 3
Comment
-
hi, I dont know why but I am using vwap in the strategy and it plots different values.
See in the picture, cyan steady line is vwap indicator, however another cyan line (dropped down) is an vwap indicator loaded in strategy and it plots differently. Why it is so?
Code:vWapInd = VWAP(); vwapValue = new Series<double>(this); AddChartIndicator(vWapInd); vwapValue = vWapInd.PlotVWAP;
- Likes 1
Comment
-
Thanks so much for this indicator! It works great except I just noticed when changing "Calculate" to "On price change", the VWAP line stops working properly and is being too affected by the current candle. (same thing happens when changed to "On each tick")
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
650 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
577 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment