Free taxware????? Can't happen. At some point money comes into the picture. Besides how are you going to sell your subscriber base to Mr. Big.
Announcement
Collapse
No announcement yet.
Interested in joing forces and creating our own tax software?
Collapse
X
-
I have great respect for people that dive into developing tax programs and all that it entails. I would imagine that it would take several years before such a plan would be functional for preparer use. Each of those years' prototype would have to tested and tested for accuracy as a trial return.
I would think that once the forms and functions are set up (and working) it will be a matter of making adjustments to deal with current tax law (correctly). Difficult yes, but even the best of them still issue a warning>" We take no responsibility for errors and you will need to verify the results before the tax return is finalized" (or something like that).
Most new companies have an ulterior motive. Say 10 years from now it is hoped to have 5,000+ subscribers and its market value at $2,000,000+. Then along comes MR. Big to eat it up. Mr. Big is now Mr. Bigger.
Freeware???? Can't happen. Everything costs or will cost Money.This post is for discussion purposes only and should be verified with other sources before actual use.
Many times I post additional info on the post, Click on "message board" for updated content.
Comment
-
easy to edit is a problem
The IRS has strict requirements for tax software that are collectively designed to make sure if calculates things correctly and does not in any way make the taxing agencies' jobs harder. If I as the user of a software package make any change in that package then before I use it to prepare a return for pay or to electronically file even my own return I must get it approved. I am a fan of the open source paradigm for software development but I just don't see it working for tax software for individuals or professionals.
To the original poster - It sounds like you are a tax professional with good knowledge of writing software. You might well be able to develop a program for your own use and get it approved for use in 2010 on 2009 returns. If you want to make your code available to others, I would check with a knowledgeable attorney for liability issues first. You could also choose to sell your package. Tax Slayer is a company that started out writing software for its own offices and at some point started selling their products outside of their business.
I have only used your tax estimator once but its result is in line with what I calculated doing an estimate by hand. I personally think a tax estimator is a very fine idea for an open source software product. As far as I know, it is no more regulated by the government than most OS projects and the ability of those so inclined to tweak it would be a plus.
Comment
-
@ BOB W -I have great respect for people that dive into developing tax programs and all that it entails. I would imagine that it would take several years before such a plan would be functional for preparer use.
Most new companies have an ulterior motive. Say 10 years from now it is hoped to have 5,000+ subscribers and its market value at $2,000,000+. Then along comes MR. Big to eat it up. Mr. Big is now Mr. Bigger.
Comment
-
The IRS has strict requirements for tax software that are collectively designed to make sure if calculates things correctly and does not in any way make the taxing agencies' jobs harder.
If I as the user of a software package make any change in that package then before I use it to prepare a return for pay or to electronically file even my own return I must get it approved.
If you want to make your code available to others, I would check with a knowledgeable attorney for liability issues first.
Disclaimer Of Warranties. EXCEPT AS EXPRESSLY PROVIDED ABOVE, THE SOFTWARE, SERVICES AND TAX ADVICE ARE PROVIDED "AS-IS" AND, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, "COMPANY", ITS AFFILIATES, LICENSORS, PARTICIPATING FINANCIAL INSTITUTIONS, THIRD-PARTY CONTENT OR SERVICE PROVIDERS, RETAILERS, DISTRIBUTORS, DEALERS AND SUPPLIERS (COLLECTIVELY, "SUPPLIERS") DISCLAIM ALL GUARANTEES AND WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY REGARDING THE SOFTWARE, SERVICES, TAX ADVICE, CD AND RELATED MATERIALS, INCLUDING ANY WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE, TITLE, MERCHANTABILITY, AND NON-INFRINGEMENT. "COMPANY" DOES NOT WARRANT THAT THE SOFTWARE, TAX ADVICE OR SERVICES ARE SECURE, FREE FROM BUGS, VIRUSES, INTERRUPTION, ERRORS, OR OTHER PROGRAM LIMITATIONS.
What we really need is some backing. Lets stay positive and lets get this rolling. Very simple for example, I have been working on a comparison chart for 2007 to 2008. Can you guys help me verify that I am not incorrect.
Here is the link.
Download RushTax taxEngine for free. The RushTax taxEngine open source project is a PHP 5 object-oriented library providing a free, easy to use, accurate, encapsulated and generalized tax computation library designed to be dropped into any php 5 application.
I haven't received my new TaxBook yet.
Thanks,
RogerLast edited by Rchinchilla; 12-22-2008, 11:42 PM.
Comment
-
Suppose you do get people to contribute to this project how will their participation get recognized for any "down the road" rewards? I think you need a contractual agreement making them a partner for future sale or for a revenue stream if it becomes marketable.
(If TTB was to develop a tax program I'm sure many of us would use their program because our confidence in their product(s) would be there.)
It takes years to develop all the bells and whistles necessary to have a marketable program. But in todays world of "intergration" with other accounting programs, tax software is just a piece of the total needs of an accounting office. For Tax Preparers who only do 1040 it may be OK but even they could outgrow your program.
I guess I'm just spoiled with all the highend programs out there and I am willing to spend the bucks for them. To me, intergration saves me money.This post is for discussion purposes only and should be verified with other sources before actual use.
Many times I post additional info on the post, Click on "message board" for updated content.
Comment
-
Suppose you do get people to contribute to this project how will their participation get recognized for any "down the road" rewards?
What I am trying to say is that your reward would be an inexpensive tax software solution. The reason its inexpensive is because you and others contributed their time not only to research the subject matter but to convert it into the following:
//************************************************** *************************
//// Calculation For Tax Payer Self Employment Tax
// ************************************************** *************************
function CalcTPSETax()
{
global $Estimator;
//All rules for this section are located on Schedule SE Page 2
//$EN | Net Taxpayer Self-Employment Income = Taxpayers Self-Employment Income (minus) Taxpayers Self-Employment Expenses
$NetTPSEInc = FormatDollarAmont( $Estimator->tp_se_income) -
FormatDollarAmont( $Estimator->tp_se_expense);
//$EN | If the Taxpayers Self-Employment Income (times) 92.35% is under $400 than there is no tax.
if ( (0.9235 * $NetTPSEInc) < 400 )
{
$res = 0;
}
else
{
// $EN | If not then lets figure out the Taxpayer Self-Employment Base.
// Taxpayers Self-Employment Base (equals) 92.35% (times) the greater of 0 or the Net Taxpayer Self-Employment Income.
$TPSEBase = ( 0.9235 * max(0, $NetTPSEInc ));
//Now that we have calculated the TPSEBase we must calculate the result.
// Result (equals) 2.9% (times) the TPSEBase (plus) 12.4% (times) the minimum of either the TPSEBase or the maximum of the RefCTC_Threshold_Wages - Self Wages.
$res = FormatDollarAmont( 0.029 * $TPSEBase ) + FormatDollarAmont( 0.124 * min( $TPSEBase, max(0, (RefCTC_Threshold_Wages - $Estimator->self_wages))));
}
return $res;
}
Comment
-
I was cynical at first. Why in the world would someone offer free tax software considering the huge amount of time and expense required with such a project.
Then I thought about what I pay for tax software. I just spent $1,500 renewing my ProSeries software (I was late in getting the early bird renewal price and free e-file). If I didn’t have to spend $1,000 or $1,500 per year, I might be willing to spend a few hours helping to contribute to a community based program where thousands of participants share in providing feedback on how it should work. As I understand it, these people are not asking us to be programmers. Simply provide feedback as professionals on how well it works.
I’m not sure what the programmers would get out of this project, but I know the benefit I might eventually get for my time. Free software would be the equivalent of having to do 15 to 20 tax returns for clients each year. It could be compared to the time we all spend on this message board giving away free advice to one another in exchange for the intangible value of the education we all get from participating.Last edited by Bees Knees; 12-24-2008, 10:50 AM.
Comment
-
Programming is an art form
Bees Knees - YOU HIT THE NAIL ON THE HEAD. I am not as eloquent as you are that's why it took me about 10 posts to say what you said in 1.
Some people may say "Well its free software, you get what you pay for", but as Bees Knees said many professionals offer SOUND advice that I would use any given day. The advice is free but it still holds a lot of value.
For example: Can someone help me with these questions.
What is the Education Credit cutoff for MFJ and for Non-MFJ? and where can this information be found?
For 2007 MFJ it was - $104,000
For 2007 Non-MFJ it was - $52,000
Is it the same this year?Last edited by Rchinchilla; 12-24-2008, 12:55 PM.
Comment
-
That information would be in the 2008 IRS Pub 17, available at http://www.irs.gov/pub/irs-pdf/p17.pdf
It would also be available in thetaxbook.
It would also be useful to take down this address:
That's the draft forms link at IRS.gov. So you could check draft forms for information before the final forms are released and then just update if they make any changes. Since a lot of tax development gets done before final forms are out it's useful to have.
Comment
-
Are you planning on state tax forms to be included? Tax software is worthless without state tax forms.
One of the problems with counting on professional tax preparers is that states and the federal government issue very late changes when the tax season is heating up. That's exactly when tax professionals don't have time to deal with software problems and updating the software code.
The idea of open source is great and all but tax software is extremely time sensitive in it's development and waiting even a week or two to issue updates can have massive implications. TRX Alliance is basically the cost of 2 relatively small tax returns. Considering the cost versus the concern of a complete software meltdown mid-February isn't worth it for me.
Last year I purchased TaxExact Pro for a few bucks to test it out. They promise delivery of software for all 50 states. April 1st they were at 15 states and one of those I did a return for was so flawed you couldn't even do the simplest of returns.
Good Luck with your project.
Comment
-
Roberts I understand what you mean. We are trying to develop with that in mind. Tax software is the only software of its kind, meaning updates are crucial and frequent. We are taking all of this into account while developing this software. Being open source creates the ability for a lot of eyes to see the underlying code. We are also going to be releasing tables that state the calculations we are using. Initially we do not recommend for this to be a production product but eventually it will be very powerful.
We understand that this is no easy task but if Intuit and CCH can do it, the tax professionals can certainly do it. There are more tax professionals that work independently than CCH currently or previously employed combined.
Please understand me, I have nothing against these companies they just don't offer what is needed. In many cases they don't handle things with sensitivity for example how these software companies have treated the clients of these products: Intellitax, ATX & ProSeries Express.
Comment
Disclaimer
Collapse
This message board allows participants to freely exchange ideas and opinions on areas concerning taxes. The comments posted are the opinions of participants and not that of Tax Materials, Inc. We make no claim as to the accuracy of the information and will not be held liable for any damages caused by using such information. Tax Materials, Inc. reserves the right to delete or modify inappropriate postings.
Comment