Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

jperl

Trading with Market Statistics VI. Scaling In and Risk Tolerance

Recommended Posts

which std dev are you talking about walter. I use dbtina's code as proxy for Jerrys std dev... I use my own code to watch the expansion/contraction of volatility in intraday basis.

 

btw, I have to thank Jerry. I have not had a losing day since I started filtering trades with VWAP (nearly 3 weeks now). part of this is of course these juicy markets. very forgiving market. bails you out of a bad trade with a monster swing at some other point.

Share this post


Link to post
Share on other sites

 

Is plotting on a (2 min) intraday chart enough or does the ELD for pvp needs more functionality for the upcomming lessons ? (plotting weekly ? etc.)

 

thanks!

 

If you want to do more advanced trades (which I only recommend once you have passed the basic test, lol), you will want the volume histogram and its VWAP,SD's for 1 day,2 day,1 week, 2 week, 1 month, 2 month and 1 year. You will also want these lines to update dyanamically for the day you trade.

We will get to what all this means when we discuss Hold Up Prices ( HUP )

Share this post


Link to post
Share on other sites

walter,

 

that is dbntinas code but I played with the # of Std Devs on there.. that one I think had 0.5 1.0 and 2.0 std devs... but I am playing around with those settings and was using something different today.

Share this post


Link to post
Share on other sites

<<Ok Dog I see.... now this other, would that be diferent ? sorry for bothering you... thanks Walter>>

 

yes that is different. that is the code I wrote to watch how the bands compress and widen -- not necessarily for levels. and you aren't ever bothering me, I am as addicted to chatting about this as I am about trading.

 

here it is:

 

{I use this on 1 and 2-minute charts with a 'custom session' start time to collect 45 2-minute bars -- thus it starts plotting this band using 60 minutes of pre-market trading and first 30-mins of regular trading}

 

value1=

square(c-vwap_h)+

square(c[1]-vwap_h)+

square(c[2]-vwap_h)+

square(c[3]-vwap_h)+

square(c[4]-vwap_h)+

square(c[5]-vwap_h)+

square(c[6]-vwap_h)+

square(c[7]-vwap_h)+

square(c[8]-vwap_h)+

square(c[9]-vwap_h)+

square(c[10]-vwap_h)+

square(c[11]-vwap_h)+

square(c[12]-vwap_h)+

square(c[13]-vwap_h)+

square(c[14]-vwap_h)+

square(c[15]-vwap_h)+

square(c[16]-vwap_h)+

square(c[17]-vwap_h)+

square(c[18]-vwap_h)+

square(c[19]-vwap_h)+

square(c[20]-vwap_h)+

square(c[21]-vwap_h)+

square(c[22]-vwap_h)+

square(c[23]-vwap_h)+

square(c[24]-vwap_h)+

square(c[25]-vwap_h)+

square(c[26]-vwap_h)+

square(c[27]-vwap_h)+

square(c[28]-vwap_h)+

square(c[29]-vwap_h)+

square(c[30]-vwap_h)+

square(c[31]-vwap_h)+

square(c[32]-vwap_h)+

square(c[33]-vwap_h)+

square(c[34]-vwap_h)+

square(c[35]-vwap_h)+

square(c[36]-vwap_h)+

square(c[37]-vwap_h)+

square(c[38]-vwap_h)+

square(c[39]-vwap_h)+

square(c[40]-vwap_h)+

square(c[41]-vwap_h)+

square(c[42]-vwap_h)+

square(c[43]-vwap_h)+

square(c[44]-vwap_h);

 

value2=squareroot(value1/(45-1));

value3=vwap_h+value2;

value4=vwap_h-value2;

value5=vwap_h+(value2*2);

value6=vwap_h-(value2*2);

 

if time>659 then begin

{note, I am in California timezone >659 = >959 in New York Time}

 

Plot1(vwap_h, "UpperBand" ) ;

{Plot2(value3, "UpperBand" ) ;

Plot3(value4, "UpperBand" ) ;}

Plot4(value5, "UpperBand" ) ;

Plot5(value6, "UpperBand" ) ;

 

end;

Share this post


Link to post
Share on other sites

Allright Dogpile ¡¡ nice to have the same adictions jejeje... but that is a nice formula too ¡¡ I like to see this compression/expansion being more amplified visually with tis one.... thanks again ¡¡ cheers Walter.

Share this post


Link to post
Share on other sites

Hi there I can't log in to TS forums (no account). The one I have has is by ghkramer. It has numerous parameters the most important is probably delta price which should be the tick size or larger if you try larger you may get more success because of how the array is indexed.

 

It takes a little while to first display as it has quite a lot of stuff to do. The rest can be left on defaults. Every now and then it gives an array subscript error but oddly re-applying the indicator fixes it. I havent looked in to why yet though have taken the time to familiarise myself with the code.

 

I'd very much like to shoot ghkramer an email a)thanking him for his great work and b) asking for the latest version. Anyone know how I canget in touch (just to say again I don't have a TS forum logon).

 

Cheers.

Share this post


Link to post
Share on other sites
btw, as rumor-filled as the market was today -- look how 'normal' the volume distribution ended up...

 

Good observation Dogpile. Also note in the attachment here that the VWAP = POC = 1497.50 at the end of the day, a sign of a symmetric distribution. We'll discuss trading a symmetric distribution in a later thread.

 

Cooter if you are reading this, here is an example of price action touching the 3rd SD at 15:26 EST.

ESAug8.thumb.jpg.4dc135f8ebf8071bef89d2b838afdd91.jpg

Share this post


Link to post
Share on other sites

This might be better served for a later thread, but I'm wondering if the previous day's PVP has any bearing on where things might go in the present day's open? For example, if yesterday's PVP is at 13000 and the market gaps up to say 13080, wouldn't the skew be to the upside from the start if you account for yesterday's volume distribution? Or is the present day data the only thing we should be concerned about to gauge the skew of the present day's market?

Share this post


Link to post
Share on other sites

Here's an interesting thing. This mornings DAX. The trend is down but as it just started and went with no base today to work from the PvP is jumping ahead of the VWAP which eventually catches up and overtakes. This causes a flip however it is clearly (to me) quite a different type of flip to that caused by a new base being built. Essentially we are going down on ever increasing volume with no base in the background (not a base today at least) for reference.

 

A couple of pictures that illustrate. I cant help feel this is exploitable, but I am trying hard not to second guess you Jerry! Actually I have a bit but would rather wait before going off in the wrong direction.

 

Any comments? I guess things like this will be covered in 'flips' and perhaps the section looking at longer time profiles.

 

Comments welcome, appreciation growing.

 

Cheers.

jperltrades4.thumb.png.4e1280d325e51925bd1c4cfd55da596b.png

jperltrades5.thumb.png.10f71038c9623bd3617c0348eb5efeec.png

Share this post


Link to post
Share on other sites
This might be better served for a later thread, but I'm wondering if the previous day's PVP has any bearing on where things might go in the present day's open? For example, if yesterday's PVP is at 13000 and the market gaps up to say 13080, wouldn't the skew be to the upside from the start if you account for yesterday's volume distribution? Or is the present day data the only thing we should be concerned about to gauge the skew of the present day's market?

 

Good question Nvesta. Previous days statistics do play a role in the price action for today, but not in the way you might think. They act as Hold Up Prices which I call HUP. We will discuss these in a future thread.

Share this post


Link to post
Share on other sites

As to whether the indicator is available ...well its a bit quirky I took ghkramer's volume profile and severely hacked it about. Its a bit 'fragile' to let out in the wild. There seem to be a couple of problems that need sorting.

 

Having said that I learnt enough about he he did his volume profile to be able to attempt a simple PvP using his concepts. Its just finding the time. To be honest I was just messing while hoping Dbtina or someone else came up with something a bit more elegant, and more to the point with PvP in mind from the start.

 

Cheers,

Share this post


Link to post
Share on other sites
Guest cooter

 

Cooter if you are reading this, here is an example of price action touching the 3rd SD at 15:26 EST.

 

Yep. That's what I was looking for - thxs Jerry.

 

Note the pullback at that point.

 

2273d1186663598-trading-with-market-statistics-vi-scaling-esaug8.jpg

Share this post


Link to post
Share on other sites
As to whether the indicator is available ...well its a bit quirky I took ghkramer's volume profile and severely hacked it about. Its a bit 'fragile' to let out in the wild. There seem to be a couple of problems that need sorting.

 

Ok no problem.

 

i did find an eld which im testing now. (cost $100,-)

see screenshot

red lines are yesterdays high and low area and in the middle yesterdays closing pvp.

The dark blue lines are todays pvp.

is this chart correct ?

 

also this one is working (cost 150,-)

http://www.theswingmachine.com/Price_Distrib_Anal/PriceDist_Main.htm

 

but he if i can find it for free.....

 

also thinking about switching to Investor/RT

need good charts...any ideas about this?

vpv.png.73e4ec4223daeed3f272c0113fc0bf24.png

Share this post


Link to post
Share on other sites

Alright TS users (blowfish do you have TS and you were just banned from forums??)

 

Anyway...Here is where we are:

 

I do have code that will calculate PVP on 1 tick chart. Btw I have 4 megs of ram and I can't run the code that will calculate VWAP and SD's on a 1 tick chart...way too memory intensive..computer keeps locking...so I will have to settle for being a tick or two off during the day with current eld I posted here.

 

I was able to get the ADE working and I now can see the PVP updating realtime with the VWAP and SD bands.

 

To get my setup at a minimum you will need to:

 

1) Keep a 1 tick chart running with the first PVP.eld indicator on it.

2) Then you can have your higher timeframe chart (2min) open with the updated VWAPSD indicator on it and it will plot the PVP from the 1T chart and the VWAP and SD bands.....

 

However...to those who are familiar with programming, posting indicators and working with ADE and eld's I need some guidance.

 

For people who don't have the ADE library, ELCollections and ZeroSynch library are they able to still use the indicators? Or do they have to install that first....My gut feeling tells me that the indicators that they need will get installed with the eld (I hope).

 

Also, I would like to send the eld's to someone first who knows more about this stuff to troubleshoot and figure out what is needed to post for everyone's use and to help me with it. Test and see basically if you only need the 2 eld's to work.

 

One more thing (sorry to hijack the thread jperl), I don't know if the ticks go back historically because throughout the day the PVP updated well...looking at the matrix and comparing...however towards the end of the day 1973 and 1971.50 or so lower were different in volume by 200 or so and it didn't move lower...however I lost the data feed twice during the day and I don't know if that is the reason why it was a little off....so caution with that.

 

Let me know if anyone can help me out.

 

I tell you what, the code is currently keeping track of all the volume at every price tick...to plot the volume histogram would be very easy using trendlines...I just need to add that into the code...should not be hard at all...then we got everything we need! If anyone feels like running with it let me know.

 

Thanks,

 

dbntina

Share this post


Link to post
Share on other sites
Ok here a pic of today's action on 2min of NQ...I think at the end of day it should have moved lower like I was talking about and losing data twice.

 

dbntina ;)

 

Impressive work there dbntina, if you don't mind I would like a try.

 

Thanks

 

Blu-Ray

Share this post


Link to post
Share on other sites

No problem Blu-Ray...will send it tomorrow morning...would like to get some people to test it out...and I can make changes if we need to and get it documented and once we get the bugs out I will post for everyone here...next version I will get the histogram put on and then we are in business...then the following version will have an option to combine multiple days of data as an option...then I am through with this....:eek:

 

dbntina

Share this post


Link to post
Share on other sites
No problem Blu-Ray...will send it tomorrow morning...would like to get some people to test it out...and I can make changes if we need to and get it documented and once we get the bugs out I will post for everyone here...next version I will get the histogram put on and then we are in business...then the following version will have an option to combine multiple days of data as an option...then I am through with this....:eek:

 

dbntina

 

 

dbntina... nice actitude ¡¡ thanks for great collaboration and welcome aboard TL... that indicator looks very nice... cheers Walter.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Date: 29th March 2024. GBPUSD Analysis: The Pound Trades Higher But For How Long? The global Stocks Markets are closed due to Easter Friday (Good Friday). The NASDAQ continued to follow the sideways trend while other indices again rose. The SNP500 reaches an all-time high, but the NASDAQ remains under pressure from Tesla, Meta and Apple. The Euro continues to trade lower against all major currencies including the US Dollar, Euro and Japanese Yen. The British Pound is the best performing currency during this morning’s Asian session. However, investors are largely fixing their attention on this afternoon’s Core PCE Price Index. GBPUSD – The Pound Trades Higher but For How Long? The GBPUSD is slightly higher than the day’s open and is primary due to the Pound’s strong performance. At the moment, the British Pound is increasing in value against all major currencies. However, the US Dollar Index is also trading 0.10% higher and for this reason there is a slight conflict here. If investors wish to avoid this conflict, the EURUSD is a better option. This is because, the Euro depreciating against the whole currency market avoiding the “tug-of-war” scenario. The GBPUSD is trading slightly lower than the 2-month’s average price and is trading at 49.10 on the RSI. For this reason, the price of the exchange is at a “neutral” level and is signalling neither a buy nor a sell. The day’s price action and future signals are possibly likely to be triggered by this afternoon’s Core PCE Price Index. Analysts expect the Core PCE Price Index to read 0.3% which is slightly lower than the previous month but will result in the annual figure remaining at 2.85%. The PCE rate is different to the inflation rate and the Fed aims for a rate between 1.5% to 2.00%. Therefore, even if the annual rate remains at 2.85%, as analysts expect, it would be too high for the Fed. If the rate increases, even if only slightly, the US Dollar can again renew bullish momentum and the stock market can come under pressure. This includes the SNP500. Investors are focused on the publication of data on the UK’s gross domestic product (GDP) for the last quarter of 2023: the quarterly figures decreased by 0.3%, and 0.2% over the past 12-months. This confirms the state of a shallow recession and the need for stimulation. The data, combined with a cooling labor market and a steady decline in inflation, increase the likelihood that the Bank of England will soon begin interest rate cuts. In the latest meeting the Bank of England representatives did not see any members vote for a hike. USA500 – The SNP500 Rises to New Highs, But Cannot Hold Onto Gains! The price of the SNP500 rises to an all-time high, before correcting 0.33% and ending the day slightly lower than the open price. Nonetheless, the index performs better than the NASDAQ which came under pressure from Tesla, Meta and Apple which hold a higher weight compared to the SNP500. For the SNP500, these 3 stocks hold a weight of 9.25%, whereas the 3 stocks make up 14.63% of the NASDAQ. The SNP500 is also supported by ExxonMobil’s gains due to higher energy prices. The market will remain closed on Friday due to Easter. However, the market will reopen on Monday for the US and investors can expect high volatility. Investors will also need to take into consideration how the PCE Price Index and the changed value of the US Dollar is likely to affect the stock market next week. Always trade with strict risk management. Your capital is the single most important aspect of your trading business. Please note that times displayed based on local time zone and are from time of writing this report. Click HERE to access the full HFM Economic calendar. Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding on how markets work. Click HERE to register for FREE! Click HERE to READ more Market news. Michalis Efthymiou Market Analyst HFMarkets Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in FX and CFDs products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • MT4 is good and will be good until their parent company keep updating the software, later mt4 users will have to switch to mt5.
    • $SOUN SoundHound AI stock at 5.91 support area , see https://stockconsultant.com/?SOUN
    • $ELEV Elevation Oncology stock bull flag breakout watch , see https://stockconsultant.com/?ELEV
    • $AVDX AvidXchange stock narrow range breakout watch above 13.32 , see https://stockconsultant.com/?AVDX
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.