NexusFi: Find Your Edge


Home Menu

 





AVWAP


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one options with 6 posts (2 thanks)
    2. looks_two trendisyourfriend with 4 posts (4 thanks)
    3. looks_3 bwolf with 3 posts (0 thanks)
    4. looks_4 DavidHP with 1 posts (0 thanks)
    1. trending_up 1,937 views
    2. thumb_up 6 thanks given
    3. group 7 followers
    1. forum 14 posts
    2. attach_file 5 attachments




 
Search this Thread

AVWAP

  #1 (permalink)
 options 
toronto
 
Experience: Advanced
Platform: TOS
Trading: options
Posts: 64 since Mar 2013
Thanks Given: 55
Thanks Received: 57


Hello. Anchored VWAP (swing VWAP) is mine most important tool in futures trading and I surprise that no one made any indicators out of it . I was reading that FatTails was working on it but I cant find anything . Can one share it here or tell me were to buy one .

Attached Thumbnails
Click image for larger version

Name:	nq AVWAP.png
Views:	69
Size:	187.4 KB
ID:	332866  
Started this thread Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
Trade idea based off three indicators.
Traders Hideout
REcommedations for programming help
Sierra Chart
Quantum physics & Trading dynamics
The Elite Circle
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Strategy stop orders partially filled
EasyLanguage Programming
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
26 thanks
What is Markets Chat (markets.chat) real-time trading ro …
15 thanks
ApexTraderFunding.com experience and review
13 thanks
GFIs1 1 DAX trade per day journal
13 thanks
EG Indicators
11 thanks
  #2 (permalink)
 
trendisyourfriend's Avatar
 trendisyourfriend 
Quebec Canada
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG
Trading: ES, NQ, YM
Frequency: Daily
Duration: Minutes
Posts: 4,527 since Oct 2009
Thanks Given: 4,177
Thanks Received: 6,021


options View Post

Hello. Anchored VWAP (swing VWAP) is mine most important tool in futures trading and I surprise that no one made any indicators out of it . I was reading that FatTails was working on it but I cant find anything . Can one share it here or tell me were to buy one .

I have been using this one for years:
https://ranchodinero.com/product/range-vwap-drawing-tool/

I know there are other vendors outthere who have made a similar tool. There is also this one which i think is more advanced:
https://www.edevaay.com/tool-box/drawcator-vwap/

Reply With Quote
Thanked by:
  #3 (permalink)
 
trendisyourfriend's Avatar
 trendisyourfriend 
Quebec Canada
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG
Trading: ES, NQ, YM
Frequency: Daily
Duration: Minutes
Posts: 4,527 since Oct 2009
Thanks Given: 4,177
Thanks Received: 6,021


I have programmed one VWAP which you can use and set the offset for splitting the day VWAP. You could use it to anchor the VWAP at a specific offset but you would need to open the property dialog for this.

Ex. here a second VWAP start at 9:30.

You can also see the previous VWAP closing price from the last day projected into the current day session as fixed horizontal lines.

 
Code
/// <summary> 
/// indicator name : tiyfVWAP
/// Folder path : .../Indicators/TrendIsYourFriend
/// ---
/// This indicator displays the current session VWAP along with a few standard deviations.
/// It also offers the possibility to split the current session after a specified amount of time
/// has elapsed since the start. Finally, it displays the prior session VWAP and 1st standard deviation.
/// ---
/// compiled with Ninjatrader version 8.0.28.0 64-bit
/// author : trendisyourfriend (https://nexusfi.com/)
/// trendisyourfriend's discussion thread : none
/// ---
/// 2023.06.17 (YYYY.MM.DD) Version 1
/// </summary>
This indicator has not been published anywhere as i use it for my own needs for developing automated strategies. Fat Tails have been generous enough to share his magic formula to calculate the VWAP. I have just rearranged it to encapsulate his formula into an easy to use class object.


Attached Files
Elite Membership required to download: tiyfVWAP_20230617.zip
Reply With Quote
Thanked by:
  #4 (permalink)
 
trendisyourfriend's Avatar
 trendisyourfriend 
Quebec Canada
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG
Trading: ES, NQ, YM
Frequency: Daily
Duration: Minutes
Posts: 4,527 since Oct 2009
Thanks Given: 4,177
Thanks Received: 6,021

I created this example to show how you can modify the offset parameter so that the VWAP starts at a specific time:

This is a 15 minute chart. To calculate the offset to enter to get the VWAP split at a given anchor, i suggest to use the Ruler tool and mesure from the 1st bar of the session to your anchor bar and mulitple the number of bars by the interval. Here we have 58 bars x 15 minute = 870. This is the value to use for the offset parameter.

Of course, all historical and future sessions will have the VWAP split at this offset.


Reply With Quote
Thanked by:
  #5 (permalink)
 
DavidHP's Avatar
 DavidHP 
Isla Mujeres, MX
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Ninjatrader / Optimus Futures / AmpFutures
Trading: ES / 6E / 6B / CL
Frequency: Every few days
Duration: Minutes
Posts: 1,612 since Aug 2009
Thanks Given: 11,345
Thanks Received: 2,748


options View Post

Hello. Anchored VWAP (swing VWAP) is mine most important tool in futures trading and I surprise that no one made any indicators out of it . I was reading that FatTails was working on it but I cant find anything . Can one share it here or tell me were to buy one .


How is your VWAP activated?
Automatically or by manually input or?

Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
Follow me on Twitter Reply With Quote
  #6 (permalink)
 
bwolf's Avatar
 bwolf 
Los Angeles, CA
 
Experience: None
Platform: NT8, TOS, Tradingview, BH
Broker: Ninjatrader
Trading: ES
Posts: 258 since Aug 2019
Thanks Given: 682
Thanks Received: 565


options View Post

Hello. Anchored VWAP (swing VWAP) is mine most important tool in futures trading and I surprise that no one made any indicators out of it . I was reading that FatTails was working on it but I cant find anything . Can one share it here or tell me were to buy one .

Here are links to a virtually free one (requires donation) and to a free one that's a variation on the theme, MIDAS Curves, which is a form of AVWAP.

https://pjsmith.me.uk/index.php/2023/05/pjsavwap-anchored-vwap-for-ninjatrader-8/

https://ninjatraderecosystem.com/user-app-share-download/midas-indicator-2/

(both from the Ninjatrader Ecosystem)

You can't outsource confidence in trading decisions
Visit my NexusFi Trade Journal Reply With Quote
  #7 (permalink)
 sidfutures 
New York City
 
Experience: Beginner
Platform: Ninja Trader
Trading: Stocks, Options, Future
Posts: 1 since Jun 2023
Thanks Given: 1
Thanks Received: 0

following and would like to learn about it as well. I listen to Anthony Crudele at Ninja Trader Develop your Edge You tube channel and he mentions Anchored VWAP. I am still learning and new in this space. I suppose Ninja has this indicator..I am going to check it out.. following along


options View Post

Hello. Anchored VWAP (swing VWAP) is mine most important tool in futures trading and I surprise that no one made any indicators out of it . I was reading that FatTails was working on it but I cant find anything . Can one share it here or tell me were to buy one .


Reply With Quote
  #8 (permalink)
 options 
toronto
 
Experience: Advanced
Platform: TOS
Trading: options
Posts: 64 since Mar 2013
Thanks Given: 55
Thanks Received: 57


bwolf View Post
Here are links to a virtually free one (requires donation) and to a free one that's a variation on the theme, MIDAS Curves, which is a form of AVWAP.

https://pjsmith.me.uk/index.php/2023/05/pjsavwap-anchored-vwap-for-ninjatrader-8/

https://ninjatraderecosystem.com/user-app-share-download/midas-indicator-2/

(both from the Ninjatrader Ecosystem)

Yes Im using the MIDAS drawing tool but looking for the indicator type so I can incorporate to my BH strategy .

Started this thread Reply With Quote
  #9 (permalink)
 options 
toronto
 
Experience: Advanced
Platform: TOS
Trading: options
Posts: 64 since Mar 2013
Thanks Given: 55
Thanks Received: 57


trendisyourfriend View Post
I created this example to show how you can modify the offset parameter so that the VWAP starts at a specific time:

This is a 15 minute chart. To calculate the offset to enter to get the VWAP split at a given anchor, i suggest to use the Ruler tool and mesure from the 1st bar of the session to your anchor bar and mulitple the number of bars by the interval. Here we have 58 bars x 15 minute = 870. This is the value to use for the offset parameter.

Of course, all historical and future sessions will have the VWAP split at this offset.


Thanks for posting .
Im looking for the indicator AVWAP that can identify swing points so I dont have to do it manually and can incorporate to my Bloodhound strategy .

Started this thread Reply With Quote
  #10 (permalink)
 
bwolf's Avatar
 bwolf 
Los Angeles, CA
 
Experience: None
Platform: NT8, TOS, Tradingview, BH
Broker: Ninjatrader
Trading: ES
Posts: 258 since Aug 2019
Thanks Given: 682
Thanks Received: 565



options View Post
Thanks for posting .
Im looking for the indicator AVWAP that can identify swing points so I dont have to do it manually and can incorporate to my Bloodhound strategy .

You're welcome.

AVWAP settings are pretty subjective and it's unlikely you will find one that identifies swing points IMO, as most people anchor them to significant HTF points, like the beginning of the year, or month, or other signifiant market repricing events, like FOMC, big shifts in sentiment, major news breaks, etc. I don't think most people anchor them to swings. What you are looking for sounds more like a development project.

You can't outsource confidence in trading decisions
Visit my NexusFi Trade Journal Reply With Quote




Last Updated on June 19, 2023


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts