![]() |
|
#1
|
|||
|
|||
![]()
Two cookies for the first person who tells me how to run and use the script in this thread:
What the hell do I do with that code? Start to finish.
__________________
Get well soon, MCA! |
#2
|
||||
|
||||
![]()
You don't need to run that. Just do the session sort thing that you showed me the other day - it works like a champ.
As for the tax problem, your gripe has nothing to do with poker - It has to do with the IRS and the "Standard Deduction." This is the exact same "problem" you would have if that $15k loss was due to mortgage interest or charitable contributions or anything else that one would itemize. Basically, you need to come up with $9500 in itemized deductions just to beat the Standard Deduction - just to "break even," based on how you are looking at it. This is just the way it is. Instead of looking at it as how unfair this is, look at it on the other side. Your 15k in deductions are what you deserve to write off, so it all works out. The $9500 that you COULD HAVE written off was a gift that you no longer get, because $15k > $9500. Sure, lots of people out there still get their gift, but you don't, because you get MORE than that now. Yes, it would be very nice if the IRS would allow us to report our net and pay tax on that, instead of reporting our total wins and total losses... but they don't. |
#3
|
|||
|
|||
![]()
I do need to run it. I want to look at the numbers defining each day as a "session" and see what the difference is. I'm running it in H&R block, so I can do it a couple different ways.
And I see your point on the deduction. It still sucks though. And I'm gonna bitch all the live long day.
__________________
Get well soon, MCA! |
#4
|
|||
|
|||
![]()
Fine, 3 fucking cookies. Some one tell me how to use it damn it!
__________________
Get well soon, MCA! |
#6
|
|||
|
|||
![]()
That's helpful.
__________________
Get well soon, MCA! |
#7
|
||||
|
||||
![]()
Do you still have the (default) Microsoft Access database underlying PokerTracker? Or have you changed it to PostgreSQL? Do you have Microsoft Access?
|
#8
|
||||
|
||||
![]()
I got my own stats out in a reasonably useful form... these were the steps:
1. Open Microsoft Access. File->Open, browse to c:\PokerTracker\ptrack.mdb and open that. 2. I'm no Access expert, so I'm sure there's a better way to get there, but... click on "Queries" under Objects, click "Create Query in Design view", close the top window that opens up, and select View->SQL view. 3. Now you can paste in the query from the PT forum (the first one) and put in your username. If you have multiple names, or different names on different sites, add the other names at the end of the WHERE statement, as in WHERE p.screen_name='MathBabe' or p.screen_name='MathGrrl'. 4. Click the red exclamation mark and you should see the report. You'll probably want to copy and paste it into Excel so you can sum up the amounts won. Last edited by MathBabe; 02-14-06 at 03:28 PM. |
#9
|
||||
|
||||
![]()
I'm giving this thread a little bump and including the SQL here too, so we'll have it. I got back from the accountant today, and I can say that pshabi is right - reporting sessions day by day is the way to go. I'm on my wayu out now - I'll explain more later.
Here is the SQL: SELECT MONTH(s.session_start) AS SessionMonth, DAY(s.session_start) AS SessionDay, YEAR(s.session_start) AS SessionYear, SUM(amount_won) AS AmountWon FROM players AS p INNER JOIN [session] AS s ON s.player_id=p.player_id WHERE p.screen_name='Rogue23' or p.screen_name='TalkingPoker' GROUP BY MONTH(s.session_start), DAY(s.session_start), YEAR(s.session_start) ORDER BY YEAR(s.session_start), MONTH(s.session_start), DAY(s.session_start); The only parts you need to change are the bolded parts above and you can add as many more "or" clauses as you like. |
#10
|
||||
|
||||
![]()
Ok, here's the deal about this, once and for all. I'm going to make up numbers to help illustrate how things works.
In order to avoid that whole "Tax Evasion" thing that the IRS frowns upon for some crazy reason, you need to report every last dollar that you earned playing poker (and babysitting and mowing lawns and dancing at the local strip club, etc). The problem comes about in that you can't just report that you won $500 playing poker in 2005. Instead, the IRS wants you to report that you won $192,500 and lost $192,000 (note that the net is still $500). No, this does not put you in a higher tax bracket, and yes, you still only end up paying taxes on $500 more than you would have had you not had any poker income to report. However, the problem comes about because now, instead of having a $50,000 per year salary (from your hypothetical day job) + $500 in poker winnings = $50,500 that you need to pay taxes on, you actually have a $50,000 salary + $192,500 in poker winnings = $242,500 in total income, less $192,000 in poker losses = $50,500 that you need to pay taxes on. Well, that doesn't look so bad. Note that the bold amounts still match, so the bottom line due to Uncle Sam should be exactly the same, right? Wrong! Why? Because, when determining your eligibility for a number of other deductions/credits, the IRS looks at the BIG number (the one before the poker losses were written off - in this case, $242,500). So, while you really only earned $50,500 for the year, the IRS sees the $242,500 number and decides you have plenty of money and shouldn't be allowed to write off a number of things that you could otherwise. And that sucks. Unfortunately, that's just the way it is. Breaking this down a bit more, where does the data come from that makes up that $192,500 in wins and the $192,000 in losses I mentioned above? Well, those are your "session" totals from all your winning sessions and all your losing sessions. Yes, you need to add them all up and report the totals (I hope you are keeping good records!). Unfortunately, in this day and age and with online poker, the IRS's definition of a "session" doesn't really apply any more, and it's very vague at best. Playing online, you can easily play in 4, 5, 6, or even 12 games at once and easily be involved in 20+ different virtual tables without your physical ass ever leaving it's physical chair. So really, that was all one "session" for you. This is where the script above comes in. By running it, you are able to combine your multiple virtual table sessions into more reasonable playing sessions. It groups them by day, which is not perfect, but is pretty good and (IMO anyway) very reasonable. What's the net effect of this? Well, your $192,500 and $192,000 numbers will be reduced to something more like $68,500 and $68,000 (again, I'm totally making up these numbers). So now your total income will be your $50,000 salary + $68,500 in poker winnings = $118,500 in total income, less $68,000 in poker losses = $50,500 that you need to pay taxes on. Yes, we're still at the magical $50,500 number... BUT.... note that that big number went from $242,500 down to $118,500. Yes, this is still WAY higher than your actual $50,500 for the year (and this will still cost you), but this may allow you to keep some of those deductions that the larger number would have caused you to miss out on. Overall, the system pretty much sucks. And because it's so ridiculous, I can see why so many people choose to ignore their poker income all together when reporting their taxes. This is a very big risk, of course, but when it's this much of a pain in the ass, can the IRS really blame people? Anyway, that's that. Hopefully that helps explain things to those who are lost, which as best I can tell from this site and others that I've visited is pretty much everyone. I'm not an accountant or a tax advisor or anything like that, nor do I claim that everything written here is 100% accurate. This is simply my understanding of how things work. |
#11
|
||||
|
||||
![]()
I got lost somewhere between the two bolded sentences.... not quite sure where though...
![]() ![]()
__________________
"Most of the money you'll win at poker comes not from the brilliance of your own play, but from the ineptitude of your opponents." |
#12
|
||||
|
||||
![]()
Next time I'll use smaller words. Hopefully you won't get audited in the mean time.
|
#13
|
|||
|
|||
![]()
Do bonuses you've earned through various sites count as taxable income as well?
|
![]() |
|
|