Page 1 of 3
1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Wed Oct 17, 2012 4:50 pm
by nastyhabit
Hi,
i play on different sites and have different rakeback on each one. i would like to display them all in 1 graph.
i now know how to display RB for 1 site... but i want the graph to display 1 rakebback $ that includes all my different sites, like hem1 does.
how can i do this?
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Wed Oct 17, 2012 5:21 pm
by kraada
If you create a custom stat which adds up your other rakeback stats it should display on the graph just fine.
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Wed Oct 17, 2012 7:14 pm
by nastyhabit
i have an alias with a couple of sites under it, how do i create different RB for each one (adding them up in the end should be easy) but how does it create different RB for each site?
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Thu Oct 18, 2012 3:40 am
by WhiteRider
To calculate rakeback differently by site you'd need to include a check for the site ID in the column used, as Kraada's PokerStars VPPs stat does.
For example:
cash_hand_summary.id_site = 100
100 is PokerStars - if you tell us what sites you're interested in we'll give you the code numbers, or you can see the value in the tooltip if you mouse-over the site icon in a report.
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Mon Oct 22, 2012 11:01 am
by nastyhabit
i am interested in:
- merge
- 888
- ongame
- ipoker
- partypoker
i did see that when hovering over the site icon that it shows the value,
but since i think there is many people out there that want this exact same thing (i in act know of a couple myself)
wouldnt it be possible for you to create those stats for everyone, and we just have to adjust the rb% by ourselves?
that would be really cool !
thanks
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Mon Oct 22, 2012 12:16 pm
by WhiteRider
OK, I guess you will have seen the site IDs then, but just to confirm:
Merge = 2100
888 = 900
OnGame = 600
iPoker = 400
Party = 200
Unfortunately there are a large number of different rakeback deals and options across the many different sites that PokerTracker supports and it isn't practical for us to include stats for this constantly changing market.
One thing to be aware of is that the OnGame points calculations ("Essence") are not publicly available so you won't be able to build a stat to calculate that.
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Mon Oct 22, 2012 1:11 pm
by nastyhabit
i just tried, but i am sorry, i dont completely understand what you said. about checking for the site id. in kraada´s vpp stat, it does not check for a site.
nor does it anywhere else.
can you maybe post a line of how you would go about creating this stat.
example:
(site id)amt_won_curr_conv + amt_rake_weighted_contributed_curr_conv * .41
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Mon Oct 22, 2012 4:20 pm
by WhiteRider
The site check needs to be done in the column, not in the stat, as it needs to be checked for every hand.
For example; say your Merge rakeback is based on 30% of weighted contributed rake you could duplicate the amt_rake_weighted_contributed column and change it like this:
amt_rake_back_merge =
sum( if[ cash_hand_summary.id_site = 2100, 0.30 * (cash_hand_player_statistics.amt_bet_ttl / cash_hand_summary.amt_pot) * cash_hand_summary.amt_rake, 0 ])
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Tue Oct 23, 2012 6:28 pm
by nastyhabit
we seem to not be able to figure that out. also the merge RB does not have such lines.
Re: 1 graph for different rakebacks
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Posted:
Wed Oct 24, 2012 4:00 am
by WhiteRider
If you tell us exactly how your rakeback is calculated we'll be able to help you build the stat, but we need to know what the rakeback is based on.