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.

sergio83

How to Calculate Volume by Price

Recommended Posts

Hi all,

 

As in the title I am wondering how can I calculate the volume by price having the volume of every single bar of 1 minute.

 

So basically how to transfer the vertical histogram of the volume to the horizzontal histogram of the volume.

 

I am making a java program that visualize my own customised charts starting from a CSV file from MetaTrader that contain only the volume for each period of time/candlestick.

 

 

Thanks for any help, suggestion or link to websites or books.

 

Sergio

Share this post


Link to post
Share on other sites

You can't calculate it with 100% accuracy without transaction (tick) data. You could estimate by evenly distributing the volume over the whole bar and perhaps weighting the closing price a bit.

 

But since you seem to be using spot for ex the volume information you have is not accurate already, so that's two levels of inaccuracy.

 

A better option IMO would be to forget volume and use time at price instead. At least this way it's accurate. You might find that it's just as good or better anyway.

Share this post


Link to post
Share on other sites

yes sure! I am programming it already with time at price, but I would also like to implement the volume by price. Actually the whole a idea was to make charts that shows somehow the difference between time at price and volume at price so that (for what I think) you can see when the volumes are high not just because the price has been there for lot of time.

 

Anyway I am using data from metatrader, but not from the Spot market, I will use BrocoTrader or Sunbird which I told were from the features... aren't they?

 

I know that is an approximation with the bar of 1 minute, but I just want to create a program that get's you used to market profile playing with historical data... I won't use it for trade real money.

 

Might you then explain to me briefly, but step by step hoow would you calculate the volume by price from the volume of each 1M bar?

 

thanks a lot for any help

Share this post


Link to post
Share on other sites

This guy has a volume profile in Excel that uses 1min data. Well done him, Respect due.

 

There are no macros on the worksheet and all his formulas are visible. I'm sure you could

de-construct his formulas and transpose it into Java.

 

Its the file in the 4th post down.

 

Forums - Excel-cumulative volume profiles?

 

 

 

VT

 

Ps If the above helps you're more than welcome to send me a Beta version of your App! lol

Share this post


Link to post
Share on other sites

yes this looks like it is what I was looking for.. I will just have to trust this guy that the procedure is correct.

 

It might take me ages as I am doing it in the sparetime, but sure, I will share my app probably making a website.

Anyway I need feedbacks to see if I did it correctly.

 

Cheers

 

Sergio

Share this post


Link to post
Share on other sites

apparently it should work that way:

 

first we spread the volume of every single bar on all the ticks (the which size we will choose) that this bar has covered:

VolumeOfTheBar/(HighBar-LowBar+1 Tick) * Tick

 

and then for every price tick we will give a value which is the sum of all the volume spreaded volumes which are from the bars that passes from this price tick..

 

as an example:

exaq.jpg

 

 

Does this make sense? will it work correctly even if with approximation?

Share this post


Link to post
Share on other sites

Looks like you've unlocked the secret!

 

Unless you are using a High end data feed, the volume you will receive from a retail broker will be abbreviated anyhow, so don't sweat a few contracts here or there.

 

The excel volume profile tallys up with my charting platforms volume profile, in relation to where the peaks,nodes,and low volume is situated. The figures can sometimes differ, but its not a huge disparity.

 

If it helps, in my trading I'm more concerned with the structure of the profile and where the key areas are, not the exact figures to the nearest contract that made them.

 

VT

Share this post


Link to post
Share on other sites

Ya I also use a Tick chart. In essence instead of the bars being formed after X amount of time has passed they form after X amount of trades have taken place. When the bars for quickly volume is high, when they form slowly, volume is low. I prefer them to time based charts. Daily, 15-min and 512 tick are what I use most.

Share this post


Link to post
Share on other sites
first we spread the volume of every single bar on all the ticks (the which size we will choose) that this bar has covered:

 

Hmm, sounds a lot like this:

 

You could estimate by evenly distributing the volume over the whole bar and perhaps weighting the closing price a bit.

 

But if you were to profile one minute bars like I did just a second ago, you will find that the distributions based on just averaging like you did will be far enough off that you will probably not want to use it. One idea is give less weight to the high and low tick of the bars. I know that estimation can be done because I have software that profiles using one minute data (no tick data), and supposedly is about 95% accurate to the tick data. But no doubt it's being calculated using well-tested data, which you do not have access to.

 

Particularly since you are talking about comparing this with TPOs, I don't see the point of this... what did you hope to find again, if volume was high in an area, and a time-based profile showed that it was not there for a long time? You can get this same data much more easily by looking at a simple volume histogram, and look for high volume per time bar, no need to calculate an inaccurate volume profile and then do a difference with a market profile.

 

Why not just get tick data? MetaTrader must be the most bare bones software out there, and I understand the desire to get stuff cheap, but why not just get the tools you need? You are working on a project which can only yield inaccurate output. I'm not trying to burst your bubble, but just being real as to what you can expect.

 

If you go through with this, I'll be happy to post an actual volume profile so you can compare yours for accuracy.

Share this post


Link to post
Share on other sites

yes sorry Joshdance I could get the first formula from your words.

 

I think that making a program from the tick data would result in a heavier and slower program and also the file to store the data throught the years would be probably huge.

 

I would prefer to remain with the 1min bar for the moment.

 

Keep in mind that I just want to create an educational app, just to get used with the volume profile trading.

I first started because I would like to use VolFix / LuxVol but being that expensive it seems a bit a jump in the unknown to take it just to learn.

Now is more like a game to create this app.. i would also like to implement a tool that makes you see how the time at price or volume at price develope during the time with a sort of replay of the trading session. ..and other sort of this things that a novice might wonder about but which none of the platforms offer to visualize.

Maybe you are right the idea of the difference between Time and Volume at price is useless.

 

I definitely would like to implement this weighted volumes at the extremes... but I can not just invent a method... If I can find a source where a correct way of doing it is explained I can do it otherwise I will just add imprecision I guess.

Could you tell me something more?

 

So it seems that taking data from Broco or other metatrader futures platform is not going to give me anything usefull in terms of volumes...

what exactly does Valuetrader mean when he says:

 

the volume you will receive from a retail broker will be abbreviated anyhow

?

 

Could you tell me which is the best way to get volume wise correct historical data atleast for the EUR/USD future?

 

Maybe the only way is to get my hands on my wallet and get something like this:

FOREX Historical Data, Major Indices and Futures Historical Intraday and Daily Market Data - Through Download and on DVDs/CDs.

Global Historical Intraday Futures Tick Data | Trade and Quote Futures Data | Tick Data

 

it is going to become an expensive game ^_^

better going directly with VolFix :P

Share this post


Link to post
Share on other sites

could anyone tell me how much is the average order of dimension for the 1min Bar volume in the E7?

 

1 bar as usually around 10 or more likely 1000+?

 

just trying to understand what kind of data I have got

 

for example:

2008.01.22,20:36,1.45990,1.46000,1.45980,1.45990,9

2008.01.22,20:37,1.46000,1.46000,1.45980,1.46000,9

2008.01.22,20:38,1.45990,1.46000,1.45990,1.46000,6

2008.01.22,20:39,1.45990,1.45990,1.45980,1.45990,21

2008.01.22,20:40,1.46000,1.46010,1.45980,1.45990,13

2008.01.22,20:41,1.46000,1.46000,1.45990,1.46000,21

2008.01.22,20:42,1.46010,1.46010,1.46000,1.46000,8

 

are those volumes probably only from the broker I am using?

Share this post


Link to post
Share on other sites

First tests of the app...

 

is the Volume @ Price histogram shape anywhere close to what professional platform plots?

 

this is the chart for the EUR/USD date: 2011/07/07...

I am not sure if I have the data from the futures or just Forex Spot

 

firstfm.jpg

Edited by sergio83

Share this post


Link to post
Share on other sites

with tick at 0.0001 is more precise for comparison...

 

POC at 1.4326

 

secondi.jpg

 

 

I am actually now downloading history data from NinjaTrader AMP on 6E.... this should have the correct data, right?

Share this post


Link to post
Share on other sites
It's looking good. The figures you have look correct. Will your app have the ability to create composite profiles over an imputable number of days?

 

I am thinking to have a big profile of the previous week or two, and then you will watch every single day of the current week aside the big profile with the possibility to hide/replay part of the day and when you finish with wednsday (example) you can add its profile to the big one with a different color or watch its profile next to the big one and the profile only of monday and tuesday.

 

what exactly do you mean with composite profiles?

Share this post


Link to post
Share on other sites

A composite profile is two or more day profiles amalgamated together. In my humble opinion a one day profile has limited value. Rather than setting the profile to a fixed time period (eg. Week / month) with an inputable number of days you can create a profile to fit in with the current valed distribution.

Share this post


Link to post
Share on other sites

I will definetely put something like this.

 

you will choose a period in which you can choose a point in time where what is before that point will be summed in a big profile and what is after will be shown as many different profiles aside each the which lenght will be choose from you.

Moving the point you will see how the big profile developes.

 

 

But form me priority will be the visualization of the previous week profile in order to find the POC of this week... and then analize the days of the following week to see how do they behave when they meet POC of the previous week

Share this post


Link to post
Share on other sites

that would be free I guess... that I can customize it as I want... and that I can work on historical data as they are live with some sort of replay function..

 

But yes the all point is to get something that can exercise me to a level which can make me feel conscious in invest the money to get a real platform like VolFix (now LuxVol?)

 

or maybe it is just a game :p

Share this post


Link to post
Share on other sites

Hi guys I finished a first very rough version of my app...

 

ReMarket

 

basically from a NinjaTrader/metatrader4 exported CSV/txt file you can make a file .wem that my app an read... check the menu bar to convert you CSV files.. or download a sample from the website.

Once you got a database .wem you set it from my app (check the menu bar) and you can start to select the dates you want to analise.

 

Since the app has to access you local machine to select the database the app will require you to accept a certificate.

 

The idea is to have a big profile (A-B) from where to spot a POC... then you can select a day after this week to play like it is live.. choosing an increment and then pressin teh button SHOWday++ to see how the profile changes with time.

 

LeftMouseButton LMB makes you pan..

 

CTRL+LMB makes you scale the whole thing... but better to set proper scaling settigns from the menu bar.

 

If you press the RightMouseButton RMB you can place reference lines that will stay even when you pass from a profile to another.

 

The indicator on the left are in blue the VWAP and in red the PVP as taught from JPerl.

 

Check out the difference profile... I know I have been told being useless.. but I find it interesting to spot when a volume is high not only because price has been there for a long time.

 

Sorry the quick post but I am short of time.

Edited by sergio83

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

    • How's about other crypto exchanges? Are all they banned in your country or only Binance?
    • Be careful who you blame.   I can tell you one thing for sure.   Effective traders don’t blame others when things start to go wrong.   You can hang onto your tendency to play the victim, or the martyr… but if you want to achieve in trading, you have to be prepared to take responsibility.   People assign reasons to outcomes, whether based on internal or external factors.   When traders face losses, it's common for them to blame bad luck, poor advice, or other external factors, rather than reflecting on their own personal attributes like arrogance, fear, or greed.   This is a challenging lesson to grasp in your trading journey, but one that holds immense value.   This is called attribution theory. Taking responsibility for your actions is the key to improving your trading skills. Pause and ask yourself - What role did I play in my financial decisions?   After all, you were the one who listened to that source, and decided to act on that trade based on the rumour. Attributing results solely to external circumstances is what is known as having an ‘external locus of control’.   It's a concept coined by psychologist Julian Rotter in 1954. A trader with an external locus of control might say, "I made a profit because the markets are currently favourable."   Instead, strive to develop an "internal locus of control" and take ownership of your actions.   Assume that all trading results are within your realm of responsibility and actively seek ways to improve your own behaviour.   This is the fastest route to enhancing your trading abilities. A trader with an internal locus of control might proudly state, "My equity curve is rising because I am a disciplined trader who faithfully follows my trading plan." Author: Louise Bedford Source: https://www.tradinggame.com.au/
    • SELF IMPROVEMENT.   The whole self-help industry began when Dale Carnegie published How to Win Friends and Influence People in 1936. Then came other classics like Think And Grow Rich by Napoleon Hill, Awaken the Giant Within by Tony Robbins toward the end of the century.   Today, teaching people how to improve themselves is a business. A pure ruthless business where some people sell utter bullshit.   There are broke Instagrammers and YouTubers with literally no solid background teaching men how to be attractive to women, how to begin a start-up, how to become successful — most of these guys speaking nothing more than hollow motivational words and cliche stuff. They waste your time. Some of these people who present themselves as hugely successful also give talks and write books.   There are so many books on financial advice, self-improvement, love, etc and some people actually try to read them. They are a waste of time, mostly.   When you start reading a dozen books on finance you realize that they all say the same stuff.   You are not going to live forever in the learning phase. Don't procrastinate by reading bull-shit or the same good knowledge in 10 books. What we ought to do is choose wisely.   Yes. A good book can change your life, given you do what it asks you to do.   All the books I have named up to now are worthy of reading. Tim Ferriss, Simon Sinek, Robert Greene — these guys are worthy of reading. These guys teach what others don't. Their books are unique and actually, come from relevant and successful people.   When Richard Branson writes a book about entrepreneurship, go read it. Every line in that book is said by one of the greatest entrepreneurs of our time.   When a Chinese millionaire( he claims to be) Youtuber who releases a video titled “Why reading books keeps you broke” and a year later another one “My recommendation of books for grand success” you should be wise to tell him to jump from Victoria Falls.   These self-improvement gurus sell you delusions.   They say they have those little tricks that only they know that if you use, everything in your life will be perfect. Those little tricks. We are just “making of a to-do-list before sleeping” away from becoming the next Bill Gates.   There are no little tricks.   There is no success-mantra.   Self-improvement is a trap for 99% of the people. You can't do that unless you are very, very strong.   If you are looking for easy ways, you will only keep wasting your time forgetting that your time on this planet is limited, as alive humans that is.   Also, I feel that people who claim to read like a book a day or promote it are idiots. You retain nothing. When you do read a good book, you read slow, sometimes a whole paragraph, again and again, dwelling on it, trying to internalize its knowledge. You try to understand. You think. It takes time.   It's better to read a good book 10 times than 1000 stupid ones.   So be choosy. Read from the guys who actually know something, not some wannabe ‘influencers’.   Edit: Think And Grow Rich was written as a result of a project assigned to Napoleon Hill by Andrew Carnegie(the 2nd richest man in recent history). He was asked to study the most successful people on the planet and document which characteristics made them great. He did extensive work in studying hundreds of the most successful people of that time. The result was that little book.   Nowadays some people just study Instagram algorithms and think of themselves as a Dale Carnegie or Anthony Robbins. By Nupur Nishant, Quora Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • there is no avoiding loses to be honest, its just how the market is. you win some and hopefully more, but u do lose some. 
    • $CSCO Cisco Systems stock, nice top of range breakout, from Stocks to Watch at https://stockconsultant.com/?CSCOSEPN Septerna stock watch for a bottom breakout, good upside price gap
×
×
  • Create New...

Important Information

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