Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
VWAP improvements (anchored, custom session, prior session highlight, Labels)
Collapse
X
-
HI i am using vwap indicator by RISKYBUSINEZZ . It plots ok however when i use it in strategy, this vwap value drops... Why is it so? you can see it in cyan line
Code:vWapInd = VWAP8(); vwapValue = new Series<double>(this); AddChartIndicator(vWapInd); vwapValue = vWapInd.PlotVWAP;[B][/B]
Comment
-
I am having the exact issue where if I use it in a strategy it is giving me inaccurate vwap value. I am using a different version of avwap code. It gives correct value when it’s plugged in on chart.Originally posted by tkaboris View PostHI i am using vwap indicator by RISKYBUSINEZZ . It plots ok however when i use it in strategy, this vwap value drops... Why is it so? you can see it in cyan line
Code:vWapInd = VWAP8(); vwapValue = new Series<double>(this); AddChartIndicator(vWapInd); vwapValue = vWapInd.PlotVWAP;[B][/B]
Comment
-
I was successfully able to create a AVWAP script that can also be used inside a strategy or like a standalone indicator. Please feel to free to use it or change accordingly. This is only a better version (mix and match) of the codes previously shared by so many here. This is accurate within a tick when compared to the native AVWAP tool from trading view.
1) I dont need the VWAP bands, so i removed them in the code.
2) It needs to be called programmatically in the following way.
Code:..... DateTime AnchorFrom; private NT8AVWAP VWAPx1; .... .... else if (State == State.DataLoaded) { VWAPx1 = AVWAP1(BarsArray[0], AnchorFrom); AddChartIndicator(VWAPx1); }
Hope its useful to y'all. Attached Files
- Likes 1
Comment
-
Hello IanS00,
I have added your vote to SFT-4766.
Please note, we receive many requests and cannot reasonably implement all requested features or changes. Interest is tracked internally and if enough interest is tracked, it would be weighed against how feasible it would be to make those changes to consider implementing, so we cannot offer an ETA or promise of fulfillment.
When new features are implemented, they will be listed in the Release Notes page of the Help Guide. The ID number may be different than the internal feature request tracking ID, but the description of the feature will let you know if that feature has been implemented.
Release Notes - https://ninjatrader.com/support/help...ease_notes.htmChelsea B.NinjaTrader Customer Service
Comment
-
I'm interested in the VWAP improvements (anchored, custom session, prior session highlight, Labels). VWAP with Volume profile. The indicators are free from other platforms.
stock market courses
Hubspot partner agency
Last edited by revplant; 08-23-2023, 07:19 AM.
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
39 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
124 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
64 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
41 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment