Datasets:
File size: 166,625 Bytes
f612677 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 | {"_id": "30_v1", "text": "Can I pay off my credit card balance to free up available credit?"}
{"_id": "30_v2", "text": "Can I pay off my credit card balance to free up available credit?"}
{"_id": "30_v3", "text": "Can I pay off my credit card balance to free up available credit?"}
{"_id": "48_v1", "text": "Should my husband's business pay my business?"}
{"_id": "48_v2", "text": "Should my husband's business pay my business?"}
{"_id": "48_v3", "text": "Should my husband's business pay my business?"}
{"_id": "51_v1", "text": "Full-time work + running small side business: Best business structure for taxes?"}
{"_id": "51_v2", "text": "Full-time work + running small side business: Best business structure for taxes?"}
{"_id": "51_v3", "text": "Full-time work + running small side business: Best business structure for taxes?"}
{"_id": "53_v1", "text": "Finding a good small business CPA?"}
{"_id": "53_v2", "text": "Finding a good small business CPA?"}
{"_id": "53_v3", "text": "Finding a good small business CPA?"}
{"_id": "66_v1", "text": "How to treat miles driven to the mechanic, gas station, etc when calculating business use of car?"}
{"_id": "66_v2", "text": "How to treat miles driven to the mechanic, gas station, etc when calculating business use of car?"}
{"_id": "66_v3", "text": "How to treat miles driven to the mechanic, gas station, etc when calculating business use of car?"}
{"_id": "449_v1", "text": "Allocation between 401K/retirement accounts and taxable investments, as a young adult?"}
{"_id": "449_v2", "text": "Allocation between 401K/retirement accounts and taxable investments, as a young adult?"}
{"_id": "449_v3", "text": "Allocation between 401K/retirement accounts and taxable investments, as a young adult?"}
{"_id": "461_v1", "text": "I have $100,000 in play money\u2026 what to do?"}
{"_id": "461_v2", "text": "I have $100,000 in play money\u2026 what to do?"}
{"_id": "461_v3", "text": "I have $100,000 in play money\u2026 what to do?"}
{"_id": "491_v1", "text": "Do I owe taxes if my deductions are higher than my income?"}
{"_id": "491_v2", "text": "Do I owe taxes if my deductions are higher than my income?"}
{"_id": "491_v3", "text": "Do I owe taxes if my deductions are higher than my income?"}
{"_id": "502_v1", "text": "Getting financial advice: Accountant vs. Investment Adviser vs. Internet/self-taught?"}
{"_id": "502_v2", "text": "Getting financial advice: Accountant vs. Investment Adviser vs. Internet/self-taught?"}
{"_id": "538_v1", "text": "Ways to invest my saved money in Germany in a halal way?"}
{"_id": "538_v2", "text": "Ways to invest my saved money in Germany in a halal way?"}
{"_id": "538_v3", "text": "Ways to invest my saved money in Germany in a halal way?"}
{"_id": "544_v1", "text": "Are banks really making less profit when interest rates are low?"}
{"_id": "544_v2", "text": "Are banks really making less profit when interest rates are low?"}
{"_id": "544_v3", "text": "Are banks really making less profit when interest rates are low?"}
{"_id": "550_v1", "text": "How can Schwab afford to refund all my ATM fees?"}
{"_id": "550_v2", "text": "How can Schwab afford to refund all my ATM fees?"}
{"_id": "550_v3", "text": "How can Schwab afford to refund all my ATM fees?"}
{"_id": "567_v1", "text": "Will depositing $10k+ checks each month raise red flags with the IRS?"}
{"_id": "567_v2", "text": "Will depositing $10k+ checks each month raise red flags with the IRS?"}
{"_id": "567_v3", "text": "Will depositing $10k+ checks each month raise red flags with the IRS?"}
{"_id": "578_v1", "text": "What does the phrase \u201cTo make your first million\u201d mean?"}
{"_id": "578_v2", "text": "What does the phrase \u201cTo make your first million\u201d mean?"}
{"_id": "625_v1", "text": "Where should I invest to hedge against the stock market going down?"}
{"_id": "625_v2", "text": "Where should I invest to hedge against the stock market going down?"}
{"_id": "671_v1", "text": "Does the low CAD positively or negatively impact Canadian Investors?"}
{"_id": "671_v2", "text": "Does the low CAD positively or negatively impact Canadian Investors?"}
{"_id": "671_v3", "text": "Does the low CAD positively or negatively impact Canadian Investors?"}
{"_id": "934_v1", "text": "Can a company charge you for services never requested or received?"}
{"_id": "934_v2", "text": "Can a company charge you for services never requested or received?"}
{"_id": "934_v3", "text": "Can a company charge you for services never requested or received?"}
{"_id": "1021_v1", "text": "How to save money for future expenses"}
{"_id": "1021_v2", "text": "How to save money for future expenses"}
{"_id": "1021_v3", "text": "How to save money for future expenses"}
{"_id": "1147_v1", "text": "Does borrowing from my 401(k) make sense in my specific circumstance?"}
{"_id": "1148_v1", "text": "Would it make sense to buy a rental property as an LLC and not in my own name?"}
{"_id": "1148_v2", "text": "Would it make sense to buy a rental property as an LLC and not in my own name?"}
{"_id": "1148_v3", "text": "Would it make sense to buy a rental property as an LLC and not in my own name?"}
{"_id": "1170_v1", "text": "Why is mortgage interest deductible in the USA for a house you live in?"}
{"_id": "1170_v2", "text": "Why is mortgage interest deductible in the USA for a house you live in?"}
{"_id": "1170_v3", "text": "Why is mortgage interest deductible in the USA for a house you live in?"}
{"_id": "1177_v1", "text": "Investment strategy for a 20 year old with about 30k in bank account"}
{"_id": "1177_v2", "text": "Investment strategy for a 20 year old with about 30k in bank account"}
{"_id": "1177_v3", "text": "Investment strategy for a 20 year old with about 30k in bank account"}
{"_id": "1196_v1", "text": "What risks are there acting as a broker between PayPal and electronic bank transfers?"}
{"_id": "1196_v2", "text": "What risks are there acting as a broker between PayPal and electronic bank transfers?"}
{"_id": "1196_v3", "text": "What risks are there acting as a broker between PayPal and electronic bank transfers?"}
{"_id": "1275_v1", "text": "What are the contents of fixed annuities?"}
{"_id": "1275_v2", "text": "What are the contents of fixed annuities?"}
{"_id": "1342_v1", "text": "How to keep control of shared expenses inside marriage?"}
{"_id": "1342_v2", "text": "How to keep control of shared expenses inside marriage?"}
{"_id": "1342_v3", "text": "How to keep control of shared expenses inside marriage?"}
{"_id": "1367_v1", "text": "Is it safer to send credit card number via unsecured website form or by e-mail? What safer options are there?"}
{"_id": "1367_v2", "text": "Is it safer to send credit card number via unsecured website form or by e-mail? What safer options are there?"}
{"_id": "1367_v3", "text": "Is it safer to send credit card number via unsecured website form or by e-mail? What safer options are there?"}
{"_id": "1373_v1", "text": "Free \u201cRich Dad\u201d education, with \u201cfree gift\u201d: Is it legitimate, or is it a sales ploy?"}
{"_id": "1373_v2", "text": "Free \u201cRich Dad\u201d education, with \u201cfree gift\u201d: Is it legitimate, or is it a sales ploy?"}
{"_id": "1392_v1", "text": "What gives non-dividend stocks value to purchasers? [duplicate]"}
{"_id": "1392_v2", "text": "What gives non-dividend stocks value to purchasers? [duplicate]"}
{"_id": "1392_v3", "text": "What gives non-dividend stocks value to purchasers? [duplicate]"}
{"_id": "1412_v1", "text": "Strategies for paying off my Student loans"}
{"_id": "1412_v2", "text": "Strategies for paying off my Student loans"}
{"_id": "1439_v1", "text": "Automatic transaction on credit card to stay active"}
{"_id": "1439_v2", "text": "Automatic transaction on credit card to stay active"}
{"_id": "1439_v3", "text": "Automatic transaction on credit card to stay active"}
{"_id": "1443_v1", "text": "Can I claim a tax deduction for working from home as an employee? I work there 90% of the time"}
{"_id": "1443_v2", "text": "Can I claim a tax deduction for working from home as an employee? I work there 90% of the time"}
{"_id": "1443_v3", "text": "Can I claim a tax deduction for working from home as an employee? I work there 90% of the time"}
{"_id": "1446_v1", "text": "Do I need to pay Income Tax if i am running a escrow service in India"}
{"_id": "1446_v2", "text": "Do I need to pay Income Tax if i am running a escrow service in India"}
{"_id": "1446_v3", "text": "Do I need to pay Income Tax if i am running a escrow service in India"}
{"_id": "1447_v1", "text": "Do I need to pay quarterly 1040 ES and 941 (payroll)?"}
{"_id": "1447_v2", "text": "Do I need to pay quarterly 1040 ES and 941 (payroll)?"}
{"_id": "1447_v3", "text": "Do I need to pay quarterly 1040 ES and 941 (payroll)?"}
{"_id": "1449_v1", "text": "Theoretically, if I bought more than 50% of a company's stocks, will I own the company?"}
{"_id": "1449_v2", "text": "Theoretically, if I bought more than 50% of a company's stocks, will I own the company?"}
{"_id": "1449_v3", "text": "Theoretically, if I bought more than 50% of a company's stocks, will I own the company?"}
{"_id": "1456_v1", "text": "Will I have to pay taxes for Australia if I have an Australian bank account?"}
{"_id": "1456_v2", "text": "Will I have to pay taxes for Australia if I have an Australian bank account?"}
{"_id": "1456_v3", "text": "Will I have to pay taxes for Australia if I have an Australian bank account?"}
{"_id": "1461_v1", "text": "Do I make money in the stock market from other people losing money?"}
{"_id": "1461_v2", "text": "Do I make money in the stock market from other people losing money?"}
{"_id": "1461_v3", "text": "Do I make money in the stock market from other people losing money?"}
{"_id": "1466_v1", "text": "Difference between a mortgage and buy-to-let in UK"}
{"_id": "1466_v2", "text": "Difference between a mortgage and buy-to-let in UK"}
{"_id": "1466_v3", "text": "Difference between a mortgage and buy-to-let in UK"}
{"_id": "1476_v1", "text": "Can a shareholder be liable in case of bankruptcy of one of the companies he invested in?"}
{"_id": "1476_v2", "text": "Can a shareholder be liable in case of bankruptcy of one of the companies he invested in?"}
{"_id": "1476_v3", "text": "Can a shareholder be liable in case of bankruptcy of one of the companies he invested in?"}
{"_id": "1477_v1", "text": "Should I deduct or capitalize the cost to replace a water heater in my rental property? (details Below)"}
{"_id": "1477_v2", "text": "Should I deduct or capitalize the cost to replace a water heater in my rental property? (details Below)"}
{"_id": "1477_v3", "text": "Should I deduct or capitalize the cost to replace a water heater in my rental property? (details Below)"}
{"_id": "1483_v1", "text": "What types of receipts do I need to keep for itemized tax deductions?"}
{"_id": "1483_v2", "text": "What types of receipts do I need to keep for itemized tax deductions?"}
{"_id": "1485_v1", "text": "Are COBRA premiums deductible when self-employed?"}
{"_id": "1485_v2", "text": "Are COBRA premiums deductible when self-employed?"}
{"_id": "1485_v3", "text": "Are COBRA premiums deductible when self-employed?"}
{"_id": "1505_v1", "text": "What options do I have at 26 years old, with 1.2 million USD?"}
{"_id": "1505_v2", "text": "What options do I have at 26 years old, with 1.2 million USD?"}
{"_id": "1505_v3", "text": "What options do I have at 26 years old, with 1.2 million USD?"}
{"_id": "1545_v1", "text": "What to bear in mind when considering a rental home as an investment?"}
{"_id": "1549_v1", "text": "If banksimple.com is not a bank, what is it?"}
{"_id": "1549_v2", "text": "If banksimple.com is not a bank, what is it?"}
{"_id": "1549_v3", "text": "If banksimple.com is not a bank, what is it?"}
{"_id": "1555_v1", "text": "If I pay someone else's property taxes, can I use it as a deduction on my income tax return?"}
{"_id": "1576_v1", "text": "What purchases, not counting real estate, will help me increase my cash flow?"}
{"_id": "1576_v2", "text": "What purchases, not counting real estate, will help me increase my cash flow?"}
{"_id": "1576_v3", "text": "What purchases, not counting real estate, will help me increase my cash flow?"}
{"_id": "1583_v1", "text": "Optimal way to use a credit card to build better credit?"}
{"_id": "1583_v2", "text": "Optimal way to use a credit card to build better credit?"}
{"_id": "1583_v3", "text": "Optimal way to use a credit card to build better credit?"}
{"_id": "1587_v1", "text": "How is income tax calculated in relation to selling used items?"}
{"_id": "1587_v2", "text": "How is income tax calculated in relation to selling used items?"}
{"_id": "1587_v3", "text": "How is income tax calculated in relation to selling used items?"}
{"_id": "1604_v1", "text": "If I have some old gold jewellery, is it worth it to sell it for its melt value?"}
{"_id": "1615_v1", "text": "Can LLC legally lend money to a friend?"}
{"_id": "1615_v2", "text": "Can LLC legally lend money to a friend?"}
{"_id": "1615_v3", "text": "Can LLC legally lend money to a friend?"}
{"_id": "1633_v1", "text": "How much cash on hand should one have?"}
{"_id": "1633_v2", "text": "How much cash on hand should one have?"}
{"_id": "1633_v3", "text": "How much cash on hand should one have?"}
{"_id": "1703_v1", "text": "Is it possible to borrow money to accrue interest, and then use that interest to pay back the borrower + fees?"}
{"_id": "1707_v1", "text": "Are there any Social Responsibility Index funds or ETFs?"}
{"_id": "1707_v2", "text": "Are there any Social Responsibility Index funds or ETFs?"}
{"_id": "1707_v3", "text": "Are there any Social Responsibility Index funds or ETFs?"}
{"_id": "1749_v1", "text": "Investment strategies for young adults with entrepreneurial leanings?"}
{"_id": "1749_v2", "text": "Investment strategies for young adults with entrepreneurial leanings?"}
{"_id": "1749_v3", "text": "Investment strategies for young adults with entrepreneurial leanings?"}
{"_id": "1758_v1", "text": "Is there a tax deduction for renting office space in service of employer?"}
{"_id": "1758_v2", "text": "Is there a tax deduction for renting office space in service of employer?"}
{"_id": "1758_v3", "text": "Is there a tax deduction for renting office space in service of employer?"}
{"_id": "1807_v1", "text": "What happens when PayPal overdrafts a checking account (with an ample backup funding source available)?"}
{"_id": "1807_v2", "text": "What happens when PayPal overdrafts a checking account (with an ample backup funding source available)?"}
{"_id": "1807_v3", "text": "What happens when PayPal overdrafts a checking account (with an ample backup funding source available)?"}
{"_id": "1856_v1", "text": "Is it possible to get life insurance as a beneficiary before the person insured dies?"}
{"_id": "1856_v2", "text": "Is it possible to get life insurance as a beneficiary before the person insured dies?"}
{"_id": "1857_v1", "text": "If I go to a seminar held overseas, may I claim my flights on my tax return?"}
{"_id": "1857_v2", "text": "If I go to a seminar held overseas, may I claim my flights on my tax return?"}
{"_id": "1857_v3", "text": "If I go to a seminar held overseas, may I claim my flights on my tax return?"}
{"_id": "1862_v1", "text": "Is Bitcoin a commodity or a currency [duplicate]"}
{"_id": "1862_v2", "text": "Is Bitcoin a commodity or a currency [duplicate]"}
{"_id": "1996_v1", "text": "What happens to your ability to borrow money based on our joint finances?"}
{"_id": "1996_v2", "text": "What happens to your ability to borrow money based on our joint finances?"}
{"_id": "1996_v3", "text": "What happens to your ability to borrow money based on our joint finances?"}
{"_id": "2014_v1", "text": "Are there alternatives to double currency account to manage payments in different currencies?"}
{"_id": "2014_v2", "text": "Are there alternatives to double currency account to manage payments in different currencies?"}
{"_id": "2014_v3", "text": "Are there alternatives to double currency account to manage payments in different currencies?"}
{"_id": "2083_v1", "text": "How feasible would it be to retire just maxing out a Roth IRA?"}
{"_id": "2083_v2", "text": "How feasible would it be to retire just maxing out a Roth IRA?"}
{"_id": "2083_v3", "text": "How feasible would it be to retire just maxing out a Roth IRA?"}
{"_id": "2138_v1", "text": "Can I withdraw from my Roth IRA retirement account to fund a startup?"}
{"_id": "2138_v2", "text": "Can I withdraw from my Roth IRA retirement account to fund a startup?"}
{"_id": "2138_v3", "text": "Can I withdraw from my Roth IRA retirement account to fund a startup?"}
{"_id": "2160_v1", "text": "How to maximize small business 401k contribution?"}
{"_id": "2160_v2", "text": "How to maximize small business 401k contribution?"}
{"_id": "2160_v3", "text": "How to maximize small business 401k contribution?"}
{"_id": "2169_v1", "text": "Why invest for the long-term rather than buy and sell for quick, big gains?"}
{"_id": "2169_v2", "text": "Why invest for the long-term rather than buy and sell for quick, big gains?"}
{"_id": "2169_v3", "text": "Why invest for the long-term rather than buy and sell for quick, big gains?"}
{"_id": "2185_v1", "text": "Is it wise to invest in a stock with a large Div yield?"}
{"_id": "2218_v1", "text": "How can a Canadian establish US credit score"}
{"_id": "2218_v2", "text": "How can a Canadian establish US credit score"}
{"_id": "2218_v3", "text": "How can a Canadian establish US credit score"}
{"_id": "2220_v1", "text": "What are some examples of unsecured loans"}
{"_id": "2220_v2", "text": "What are some examples of unsecured loans"}
{"_id": "2220_v3", "text": "What are some examples of unsecured loans"}
{"_id": "2221_v1", "text": "Do I have to pay a capital gains tax if I rebuy different stocks?"}
{"_id": "2221_v2", "text": "Do I have to pay a capital gains tax if I rebuy different stocks?"}
{"_id": "2221_v3", "text": "Do I have to pay a capital gains tax if I rebuy different stocks?"}
{"_id": "2248_v1", "text": "Do you know of any online monetary systems?"}
{"_id": "2248_v2", "text": "Do you know of any online monetary systems?"}
{"_id": "2284_v1", "text": "Live in Florida & work remote for a New York company. Do I owe NY state income tax?"}
{"_id": "2284_v2", "text": "Live in Florida & work remote for a New York company. Do I owe NY state income tax?"}
{"_id": "2284_v3", "text": "Live in Florida & work remote for a New York company. Do I owe NY state income tax?"}
{"_id": "2292_v1", "text": "What is the best way to determine if you should refinance a mortgage?"}
{"_id": "2292_v2", "text": "What is the best way to determine if you should refinance a mortgage?"}
{"_id": "2293_v1", "text": "Moving savings to Canada?"}
{"_id": "2293_v2", "text": "Moving savings to Canada?"}
{"_id": "2319_v1", "text": "Pros and cons of using a personal assistant service to manage your personal finances?"}
{"_id": "2327_v1", "text": "Do company-provided meals need to be claimed on my taxes?"}
{"_id": "2327_v2", "text": "Do company-provided meals need to be claimed on my taxes?"}
{"_id": "2327_v3", "text": "Do company-provided meals need to be claimed on my taxes?"}
{"_id": "2335_v1", "text": "Giving kids annual tax free gift of $28,000"}
{"_id": "2335_v2", "text": "Giving kids annual tax free gift of $28,000"}
{"_id": "2335_v3", "text": "Giving kids annual tax free gift of $28,000"}
{"_id": "2339_v1", "text": "Is paying off your mortage a #1 personal finance priority?"}
{"_id": "2339_v2", "text": "Is paying off your mortage a #1 personal finance priority?"}
{"_id": "2339_v3", "text": "Is paying off your mortage a #1 personal finance priority?"}
{"_id": "2343_v1", "text": "The Benefits/Disadvantages of using a credit card"}
{"_id": "2343_v2", "text": "The Benefits/Disadvantages of using a credit card"}
{"_id": "2343_v3", "text": "The Benefits/Disadvantages of using a credit card"}
{"_id": "2362_v1", "text": "Why do US retirement funds typically have way more US assets than international assets?"}
{"_id": "2362_v2", "text": "Why do US retirement funds typically have way more US assets than international assets?"}
{"_id": "2362_v3", "text": "Why do US retirement funds typically have way more US assets than international assets?"}
{"_id": "2366_v1", "text": "What are the risks of Dividend-yielding stocks?"}
{"_id": "2366_v2", "text": "What are the risks of Dividend-yielding stocks?"}
{"_id": "2366_v3", "text": "What are the risks of Dividend-yielding stocks?"}
{"_id": "2371_v1", "text": "Is sales tax for online purchases based on billing- or shipping address?"}
{"_id": "2371_v2", "text": "Is sales tax for online purchases based on billing- or shipping address?"}
{"_id": "2371_v3", "text": "Is sales tax for online purchases based on billing- or shipping address?"}
{"_id": "2377_v1", "text": "Is there any way to buy a new car directly from Toyota without going through a dealership?"}
{"_id": "2377_v2", "text": "Is there any way to buy a new car directly from Toyota without going through a dealership?"}
{"_id": "2379_v1", "text": "Should a high-school student invest their (relative meager) savings?"}
{"_id": "2379_v2", "text": "Should a high-school student invest their (relative meager) savings?"}
{"_id": "2379_v3", "text": "Should a high-school student invest their (relative meager) savings?"}
{"_id": "2420_v1", "text": "Should we prepay our private student loans, given our particular profile?"}
{"_id": "2420_v2", "text": "Should we prepay our private student loans, given our particular profile?"}
{"_id": "2420_v3", "text": "Should we prepay our private student loans, given our particular profile?"}
{"_id": "2431_v1", "text": "How much (paper) cash should I keep on hand for an emergency?"}
{"_id": "2431_v2", "text": "How much (paper) cash should I keep on hand for an emergency?"}
{"_id": "2434_v1", "text": "Bank will not accept loose change. Is this legal?"}
{"_id": "2434_v2", "text": "Bank will not accept loose change. Is this legal?"}
{"_id": "2434_v3", "text": "Bank will not accept loose change. Is this legal?"}
{"_id": "2436_v1", "text": "60% Downpayment on house?"}
{"_id": "2436_v2", "text": "60% Downpayment on house?"}
{"_id": "2438_v1", "text": "Why don't banks give access to all your transaction activity?"}
{"_id": "2438_v2", "text": "Why don't banks give access to all your transaction activity?"}
{"_id": "2438_v3", "text": "Why don't banks give access to all your transaction activity?"}
{"_id": "2450_v1", "text": "My account's been labeled as \u201cday trader\u201d and I got a big margin call. What should I do? What trades can I place in the blocked period?"}
{"_id": "2450_v2", "text": "My account's been labeled as \u201cday trader\u201d and I got a big margin call. What should I do? What trades can I place in the blocked period?"}
{"_id": "2450_v3", "text": "My account's been labeled as \u201cday trader\u201d and I got a big margin call. What should I do? What trades can I place in the blocked period?"}
{"_id": "2469_v1", "text": "Is there any way to pay online in a country with no international banking system"}
{"_id": "2469_v2", "text": "Is there any way to pay online in a country with no international banking system"}
{"_id": "2469_v3", "text": "Is there any way to pay online in a country with no international banking system"}
{"_id": "2484_v1", "text": "Should I pay half a large balance this month before I get my CC statement?"}
{"_id": "2484_v2", "text": "Should I pay half a large balance this month before I get my CC statement?"}
{"_id": "2484_v3", "text": "Should I pay half a large balance this month before I get my CC statement?"}
{"_id": "2485_v1", "text": "Money put down on home"}
{"_id": "2501_v1", "text": "Would there be tax implications if I used AirBnB as opposed to just renting out a unit normally?"}
{"_id": "2501_v2", "text": "Would there be tax implications if I used AirBnB as opposed to just renting out a unit normally?"}
{"_id": "2501_v3", "text": "Would there be tax implications if I used AirBnB as opposed to just renting out a unit normally?"}
{"_id": "2511_v1", "text": "Why do credit cards require a minimum annual household income?"}
{"_id": "2511_v2", "text": "Why do credit cards require a minimum annual household income?"}
{"_id": "2511_v3", "text": "Why do credit cards require a minimum annual household income?"}
{"_id": "2523_v1", "text": "Multi-Account Budgeting Tools/Accounts/Services"}
{"_id": "2523_v2", "text": "Multi-Account Budgeting Tools/Accounts/Services"}
{"_id": "2523_v3", "text": "Multi-Account Budgeting Tools/Accounts/Services"}
{"_id": "2538_v1", "text": "Buying a home with down payment from family as a \u201cloan\u201d"}
{"_id": "2538_v2", "text": "Buying a home with down payment from family as a \u201cloan\u201d"}
{"_id": "2538_v3", "text": "Buying a home with down payment from family as a \u201cloan\u201d"}
{"_id": "2539_v1", "text": "How does refinancing work?"}
{"_id": "2539_v2", "text": "How does refinancing work?"}
{"_id": "2546_v1", "text": "What's the fuss about Credit Score / History?"}
{"_id": "2546_v2", "text": "What's the fuss about Credit Score / History?"}
{"_id": "2546_v3", "text": "What's the fuss about Credit Score / History?"}
{"_id": "2559_v1", "text": "Why is the breakdown of a loan repayment into principal and interest of any importance?"}
{"_id": "2559_v2", "text": "Why is the breakdown of a loan repayment into principal and interest of any importance?"}
{"_id": "2559_v3", "text": "Why is the breakdown of a loan repayment into principal and interest of any importance?"}
{"_id": "2560_v1", "text": "What are the reasons to get more than one credit card?"}
{"_id": "2560_v2", "text": "What are the reasons to get more than one credit card?"}
{"_id": "2560_v3", "text": "What are the reasons to get more than one credit card?"}
{"_id": "2565_v1", "text": "What are the financial advantages of living in Switzerland?"}
{"_id": "2565_v2", "text": "What are the financial advantages of living in Switzerland?"}
{"_id": "2570_v1", "text": "Best way to start investing, for a young person just starting their career?"}
{"_id": "2570_v2", "text": "Best way to start investing, for a young person just starting their career?"}
{"_id": "2570_v3", "text": "Best way to start investing, for a young person just starting their career?"}
{"_id": "2577_v1", "text": "Why are typical 401(k) plan fund choices so awful?"}
{"_id": "2609_v1", "text": "In a house with shared ownership, if one person moves out and the other assumes mortgage, how do we determine who owns what share in the end?"}
{"_id": "2609_v2", "text": "In a house with shared ownership, if one person moves out and the other assumes mortgage, how do we determine who owns what share in the end?"}
{"_id": "2609_v3", "text": "In a house with shared ownership, if one person moves out and the other assumes mortgage, how do we determine who owns what share in the end?"}
{"_id": "2623_v1", "text": "What are some time tested passive income streams?"}
{"_id": "2623_v2", "text": "What are some time tested passive income streams?"}
{"_id": "2623_v3", "text": "What are some time tested passive income streams?"}
{"_id": "2627_v1", "text": "Why do some people go through contortions to avoid paying taxes, yet spend money on expensive financial advice, high-interest loans, etc?"}
{"_id": "2627_v2", "text": "Why do some people go through contortions to avoid paying taxes, yet spend money on expensive financial advice, high-interest loans, etc?"}
{"_id": "2627_v3", "text": "Why do some people go through contortions to avoid paying taxes, yet spend money on expensive financial advice, high-interest loans, etc?"}
{"_id": "2687_v1", "text": "What would a stock be worth if dividends did not exist? [duplicate]"}
{"_id": "2687_v2", "text": "What would a stock be worth if dividends did not exist? [duplicate]"}
{"_id": "2687_v3", "text": "What would a stock be worth if dividends did not exist? [duplicate]"}
{"_id": "2693_v1", "text": "Will getting a second credit card help my credit rating?"}
{"_id": "2693_v2", "text": "Will getting a second credit card help my credit rating?"}
{"_id": "2693_v3", "text": "Will getting a second credit card help my credit rating?"}
{"_id": "2702_v1", "text": "What should I be aware of as a young investor?"}
{"_id": "2702_v2", "text": "What should I be aware of as a young investor?"}
{"_id": "2702_v3", "text": "What should I be aware of as a young investor?"}
{"_id": "2704_v1", "text": "Do credit checks affect credit scores?"}
{"_id": "2704_v2", "text": "Do credit checks affect credit scores?"}
{"_id": "2704_v3", "text": "Do credit checks affect credit scores?"}
{"_id": "2734_v1", "text": "Does reading financial statements (quarterly or annual reports) really help investing?"}
{"_id": "2734_v2", "text": "Does reading financial statements (quarterly or annual reports) really help investing?"}
{"_id": "2734_v3", "text": "Does reading financial statements (quarterly or annual reports) really help investing?"}
{"_id": "2739_v1", "text": "First concrete steps for retirement planning when one partner is resistant"}
{"_id": "2739_v2", "text": "First concrete steps for retirement planning when one partner is resistant"}
{"_id": "2739_v3", "text": "First concrete steps for retirement planning when one partner is resistant"}
{"_id": "2804_v1", "text": "Buying a building with two flats, can I rent one out and still get a residential mortgage?"}
{"_id": "2816_v1", "text": "Does this plan make any sense for early 20s investments?"}
{"_id": "2816_v2", "text": "Does this plan make any sense for early 20s investments?"}
{"_id": "2816_v3", "text": "Does this plan make any sense for early 20s investments?"}
{"_id": "2848_v1", "text": "Splitting Hackathon Prize Money to minimize tax debt"}
{"_id": "2848_v2", "text": "Splitting Hackathon Prize Money to minimize tax debt"}
{"_id": "2853_v1", "text": "In India, what is the difference between Dividend and Growth mutual fund types?"}
{"_id": "2853_v2", "text": "In India, what is the difference between Dividend and Growth mutual fund types?"}
{"_id": "2853_v3", "text": "In India, what is the difference between Dividend and Growth mutual fund types?"}
{"_id": "2854_v1", "text": "Does my net paycheck decrease as the year goes on due to tax brackets filling up?"}
{"_id": "2854_v2", "text": "Does my net paycheck decrease as the year goes on due to tax brackets filling up?"}
{"_id": "2854_v3", "text": "Does my net paycheck decrease as the year goes on due to tax brackets filling up?"}
{"_id": "2868_v1", "text": "No transaction fee ETF trades - what's the catch?"}
{"_id": "2868_v2", "text": "No transaction fee ETF trades - what's the catch?"}
{"_id": "2868_v3", "text": "No transaction fee ETF trades - what's the catch?"}
{"_id": "2927_v1", "text": "Where should my money go next: savings, investments, retirement, or my mortgage?"}
{"_id": "2933_v1", "text": "What are the best software tools for personal finance?"}
{"_id": "2933_v2", "text": "What are the best software tools for personal finance?"}
{"_id": "2933_v3", "text": "What are the best software tools for personal finance?"}
{"_id": "2936_v1", "text": "What reason would a person have to use checks in stores?"}
{"_id": "2936_v2", "text": "What reason would a person have to use checks in stores?"}
{"_id": "2936_v3", "text": "What reason would a person have to use checks in stores?"}
{"_id": "2937_v1", "text": "High-risk investing is better for the young? Why?"}
{"_id": "2937_v2", "text": "High-risk investing is better for the young? Why?"}
{"_id": "2937_v3", "text": "High-risk investing is better for the young? Why?"}
{"_id": "2969_v1", "text": "High credit utilization, some high interest - but credit score not overly bad. How to attack debt in this situation?"}
{"_id": "2969_v2", "text": "High credit utilization, some high interest - but credit score not overly bad. How to attack debt in this situation?"}
{"_id": "2969_v3", "text": "High credit utilization, some high interest - but credit score not overly bad. How to attack debt in this situation?"}
{"_id": "2976_v1", "text": "Super-generic mutual fund type"}
{"_id": "2976_v2", "text": "Super-generic mutual fund type"}
{"_id": "2976_v3", "text": "Super-generic mutual fund type"}
{"_id": "2999_v1", "text": "Can rent be added to your salary when applying for a mortgage?"}
{"_id": "2999_v2", "text": "Can rent be added to your salary when applying for a mortgage?"}
{"_id": "2999_v3", "text": "Can rent be added to your salary when applying for a mortgage?"}
{"_id": "3041_v1", "text": "In Canada, how much money can I gift a friend or family member without them being taxed on it?"}
{"_id": "3041_v2", "text": "In Canada, how much money can I gift a friend or family member without them being taxed on it?"}
{"_id": "3041_v3", "text": "In Canada, how much money can I gift a friend or family member without them being taxed on it?"}
{"_id": "3068_v1", "text": "What kind of life insurance is cheaper? I'm not sure about term vs. whole vs. universal, etc"}
{"_id": "3068_v2", "text": "What kind of life insurance is cheaper? I'm not sure about term vs. whole vs. universal, etc"}
{"_id": "3068_v3", "text": "What kind of life insurance is cheaper? I'm not sure about term vs. whole vs. universal, etc"}
{"_id": "3089_v1", "text": "Why is the fractional-reserve banking not a Ponzi scheme?"}
{"_id": "3089_v2", "text": "Why is the fractional-reserve banking not a Ponzi scheme?"}
{"_id": "3089_v3", "text": "Why is the fractional-reserve banking not a Ponzi scheme?"}
{"_id": "3090_v1", "text": "On paper I have 1 share in my company. How can I sell a smaller percentage of my company to another party?"}
{"_id": "3090_v2", "text": "On paper I have 1 share in my company. How can I sell a smaller percentage of my company to another party?"}
{"_id": "3090_v3", "text": "On paper I have 1 share in my company. How can I sell a smaller percentage of my company to another party?"}
{"_id": "3130_v1", "text": "When you're really young and have about 2K to start investing $ for retirement, why do some people advise you to go risky?"}
{"_id": "3130_v2", "text": "When you're really young and have about 2K to start investing $ for retirement, why do some people advise you to go risky?"}
{"_id": "3130_v3", "text": "When you're really young and have about 2K to start investing $ for retirement, why do some people advise you to go risky?"}
{"_id": "3142_v1", "text": "How to shop for mortgage rates ?"}
{"_id": "3142_v2", "text": "How to shop for mortgage rates ?"}
{"_id": "3142_v3", "text": "How to shop for mortgage rates ?"}
{"_id": "3143_v1", "text": "Do you have to be mega-rich to invest in companies pre-IPO?"}
{"_id": "3143_v2", "text": "Do you have to be mega-rich to invest in companies pre-IPO?"}
{"_id": "3143_v3", "text": "Do you have to be mega-rich to invest in companies pre-IPO?"}
{"_id": "3144_v1", "text": "Would it ever be a bad idea to convert a traditional IRA to a Roth IRA with the following assumptions?"}
{"_id": "3144_v2", "text": "Would it ever be a bad idea to convert a traditional IRA to a Roth IRA with the following assumptions?"}
{"_id": "3144_v3", "text": "Would it ever be a bad idea to convert a traditional IRA to a Roth IRA with the following assumptions?"}
{"_id": "3146_v1", "text": "Investing in low cost index fund \u2014 does the timing matter?"}
{"_id": "3146_v2", "text": "Investing in low cost index fund \u2014 does the timing matter?"}
{"_id": "3146_v3", "text": "Investing in low cost index fund \u2014 does the timing matter?"}
{"_id": "3152_v1", "text": "Which dividend bearing stock should be chosen by price?"}
{"_id": "3152_v2", "text": "Which dividend bearing stock should be chosen by price?"}
{"_id": "3152_v3", "text": "Which dividend bearing stock should be chosen by price?"}
{"_id": "3156_v1", "text": "Can a credit card company raise my rates for making a large payment?"}
{"_id": "3167_v1", "text": "Does it make sense to take out student loans to start an IRA?"}
{"_id": "3192_v1", "text": "How can I avoid international wire fees or currency transfer fees?"}
{"_id": "3192_v2", "text": "How can I avoid international wire fees or currency transfer fees?"}
{"_id": "3192_v3", "text": "How can I avoid international wire fees or currency transfer fees?"}
{"_id": "3193_v1", "text": "Do I not have a credit score?"}
{"_id": "3216_v1", "text": "What is a maximum amount that I can wire transfer out of US?"}
{"_id": "3216_v2", "text": "What is a maximum amount that I can wire transfer out of US?"}
{"_id": "3216_v3", "text": "What is a maximum amount that I can wire transfer out of US?"}
{"_id": "3225_v1", "text": "Should you co-sign a personal loan for a friend/family member? Why/why not?"}
{"_id": "3225_v2", "text": "Should you co-sign a personal loan for a friend/family member? Why/why not?"}
{"_id": "3225_v3", "text": "Should you co-sign a personal loan for a friend/family member? Why/why not?"}
{"_id": "3227_v1", "text": "What can I replace Microsoft Money with, now that MS has abandoned it?"}
{"_id": "3227_v2", "text": "What can I replace Microsoft Money with, now that MS has abandoned it?"}
{"_id": "3227_v3", "text": "What can I replace Microsoft Money with, now that MS has abandoned it?"}
{"_id": "3228_v1", "text": "Idea for getting rich using computers to track stocks"}
{"_id": "3228_v2", "text": "Idea for getting rich using computers to track stocks"}
{"_id": "3228_v3", "text": "Idea for getting rich using computers to track stocks"}
{"_id": "3235_v1", "text": "Why do card processing companies discourage \u201ccash advance\u201d activities"}
{"_id": "3235_v2", "text": "Why do card processing companies discourage \u201ccash advance\u201d activities"}
{"_id": "3235_v3", "text": "Why do card processing companies discourage \u201ccash advance\u201d activities"}
{"_id": "3240_v1", "text": "How to take advantage of home appreciation"}
{"_id": "3240_v2", "text": "How to take advantage of home appreciation"}
{"_id": "3242_v1", "text": "Are parking spaces and garage boxes a good investment?"}
{"_id": "3242_v2", "text": "Are parking spaces and garage boxes a good investment?"}
{"_id": "3242_v3", "text": "Are parking spaces and garage boxes a good investment?"}
{"_id": "3253_v1", "text": "How do you get out of a Mutual Fund in your 401(k)?"}
{"_id": "3253_v2", "text": "How do you get out of a Mutual Fund in your 401(k)?"}
{"_id": "3253_v3", "text": "How do you get out of a Mutual Fund in your 401(k)?"}
{"_id": "3274_v1", "text": "What are some factors I should consider when choosing between a CPA and tax software"}
{"_id": "3274_v2", "text": "What are some factors I should consider when choosing between a CPA and tax software"}
{"_id": "3274_v3", "text": "What are some factors I should consider when choosing between a CPA and tax software"}
{"_id": "3282_v1", "text": "When should I open a \u201cLine of credit\u201d at my bank?"}
{"_id": "3303_v1", "text": "Mortgage refinancing fees"}
{"_id": "3303_v2", "text": "Mortgage refinancing fees"}
{"_id": "3328_v1", "text": "Are tax deductions voluntary?"}
{"_id": "3328_v2", "text": "Are tax deductions voluntary?"}
{"_id": "3328_v3", "text": "Are tax deductions voluntary?"}
{"_id": "3329_v1", "text": "Can a wealthy investor invest in or make a deal with a company before it goes public / IPO?"}
{"_id": "3329_v2", "text": "Can a wealthy investor invest in or make a deal with a company before it goes public / IPO?"}
{"_id": "3329_v3", "text": "Can a wealthy investor invest in or make a deal with a company before it goes public / IPO?"}
{"_id": "3332_v1", "text": "What effect would sovereign default of a European country have on personal debt or a mortgage?"}
{"_id": "3332_v2", "text": "What effect would sovereign default of a European country have on personal debt or a mortgage?"}
{"_id": "3332_v3", "text": "What effect would sovereign default of a European country have on personal debt or a mortgage?"}
{"_id": "3359_v1", "text": "How can one get their FICO/credit scores for free? (really free)"}
{"_id": "3359_v2", "text": "How can one get their FICO/credit scores for free? (really free)"}
{"_id": "3359_v3", "text": "How can one get their FICO/credit scores for free? (really free)"}
{"_id": "3368_v1", "text": "What is the fastest way to retire, using passive income on real estate"}
{"_id": "3368_v2", "text": "What is the fastest way to retire, using passive income on real estate"}
{"_id": "3368_v3", "text": "What is the fastest way to retire, using passive income on real estate"}
{"_id": "3402_v1", "text": "Should I really pay off my entire credit card balance each month or should I maintain some balance?"}
{"_id": "3402_v2", "text": "Should I really pay off my entire credit card balance each month or should I maintain some balance?"}
{"_id": "3402_v3", "text": "Should I really pay off my entire credit card balance each month or should I maintain some balance?"}
{"_id": "3432_v1", "text": "What's the general principle behind choosing saving vs. paying off debt?"}
{"_id": "3432_v2", "text": "What's the general principle behind choosing saving vs. paying off debt?"}
{"_id": "3432_v3", "text": "What's the general principle behind choosing saving vs. paying off debt?"}
{"_id": "3438_v1", "text": "How to calculate cash loss over time?"}
{"_id": "3438_v2", "text": "How to calculate cash loss over time?"}
{"_id": "3438_v3", "text": "How to calculate cash loss over time?"}
{"_id": "3463_v1", "text": "Can signing up at optoutprescreen.com improve my credit score?"}
{"_id": "3463_v2", "text": "Can signing up at optoutprescreen.com improve my credit score?"}
{"_id": "3466_v1", "text": "Buy home and leverage roommates, or split rent?"}
{"_id": "3466_v2", "text": "Buy home and leverage roommates, or split rent?"}
{"_id": "3466_v3", "text": "Buy home and leverage roommates, or split rent?"}
{"_id": "3475_v1", "text": "What happens to my stocks when broker goes bankrupt?"}
{"_id": "3475_v2", "text": "What happens to my stocks when broker goes bankrupt?"}
{"_id": "3475_v3", "text": "What happens to my stocks when broker goes bankrupt?"}
{"_id": "3485_v1", "text": "Is a \u201ctotal stock market\u201d index fund diverse enough alone?"}
{"_id": "3485_v2", "text": "Is a \u201ctotal stock market\u201d index fund diverse enough alone?"}
{"_id": "3485_v3", "text": "Is a \u201ctotal stock market\u201d index fund diverse enough alone?"}
{"_id": "3502_v1", "text": "What is a Student Loan and does it allow you to cover a wide range of expenses relating to school?"}
{"_id": "3502_v2", "text": "What is a Student Loan and does it allow you to cover a wide range of expenses relating to school?"}
{"_id": "3502_v3", "text": "What is a Student Loan and does it allow you to cover a wide range of expenses relating to school?"}
{"_id": "3516_v1", "text": "Where to start with personal finance?"}
{"_id": "3516_v2", "text": "Where to start with personal finance?"}
{"_id": "3516_v3", "text": "Where to start with personal finance?"}
{"_id": "3517_v1", "text": "Making $100,000 USD per month, no idea what to do with it"}
{"_id": "3517_v2", "text": "Making $100,000 USD per month, no idea what to do with it"}
{"_id": "3517_v3", "text": "Making $100,000 USD per month, no idea what to do with it"}
{"_id": "3520_v1", "text": "Choosing the \u201cright\u201d NAPFA advisor, and whether fees are fair, etc.?"}
{"_id": "3520_v2", "text": "Choosing the \u201cright\u201d NAPFA advisor, and whether fees are fair, etc.?"}
{"_id": "3532_v1", "text": "Free brokerage vs paid - pros and cons"}
{"_id": "3532_v2", "text": "Free brokerage vs paid - pros and cons"}
{"_id": "3552_v1", "text": "Do people tend to spend less when using cash than credit cards?"}
{"_id": "3552_v2", "text": "Do people tend to spend less when using cash than credit cards?"}
{"_id": "3552_v3", "text": "Do people tend to spend less when using cash than credit cards?"}
{"_id": "3596_v1", "text": "Should I cancel an existing credit card so I can open another that has rewards?"}
{"_id": "3596_v2", "text": "Should I cancel an existing credit card so I can open another that has rewards?"}
{"_id": "3596_v3", "text": "Should I cancel an existing credit card so I can open another that has rewards?"}
{"_id": "3640_v1", "text": "Should I scale down my 401k?"}
{"_id": "3640_v2", "text": "Should I scale down my 401k?"}
{"_id": "3640_v3", "text": "Should I scale down my 401k?"}
{"_id": "3651_v1", "text": "Should I pay off my car loan within the year?"}
{"_id": "3651_v2", "text": "Should I pay off my car loan within the year?"}
{"_id": "3651_v3", "text": "Should I pay off my car loan within the year?"}
{"_id": "3653_v1", "text": "Which practice to keep finances after getting married: joint, or separate?"}
{"_id": "3653_v2", "text": "Which practice to keep finances after getting married: joint, or separate?"}
{"_id": "3653_v3", "text": "Which practice to keep finances after getting married: joint, or separate?"}
{"_id": "3656_v1", "text": "Should I pay cash or prefer a 0% interest loan for home furnishings?"}
{"_id": "3656_v2", "text": "Should I pay cash or prefer a 0% interest loan for home furnishings?"}
{"_id": "3656_v3", "text": "Should I pay cash or prefer a 0% interest loan for home furnishings?"}
{"_id": "3657_v1", "text": "What is the best asset allocation for a retirement portfolio, and why?"}
{"_id": "3657_v2", "text": "What is the best asset allocation for a retirement portfolio, and why?"}
{"_id": "3657_v3", "text": "What is the best asset allocation for a retirement portfolio, and why?"}
{"_id": "3674_v1", "text": "Cash flow implications of converting primary mortgaged residence to rental"}
{"_id": "3674_v2", "text": "Cash flow implications of converting primary mortgaged residence to rental"}
{"_id": "3674_v3", "text": "Cash flow implications of converting primary mortgaged residence to rental"}
{"_id": "3678_v1", "text": "Can a CEO short his own company?"}
{"_id": "3678_v2", "text": "Can a CEO short his own company?"}
{"_id": "3678_v3", "text": "Can a CEO short his own company?"}
{"_id": "3686_v1", "text": "Am I still building a credit score if I use my credit card like a debit card?"}
{"_id": "3686_v2", "text": "Am I still building a credit score if I use my credit card like a debit card?"}
{"_id": "3686_v3", "text": "Am I still building a credit score if I use my credit card like a debit card?"}
{"_id": "3695_v1", "text": "gift is taxable but is \u201cloan\u201d or \u201cdebt\u201d taxable?"}
{"_id": "3695_v2", "text": "gift is taxable but is \u201cloan\u201d or \u201cdebt\u201d taxable?"}
{"_id": "3695_v3", "text": "gift is taxable but is \u201cloan\u201d or \u201cdebt\u201d taxable?"}
{"_id": "3737_v1", "text": "~$75k in savings - Pay off house before new home?"}
{"_id": "3737_v2", "text": "~$75k in savings - Pay off house before new home?"}
{"_id": "3737_v3", "text": "~$75k in savings - Pay off house before new home?"}
{"_id": "3739_v1", "text": "Dividend vs Growth Stocks for young investors"}
{"_id": "3739_v2", "text": "Dividend vs Growth Stocks for young investors"}
{"_id": "3739_v3", "text": "Dividend vs Growth Stocks for young investors"}
{"_id": "3745_v1", "text": "How do I protect myself from a scam if I want to help a relative?"}
{"_id": "3745_v2", "text": "How do I protect myself from a scam if I want to help a relative?"}
{"_id": "3745_v3", "text": "How do I protect myself from a scam if I want to help a relative?"}
{"_id": "3747_v1", "text": "What should I do with $4,000 cash and High Interest Debt?"}
{"_id": "3747_v2", "text": "What should I do with $4,000 cash and High Interest Debt?"}
{"_id": "3747_v3", "text": "What should I do with $4,000 cash and High Interest Debt?"}
{"_id": "3754_v1", "text": "What happens to my savings if my country defaults or restructures its debt?"}
{"_id": "3754_v2", "text": "What happens to my savings if my country defaults or restructures its debt?"}
{"_id": "3754_v3", "text": "What happens to my savings if my country defaults or restructures its debt?"}
{"_id": "3756_v1", "text": "Explanations on credit cards in Canada"}
{"_id": "3756_v2", "text": "Explanations on credit cards in Canada"}
{"_id": "3756_v3", "text": "Explanations on credit cards in Canada"}
{"_id": "3763_v1", "text": "Should I Use an Investment Professional?"}
{"_id": "3763_v2", "text": "Should I Use an Investment Professional?"}
{"_id": "3763_v3", "text": "Should I Use an Investment Professional?"}
{"_id": "3812_v1", "text": "What could be the harm in sharing my American Express statements online?"}
{"_id": "3817_v1", "text": "Can individuals day-trade stocks using High-Frequency Trading (HFT)?"}
{"_id": "3817_v2", "text": "Can individuals day-trade stocks using High-Frequency Trading (HFT)?"}
{"_id": "3817_v3", "text": "Can individuals day-trade stocks using High-Frequency Trading (HFT)?"}
{"_id": "3835_v1", "text": "For young (lower-mid class) investors what percentage should be in individual stocks?"}
{"_id": "3835_v2", "text": "For young (lower-mid class) investors what percentage should be in individual stocks?"}
{"_id": "3861_v1", "text": "What things are important to consider when investing in one's company stock?"}
{"_id": "3861_v2", "text": "What things are important to consider when investing in one's company stock?"}
{"_id": "3865_v1", "text": "Would I ever need credit card if my debit card is issued by MasterCard/Visa?"}
{"_id": "3865_v2", "text": "Would I ever need credit card if my debit card is issued by MasterCard/Visa?"}
{"_id": "3865_v3", "text": "Would I ever need credit card if my debit card is issued by MasterCard/Visa?"}
{"_id": "3887_v1", "text": "What exactly is a \u201cbad,\u201d \u201cstandard,\u201d or \u201cgood\u201d annual raise? If I am told a hard percentage and don't get it, should I look elsewhere?"}
{"_id": "3887_v2", "text": "What exactly is a \u201cbad,\u201d \u201cstandard,\u201d or \u201cgood\u201d annual raise? If I am told a hard percentage and don't get it, should I look elsewhere?"}
{"_id": "3887_v3", "text": "What exactly is a \u201cbad,\u201d \u201cstandard,\u201d or \u201cgood\u201d annual raise? If I am told a hard percentage and don't get it, should I look elsewhere?"}
{"_id": "3892_v1", "text": "How to deal with the credit card debt from family member that has passed away?"}
{"_id": "3892_v2", "text": "How to deal with the credit card debt from family member that has passed away?"}
{"_id": "3892_v3", "text": "How to deal with the credit card debt from family member that has passed away?"}
{"_id": "3893_v1", "text": "$65000/year or $2500 every two weeks: If I claim 3 exemptions instead of zero, how much would my take home pay be?"}
{"_id": "3893_v2", "text": "$65000/year or $2500 every two weeks: If I claim 3 exemptions instead of zero, how much would my take home pay be?"}
{"_id": "3893_v3", "text": "$65000/year or $2500 every two weeks: If I claim 3 exemptions instead of zero, how much would my take home pay be?"}
{"_id": "3895_v1", "text": "Is it worth investing in Index Fund, Bond Index Fund and Gold at the same time?"}
{"_id": "3895_v2", "text": "Is it worth investing in Index Fund, Bond Index Fund and Gold at the same time?"}
{"_id": "3895_v3", "text": "Is it worth investing in Index Fund, Bond Index Fund and Gold at the same time?"}
{"_id": "3915_v1", "text": "Is it normal to think of money in different \u201ccontexts\u201d?"}
{"_id": "3915_v2", "text": "Is it normal to think of money in different \u201ccontexts\u201d?"}
{"_id": "3915_v3", "text": "Is it normal to think of money in different \u201ccontexts\u201d?"}
{"_id": "3918_v1", "text": "Are there any rules against penalizing consumers for requesting accurate credit reporting?"}
{"_id": "3918_v2", "text": "Are there any rules against penalizing consumers for requesting accurate credit reporting?"}
{"_id": "3918_v3", "text": "Are there any rules against penalizing consumers for requesting accurate credit reporting?"}
{"_id": "3957_v1", "text": "Tax implications of diversification"}
{"_id": "3957_v2", "text": "Tax implications of diversification"}
{"_id": "3957_v3", "text": "Tax implications of diversification"}
{"_id": "3963_v1", "text": "what is difference between stock and dividend?"}
{"_id": "3963_v2", "text": "what is difference between stock and dividend?"}
{"_id": "3963_v3", "text": "what is difference between stock and dividend?"}
{"_id": "3974_v1", "text": "Do I need to report to FInCEN if I had greater than $10,000 worth of bitcoin in a foreign bitcoin exchange?"}
{"_id": "3974_v2", "text": "Do I need to report to FInCEN if I had greater than $10,000 worth of bitcoin in a foreign bitcoin exchange?"}
{"_id": "3974_v3", "text": "Do I need to report to FInCEN if I had greater than $10,000 worth of bitcoin in a foreign bitcoin exchange?"}
{"_id": "3982_v1", "text": "Are there any risks from using mint.com?"}
{"_id": "3982_v2", "text": "Are there any risks from using mint.com?"}
{"_id": "3982_v3", "text": "Are there any risks from using mint.com?"}
{"_id": "3990_v1", "text": "Weekly budgets based on (a variable) monthly budget"}
{"_id": "3990_v2", "text": "Weekly budgets based on (a variable) monthly budget"}
{"_id": "3990_v3", "text": "Weekly budgets based on (a variable) monthly budget"}
{"_id": "3992_v1", "text": "1.4 million cash. What do I do?"}
{"_id": "3992_v2", "text": "1.4 million cash. What do I do?"}
{"_id": "3992_v3", "text": "1.4 million cash. What do I do?"}
{"_id": "3993_v1", "text": "What effect would currency devaluation have on my investments?"}
{"_id": "4008_v1", "text": "How to calculate how much house I can afford?"}
{"_id": "4008_v2", "text": "How to calculate how much house I can afford?"}
{"_id": "4008_v3", "text": "How to calculate how much house I can afford?"}
{"_id": "4013_v1", "text": "What is a normal amount of money to spend per week on food/entertainment/clothing?"}
{"_id": "4013_v2", "text": "What is a normal amount of money to spend per week on food/entertainment/clothing?"}
{"_id": "4013_v3", "text": "What is a normal amount of money to spend per week on food/entertainment/clothing?"}
{"_id": "4018_v1", "text": "Withdraw funds with penalty or bear high management fees for 10 years?"}
{"_id": "4018_v2", "text": "Withdraw funds with penalty or bear high management fees for 10 years?"}
{"_id": "4018_v3", "text": "Withdraw funds with penalty or bear high management fees for 10 years?"}
{"_id": "4028_v1", "text": "In general, is it financially better to buy or to rent a house?"}
{"_id": "4028_v2", "text": "In general, is it financially better to buy or to rent a house?"}
{"_id": "4028_v3", "text": "In general, is it financially better to buy or to rent a house?"}
{"_id": "4032_v1", "text": "Why do employers require you to spread your 401(k) contributions throughout the year to get the maximum match?"}
{"_id": "4032_v2", "text": "Why do employers require you to spread your 401(k) contributions throughout the year to get the maximum match?"}
{"_id": "4032_v3", "text": "Why do employers require you to spread your 401(k) contributions throughout the year to get the maximum match?"}
{"_id": "4038_v1", "text": "Is there a benefit, long term, to life insurance for a youngish, debt, and dependent free person?"}
{"_id": "4038_v2", "text": "Is there a benefit, long term, to life insurance for a youngish, debt, and dependent free person?"}
{"_id": "4038_v3", "text": "Is there a benefit, long term, to life insurance for a youngish, debt, and dependent free person?"}
{"_id": "4042_v1", "text": "Can my employer limit my maximum 401k contribution amount (below the IRS limit)?"}
{"_id": "4042_v2", "text": "Can my employer limit my maximum 401k contribution amount (below the IRS limit)?"}
{"_id": "4042_v3", "text": "Can my employer limit my maximum 401k contribution amount (below the IRS limit)?"}
{"_id": "4044_v1", "text": "Why do people buy new cars they can not afford?"}
{"_id": "4044_v2", "text": "Why do people buy new cars they can not afford?"}
{"_id": "4044_v3", "text": "Why do people buy new cars they can not afford?"}
{"_id": "4050_v1", "text": "For very high-net worth individuals, does it make sense to not have insurance?"}
{"_id": "4050_v2", "text": "For very high-net worth individuals, does it make sense to not have insurance?"}
{"_id": "4050_v3", "text": "For very high-net worth individuals, does it make sense to not have insurance?"}
{"_id": "4055_v1", "text": "Recommended finance & economy book/blog for a Software Engineer?"}
{"_id": "4055_v2", "text": "Recommended finance & economy book/blog for a Software Engineer?"}
{"_id": "4112_v1", "text": "Is Weiss Research, Inc. a legitimate financial research company?"}
{"_id": "4112_v2", "text": "Is Weiss Research, Inc. a legitimate financial research company?"}
{"_id": "4112_v3", "text": "Is Weiss Research, Inc. a legitimate financial research company?"}
{"_id": "4120_v1", "text": "Cannot get a mortgage because I work through a recruiter"}
{"_id": "4120_v2", "text": "Cannot get a mortgage because I work through a recruiter"}
{"_id": "4120_v3", "text": "Cannot get a mortgage because I work through a recruiter"}
{"_id": "4128_v1", "text": "401k compound interest vs other compound interest"}
{"_id": "4128_v2", "text": "401k compound interest vs other compound interest"}
{"_id": "4128_v3", "text": "401k compound interest vs other compound interest"}
{"_id": "4138_v1", "text": "What should my finances look like at 18?"}
{"_id": "4138_v2", "text": "What should my finances look like at 18?"}
{"_id": "4138_v3", "text": "What should my finances look like at 18?"}
{"_id": "4178_v1", "text": "Is it sensible to keep savings in a foreign currency?"}
{"_id": "4193_v1", "text": "If gold's price implodes then what goes up?"}
{"_id": "4193_v2", "text": "If gold's price implodes then what goes up?"}
{"_id": "4215_v1", "text": "Why do 10 year Treasury bond yields affect mortgage interest rates?"}
{"_id": "4215_v2", "text": "Why do 10 year Treasury bond yields affect mortgage interest rates?"}
{"_id": "4215_v3", "text": "Why do 10 year Treasury bond yields affect mortgage interest rates?"}
{"_id": "4224_v1", "text": "Pros & cons in Hungary of investing retirement savings exclusively in silver? What better alternatives, given my concerns?"}
{"_id": "4224_v2", "text": "Pros & cons in Hungary of investing retirement savings exclusively in silver? What better alternatives, given my concerns?"}
{"_id": "4224_v3", "text": "Pros & cons in Hungary of investing retirement savings exclusively in silver? What better alternatives, given my concerns?"}
{"_id": "4292_v1", "text": "What are investment options for young married couple with no debt that have maxed out retirement savings?"}
{"_id": "4292_v2", "text": "What are investment options for young married couple with no debt that have maxed out retirement savings?"}
{"_id": "4302_v1", "text": "What are the top \u201cmarket conditions\u201d to follow?"}
{"_id": "4307_v1", "text": "Should I pay off my student loan before buying a house?"}
{"_id": "4307_v2", "text": "Should I pay off my student loan before buying a house?"}
{"_id": "4307_v3", "text": "Should I pay off my student loan before buying a house?"}
{"_id": "4329_v1", "text": "How can I predict which way mortgage rates are moving?"}
{"_id": "4329_v2", "text": "How can I predict which way mortgage rates are moving?"}
{"_id": "4329_v3", "text": "How can I predict which way mortgage rates are moving?"}
{"_id": "4338_v1", "text": "When is it better to rent and when is better buy in a certain property market?"}
{"_id": "4338_v2", "text": "When is it better to rent and when is better buy in a certain property market?"}
{"_id": "4338_v3", "text": "When is it better to rent and when is better buy in a certain property market?"}
{"_id": "4360_v1", "text": "Is the stock market a zero-sum game?"}
{"_id": "4361_v1", "text": "What is inflation?"}
{"_id": "4361_v2", "text": "What is inflation?"}
{"_id": "4361_v3", "text": "What is inflation?"}
{"_id": "4367_v1", "text": "What choices should I consider for investing money that I will need in two years?"}
{"_id": "4368_v1", "text": "Does gold's value decrease over time due to the fact that it is being continuously mined?"}
{"_id": "4368_v2", "text": "Does gold's value decrease over time due to the fact that it is being continuously mined?"}
{"_id": "4368_v3", "text": "Does gold's value decrease over time due to the fact that it is being continuously mined?"}
{"_id": "4369_v1", "text": "What argument(s) support the claim that long-term housing prices trend upward?"}
{"_id": "4369_v2", "text": "What argument(s) support the claim that long-term housing prices trend upward?"}
{"_id": "4369_v3", "text": "What argument(s) support the claim that long-term housing prices trend upward?"}
{"_id": "4370_v1", "text": "Is this investment opportunity problematic?"}
{"_id": "4370_v2", "text": "Is this investment opportunity problematic?"}
{"_id": "4370_v3", "text": "Is this investment opportunity problematic?"}
{"_id": "4389_v1", "text": "Is it safe to take a new mortgage loan in Greece?"}
{"_id": "4403_v1", "text": "How do I go about finding an honest & ethical financial advisor?"}
{"_id": "4403_v2", "text": "How do I go about finding an honest & ethical financial advisor?"}
{"_id": "4403_v3", "text": "How do I go about finding an honest & ethical financial advisor?"}
{"_id": "4404_v1", "text": "Why do people use mortgages, when they could just pay for the house in full?"}
{"_id": "4404_v2", "text": "Why do people use mortgages, when they could just pay for the house in full?"}
{"_id": "4404_v3", "text": "Why do people use mortgages, when they could just pay for the house in full?"}
{"_id": "4421_v1", "text": "What's the difference between buying bonds and buying bond funds for the long-term?"}
{"_id": "4421_v2", "text": "What's the difference between buying bonds and buying bond funds for the long-term?"}
{"_id": "4421_v3", "text": "What's the difference between buying bonds and buying bond funds for the long-term?"}
{"_id": "4426_v1", "text": "Must ETF companies match an investor's amount invested in an ETF?"}
{"_id": "4426_v2", "text": "Must ETF companies match an investor's amount invested in an ETF?"}
{"_id": "4426_v3", "text": "Must ETF companies match an investor's amount invested in an ETF?"}
{"_id": "4427_v1", "text": "What does inflation mean to me?"}
{"_id": "4427_v2", "text": "What does inflation mean to me?"}
{"_id": "4427_v3", "text": "What does inflation mean to me?"}
{"_id": "4437_v1", "text": "Buying Fixed Deposit in India from Europe"}
{"_id": "4437_v2", "text": "Buying Fixed Deposit in India from Europe"}
{"_id": "4439_v1", "text": "Is it ever logical to not deposit to a matched 401(k) account?"}
{"_id": "4439_v2", "text": "Is it ever logical to not deposit to a matched 401(k) account?"}
{"_id": "4439_v3", "text": "Is it ever logical to not deposit to a matched 401(k) account?"}
{"_id": "4440_v1", "text": "Should I buy a house or am I making silly assumptions that I can afford it?"}
{"_id": "4440_v2", "text": "Should I buy a house or am I making silly assumptions that I can afford it?"}
{"_id": "4440_v3", "text": "Should I buy a house or am I making silly assumptions that I can afford it?"}
{"_id": "4492_v1", "text": "Does a stay at home mom need term life insurance?"}
{"_id": "4492_v2", "text": "Does a stay at home mom need term life insurance?"}
{"_id": "4492_v3", "text": "Does a stay at home mom need term life insurance?"}
{"_id": "4501_v1", "text": "What are the economic benefits of owning a home in the United States?"}
{"_id": "4501_v2", "text": "What are the economic benefits of owning a home in the United States?"}
{"_id": "4501_v3", "text": "What are the economic benefits of owning a home in the United States?"}
{"_id": "4518_v1", "text": "What does a well diversified self-managed investment portfolio look like?"}
{"_id": "4518_v2", "text": "What does a well diversified self-managed investment portfolio look like?"}
{"_id": "4518_v3", "text": "What does a well diversified self-managed investment portfolio look like?"}
{"_id": "4537_v1", "text": "High Leverage Inflation Hedges for Personal Investors"}
{"_id": "4537_v2", "text": "High Leverage Inflation Hedges for Personal Investors"}
{"_id": "4537_v3", "text": "High Leverage Inflation Hedges for Personal Investors"}
{"_id": "4565_v1", "text": "How can a person protect his savings against a country default?"}
{"_id": "4565_v2", "text": "How can a person protect his savings against a country default?"}
{"_id": "4565_v3", "text": "How can a person protect his savings against a country default?"}
{"_id": "4566_v1", "text": "Should I invest in the world's strongest currency instead of my home currency?"}
{"_id": "4572_v1", "text": "Is it possible for me to keep my credit card APR at 0% permanently?"}
{"_id": "4602_v1", "text": "As an investing novice, what to do with my money?"}
{"_id": "4602_v2", "text": "As an investing novice, what to do with my money?"}
{"_id": "4602_v3", "text": "As an investing novice, what to do with my money?"}
{"_id": "4636_v1", "text": "Is it possible for the average person to profit on the stock market?"}
{"_id": "4636_v2", "text": "Is it possible for the average person to profit on the stock market?"}
{"_id": "4636_v3", "text": "Is it possible for the average person to profit on the stock market?"}
{"_id": "4643_v1", "text": "Prices go up and salary doesn't: where goes delta?"}
{"_id": "4643_v2", "text": "Prices go up and salary doesn't: where goes delta?"}
{"_id": "4650_v1", "text": "Retirement Options for Income"}
{"_id": "4650_v2", "text": "Retirement Options for Income"}
{"_id": "4650_v3", "text": "Retirement Options for Income"}
{"_id": "4713_v1", "text": "UK: Personal finance book for a twenty-something"}
{"_id": "4713_v2", "text": "UK: Personal finance book for a twenty-something"}
{"_id": "4738_v1", "text": "Canadian personal finance software with ability to export historical credit card transactions?"}
{"_id": "4738_v2", "text": "Canadian personal finance software with ability to export historical credit card transactions?"}
{"_id": "4738_v3", "text": "Canadian personal finance software with ability to export historical credit card transactions?"}
{"_id": "4793_v1", "text": "Ongoing things to do and read to improve knowledge of finance?"}
{"_id": "4793_v2", "text": "Ongoing things to do and read to improve knowledge of finance?"}
{"_id": "4793_v3", "text": "Ongoing things to do and read to improve knowledge of finance?"}
{"_id": "4828_v1", "text": "How do I know if refinance is beneficial enough to me?"}
{"_id": "4828_v2", "text": "How do I know if refinance is beneficial enough to me?"}
{"_id": "4828_v3", "text": "How do I know if refinance is beneficial enough to me?"}
{"_id": "4843_v1", "text": "What is \u201cbeta\u201d for an investment or a portfolio, and how do I use it?"}
{"_id": "4843_v2", "text": "What is \u201cbeta\u201d for an investment or a portfolio, and how do I use it?"}
{"_id": "4843_v3", "text": "What is \u201cbeta\u201d for an investment or a portfolio, and how do I use it?"}
{"_id": "4882_v1", "text": "Is there a law or regulation that governs the maximum allowable interest amount that can be charged on credit cards or in agreements where credit is extended?"}
{"_id": "4882_v2", "text": "Is there a law or regulation that governs the maximum allowable interest amount that can be charged on credit cards or in agreements where credit is extended?"}
{"_id": "4882_v3", "text": "Is there a law or regulation that governs the maximum allowable interest amount that can be charged on credit cards or in agreements where credit is extended?"}
{"_id": "4917_v1", "text": "Car financed at 24.90% \u2014 what can I do?"}
{"_id": "4917_v2", "text": "Car financed at 24.90% \u2014 what can I do?"}
{"_id": "4917_v3", "text": "Car financed at 24.90% \u2014 what can I do?"}
{"_id": "4970_v1", "text": "Expecting to move in five years; how to lock mortgage rates?"}
{"_id": "4971_v1", "text": "Wisest option to pay for second career education"}
{"_id": "4971_v2", "text": "Wisest option to pay for second career education"}
{"_id": "4971_v3", "text": "Wisest option to pay for second career education"}
{"_id": "4975_v1", "text": "Solid reading/literature for investment/retirement/income taxes?"}
{"_id": "4975_v2", "text": "Solid reading/literature for investment/retirement/income taxes?"}
{"_id": "4975_v3", "text": "Solid reading/literature for investment/retirement/income taxes?"}
{"_id": "4993_v1", "text": "Does it make sense to refinance a 30 year mortgage to 15 years?"}
{"_id": "4993_v2", "text": "Does it make sense to refinance a 30 year mortgage to 15 years?"}
{"_id": "4993_v3", "text": "Does it make sense to refinance a 30 year mortgage to 15 years?"}
{"_id": "5000_v1", "text": "If I have AD&D through my employer, should I STILL purchase term life insurance?"}
{"_id": "5000_v2", "text": "If I have AD&D through my employer, should I STILL purchase term life insurance?"}
{"_id": "5000_v3", "text": "If I have AD&D through my employer, should I STILL purchase term life insurance?"}
{"_id": "5006_v1", "text": "Investment for beginners in the United Kingdom"}
{"_id": "5006_v2", "text": "Investment for beginners in the United Kingdom"}
{"_id": "5006_v3", "text": "Investment for beginners in the United Kingdom"}
{"_id": "5031_v1", "text": "Margin when entered into a derivative contract"}
{"_id": "5031_v2", "text": "Margin when entered into a derivative contract"}
{"_id": "5031_v3", "text": "Margin when entered into a derivative contract"}
{"_id": "5047_v1", "text": "Need a loan to buy property in India. What are my options?"}
{"_id": "5047_v2", "text": "Need a loan to buy property in India. What are my options?"}
{"_id": "5048_v1", "text": "I'm upside down on my car loan and need a different car, what can I do?"}
{"_id": "5048_v2", "text": "I'm upside down on my car loan and need a different car, what can I do?"}
{"_id": "5048_v3", "text": "I'm upside down on my car loan and need a different car, what can I do?"}
{"_id": "5049_v1", "text": "Should I use my non-tax advantaged investment account to pay off debt?"}
{"_id": "5049_v2", "text": "Should I use my non-tax advantaged investment account to pay off debt?"}
{"_id": "5049_v3", "text": "Should I use my non-tax advantaged investment account to pay off debt?"}
{"_id": "5051_v1", "text": "Is there any reason not to buy points when re-financing with intent not to sell for a while?"}
{"_id": "5051_v2", "text": "Is there any reason not to buy points when re-financing with intent not to sell for a while?"}
{"_id": "5051_v3", "text": "Is there any reason not to buy points when re-financing with intent not to sell for a while?"}
{"_id": "5059_v1", "text": "Who could afford a higher annual deductible who couldn't afford a higher monthly payment?"}
{"_id": "5059_v2", "text": "Who could afford a higher annual deductible who couldn't afford a higher monthly payment?"}
{"_id": "5059_v3", "text": "Who could afford a higher annual deductible who couldn't afford a higher monthly payment?"}
{"_id": "5065_v1", "text": "When to hire an investment professional?"}
{"_id": "5065_v2", "text": "When to hire an investment professional?"}
{"_id": "5070_v1", "text": "Is a car loan bad debt?"}
{"_id": "5070_v2", "text": "Is a car loan bad debt?"}
{"_id": "5070_v3", "text": "Is a car loan bad debt?"}
{"_id": "5075_v1", "text": "give free budgeting advice"}
{"_id": "5101_v1", "text": "How are shares used, and what are they, physically?"}
{"_id": "5101_v2", "text": "How are shares used, and what are they, physically?"}
{"_id": "5101_v3", "text": "How are shares used, and what are they, physically?"}
{"_id": "5102_v1", "text": "What is the preferred way to set up personal finances?"}
{"_id": "5102_v2", "text": "What is the preferred way to set up personal finances?"}
{"_id": "5102_v3", "text": "What is the preferred way to set up personal finances?"}
{"_id": "5116_v1", "text": "Easiest way to diversify savings"}
{"_id": "5116_v2", "text": "Easiest way to diversify savings"}
{"_id": "5120_v1", "text": "Are the \u201cdebt reduction\u201d company useful?"}
{"_id": "5120_v2", "text": "Are the \u201cdebt reduction\u201d company useful?"}
{"_id": "5148_v1", "text": "Priced out of London property market. What are my accommodation investment options?"}
{"_id": "5148_v2", "text": "Priced out of London property market. What are my accommodation investment options?"}
{"_id": "5148_v3", "text": "Priced out of London property market. What are my accommodation investment options?"}
{"_id": "5158_v1", "text": "Advice on low-risk long-term strategy for extra cash?"}
{"_id": "5158_v2", "text": "Advice on low-risk long-term strategy for extra cash?"}
{"_id": "5158_v3", "text": "Advice on low-risk long-term strategy for extra cash?"}
{"_id": "5165_v1", "text": "I have savings and excess income. Is it time for me to find a financial advisor?"}
{"_id": "5165_v2", "text": "I have savings and excess income. Is it time for me to find a financial advisor?"}
{"_id": "5165_v3", "text": "I have savings and excess income. Is it time for me to find a financial advisor?"}
{"_id": "5183_v1", "text": "Should I learn to do my own tax?"}
{"_id": "5183_v2", "text": "Should I learn to do my own tax?"}
{"_id": "5183_v3", "text": "Should I learn to do my own tax?"}
{"_id": "5188_v1", "text": "How to manage paying expenses when moving to a weekly pay schedule and with a pay increase?"}
{"_id": "5188_v2", "text": "How to manage paying expenses when moving to a weekly pay schedule and with a pay increase?"}
{"_id": "5188_v3", "text": "How to manage paying expenses when moving to a weekly pay schedule and with a pay increase?"}
{"_id": "5195_v1", "text": "mortgage vs car loan vs invest extra cash?"}
{"_id": "5195_v2", "text": "mortgage vs car loan vs invest extra cash?"}
{"_id": "5210_v1", "text": "What actions should I be taking to establish good credit scores for my children?"}
{"_id": "5210_v2", "text": "What actions should I be taking to establish good credit scores for my children?"}
{"_id": "5210_v3", "text": "What actions should I be taking to establish good credit scores for my children?"}
{"_id": "5211_v1", "text": "Resources to begin trading from home?"}
{"_id": "5224_v1", "text": "Settling house with husband during divorce. Which of these two options makes the most sense?"}
{"_id": "5224_v2", "text": "Settling house with husband during divorce. Which of these two options makes the most sense?"}
{"_id": "5246_v1", "text": "My university has tranfered me money by mistake, and wants me to transfer it back"}
{"_id": "5246_v2", "text": "My university has tranfered me money by mistake, and wants me to transfer it back"}
{"_id": "5246_v3", "text": "My university has tranfered me money by mistake, and wants me to transfer it back"}
{"_id": "5252_v1", "text": "What are some sources of information on dividend schedules and amounts?"}
{"_id": "5252_v2", "text": "What are some sources of information on dividend schedules and amounts?"}
{"_id": "5252_v3", "text": "What are some sources of information on dividend schedules and amounts?"}
{"_id": "5257_v1", "text": "If I plan to buy a car in cash, should I let the dealer know?"}
{"_id": "5257_v2", "text": "If I plan to buy a car in cash, should I let the dealer know?"}
{"_id": "5257_v3", "text": "If I plan to buy a car in cash, should I let the dealer know?"}
{"_id": "5270_v1", "text": "Free service for automatic email stock alert when target price is met?"}
{"_id": "5270_v2", "text": "Free service for automatic email stock alert when target price is met?"}
{"_id": "5270_v3", "text": "Free service for automatic email stock alert when target price is met?"}
{"_id": "5284_v1", "text": "Is there an online cost-basis calculator that automatically accounts for dividend re-investments and splits?"}
{"_id": "5284_v2", "text": "Is there an online cost-basis calculator that automatically accounts for dividend re-investments and splits?"}
{"_id": "5284_v3", "text": "Is there an online cost-basis calculator that automatically accounts for dividend re-investments and splits?"}
{"_id": "5290_v1", "text": "Is a stock's trade size history publicly available?"}
{"_id": "5290_v2", "text": "Is a stock's trade size history publicly available?"}
{"_id": "5290_v3", "text": "Is a stock's trade size history publicly available?"}
{"_id": "5292_v1", "text": "Online tools for monitoring my portfolio gains/losses in real time?"}
{"_id": "5292_v2", "text": "Online tools for monitoring my portfolio gains/losses in real time?"}
{"_id": "5292_v3", "text": "Online tools for monitoring my portfolio gains/losses in real time?"}
{"_id": "5327_v1", "text": "How to start investing/thinking about money as a young person?"}
{"_id": "5327_v2", "text": "How to start investing/thinking about money as a young person?"}
{"_id": "5327_v3", "text": "How to start investing/thinking about money as a young person?"}
{"_id": "5329_v1", "text": "Should I take a personal loan for my postgraduate studies?"}
{"_id": "5418_v1", "text": "Calculate investment's interest rate to break-even insurance cost [duplicate]"}
{"_id": "5432_v1", "text": "Can my rent to own equity be used as a downpayment?"}
{"_id": "5432_v2", "text": "Can my rent to own equity be used as a downpayment?"}
{"_id": "5432_v3", "text": "Can my rent to own equity be used as a downpayment?"}
{"_id": "5435_v1", "text": "Getting over that financial unease? Budgeting advice"}
{"_id": "5435_v2", "text": "Getting over that financial unease? Budgeting advice"}
{"_id": "5435_v3", "text": "Getting over that financial unease? Budgeting advice"}
{"_id": "5479_v1", "text": "What is the best approach to save money for College for three kids?"}
{"_id": "5479_v2", "text": "What is the best approach to save money for College for three kids?"}
{"_id": "5548_v1", "text": "Can value from labor provided to oneself be taxed?"}
{"_id": "5548_v2", "text": "Can value from labor provided to oneself be taxed?"}
{"_id": "5552_v1", "text": "How do I choose 401k investment funds?"}
{"_id": "5552_v2", "text": "How do I choose 401k investment funds?"}
{"_id": "5552_v3", "text": "How do I choose 401k investment funds?"}
{"_id": "5612_v1", "text": "Hearing much about Dave Ramsey. Which of his works is best in describing his \u201cphilosophy\u201d about money?"}
{"_id": "5612_v2", "text": "Hearing much about Dave Ramsey. Which of his works is best in describing his \u201cphilosophy\u201d about money?"}
{"_id": "5612_v3", "text": "Hearing much about Dave Ramsey. Which of his works is best in describing his \u201cphilosophy\u201d about money?"}
{"_id": "5630_v1", "text": "Will paying off my car early hinder my ability to build credit?"}
{"_id": "5654_v1", "text": "If I put a large down payment (over 50%) towards a car loan, can I reduce my interest rate and is it smart to even put that much down?"}
{"_id": "5654_v2", "text": "If I put a large down payment (over 50%) towards a car loan, can I reduce my interest rate and is it smart to even put that much down?"}
{"_id": "5673_v1", "text": "Comparing the present value of total payment today and partial payments over 3 months"}
{"_id": "5673_v2", "text": "Comparing the present value of total payment today and partial payments over 3 months"}
{"_id": "5673_v3", "text": "Comparing the present value of total payment today and partial payments over 3 months"}
{"_id": "5739_v1", "text": "Asset allocation when retirement is already secure"}
{"_id": "5739_v2", "text": "Asset allocation when retirement is already secure"}
{"_id": "5739_v3", "text": "Asset allocation when retirement is already secure"}
{"_id": "5770_v1", "text": "Any difference between buying a few shares of expensive stock or a bunch of cheap stock"}
{"_id": "5770_v2", "text": "Any difference between buying a few shares of expensive stock or a bunch of cheap stock"}
{"_id": "5770_v3", "text": "Any difference between buying a few shares of expensive stock or a bunch of cheap stock"}
{"_id": "5804_v1", "text": "Paying off student loan or using that money for a downpayment on a house"}
{"_id": "5804_v2", "text": "Paying off student loan or using that money for a downpayment on a house"}
{"_id": "5835_v1", "text": "Are there any disadvantages to DHA Investment Properties?"}
{"_id": "5835_v2", "text": "Are there any disadvantages to DHA Investment Properties?"}
{"_id": "5835_v3", "text": "Are there any disadvantages to DHA Investment Properties?"}
{"_id": "5841_v1", "text": "Should I put more money down on one property and pay it off sooner or hold on to the cash?"}
{"_id": "5849_v1", "text": "What headaches will I have switching from Quicken to GnuCash?"}
{"_id": "5849_v2", "text": "What headaches will I have switching from Quicken to GnuCash?"}
{"_id": "5849_v3", "text": "What headaches will I have switching from Quicken to GnuCash?"}
{"_id": "5856_v1", "text": "Why are options created?"}
{"_id": "5856_v2", "text": "Why are options created?"}
{"_id": "5856_v3", "text": "Why are options created?"}
{"_id": "5866_v1", "text": "What is the best way to make a bet that a certain stock will go up in the medium term?"}
{"_id": "5866_v2", "text": "What is the best way to make a bet that a certain stock will go up in the medium term?"}
{"_id": "5877_v1", "text": "Home Renovations are expensive.. Should I only pay cash for them?"}
{"_id": "5877_v2", "text": "Home Renovations are expensive.. Should I only pay cash for them?"}
{"_id": "5877_v3", "text": "Home Renovations are expensive.. Should I only pay cash for them?"}
{"_id": "5890_v1", "text": "How to build a U.S. credit history as a worker on a visa?"}
{"_id": "5890_v2", "text": "How to build a U.S. credit history as a worker on a visa?"}
{"_id": "5890_v3", "text": "How to build a U.S. credit history as a worker on a visa?"}
{"_id": "5900_v1", "text": "Long term investment for money"}
{"_id": "5900_v2", "text": "Long term investment for money"}
{"_id": "5900_v3", "text": "Long term investment for money"}
{"_id": "5902_v1", "text": "Ways to establish credit history for international student"}
{"_id": "5902_v2", "text": "Ways to establish credit history for international student"}
{"_id": "5902_v3", "text": "Ways to establish credit history for international student"}
{"_id": "5933_v1", "text": "Is it better to pay an insurance deductible, or get an upgrade?"}
{"_id": "5933_v2", "text": "Is it better to pay an insurance deductible, or get an upgrade?"}
{"_id": "5945_v1", "text": "Are 'no interest if paid in in x months' credit cards worth it?"}
{"_id": "5945_v2", "text": "Are 'no interest if paid in in x months' credit cards worth it?"}
{"_id": "5945_v3", "text": "Are 'no interest if paid in in x months' credit cards worth it?"}
{"_id": "5977_v1", "text": "Which is the better strategy for buying stocks monthly?"}
{"_id": "5977_v2", "text": "Which is the better strategy for buying stocks monthly?"}
{"_id": "5977_v3", "text": "Which is the better strategy for buying stocks monthly?"}
{"_id": "5989_v1", "text": "How can I help my friend change his saving habits?"}
{"_id": "5989_v2", "text": "How can I help my friend change his saving habits?"}
{"_id": "5989_v3", "text": "How can I help my friend change his saving habits?"}
{"_id": "5997_v1", "text": "I've tracked my spending and have created a budget, now what do I do with it?"}
{"_id": "5997_v2", "text": "I've tracked my spending and have created a budget, now what do I do with it?"}
{"_id": "5997_v3", "text": "I've tracked my spending and have created a budget, now what do I do with it?"}
{"_id": "6010_v1", "text": "What is most time-efficient way to track portfolio asset allocation?"}
{"_id": "6010_v2", "text": "What is most time-efficient way to track portfolio asset allocation?"}
{"_id": "6010_v3", "text": "What is most time-efficient way to track portfolio asset allocation?"}
{"_id": "6012_v1", "text": "How to find a good third-party, 401k management/advice service?"}
{"_id": "6012_v2", "text": "How to find a good third-party, 401k management/advice service?"}
{"_id": "6012_v3", "text": "How to find a good third-party, 401k management/advice service?"}
{"_id": "6023_v1", "text": "I can make a budget, but how can I get myself to consistently follow my budget?"}
{"_id": "6023_v2", "text": "I can make a budget, but how can I get myself to consistently follow my budget?"}
{"_id": "6023_v3", "text": "I can make a budget, but how can I get myself to consistently follow my budget?"}
{"_id": "6034_v1", "text": "Given a certain yearly savings, how much can I spend on a capital improvement? NPV of future cash flow"}
{"_id": "6034_v2", "text": "Given a certain yearly savings, how much can I spend on a capital improvement? NPV of future cash flow"}
{"_id": "6034_v3", "text": "Given a certain yearly savings, how much can I spend on a capital improvement? NPV of future cash flow"}
{"_id": "6042_v1", "text": "What is the best source of funding to pay off debt?"}
{"_id": "6042_v2", "text": "What is the best source of funding to pay off debt?"}
{"_id": "6043_v1", "text": "Does it make sense to buy an index ETF (e.g. S&P 500) when the index is at an all-time high?"}
{"_id": "6043_v2", "text": "Does it make sense to buy an index ETF (e.g. S&P 500) when the index is at an all-time high?"}
{"_id": "6043_v3", "text": "Does it make sense to buy an index ETF (e.g. S&P 500) when the index is at an all-time high?"}
{"_id": "6072_v1", "text": "How to approach building credit without a credit card"}
{"_id": "6079_v1", "text": "Should I participate in a 401k if there is no company match?"}
{"_id": "6079_v2", "text": "Should I participate in a 401k if there is no company match?"}
{"_id": "6079_v3", "text": "Should I participate in a 401k if there is no company match?"}
{"_id": "6082_v1", "text": "Most common types of financial scams an individual investor should beware of?"}
{"_id": "6082_v2", "text": "Most common types of financial scams an individual investor should beware of?"}
{"_id": "6082_v3", "text": "Most common types of financial scams an individual investor should beware of?"}
{"_id": "6100_v1", "text": "Advantages of paying more of your mortgage while you know you won't continue to live there your whole life"}
{"_id": "6100_v2", "text": "Advantages of paying more of your mortgage while you know you won't continue to live there your whole life"}
{"_id": "6100_v3", "text": "Advantages of paying more of your mortgage while you know you won't continue to live there your whole life"}
{"_id": "6108_v1", "text": "Car Loan upside down--refinance before selling?"}
{"_id": "6108_v2", "text": "Car Loan upside down--refinance before selling?"}
{"_id": "6108_v3", "text": "Car Loan upside down--refinance before selling?"}
{"_id": "6112_v1", "text": "How do you quantify investment risk?"}
{"_id": "6112_v2", "text": "How do you quantify investment risk?"}
{"_id": "6112_v3", "text": "How do you quantify investment risk?"}
{"_id": "6147_v1", "text": "What is the difference between a bad/bounced check and insufficient funds?"}
{"_id": "6147_v2", "text": "What is the difference between a bad/bounced check and insufficient funds?"}
{"_id": "6147_v3", "text": "What is the difference between a bad/bounced check and insufficient funds?"}
{"_id": "6148_v1", "text": "Possible to use balance transfers to avoid interest with major credit cards?"}
{"_id": "6148_v2", "text": "Possible to use balance transfers to avoid interest with major credit cards?"}
{"_id": "6148_v3", "text": "Possible to use balance transfers to avoid interest with major credit cards?"}
{"_id": "6151_v1", "text": "How should we prioritize retirement savings, paying down debt, and saving for a house?"}
{"_id": "6151_v2", "text": "How should we prioritize retirement savings, paying down debt, and saving for a house?"}
{"_id": "6151_v3", "text": "How should we prioritize retirement savings, paying down debt, and saving for a house?"}
{"_id": "6152_v1", "text": "Did basically all mutual funds have a significant crash in 2008?"}
{"_id": "6177_v1", "text": "Wash Sales and Day Trading"}
{"_id": "6177_v2", "text": "Wash Sales and Day Trading"}
{"_id": "6177_v3", "text": "Wash Sales and Day Trading"}
{"_id": "6178_v1", "text": "What are the advantages of doing accounting on your personal finances?"}
{"_id": "6179_v1", "text": "Should I pay off my credit card online immediately or wait for the bill?"}
{"_id": "6179_v2", "text": "Should I pay off my credit card online immediately or wait for the bill?"}
{"_id": "6179_v3", "text": "Should I pay off my credit card online immediately or wait for the bill?"}
{"_id": "6195_v1", "text": "Should I use put extra money toward paying off my student loans or investing in an index fund?"}
{"_id": "6195_v2", "text": "Should I use put extra money toward paying off my student loans or investing in an index fund?"}
{"_id": "6195_v3", "text": "Should I use put extra money toward paying off my student loans or investing in an index fund?"}
{"_id": "6214_v1", "text": "HELOC vs. Parental Student Loans vs. Second Mortgage?"}
{"_id": "6220_v1", "text": "Trouble sticking to a budget when using credit cards for day to day transactions?"}
{"_id": "6220_v2", "text": "Trouble sticking to a budget when using credit cards for day to day transactions?"}
{"_id": "6220_v3", "text": "Trouble sticking to a budget when using credit cards for day to day transactions?"}
{"_id": "6225_v1", "text": "Should the poor consider investing as a means to becoming rich?"}
{"_id": "6225_v2", "text": "Should the poor consider investing as a means to becoming rich?"}
{"_id": "6225_v3", "text": "Should the poor consider investing as a means to becoming rich?"}
{"_id": "6229_v1", "text": "Can zero-coupon bonds go down in price?"}
{"_id": "6229_v2", "text": "Can zero-coupon bonds go down in price?"}
{"_id": "6229_v3", "text": "Can zero-coupon bonds go down in price?"}
{"_id": "6233_v1", "text": "Should I fund a move by borrowing or selling other property assets?"}
{"_id": "6233_v2", "text": "Should I fund a move by borrowing or selling other property assets?"}
{"_id": "6233_v3", "text": "Should I fund a move by borrowing or selling other property assets?"}
{"_id": "6234_v1", "text": "First time homeowner and getting a mortgage?"}
{"_id": "6234_v2", "text": "First time homeowner and getting a mortgage?"}
{"_id": "6234_v3", "text": "First time homeowner and getting a mortgage?"}
{"_id": "6236_v1", "text": "Why don't people generally save more of their income?"}
{"_id": "6236_v2", "text": "Why don't people generally save more of their income?"}
{"_id": "6236_v3", "text": "Why don't people generally save more of their income?"}
{"_id": "6238_v1", "text": "How to increase my credit score"}
{"_id": "6243_v1", "text": "When filing taxes in Canada, in what cases does box 39 on the T4 get reported as half of box 38?"}
{"_id": "6243_v2", "text": "When filing taxes in Canada, in what cases does box 39 on the T4 get reported as half of box 38?"}
{"_id": "6243_v3", "text": "When filing taxes in Canada, in what cases does box 39 on the T4 get reported as half of box 38?"}
{"_id": "6271_v1", "text": "Advice for college student: Should I hire a financial adviser or just invest in index funds?"}
{"_id": "6271_v2", "text": "Advice for college student: Should I hire a financial adviser or just invest in index funds?"}
{"_id": "6271_v3", "text": "Advice for college student: Should I hire a financial adviser or just invest in index funds?"}
{"_id": "6297_v1", "text": "Identifying \u201cDividend Stocks\u201d"}
{"_id": "6297_v2", "text": "Identifying \u201cDividend Stocks\u201d"}
{"_id": "6297_v3", "text": "Identifying \u201cDividend Stocks\u201d"}
{"_id": "6306_v1", "text": "401k with paltry match or SPY ETF?"}
{"_id": "6306_v2", "text": "401k with paltry match or SPY ETF?"}
{"_id": "6306_v3", "text": "401k with paltry match or SPY ETF?"}
{"_id": "6327_v1", "text": "Beginning investment"}
{"_id": "6327_v2", "text": "Beginning investment"}
{"_id": "6327_v3", "text": "Beginning investment"}
{"_id": "6331_v1", "text": "Do developed country equities have a higher return than emerging market equities, when measured in the latter currency?"}
{"_id": "6331_v2", "text": "Do developed country equities have a higher return than emerging market equities, when measured in the latter currency?"}
{"_id": "6334_v1", "text": "Is it OK to use a credit card on zero-interest to pay some other credit cards with higher-interest?"}
{"_id": "6334_v2", "text": "Is it OK to use a credit card on zero-interest to pay some other credit cards with higher-interest?"}
{"_id": "6334_v3", "text": "Is it OK to use a credit card on zero-interest to pay some other credit cards with higher-interest?"}
{"_id": "6338_v1", "text": "Is there a good options strategy that has a fairly low risk?"}
{"_id": "6338_v2", "text": "Is there a good options strategy that has a fairly low risk?"}
{"_id": "6338_v3", "text": "Is there a good options strategy that has a fairly low risk?"}
{"_id": "6340_v1", "text": "Is there an advantage to keeping a liquid emergency fund if one also has an untapped line of credit?"}
{"_id": "6340_v2", "text": "Is there an advantage to keeping a liquid emergency fund if one also has an untapped line of credit?"}
{"_id": "6340_v3", "text": "Is there an advantage to keeping a liquid emergency fund if one also has an untapped line of credit?"}
{"_id": "6343_v1", "text": "How to avoid getting back into debt?"}
{"_id": "6343_v2", "text": "How to avoid getting back into debt?"}
{"_id": "6343_v3", "text": "How to avoid getting back into debt?"}
{"_id": "6346_v1", "text": "Is person-person lending/borrowing protected by law?"}
{"_id": "6346_v2", "text": "Is person-person lending/borrowing protected by law?"}
{"_id": "6346_v3", "text": "Is person-person lending/borrowing protected by law?"}
{"_id": "6349_v1", "text": "What is the best way to get cash from my retirement accounts for a home down payment?"}
{"_id": "6350_v1", "text": "Snowball debt or pay off a large amount?"}
{"_id": "6350_v2", "text": "Snowball debt or pay off a large amount?"}
{"_id": "6350_v3", "text": "Snowball debt or pay off a large amount?"}
{"_id": "6353_v1", "text": "Does home equity grow with the investment put into the house?"}
{"_id": "6353_v2", "text": "Does home equity grow with the investment put into the house?"}
{"_id": "6353_v3", "text": "Does home equity grow with the investment put into the house?"}
{"_id": "6356_v1", "text": "Credit card closed. Effect on credit score (USA)"}
{"_id": "6356_v2", "text": "Credit card closed. Effect on credit score (USA)"}
{"_id": "6356_v3", "text": "Credit card closed. Effect on credit score (USA)"}
{"_id": "6361_v1", "text": "How can home buying be considered a sound investment with all of that interest that needs to be paid?"}
{"_id": "6361_v2", "text": "How can home buying be considered a sound investment with all of that interest that needs to be paid?"}
{"_id": "6361_v3", "text": "How can home buying be considered a sound investment with all of that interest that needs to be paid?"}
{"_id": "6375_v1", "text": "Didn't apply for credit card but got an application denied letter?"}
{"_id": "6375_v2", "text": "Didn't apply for credit card but got an application denied letter?"}
{"_id": "6375_v3", "text": "Didn't apply for credit card but got an application denied letter?"}
{"_id": "6377_v1", "text": "Best way to invest money as a 22 year old?"}
{"_id": "6377_v2", "text": "Best way to invest money as a 22 year old?"}
{"_id": "6377_v3", "text": "Best way to invest money as a 22 year old?"}
{"_id": "6507_v1", "text": "What taxes are assessed on distributions of an inherited IRA?"}
{"_id": "6507_v2", "text": "What taxes are assessed on distributions of an inherited IRA?"}
{"_id": "6507_v3", "text": "What taxes are assessed on distributions of an inherited IRA?"}
{"_id": "6513_v1", "text": "Shares; are they really only for the rich/investors?"}
{"_id": "6513_v2", "text": "Shares; are they really only for the rich/investors?"}
{"_id": "6513_v3", "text": "Shares; are they really only for the rich/investors?"}
{"_id": "6546_v1", "text": "I have $10,000 sitting in an account making around $1 per month interest, what are some better options?"}
{"_id": "6546_v2", "text": "I have $10,000 sitting in an account making around $1 per month interest, what are some better options?"}
{"_id": "6546_v3", "text": "I have $10,000 sitting in an account making around $1 per month interest, what are some better options?"}
{"_id": "6579_v1", "text": "Does a stock really dip in price on the ex-dividend date? And why would it do this?"}
{"_id": "6579_v2", "text": "Does a stock really dip in price on the ex-dividend date? And why would it do this?"}
{"_id": "6579_v3", "text": "Does a stock really dip in price on the ex-dividend date? And why would it do this?"}
{"_id": "6588_v1", "text": "Can PayPal transfer money automatically from my bank account if I link it in PayPal?"}
{"_id": "6588_v2", "text": "Can PayPal transfer money automatically from my bank account if I link it in PayPal?"}
{"_id": "6588_v3", "text": "Can PayPal transfer money automatically from my bank account if I link it in PayPal?"}
{"_id": "6604_v1", "text": "What are my options to deal with Student Loan debt collectors?"}
{"_id": "6604_v2", "text": "What are my options to deal with Student Loan debt collectors?"}
{"_id": "6604_v3", "text": "What are my options to deal with Student Loan debt collectors?"}
{"_id": "6608_v1", "text": "If I want to take cash from Portugal to the USA, should I exchange my money before leaving or after arriving?"}
{"_id": "6608_v2", "text": "If I want to take cash from Portugal to the USA, should I exchange my money before leaving or after arriving?"}
{"_id": "6608_v3", "text": "If I want to take cash from Portugal to the USA, should I exchange my money before leaving or after arriving?"}
{"_id": "6656_v1", "text": "What's are the differences between \u201cdefined contribution\u201d and \u201cdefined benefit\u201d pension plans?"}
{"_id": "6656_v2", "text": "What's are the differences between \u201cdefined contribution\u201d and \u201cdefined benefit\u201d pension plans?"}
{"_id": "6656_v3", "text": "What's are the differences between \u201cdefined contribution\u201d and \u201cdefined benefit\u201d pension plans?"}
{"_id": "6670_v1", "text": "Is selling put options an advisable strategy for a retiree to generate stable income?"}
{"_id": "6670_v2", "text": "Is selling put options an advisable strategy for a retiree to generate stable income?"}
{"_id": "6670_v3", "text": "Is selling put options an advisable strategy for a retiree to generate stable income?"}
{"_id": "6719_v1", "text": "Debit cards as bad as credit cards?"}
{"_id": "6719_v2", "text": "Debit cards as bad as credit cards?"}
{"_id": "6732_v1", "text": "Do real nappies (reusable / cloth diapers) really save money?"}
{"_id": "6732_v2", "text": "Do real nappies (reusable / cloth diapers) really save money?"}
{"_id": "6732_v3", "text": "Do real nappies (reusable / cloth diapers) really save money?"}
{"_id": "6743_v1", "text": "How to protect a Stock you still want to own from a downturn?"}
{"_id": "6743_v2", "text": "How to protect a Stock you still want to own from a downturn?"}
{"_id": "6743_v3", "text": "How to protect a Stock you still want to own from a downturn?"}
{"_id": "6804_v1", "text": "Can I actually get a share of stock issued with a piece of paper anymore?"}
{"_id": "6804_v2", "text": "Can I actually get a share of stock issued with a piece of paper anymore?"}
{"_id": "6809_v1", "text": "Saving tax for long term stock investment capital gain by quiting my current job?"}
{"_id": "6831_v1", "text": "Why do stock exchanges close at night?"}
{"_id": "6831_v2", "text": "Why do stock exchanges close at night?"}
{"_id": "6882_v1", "text": "Can I use a different HSA than PayFlex that came with aetna?"}
{"_id": "6882_v2", "text": "Can I use a different HSA than PayFlex that came with aetna?"}
{"_id": "6882_v3", "text": "Can I use a different HSA than PayFlex that came with aetna?"}
{"_id": "6884_v1", "text": "If I use stock as collateral for a loan and I default, does the bank pay taxes when they sell my stock?"}
{"_id": "6884_v2", "text": "If I use stock as collateral for a loan and I default, does the bank pay taxes when they sell my stock?"}
{"_id": "6884_v3", "text": "If I use stock as collateral for a loan and I default, does the bank pay taxes when they sell my stock?"}
{"_id": "6941_v1", "text": "How do I manage my portfolio as stock evaluation criteria evolve?"}
{"_id": "6941_v2", "text": "How do I manage my portfolio as stock evaluation criteria evolve?"}
{"_id": "6941_v3", "text": "How do I manage my portfolio as stock evaluation criteria evolve?"}
{"_id": "6963_v1", "text": "How to calculate how much a large stock position is really worth?"}
{"_id": "6963_v2", "text": "How to calculate how much a large stock position is really worth?"}
{"_id": "6963_v3", "text": "How to calculate how much a large stock position is really worth?"}
{"_id": "7014_v1", "text": "How good is Wall Street Survivor for learning about investing?"}
{"_id": "7024_v1", "text": "Should I use regular or adjusted close for backtesting?"}
{"_id": "7024_v2", "text": "Should I use regular or adjusted close for backtesting?"}
{"_id": "7024_v3", "text": "Should I use regular or adjusted close for backtesting?"}
{"_id": "7139_v1", "text": "How can I verify that a broker I found online is legitimate?"}
{"_id": "7139_v2", "text": "How can I verify that a broker I found online is legitimate?"}
{"_id": "7139_v3", "text": "How can I verify that a broker I found online is legitimate?"}
{"_id": "7144_v1", "text": "Are stocks always able to be bought and sold at market price?"}
{"_id": "7144_v2", "text": "Are stocks always able to be bought and sold at market price?"}
{"_id": "7144_v3", "text": "Are stocks always able to be bought and sold at market price?"}
{"_id": "7146_v1", "text": "Vanguard Target Retirement Fund vs. Similar ETF Distribution (w/ REIT)"}
{"_id": "7146_v2", "text": "Vanguard Target Retirement Fund vs. Similar ETF Distribution (w/ REIT)"}
{"_id": "7148_v1", "text": "Are wash sale rules different for stocks and ETFs / Mutual Funds?"}
{"_id": "7148_v2", "text": "Are wash sale rules different for stocks and ETFs / Mutual Funds?"}
{"_id": "7148_v3", "text": "Are wash sale rules different for stocks and ETFs / Mutual Funds?"}
{"_id": "7258_v1", "text": "Does dollar cost averaging apply when moving investments between fund families?"}
{"_id": "7258_v2", "text": "Does dollar cost averaging apply when moving investments between fund families?"}
{"_id": "7258_v3", "text": "Does dollar cost averaging apply when moving investments between fund families?"}
{"_id": "7264_v1", "text": "Dollar-cost averaging: How often should one use it? What criteria to use when choosing stocks to apply it to?"}
{"_id": "7264_v2", "text": "Dollar-cost averaging: How often should one use it? What criteria to use when choosing stocks to apply it to?"}
{"_id": "7264_v3", "text": "Dollar-cost averaging: How often should one use it? What criteria to use when choosing stocks to apply it to?"}
{"_id": "7302_v1", "text": "How to diversify IRA portfolio given fund minimum investments and IRA contribution limits?"}
{"_id": "7302_v2", "text": "How to diversify IRA portfolio given fund minimum investments and IRA contribution limits?"}
{"_id": "7302_v3", "text": "How to diversify IRA portfolio given fund minimum investments and IRA contribution limits?"}
{"_id": "7327_v1", "text": "Taking Losses To Save On Tax"}
{"_id": "7327_v2", "text": "Taking Losses To Save On Tax"}
{"_id": "7327_v3", "text": "Taking Losses To Save On Tax"}
{"_id": "7336_v1", "text": "Single investment across multiple accounts\u2026 good, bad, indifferent?"}
{"_id": "7336_v2", "text": "Single investment across multiple accounts\u2026 good, bad, indifferent?"}
{"_id": "7336_v3", "text": "Single investment across multiple accounts\u2026 good, bad, indifferent?"}
{"_id": "7337_v1", "text": "Shorting versus selling to hedge risk"}
{"_id": "7337_v2", "text": "Shorting versus selling to hedge risk"}
{"_id": "7337_v3", "text": "Shorting versus selling to hedge risk"}
{"_id": "7338_v1", "text": "Is it possible to trade CFD without leverage?"}
{"_id": "7338_v2", "text": "Is it possible to trade CFD without leverage?"}
{"_id": "7338_v3", "text": "Is it possible to trade CFD without leverage?"}
{"_id": "7375_v1", "text": "Should I sell my stocks to reduce my debt?"}
{"_id": "7375_v2", "text": "Should I sell my stocks to reduce my debt?"}
{"_id": "7375_v3", "text": "Should I sell my stocks to reduce my debt?"}
{"_id": "7390_v1", "text": "Is my wash sale being calculated incorrectly?"}
{"_id": "7390_v2", "text": "Is my wash sale being calculated incorrectly?"}
{"_id": "7390_v3", "text": "Is my wash sale being calculated incorrectly?"}
{"_id": "7410_v1", "text": "Is there a widely recognized bond index?"}
{"_id": "7410_v2", "text": "Is there a widely recognized bond index?"}
{"_id": "7410_v3", "text": "Is there a widely recognized bond index?"}
{"_id": "7454_v1", "text": "Should I fund retirement with a static asset allocation or an age based glide path?"}
{"_id": "7454_v2", "text": "Should I fund retirement with a static asset allocation or an age based glide path?"}
{"_id": "7454_v3", "text": "Should I fund retirement with a static asset allocation or an age based glide path?"}
{"_id": "7522_v1", "text": "Why should I trust investment banks' ratings?"}
{"_id": "7522_v2", "text": "Why should I trust investment banks' ratings?"}
{"_id": "7524_v1", "text": "What to sell when your financial needs change, stocks or bonds?"}
{"_id": "7524_v2", "text": "What to sell when your financial needs change, stocks or bonds?"}
{"_id": "7524_v3", "text": "What to sell when your financial needs change, stocks or bonds?"}
{"_id": "7525_v1", "text": "Buying shares in employer's company during IPO"}
{"_id": "7525_v2", "text": "Buying shares in employer's company during IPO"}
{"_id": "7525_v3", "text": "Buying shares in employer's company during IPO"}
{"_id": "7546_v1", "text": "Why would someone buy a way out-of-the-money call option that's expiring soon?"}
{"_id": "7546_v2", "text": "Why would someone buy a way out-of-the-money call option that's expiring soon?"}
{"_id": "7546_v3", "text": "Why would someone buy a way out-of-the-money call option that's expiring soon?"}
{"_id": "7551_v1", "text": "which types of investments should be choosen for 401k at early 20's?"}
{"_id": "7551_v2", "text": "which types of investments should be choosen for 401k at early 20's?"}
{"_id": "7551_v3", "text": "which types of investments should be choosen for 401k at early 20's?"}
{"_id": "7570_v1", "text": "Should I make more conservative investments in my company 401(K) if I'm going to leave the job in a couple of years?"}
{"_id": "7570_v2", "text": "Should I make more conservative investments in my company 401(K) if I'm going to leave the job in a couple of years?"}
{"_id": "7570_v3", "text": "Should I make more conservative investments in my company 401(K) if I'm going to leave the job in a couple of years?"}
{"_id": "7608_v1", "text": "Is losing money in my 401K normal?"}
{"_id": "7608_v2", "text": "Is losing money in my 401K normal?"}
{"_id": "7608_v3", "text": "Is losing money in my 401K normal?"}
{"_id": "7610_v1", "text": "What's a good way to find someone locally to help me with my investments?"}
{"_id": "7610_v2", "text": "What's a good way to find someone locally to help me with my investments?"}
{"_id": "7610_v3", "text": "What's a good way to find someone locally to help me with my investments?"}
{"_id": "7617_v1", "text": "How to decide on split between large/mid/small cap on 401(k) and how often rebalance"}
{"_id": "7617_v2", "text": "How to decide on split between large/mid/small cap on 401(k) and how often rebalance"}
{"_id": "7617_v3", "text": "How to decide on split between large/mid/small cap on 401(k) and how often rebalance"}
{"_id": "7636_v1", "text": "Are binary options really part of trading?"}
{"_id": "7636_v2", "text": "Are binary options really part of trading?"}
{"_id": "7636_v3", "text": "Are binary options really part of trading?"}
{"_id": "7723_v1", "text": "If throwing good money after bad is generally a bad idea, is throwing more money after good Ok?"}
{"_id": "7723_v2", "text": "If throwing good money after bad is generally a bad idea, is throwing more money after good Ok?"}
{"_id": "7723_v3", "text": "If throwing good money after bad is generally a bad idea, is throwing more money after good Ok?"}
{"_id": "7726_v1", "text": "Source of income: from dividends vs sale of principal or security"}
{"_id": "7726_v2", "text": "Source of income: from dividends vs sale of principal or security"}
{"_id": "7726_v3", "text": "Source of income: from dividends vs sale of principal or security"}
{"_id": "7750_v1", "text": "What should I do with my $10K windfall, given these options?"}
{"_id": "7750_v2", "text": "What should I do with my $10K windfall, given these options?"}
{"_id": "7774_v1", "text": "Investing small amounts at regular intervals while minimizing fees?"}
{"_id": "7774_v2", "text": "Investing small amounts at regular intervals while minimizing fees?"}
{"_id": "7774_v3", "text": "Investing small amounts at regular intervals while minimizing fees?"}
{"_id": "7776_v1", "text": "Is it a bad idea to invest a student loan?"}
{"_id": "7776_v2", "text": "Is it a bad idea to invest a student loan?"}
{"_id": "7776_v3", "text": "Is it a bad idea to invest a student loan?"}
{"_id": "7778_v1", "text": "I have a horrible 401k plan, with high expenses. Should I stay with it or move my money elsewhere?"}
{"_id": "7778_v2", "text": "I have a horrible 401k plan, with high expenses. Should I stay with it or move my money elsewhere?"}
{"_id": "7778_v3", "text": "I have a horrible 401k plan, with high expenses. Should I stay with it or move my money elsewhere?"}
{"_id": "7790_v1", "text": "Is compounding interest on investments a myth?"}
{"_id": "7790_v2", "text": "Is compounding interest on investments a myth?"}
{"_id": "7790_v3", "text": "Is compounding interest on investments a myth?"}
{"_id": "7797_v1", "text": "What price can *I* buy IPO shares for?"}
{"_id": "7802_v1", "text": "Retirement planning 401(k), IRA, pension, student loans"}
{"_id": "7802_v2", "text": "Retirement planning 401(k), IRA, pension, student loans"}
{"_id": "7802_v3", "text": "Retirement planning 401(k), IRA, pension, student loans"}
{"_id": "7804_v1", "text": "How should I begin investing real money as a student?"}
{"_id": "7804_v2", "text": "How should I begin investing real money as a student?"}
{"_id": "7804_v3", "text": "How should I begin investing real money as a student?"}
{"_id": "7822_v1", "text": "Short term cutting losses in a long term investment"}
{"_id": "7822_v2", "text": "Short term cutting losses in a long term investment"}
{"_id": "7822_v3", "text": "Short term cutting losses in a long term investment"}
{"_id": "7828_v1", "text": "What is good growth?"}
{"_id": "7828_v2", "text": "What is good growth?"}
{"_id": "7828_v3", "text": "What is good growth?"}
{"_id": "7856_v1", "text": "Is short selling a good hedging strategy during overzealous market conditions?"}
{"_id": "7856_v2", "text": "Is short selling a good hedging strategy during overzealous market conditions?"}
{"_id": "7856_v3", "text": "Is short selling a good hedging strategy during overzealous market conditions?"}
{"_id": "7891_v1", "text": "Should I change 401k investment options to prepare for rising interest rates?"}
{"_id": "7891_v2", "text": "Should I change 401k investment options to prepare for rising interest rates?"}
{"_id": "7891_v3", "text": "Should I change 401k investment options to prepare for rising interest rates?"}
{"_id": "7903_v1", "text": "Is it possible for all the owners of a stock to gain or lose money at the same time?"}
{"_id": "7903_v2", "text": "Is it possible for all the owners of a stock to gain or lose money at the same time?"}
{"_id": "7903_v3", "text": "Is it possible for all the owners of a stock to gain or lose money at the same time?"}
{"_id": "7924_v1", "text": "Micro-investing: How to effectively invest frequent small amounts of money in equities?"}
{"_id": "7956_v1", "text": "Some stock's prices don't fluctuate widely - Is it an advantages?"}
{"_id": "7956_v2", "text": "Some stock's prices don't fluctuate widely - Is it an advantages?"}
{"_id": "7956_v3", "text": "Some stock's prices don't fluctuate widely - Is it an advantages?"}
{"_id": "7966_v1", "text": "Is engaging in stocks without researching unwise?"}
{"_id": "7966_v2", "text": "Is engaging in stocks without researching unwise?"}
{"_id": "7966_v3", "text": "Is engaging in stocks without researching unwise?"}
{"_id": "7991_v1", "text": "Is it worth having a pension?"}
{"_id": "7991_v2", "text": "Is it worth having a pension?"}
{"_id": "7991_v3", "text": "Is it worth having a pension?"}
{"_id": "8055_v1", "text": "Why have I never seen a stock split?"}
{"_id": "8055_v2", "text": "Why have I never seen a stock split?"}
{"_id": "8055_v3", "text": "Why have I never seen a stock split?"}
{"_id": "8056_v1", "text": "Why does selling and then rebuying stock not lead to free money?"}
{"_id": "8056_v2", "text": "Why does selling and then rebuying stock not lead to free money?"}
{"_id": "8056_v3", "text": "Why does selling and then rebuying stock not lead to free money?"}
{"_id": "8164_v1", "text": "What is the smartest thing to do in case of a stock market crash"}
{"_id": "8164_v2", "text": "What is the smartest thing to do in case of a stock market crash"}
{"_id": "8164_v3", "text": "What is the smartest thing to do in case of a stock market crash"}
{"_id": "8172_v1", "text": "Should I buy ~$2200 of a hot stock or invest elsewhere?"}
{"_id": "8220_v1", "text": "Is 6% too high to trade stocks on margin?"}
{"_id": "8220_v2", "text": "Is 6% too high to trade stocks on margin?"}
{"_id": "8220_v3", "text": "Is 6% too high to trade stocks on margin?"}
{"_id": "8273_v1", "text": "Investment Options for 14-year old?"}
{"_id": "8273_v2", "text": "Investment Options for 14-year old?"}
{"_id": "8273_v3", "text": "Investment Options for 14-year old?"}
{"_id": "8290_v1", "text": "Is it better to miss the dividend and buy the undervalued stock?"}
{"_id": "8290_v2", "text": "Is it better to miss the dividend and buy the undervalued stock?"}
{"_id": "8290_v3", "text": "Is it better to miss the dividend and buy the undervalued stock?"}
{"_id": "8304_v1", "text": "How does start-up equity end up paying off?"}
{"_id": "8304_v2", "text": "How does start-up equity end up paying off?"}
{"_id": "8304_v3", "text": "How does start-up equity end up paying off?"}
{"_id": "8310_v1", "text": "Got a large cash sum, wanna buy stocks. Should I buy all at once, or spread it over time?"}
{"_id": "8310_v2", "text": "Got a large cash sum, wanna buy stocks. Should I buy all at once, or spread it over time?"}
{"_id": "8310_v3", "text": "Got a large cash sum, wanna buy stocks. Should I buy all at once, or spread it over time?"}
{"_id": "8317_v1", "text": "Stability of a Broker: What if your broker goes bankrupt? Could you lose equity in your account?"}
{"_id": "8317_v2", "text": "Stability of a Broker: What if your broker goes bankrupt? Could you lose equity in your account?"}
{"_id": "8317_v3", "text": "Stability of a Broker: What if your broker goes bankrupt? Could you lose equity in your account?"}
{"_id": "8325_v1", "text": "Is foreign stock considered more risky than local stock and why?"}
{"_id": "8325_v2", "text": "Is foreign stock considered more risky than local stock and why?"}
{"_id": "8325_v3", "text": "Is foreign stock considered more risky than local stock and why?"}
{"_id": "8327_v1", "text": "Advice for a college student interested in investment opportunities."}
{"_id": "8327_v2", "text": "Advice for a college student interested in investment opportunities."}
{"_id": "8327_v3", "text": "Advice for a college student interested in investment opportunities."}
{"_id": "8461_v1", "text": "How much percent of my salary should I use to invest in company stock?"}
{"_id": "8461_v2", "text": "How much percent of my salary should I use to invest in company stock?"}
{"_id": "8461_v3", "text": "How much percent of my salary should I use to invest in company stock?"}
{"_id": "8464_v1", "text": "Tracking Gold and Silver (or any other commodity investment) in Quicken 2010?"}
{"_id": "8464_v2", "text": "Tracking Gold and Silver (or any other commodity investment) in Quicken 2010?"}
{"_id": "8464_v3", "text": "Tracking Gold and Silver (or any other commodity investment) in Quicken 2010?"}
{"_id": "8471_v1", "text": "Using Loan to Invest - Paying Monthly Installments with Monthly Income"}
{"_id": "8471_v2", "text": "Using Loan to Invest - Paying Monthly Installments with Monthly Income"}
{"_id": "8546_v1", "text": "What to do with your savings in Japan"}
{"_id": "8546_v2", "text": "What to do with your savings in Japan"}
{"_id": "8663_v1", "text": "Why can it be a bad idea to buy stocks after hours?"}
{"_id": "8663_v2", "text": "Why can it be a bad idea to buy stocks after hours?"}
{"_id": "8663_v3", "text": "Why can it be a bad idea to buy stocks after hours?"}
{"_id": "8815_v1", "text": "If you own 1% of a company's stock, are you entitled to 1% of its assets?"}
{"_id": "8886_v1", "text": "Is it possible to sell a stock at a higher value than the market price?"}
{"_id": "8893_v1", "text": "Beginner dividend investor - first steps"}
{"_id": "8893_v2", "text": "Beginner dividend investor - first steps"}
{"_id": "8896_v1", "text": "Should I sell when my stocks are growing?"}
{"_id": "8896_v2", "text": "Should I sell when my stocks are growing?"}
{"_id": "8896_v3", "text": "Should I sell when my stocks are growing?"}
{"_id": "8900_v1", "text": "Should I set a stop loss for long term investments?"}
{"_id": "8900_v2", "text": "Should I set a stop loss for long term investments?"}
{"_id": "8900_v3", "text": "Should I set a stop loss for long term investments?"}
{"_id": "8940_v1", "text": "TD Webbroker.ca did not execute my limit sell order even though my stock went .02 over limit"}
{"_id": "8940_v2", "text": "TD Webbroker.ca did not execute my limit sell order even though my stock went .02 over limit"}
{"_id": "8940_v3", "text": "TD Webbroker.ca did not execute my limit sell order even though my stock went .02 over limit"}
{"_id": "8976_v1", "text": "Is Cash Value Life Insurance (\u201cwhole life\u201d insurance) a good idea for my future?"}
{"_id": "8978_v1", "text": "When are investments taxed?"}
{"_id": "8978_v2", "text": "When are investments taxed?"}
{"_id": "8978_v3", "text": "When are investments taxed?"}
{"_id": "8980_v1", "text": "Is there any evidence that \u201cgrowth\u201d-style indexes and growth ETFs outperform their respective base indexes?"}
{"_id": "8980_v2", "text": "Is there any evidence that \u201cgrowth\u201d-style indexes and growth ETFs outperform their respective base indexes?"}
{"_id": "8992_v1", "text": "Is gold subject to inflation? [duplicate]"}
{"_id": "8997_v1", "text": "As a young adult, what can I be doing with my excess income?"}
{"_id": "8997_v2", "text": "As a young adult, what can I be doing with my excess income?"}
{"_id": "8997_v3", "text": "As a young adult, what can I be doing with my excess income?"}
{"_id": "9021_v1", "text": "Anticipating being offered stock options in a privately held company upon employment. What questions should I ask?"}
{"_id": "9021_v2", "text": "Anticipating being offered stock options in a privately held company upon employment. What questions should I ask?"}
{"_id": "9021_v3", "text": "Anticipating being offered stock options in a privately held company upon employment. What questions should I ask?"}
{"_id": "9026_v1", "text": "How to split stock earnings?"}
{"_id": "9026_v2", "text": "How to split stock earnings?"}
{"_id": "9040_v1", "text": "Covered calls: How to handle this trade?"}
{"_id": "9040_v2", "text": "Covered calls: How to handle this trade?"}
{"_id": "9040_v3", "text": "Covered calls: How to handle this trade?"}
{"_id": "9049_v1", "text": "Does an owner of a bond etf get an income even if he sells before the day of distribution?"}
{"_id": "9049_v2", "text": "Does an owner of a bond etf get an income even if he sells before the day of distribution?"}
{"_id": "9049_v3", "text": "Does an owner of a bond etf get an income even if he sells before the day of distribution?"}
{"_id": "9064_v1", "text": "Why is the dominant investing advice for individuals to use mutual funds, exchanged traded funds (ETFs), etc"}
{"_id": "9064_v2", "text": "Why is the dominant investing advice for individuals to use mutual funds, exchanged traded funds (ETFs), etc"}
{"_id": "9064_v3", "text": "Why is the dominant investing advice for individuals to use mutual funds, exchanged traded funds (ETFs), etc"}
{"_id": "9138_v1", "text": "Can I open a Demat account in India from abroad?"}
{"_id": "9138_v2", "text": "Can I open a Demat account in India from abroad?"}
{"_id": "9138_v3", "text": "Can I open a Demat account in India from abroad?"}
{"_id": "9241_v1", "text": "Can I invest in gold through Vanguard (Or another instrument that should perform well in financial crisis)?"}
{"_id": "9241_v2", "text": "Can I invest in gold through Vanguard (Or another instrument that should perform well in financial crisis)?"}
{"_id": "9241_v3", "text": "Can I invest in gold through Vanguard (Or another instrument that should perform well in financial crisis)?"}
{"_id": "9244_v1", "text": "Married, 55, grown kids: Should I buy life insurance, or invest in stocks? The ultimate decision"}
{"_id": "9244_v2", "text": "Married, 55, grown kids: Should I buy life insurance, or invest in stocks? The ultimate decision"}
{"_id": "9244_v3", "text": "Married, 55, grown kids: Should I buy life insurance, or invest in stocks? The ultimate decision"}
{"_id": "9250_v1", "text": "How can an Indian citizen get exposure to global markets?"}
{"_id": "9250_v2", "text": "How can an Indian citizen get exposure to global markets?"}
{"_id": "9250_v3", "text": "How can an Indian citizen get exposure to global markets?"}
{"_id": "9327_v1", "text": "Getting started in stock with one special field of activity"}
{"_id": "9327_v2", "text": "Getting started in stock with one special field of activity"}
{"_id": "9327_v3", "text": "Getting started in stock with one special field of activity"}
{"_id": "9359_v1", "text": "How should I think about stock dividends?"}
{"_id": "9359_v2", "text": "How should I think about stock dividends?"}
{"_id": "9359_v3", "text": "How should I think about stock dividends?"}
{"_id": "9469_v1", "text": "Why is it important to research a stock before buying it?"}
{"_id": "9469_v2", "text": "Why is it important to research a stock before buying it?"}
{"_id": "9469_v3", "text": "Why is it important to research a stock before buying it?"}
{"_id": "9493_v1", "text": "Why would you not want to rollover a previous employer's 401(k) when changing jobs?"}
{"_id": "9493_v2", "text": "Why would you not want to rollover a previous employer's 401(k) when changing jobs?"}
{"_id": "9493_v3", "text": "Why would you not want to rollover a previous employer's 401(k) when changing jobs?"}
{"_id": "9528_v1", "text": "Suitable Vanguard funds for a short-term goal (1-2 years)"}
{"_id": "9528_v2", "text": "Suitable Vanguard funds for a short-term goal (1-2 years)"}
{"_id": "9528_v3", "text": "Suitable Vanguard funds for a short-term goal (1-2 years)"}
{"_id": "9547_v1", "text": "How should I calculate the opportunity cost of using a 401(k) loan?"}
{"_id": "9547_v2", "text": "How should I calculate the opportunity cost of using a 401(k) loan?"}
{"_id": "9547_v3", "text": "How should I calculate the opportunity cost of using a 401(k) loan?"}
{"_id": "9552_v1", "text": "How to calculate the rate of return on selling a stock?"}
{"_id": "9552_v2", "text": "How to calculate the rate of return on selling a stock?"}
{"_id": "9552_v3", "text": "How to calculate the rate of return on selling a stock?"}
{"_id": "9555_v1", "text": "Where do I invest my Roth IRA besides stock market and mutual funds?"}
{"_id": "9555_v2", "text": "Where do I invest my Roth IRA besides stock market and mutual funds?"}
{"_id": "9555_v3", "text": "Where do I invest my Roth IRA besides stock market and mutual funds?"}
{"_id": "9570_v1", "text": "Why trade futures if you have options"}
{"_id": "9570_v2", "text": "Why trade futures if you have options"}
{"_id": "9574_v1", "text": "Can one use dollar cost averaging to make money with something highly volatile?"}
{"_id": "9574_v2", "text": "Can one use dollar cost averaging to make money with something highly volatile?"}
{"_id": "9574_v3", "text": "Can one use dollar cost averaging to make money with something highly volatile?"}
{"_id": "9578_v1", "text": "What is the process of getting your first share?"}
{"_id": "9578_v2", "text": "What is the process of getting your first share?"}
{"_id": "9578_v3", "text": "What is the process of getting your first share?"}
{"_id": "9590_v1", "text": "Pension or Property: Should I invest in more properties, or in a pension?"}
{"_id": "9590_v2", "text": "Pension or Property: Should I invest in more properties, or in a pension?"}
{"_id": "9590_v3", "text": "Pension or Property: Should I invest in more properties, or in a pension?"}
{"_id": "9610_v1", "text": "How do I hedge stock options like market makers do?"}
{"_id": "9610_v2", "text": "How do I hedge stock options like market makers do?"}
{"_id": "9610_v3", "text": "How do I hedge stock options like market makers do?"}
{"_id": "9620_v1", "text": "Should Emergency Funds be Used for Infrequent, but Likely, Expenses?"}
{"_id": "9620_v2", "text": "Should Emergency Funds be Used for Infrequent, but Likely, Expenses?"}
{"_id": "9620_v3", "text": "Should Emergency Funds be Used for Infrequent, but Likely, Expenses?"}
{"_id": "9628_v1", "text": "Td Ameritrade Roth IRA question"}
{"_id": "9628_v2", "text": "Td Ameritrade Roth IRA question"}
{"_id": "9628_v3", "text": "Td Ameritrade Roth IRA question"}
{"_id": "9639_v1", "text": "Is there a formula to use to analyse whether an investment property is a good investment?"}
{"_id": "9639_v2", "text": "Is there a formula to use to analyse whether an investment property is a good investment?"}
{"_id": "9639_v3", "text": "Is there a formula to use to analyse whether an investment property is a good investment?"}
{"_id": "9640_v1", "text": "What software do you recommend for Creating a To-The-Penny, To-The-Day Budget?"}
{"_id": "9640_v2", "text": "What software do you recommend for Creating a To-The-Penny, To-The-Day Budget?"}
{"_id": "9655_v1", "text": "What is a good asset allocation for a 25 year old?"}
{"_id": "9655_v2", "text": "What is a good asset allocation for a 25 year old?"}
{"_id": "9655_v3", "text": "What is a good asset allocation for a 25 year old?"}
{"_id": "9666_v1", "text": "What are your experiences with 'self directed' 401ks?"}
{"_id": "9666_v2", "text": "What are your experiences with 'self directed' 401ks?"}
{"_id": "9666_v3", "text": "What are your experiences with 'self directed' 401ks?"}
{"_id": "9667_v1", "text": "Can you beat the market by investing in double long ETFs? [duplicate]"}
{"_id": "9673_v1", "text": "Where can I invest for the Short Term and protect against Inflation?"}
{"_id": "9673_v2", "text": "Where can I invest for the Short Term and protect against Inflation?"}
{"_id": "9673_v3", "text": "Where can I invest for the Short Term and protect against Inflation?"}
{"_id": "9695_v1", "text": "Why do some companies offer 401k retirement plans?"}
{"_id": "9695_v2", "text": "Why do some companies offer 401k retirement plans?"}
{"_id": "9695_v3", "text": "Why do some companies offer 401k retirement plans?"}
{"_id": "9702_v1", "text": "How should one structure a portfolio given the possibility that a Total Stock Market Index might decline and not recover for a long time?"}
{"_id": "9702_v2", "text": "How should one structure a portfolio given the possibility that a Total Stock Market Index might decline and not recover for a long time?"}
{"_id": "9702_v3", "text": "How should one structure a portfolio given the possibility that a Total Stock Market Index might decline and not recover for a long time?"}
{"_id": "9717_v1", "text": "If I make over 120k a year, what are my options for retirement plans?"}
{"_id": "9717_v2", "text": "If I make over 120k a year, what are my options for retirement plans?"}
{"_id": "9717_v3", "text": "If I make over 120k a year, what are my options for retirement plans?"}
{"_id": "9768_v1", "text": "What considerations are there for making investments on behalf of a friend?"}
{"_id": "9768_v2", "text": "What considerations are there for making investments on behalf of a friend?"}
{"_id": "9768_v3", "text": "What considerations are there for making investments on behalf of a friend?"}
{"_id": "9790_v1", "text": "Why pay estimated taxes?"}
{"_id": "9790_v2", "text": "Why pay estimated taxes?"}
{"_id": "9805_v1", "text": "I have $12k in a Chase checking account, but want to start earning interest/saving/investing/etc to make more money. What should I do?"}
{"_id": "9805_v2", "text": "I have $12k in a Chase checking account, but want to start earning interest/saving/investing/etc to make more money. What should I do?"}
{"_id": "9805_v3", "text": "I have $12k in a Chase checking account, but want to start earning interest/saving/investing/etc to make more money. What should I do?"}
{"_id": "9815_v1", "text": "Owning REIT vs owning real estate - which has a better hypothetical ROI?"}
{"_id": "9815_v2", "text": "Owning REIT vs owning real estate - which has a better hypothetical ROI?"}
{"_id": "9815_v3", "text": "Owning REIT vs owning real estate - which has a better hypothetical ROI?"}
{"_id": "9840_v1", "text": "Where can I invest my retirement savings money, where it is safer than stocks?"}
{"_id": "9840_v2", "text": "Where can I invest my retirement savings money, where it is safer than stocks?"}
{"_id": "9840_v3", "text": "Where can I invest my retirement savings money, where it is safer than stocks?"}
{"_id": "9841_v1", "text": "Paying over the minimum mortgage payment"}
{"_id": "9841_v2", "text": "Paying over the minimum mortgage payment"}
{"_id": "9841_v3", "text": "Paying over the minimum mortgage payment"}
{"_id": "9885_v1", "text": "Take advantage of rock bottom oil prices"}
{"_id": "9885_v2", "text": "Take advantage of rock bottom oil prices"}
{"_id": "9885_v3", "text": "Take advantage of rock bottom oil prices"}
{"_id": "9886_v1", "text": "Automatic investments for cheap"}
{"_id": "9886_v2", "text": "Automatic investments for cheap"}
{"_id": "9886_v3", "text": "Automatic investments for cheap"}
{"_id": "9903_v1", "text": "Is the \u201cBank on Yourself\u201d a legitimate investment strategy, or a scam?"}
{"_id": "9933_v1", "text": "Why invest in IRA while a low-cost index fund is much simpler?"}
{"_id": "9933_v2", "text": "Why invest in IRA while a low-cost index fund is much simpler?"}
{"_id": "9933_v3", "text": "Why invest in IRA while a low-cost index fund is much simpler?"}
{"_id": "9957_v1", "text": "My investment account is increasingly and significantly underperforming vs. the S&P 500. What should I do?"}
{"_id": "9957_v2", "text": "My investment account is increasingly and significantly underperforming vs. the S&P 500. What should I do?"}
{"_id": "9957_v3", "text": "My investment account is increasingly and significantly underperforming vs. the S&P 500. What should I do?"}
{"_id": "9962_v1", "text": "Why does it seem unnecessary to fully save for irregular periodic expenses?"}
{"_id": "9962_v2", "text": "Why does it seem unnecessary to fully save for irregular periodic expenses?"}
{"_id": "9962_v3", "text": "Why does it seem unnecessary to fully save for irregular periodic expenses?"}
{"_id": "9971_v1", "text": "ESPP advantages and disadvantages"}
{"_id": "9971_v2", "text": "ESPP advantages and disadvantages"}
{"_id": "9971_v3", "text": "ESPP advantages and disadvantages"}
{"_id": "9973_v1", "text": "Any reason to keep IRAs separate?"}
{"_id": "9973_v2", "text": "Any reason to keep IRAs separate?"}
{"_id": "9978_v1", "text": "Renting or Buying an House"}
{"_id": "9978_v2", "text": "Renting or Buying an House"}
{"_id": "9978_v3", "text": "Renting or Buying an House"}
{"_id": "9981_v1", "text": "Why having large capital is advantageous to trading"}
{"_id": "9981_v2", "text": "Why having large capital is advantageous to trading"}
{"_id": "9981_v3", "text": "Why having large capital is advantageous to trading"}
{"_id": "9990_v1", "text": "Do I need to invest to become millionaire?"}
{"_id": "9990_v2", "text": "Do I need to invest to become millionaire?"}
{"_id": "9990_v3", "text": "Do I need to invest to become millionaire?"}
{"_id": "9995_v1", "text": "Withdrawing cash from investment: take money from underperforming fund?"}
{"_id": "9995_v2", "text": "Withdrawing cash from investment: take money from underperforming fund?"}
{"_id": "9995_v3", "text": "Withdrawing cash from investment: take money from underperforming fund?"}
{"_id": "10009_v1", "text": "When can you use existing real estate as collateral to buy more?"}
{"_id": "10009_v2", "text": "When can you use existing real estate as collateral to buy more?"}
{"_id": "10009_v3", "text": "When can you use existing real estate as collateral to buy more?"}
{"_id": "10144_v1", "text": "Less than a year at my first job out of college, what do I save for first?"}
{"_id": "10144_v2", "text": "Less than a year at my first job out of college, what do I save for first?"}
{"_id": "10144_v3", "text": "Less than a year at my first job out of college, what do I save for first?"}
{"_id": "10224_v1", "text": "First Job, should I save or invest?"}
{"_id": "10224_v2", "text": "First Job, should I save or invest?"}
{"_id": "10224_v3", "text": "First Job, should I save or invest?"}
{"_id": "10383_v1", "text": "Should I include retirement funds in calculating my asset allocation?"}
{"_id": "10383_v2", "text": "Should I include retirement funds in calculating my asset allocation?"}
{"_id": "10383_v3", "text": "Should I include retirement funds in calculating my asset allocation?"}
{"_id": "10385_v1", "text": "When should I start saving/investing for my retirement?"}
{"_id": "10385_v2", "text": "When should I start saving/investing for my retirement?"}
{"_id": "10385_v3", "text": "When should I start saving/investing for my retirement?"}
{"_id": "10421_v1", "text": "IRA contributions in a bear (bad) market: Should I build up cash savings instead?"}
{"_id": "10421_v2", "text": "IRA contributions in a bear (bad) market: Should I build up cash savings instead?"}
{"_id": "10421_v3", "text": "IRA contributions in a bear (bad) market: Should I build up cash savings instead?"}
{"_id": "10428_v1", "text": "Should we invest some of our savings to protect against inflation?"}
{"_id": "10428_v2", "text": "Should we invest some of our savings to protect against inflation?"}
{"_id": "10428_v3", "text": "Should we invest some of our savings to protect against inflation?"}
{"_id": "10449_v1", "text": "Paying extra on a mortgage. How much can I save? [duplicate]"}
{"_id": "10449_v2", "text": "Paying extra on a mortgage. How much can I save? [duplicate]"}
{"_id": "10449_v3", "text": "Paying extra on a mortgage. How much can I save? [duplicate]"}
{"_id": "10474_v1", "text": "Principal 401(k) managed fund fees, wow. What can I do?"}
{"_id": "10474_v2", "text": "Principal 401(k) managed fund fees, wow. What can I do?"}
{"_id": "10474_v3", "text": "Principal 401(k) managed fund fees, wow. What can I do?"}
{"_id": "10548_v1", "text": "New to investing \u2014 I have $20,000 cash saved, what should I do with it?"}
{"_id": "10548_v2", "text": "New to investing \u2014 I have $20,000 cash saved, what should I do with it?"}
{"_id": "10548_v3", "text": "New to investing \u2014 I have $20,000 cash saved, what should I do with it?"}
{"_id": "10589_v1", "text": "When and how should I pay taxes on ForEx trades?"}
{"_id": "10599_v1", "text": "Should I negotiate a lower salary to be placed in a lower tax bracket?"}
{"_id": "10600_v1", "text": "How can I diversify $7k across ETFs and stocks?"}
{"_id": "10600_v2", "text": "How can I diversify $7k across ETFs and stocks?"}
{"_id": "10600_v3", "text": "How can I diversify $7k across ETFs and stocks?"}
{"_id": "10664_v1", "text": "Advice for opening an IRA as a newbie"}
{"_id": "10664_v2", "text": "Advice for opening an IRA as a newbie"}
{"_id": "10664_v3", "text": "Advice for opening an IRA as a newbie"}
{"_id": "10693_v1", "text": "Make your money work for you"}
{"_id": "10693_v2", "text": "Make your money work for you"}
{"_id": "10693_v3", "text": "Make your money work for you"}
{"_id": "10715_v1", "text": "Should I invest my money in an ISA or Government bonds? (Or any other suggestion)"}
{"_id": "10718_v1", "text": "Should I \u201chedge\u201d my IRA portfolio with a life cycle / target date mutual fund?"}
{"_id": "10718_v2", "text": "Should I \u201chedge\u201d my IRA portfolio with a life cycle / target date mutual fund?"}
{"_id": "10718_v3", "text": "Should I \u201chedge\u201d my IRA portfolio with a life cycle / target date mutual fund?"}
{"_id": "10733_v1", "text": "Long term saving: Shares, Savings Account or Fund"}
{"_id": "10733_v2", "text": "Long term saving: Shares, Savings Account or Fund"}
{"_id": "10733_v3", "text": "Long term saving: Shares, Savings Account or Fund"}
{"_id": "10757_v1", "text": "Paying off mortgage or invest in annuity"}
{"_id": "10795_v1", "text": "What size \u201cnest egg\u201d should my husband and I have, and by what age?"}
{"_id": "10795_v2", "text": "What size \u201cnest egg\u201d should my husband and I have, and by what age?"}
{"_id": "10795_v3", "text": "What size \u201cnest egg\u201d should my husband and I have, and by what age?"}
{"_id": "10868_v1", "text": "Over how much time should I dollar-cost-average my bonus from cash into mutual funds?"}
{"_id": "10868_v2", "text": "Over how much time should I dollar-cost-average my bonus from cash into mutual funds?"}
{"_id": "10868_v3", "text": "Over how much time should I dollar-cost-average my bonus from cash into mutual funds?"}
{"_id": "10987_v1", "text": "What's the benefit of opening a Certificate of Deposit (CD) Account?"}
{"_id": "10987_v2", "text": "What's the benefit of opening a Certificate of Deposit (CD) Account?"}
{"_id": "10987_v3", "text": "What's the benefit of opening a Certificate of Deposit (CD) Account?"}
{"_id": "11002_v1", "text": "Pros/cons for buying gold vs. saving money in an interest-based account?"}
{"_id": "11002_v2", "text": "Pros/cons for buying gold vs. saving money in an interest-based account?"}
{"_id": "11012_v1", "text": "Should I Pay Off my Student Loan Debts First or Invest in an Index Fund?"}
{"_id": "11012_v2", "text": "Should I Pay Off my Student Loan Debts First or Invest in an Index Fund?"}
{"_id": "11012_v3", "text": "Should I Pay Off my Student Loan Debts First or Invest in an Index Fund?"}
{"_id": "11013_v1", "text": "$700 guaranteed to not be touched for 15 years+, should I put it anywhere other than a savings account?"}
{"_id": "11013_v2", "text": "$700 guaranteed to not be touched for 15 years+, should I put it anywhere other than a savings account?"}
{"_id": "11013_v3", "text": "$700 guaranteed to not be touched for 15 years+, should I put it anywhere other than a savings account?"}
{"_id": "11019_v1", "text": "Forex vs day trading for beginner investor"}
{"_id": "11025_v1", "text": "Not paying cash for a house"}
{"_id": "11025_v2", "text": "Not paying cash for a house"}
{"_id": "11031_v1", "text": "Should we buy a house, or wait?"}
{"_id": "11033_v1", "text": "Small investing for spending money?"}
{"_id": "11042_v1", "text": "Do I need to own all the funds my target-date funds owns to mimic it?"}
{"_id": "11042_v2", "text": "Do I need to own all the funds my target-date funds owns to mimic it?"}
{"_id": "11042_v3", "text": "Do I need to own all the funds my target-date funds owns to mimic it?"}
{"_id": "11043_v1", "text": "Extended family investment or pay debt and save"}
{"_id": "11043_v2", "text": "Extended family investment or pay debt and save"}
{"_id": "11047_v1", "text": "Why would I want a diversified portfolio, versus throwing my investments into an index fund?"}
{"_id": "11047_v2", "text": "Why would I want a diversified portfolio, versus throwing my investments into an index fund?"}
{"_id": "11047_v3", "text": "Why would I want a diversified portfolio, versus throwing my investments into an index fund?"}
{"_id": "11049_v1", "text": "When the market crashes, should I sell bonds and buy equities for the inevitable recovery?"}
{"_id": "11049_v2", "text": "When the market crashes, should I sell bonds and buy equities for the inevitable recovery?"}
{"_id": "11049_v3", "text": "When the market crashes, should I sell bonds and buy equities for the inevitable recovery?"}
{"_id": "11052_v1", "text": "Is there anything I can do to prepare myself for the tax consequences of selling investments to buy a house?"}
{"_id": "11052_v2", "text": "Is there anything I can do to prepare myself for the tax consequences of selling investments to buy a house?"}
{"_id": "11052_v3", "text": "Is there anything I can do to prepare myself for the tax consequences of selling investments to buy a house?"}
{"_id": "11058_v1", "text": "Is the Yale/Swenson Asset Allocation Too Conservative for a 20 Something?"}
{"_id": "11058_v2", "text": "Is the Yale/Swenson Asset Allocation Too Conservative for a 20 Something?"}
{"_id": "11058_v3", "text": "Is the Yale/Swenson Asset Allocation Too Conservative for a 20 Something?"}
{"_id": "11067_v1", "text": "Is it wise to switch investment strategy frequently?"}
{"_id": "11070_v1", "text": "Lump sum annuity distribution \u2014 do I owe estate tax?"}
{"_id": "11070_v2", "text": "Lump sum annuity distribution \u2014 do I owe estate tax?"}
{"_id": "11070_v3", "text": "Lump sum annuity distribution \u2014 do I owe estate tax?"}
{"_id": "6786_v1", "text": "Should I invest in the pre-IPO company stock offered by my employer?"}
{"_id": "10700_v1", "text": "why is the money withdrawn from traditional IRA taxed at the ordinary income tax rate?"}
{"_id": "10700_v2", "text": "why is the money withdrawn from traditional IRA taxed at the ordinary income tax rate?"}
{"_id": "10700_v3", "text": "why is the money withdrawn from traditional IRA taxed at the ordinary income tax rate?"}
{"_id": "8336_v1", "text": "Possible to purchase multiple securities on 1 transaction?"}
{"_id": "8336_v2", "text": "Possible to purchase multiple securities on 1 transaction?"}
{"_id": "2729_v1", "text": "How do I get into investing in stocks?"}
{"_id": "2729_v2", "text": "How do I get into investing in stocks?"}
{"_id": "2729_v3", "text": "How do I get into investing in stocks?"}
{"_id": "2696_v1", "text": "Can I prove having savings without giving out the account number?"}
{"_id": "2696_v2", "text": "Can I prove having savings without giving out the account number?"}
{"_id": "2696_v3", "text": "Can I prove having savings without giving out the account number?"}
{"_id": "10663_v1", "text": "Borrow from 401k for down payment on rental property?"}
{"_id": "10663_v2", "text": "Borrow from 401k for down payment on rental property?"}
{"_id": "8793_v1", "text": "When's the best time to sell the stock of a company that is being acquired/sold?"}
{"_id": "8793_v2", "text": "When's the best time to sell the stock of a company that is being acquired/sold?"}
{"_id": "8793_v3", "text": "When's the best time to sell the stock of a company that is being acquired/sold?"}
{"_id": "2566_v1", "text": "Purpose of having good credit when you are well-off?"}
{"_id": "2566_v2", "text": "Purpose of having good credit when you are well-off?"}
{"_id": "2566_v3", "text": "Purpose of having good credit when you are well-off?"}
{"_id": "1419_v1", "text": "How can I invest in an index fund but screen out (remove) certain categories of socially irresponsible investments?"}
{"_id": "1419_v2", "text": "How can I invest in an index fund but screen out (remove) certain categories of socially irresponsible investments?"}
{"_id": "1419_v3", "text": "How can I invest in an index fund but screen out (remove) certain categories of socially irresponsible investments?"}
{"_id": "2215_v1", "text": "How does a lender compute equity requirement for PMI?"}
{"_id": "5827_v1", "text": "Investment strategy for retired couple"}
{"_id": "5827_v2", "text": "Investment strategy for retired couple"}
{"_id": "5827_v3", "text": "Investment strategy for retired couple"}
{"_id": "4543_v1", "text": "What are the marks of poor investment advice?"}
{"_id": "4543_v2", "text": "What are the marks of poor investment advice?"}
{"_id": "4543_v3", "text": "What are the marks of poor investment advice?"}
{"_id": "8548_v1", "text": "Expiring 401(k) Stock Option and Liquidation Implications"}
{"_id": "8548_v2", "text": "Expiring 401(k) Stock Option and Liquidation Implications"}
{"_id": "483_v1", "text": "How important is disability insurance, e.g. long-term, LTD? Employer offers none"}
{"_id": "483_v2", "text": "How important is disability insurance, e.g. long-term, LTD? Employer offers none"}
{"_id": "483_v3", "text": "How important is disability insurance, e.g. long-term, LTD? Employer offers none"}
{"_id": "7838_v1", "text": "Putting borrowed money into an SIPP"}
{"_id": "7838_v2", "text": "Putting borrowed money into an SIPP"}
{"_id": "7838_v3", "text": "Putting borrowed money into an SIPP"}
{"_id": "4425_v1", "text": "How does owning a home and paying on a mortgage fit into family savings and investment?"}
{"_id": "4425_v2", "text": "How does owning a home and paying on a mortgage fit into family savings and investment?"}
{"_id": "4425_v3", "text": "How does owning a home and paying on a mortgage fit into family savings and investment?"}
{"_id": "9010_v1", "text": "Is this Employee Stock Purchase Plan worth it when adding my student loan into the equation?"}
{"_id": "9010_v2", "text": "Is this Employee Stock Purchase Plan worth it when adding my student loan into the equation?"}
{"_id": "9010_v3", "text": "Is this Employee Stock Purchase Plan worth it when adding my student loan into the equation?"}
{"_id": "4039_v1", "text": "What exactly can a financial advisor do for me, and is it worth the money?"}
{"_id": "4039_v2", "text": "What exactly can a financial advisor do for me, and is it worth the money?"}
{"_id": "4039_v3", "text": "What exactly can a financial advisor do for me, and is it worth the money?"}
{"_id": "6351_v1", "text": "What evidence exists for claiming that you cannot beat the market?"}
{"_id": "6351_v2", "text": "What evidence exists for claiming that you cannot beat the market?"}
{"_id": "6351_v3", "text": "What evidence exists for claiming that you cannot beat the market?"}
{"_id": "8374_v1", "text": "What is the benefit of investing in retirement plan versus investing directly in stocks yourself?"}
{"_id": "8374_v2", "text": "What is the benefit of investing in retirement plan versus investing directly in stocks yourself?"}
{"_id": "8374_v3", "text": "What is the benefit of investing in retirement plan versus investing directly in stocks yourself?"}
{"_id": "5726_v1", "text": "Figuring out an ideal balance to carry on credit cards [duplicate]"}
{"_id": "5726_v2", "text": "Figuring out an ideal balance to carry on credit cards [duplicate]"}
{"_id": "6175_v1", "text": "What is a \u201cretail revolving account,\u201d and does it improve my credit score?"}
{"_id": "6175_v2", "text": "What is a \u201cretail revolving account,\u201d and does it improve my credit score?"}
{"_id": "6175_v3", "text": "What is a \u201cretail revolving account,\u201d and does it improve my credit score?"}
{"_id": "5147_v1", "text": "I'm 23, living at home, and still can't afford my own property. What could I do?"}
{"_id": "5147_v2", "text": "I'm 23, living at home, and still can't afford my own property. What could I do?"}
{"_id": "5147_v3", "text": "I'm 23, living at home, and still can't afford my own property. What could I do?"}
{"_id": "8618_v1", "text": "Does girlfriend have too much savings, time to invest?"}
{"_id": "8618_v2", "text": "Does girlfriend have too much savings, time to invest?"}
{"_id": "8618_v3", "text": "Does girlfriend have too much savings, time to invest?"}
{"_id": "2409_v1", "text": "250k USD in savings. What's next?"}
{"_id": "2409_v2", "text": "250k USD in savings. What's next?"}
{"_id": "4587_v1", "text": "Is there any drawback in putting all my 401K into a money market fund?"}
{"_id": "4587_v2", "text": "Is there any drawback in putting all my 401K into a money market fund?"}
{"_id": "4587_v3", "text": "Is there any drawback in putting all my 401K into a money market fund?"}
{"_id": "38_v1", "text": "Personal credit card for business expenses"}
{"_id": "38_v2", "text": "Personal credit card for business expenses"}
{"_id": "38_v3", "text": "Personal credit card for business expenses"}
{"_id": "3153_v1", "text": "Does a US LLC need to file taxes if owned by a foreign citizen?"}
{"_id": "3153_v2", "text": "Does a US LLC need to file taxes if owned by a foreign citizen?"}
{"_id": "3153_v3", "text": "Does a US LLC need to file taxes if owned by a foreign citizen?"}
{"_id": "4029_v1", "text": "Family suggests my first real estate. Advice?"}
{"_id": "4029_v2", "text": "Family suggests my first real estate. Advice?"}
{"_id": "4029_v3", "text": "Family suggests my first real estate. Advice?"}
{"_id": "3793_v1", "text": "Visitor Shopping in the US: Would I get tax refund? Would I have to pay anything upon departure?"}
{"_id": "3793_v2", "text": "Visitor Shopping in the US: Would I get tax refund? Would I have to pay anything upon departure?"}
{"_id": "3793_v3", "text": "Visitor Shopping in the US: Would I get tax refund? Would I have to pay anything upon departure?"}
{"_id": "1506_v1", "text": "Someone asks you to co-sign a loan. How to reject & say \u201cno\u201d nicely or politely?"}
{"_id": "1506_v2", "text": "Someone asks you to co-sign a loan. How to reject & say \u201cno\u201d nicely or politely?"}
{"_id": "1506_v3", "text": "Someone asks you to co-sign a loan. How to reject & say \u201cno\u201d nicely or politely?"}
{"_id": "3441_v1", "text": "ETF's for early retirement strategy"}
{"_id": "5964_v1", "text": "Are there cons to paying monthly bills with a rewards card and then paying it off monthly?"}
{"_id": "5964_v2", "text": "Are there cons to paying monthly bills with a rewards card and then paying it off monthly?"}
{"_id": "5964_v3", "text": "Are there cons to paying monthly bills with a rewards card and then paying it off monthly?"}
{"_id": "6336_v1", "text": "Why would this FHA refinance cause my mortgage insurance payment to increase so much?"}
{"_id": "6336_v2", "text": "Why would this FHA refinance cause my mortgage insurance payment to increase so much?"}
{"_id": "6336_v3", "text": "Why would this FHA refinance cause my mortgage insurance payment to increase so much?"}
{"_id": "8964_v1", "text": "What can I do when the trading price of a stock or ETF I want to buy is too high?"}
{"_id": "8964_v2", "text": "What can I do when the trading price of a stock or ETF I want to buy is too high?"}
{"_id": "8964_v3", "text": "What can I do when the trading price of a stock or ETF I want to buy is too high?"}
{"_id": "4303_v1", "text": "Are there any catches with interest from banks? Is this interest \u201ctoo good to be true\u201d?"}
{"_id": "4303_v2", "text": "Are there any catches with interest from banks? Is this interest \u201ctoo good to be true\u201d?"}
{"_id": "4303_v3", "text": "Are there any catches with interest from banks? Is this interest \u201ctoo good to be true\u201d?"}
{"_id": "1043_v1", "text": "What should I consider when I try to invest my money today for a larger immediate income stream that will secure my retirement?"}
{"_id": "1043_v2", "text": "What should I consider when I try to invest my money today for a larger immediate income stream that will secure my retirement?"}
{"_id": "1043_v3", "text": "What should I consider when I try to invest my money today for a larger immediate income stream that will secure my retirement?"}
{"_id": "3941_v1", "text": "Assessed value of my house"}
{"_id": "3941_v2", "text": "Assessed value of my house"}
{"_id": "3941_v3", "text": "Assessed value of my house"}
{"_id": "5951_v1", "text": "Why can't house prices be out of tune with salaries"}
{"_id": "5951_v2", "text": "Why can't house prices be out of tune with salaries"}
{"_id": "5951_v3", "text": "Why can't house prices be out of tune with salaries"}
{"_id": "10827_v1", "text": "How much should I be contributing to my 401k given my employer's contribution?"}
{"_id": "10827_v2", "text": "How much should I be contributing to my 401k given my employer's contribution?"}
{"_id": "10827_v3", "text": "How much should I be contributing to my 401k given my employer's contribution?"}
{"_id": "2923_v1", "text": "Should I give to charity by check or credit card?"}
{"_id": "2923_v2", "text": "Should I give to charity by check or credit card?"}
{"_id": "2923_v3", "text": "Should I give to charity by check or credit card?"}
{"_id": "8378_v1", "text": "Should I wait a few days to sell ESPP Stock?"}
{"_id": "8378_v2", "text": "Should I wait a few days to sell ESPP Stock?"}
{"_id": "8378_v3", "text": "Should I wait a few days to sell ESPP Stock?"}
{"_id": "8102_v1", "text": "When do I sell a stock that I hold as a long-term position?"}
{"_id": "8102_v2", "text": "When do I sell a stock that I hold as a long-term position?"}
{"_id": "8102_v3", "text": "When do I sell a stock that I hold as a long-term position?"}
{"_id": "7928_v1", "text": "If I believe a stock is going to fall, what options do I have to invest on this?"}
{"_id": "7928_v2", "text": "If I believe a stock is going to fall, what options do I have to invest on this?"}
{"_id": "7928_v3", "text": "If I believe a stock is going to fall, what options do I have to invest on this?"}
{"_id": "2857_v1", "text": "I have around 60K $. Thinking about investing in Oil, how to proceed?"}
{"_id": "2857_v2", "text": "I have around 60K $. Thinking about investing in Oil, how to proceed?"}
{"_id": "2857_v3", "text": "I have around 60K $. Thinking about investing in Oil, how to proceed?"}
{"_id": "8539_v1", "text": "Can the risk of investing in an asset be different for different investors?"}
{"_id": "8539_v2", "text": "Can the risk of investing in an asset be different for different investors?"}
{"_id": "8539_v3", "text": "Can the risk of investing in an asset be different for different investors?"}
{"_id": "8532_v1", "text": "What do these options trading terms mean?"}
{"_id": "8532_v2", "text": "What do these options trading terms mean?"}
{"_id": "8532_v3", "text": "What do these options trading terms mean?"}
{"_id": "4920_v1", "text": "Does financing a portfolio on margin affect the variance of a portfolio?"}
{"_id": "4920_v2", "text": "Does financing a portfolio on margin affect the variance of a portfolio?"}
{"_id": "4920_v3", "text": "Does financing a portfolio on margin affect the variance of a portfolio?"}
{"_id": "4233_v1", "text": "Are personal finance / money management classes taught in high school, anywhere?"}
{"_id": "4233_v2", "text": "Are personal finance / money management classes taught in high school, anywhere?"}
{"_id": "4233_v3", "text": "Are personal finance / money management classes taught in high school, anywhere?"}
{"_id": "10213_v1", "text": "Looking for good investment vehicle for seasonal work and savings"}
{"_id": "10213_v2", "text": "Looking for good investment vehicle for seasonal work and savings"}
{"_id": "10213_v3", "text": "Looking for good investment vehicle for seasonal work and savings"}
{"_id": "5464_v1", "text": "Resources on Buying Rental Properties"}
{"_id": "5464_v2", "text": "Resources on Buying Rental Properties"}
{"_id": "5464_v3", "text": "Resources on Buying Rental Properties"}
{"_id": "5511_v1", "text": "Pay off car loan entirely or leave $1 until the end of the loan period?"}
{"_id": "5511_v2", "text": "Pay off car loan entirely or leave $1 until the end of the loan period?"}
{"_id": "5511_v3", "text": "Pay off car loan entirely or leave $1 until the end of the loan period?"}
{"_id": "8834_v1", "text": "Pros/Cons of Buying Discounted Company Stock"}
{"_id": "8834_v2", "text": "Pros/Cons of Buying Discounted Company Stock"}
{"_id": "8834_v3", "text": "Pros/Cons of Buying Discounted Company Stock"}
{"_id": "9403_v1", "text": "Abundance of Cash - What should I do?"}
{"_id": "9403_v2", "text": "Abundance of Cash - What should I do?"}
{"_id": "9403_v3", "text": "Abundance of Cash - What should I do?"}
{"_id": "4409_v1", "text": "My friend wants to put my name down for a house he's buying. What risks would I be taking?"}
{"_id": "4409_v2", "text": "My friend wants to put my name down for a house he's buying. What risks would I be taking?"}
{"_id": "4409_v3", "text": "My friend wants to put my name down for a house he's buying. What risks would I be taking?"}
{"_id": "11039_v1", "text": "Pay off credit card debt or earn employer 401(k) match?"}
{"_id": "11039_v2", "text": "Pay off credit card debt or earn employer 401(k) match?"}
{"_id": "11039_v3", "text": "Pay off credit card debt or earn employer 401(k) match?"}
{"_id": "7925_v1", "text": "Can I sell a stock immediately?"}
{"_id": "7925_v2", "text": "Can I sell a stock immediately?"}
{"_id": "7925_v3", "text": "Can I sell a stock immediately?"}
{"_id": "4514_v1", "text": "What intrinsic, non-monetary value does gold have as a commodity?"}
{"_id": "6221_v1", "text": "To pay off a student loan, should I save up a lump sum payoff payment or pay extra each month?"}
{"_id": "6221_v2", "text": "To pay off a student loan, should I save up a lump sum payoff payment or pay extra each month?"}
{"_id": "6221_v3", "text": "To pay off a student loan, should I save up a lump sum payoff payment or pay extra each month?"}
{"_id": "776_v1", "text": "Can saving/investing 15% of your income starting age 25, likely make you a millionaire?"}
{"_id": "776_v2", "text": "Can saving/investing 15% of your income starting age 25, likely make you a millionaire?"}
{"_id": "776_v3", "text": "Can saving/investing 15% of your income starting age 25, likely make you a millionaire?"}
{"_id": "5241_v1", "text": "Mortgage vs. Cash for U.S. home buy now"}
{"_id": "5241_v2", "text": "Mortgage vs. Cash for U.S. home buy now"}
{"_id": "4047_v1", "text": "Does doing your \u201cresearch\u201d/\u201chomework\u201d on stocks make any sense?"}
{"_id": "4047_v2", "text": "Does doing your \u201cresearch\u201d/\u201chomework\u201d on stocks make any sense?"}
{"_id": "4047_v3", "text": "Does doing your \u201cresearch\u201d/\u201chomework\u201d on stocks make any sense?"}
{"_id": "6891_v1", "text": "What is the theory behind Rick Van Ness's risk calculation in the video about diversification?"}
{"_id": "6891_v2", "text": "What is the theory behind Rick Van Ness's risk calculation in the video about diversification?"}
{"_id": "6891_v3", "text": "What is the theory behind Rick Van Ness's risk calculation in the video about diversification?"}
{"_id": "4845_v1", "text": "What is the difference between fund and portfolio?"}
{"_id": "3625_v1", "text": "What should I do with my paper financial documents?"}
{"_id": "3625_v2", "text": "What should I do with my paper financial documents?"}
{"_id": "3625_v3", "text": "What should I do with my paper financial documents?"}
{"_id": "6679_v1", "text": "Specifically when do options expire?"}
{"_id": "6679_v2", "text": "Specifically when do options expire?"}
{"_id": "6679_v3", "text": "Specifically when do options expire?"}
{"_id": "6005_v1", "text": "Why might it be advisable to keep student debt vs. paying it off quickly?"}
{"_id": "6005_v2", "text": "Why might it be advisable to keep student debt vs. paying it off quickly?"}
{"_id": "6005_v3", "text": "Why might it be advisable to keep student debt vs. paying it off quickly?"}
{"_id": "8002_v1", "text": "What is the tax treatment of scrip dividends in the UK?"}
{"_id": "8002_v2", "text": "What is the tax treatment of scrip dividends in the UK?"}
{"_id": "8002_v3", "text": "What is the tax treatment of scrip dividends in the UK?"}
{"_id": "10136_v1", "text": "How to minimise the risk of a reduction in purchase power in case of Brexit for money held in a bank account?"}
{"_id": "10136_v2", "text": "How to minimise the risk of a reduction in purchase power in case of Brexit for money held in a bank account?"}
{"_id": "10136_v3", "text": "How to minimise the risk of a reduction in purchase power in case of Brexit for money held in a bank account?"}
{"_id": "1826_v1", "text": "Is the contribution towards Employment Insurance (EI) wasted if I never get fired, or are my premiums refunded?"}
{"_id": "1826_v2", "text": "Is the contribution towards Employment Insurance (EI) wasted if I never get fired, or are my premiums refunded?"}
{"_id": "1826_v3", "text": "Is the contribution towards Employment Insurance (EI) wasted if I never get fired, or are my premiums refunded?"}
{"_id": "2348_v1", "text": "Why can't you just have someone invest for you and split the profits (and losses) with him?"}
{"_id": "2348_v2", "text": "Why can't you just have someone invest for you and split the profits (and losses) with him?"}
{"_id": "3049_v1", "text": "How to calculate my estimated taxes. 1099 MISC + Self Employment"}
{"_id": "3049_v2", "text": "How to calculate my estimated taxes. 1099 MISC + Self Employment"}
{"_id": "3049_v3", "text": "How to calculate my estimated taxes. 1099 MISC + Self Employment"}
{"_id": "9668_v1", "text": "Do stock option prices predicate the underlying stock's movement?"}
{"_id": "9668_v2", "text": "Do stock option prices predicate the underlying stock's movement?"}
{"_id": "9668_v3", "text": "Do stock option prices predicate the underlying stock's movement?"}
{"_id": "504_v1", "text": "Have plenty of cash flow but bad credit"}
{"_id": "504_v2", "text": "Have plenty of cash flow but bad credit"}
{"_id": "8855_v1", "text": "How do i get into investing stocks [duplicate]"}
{"_id": "8855_v2", "text": "How do i get into investing stocks [duplicate]"}
{"_id": "8855_v3", "text": "How do i get into investing stocks [duplicate]"}
{"_id": "8974_v1", "text": "As a 22-year-old, how risky should I be with my 401(k) investments?"}
{"_id": "8974_v2", "text": "As a 22-year-old, how risky should I be with my 401(k) investments?"}
{"_id": "8974_v3", "text": "As a 22-year-old, how risky should I be with my 401(k) investments?"}
{"_id": "5178_v1", "text": "Formula that predicts whether one is better off investing or paying down debt"}
{"_id": "5178_v2", "text": "Formula that predicts whether one is better off investing or paying down debt"}
{"_id": "5178_v3", "text": "Formula that predicts whether one is better off investing or paying down debt"}
{"_id": "1393_v1", "text": "Which is better when working as a contractor, 1099 or incorporating?"}
{"_id": "1393_v2", "text": "Which is better when working as a contractor, 1099 or incorporating?"}
{"_id": "1393_v3", "text": "Which is better when working as a contractor, 1099 or incorporating?"}
{"_id": "2589_v1", "text": "How can I detect potential fraud in a company before investing in them?"}
{"_id": "2589_v2", "text": "How can I detect potential fraud in a company before investing in them?"}
{"_id": "7823_v1", "text": "Retirement Funds: Betterment vs Vanguard Life strategy vs Target Retirement"}
{"_id": "7823_v2", "text": "Retirement Funds: Betterment vs Vanguard Life strategy vs Target Retirement"}
{"_id": "7823_v3", "text": "Retirement Funds: Betterment vs Vanguard Life strategy vs Target Retirement"}
{"_id": "3594_v1", "text": "If I were to get into a life situation where I would not be able to make regular payments, do lenders typically provide options other than default?"}
{"_id": "3446_v1", "text": "What's the difference between Term and Whole Life insurance?"}
{"_id": "3446_v2", "text": "What's the difference between Term and Whole Life insurance?"}
{"_id": "2472_v1", "text": "How do I deal with a mistaken attempt to collect a debt from me that is owed by someone else?"}
{"_id": "2472_v2", "text": "How do I deal with a mistaken attempt to collect a debt from me that is owed by someone else?"}
{"_id": "2472_v3", "text": "How do I deal with a mistaken attempt to collect a debt from me that is owed by someone else?"}
{"_id": "2400_v1", "text": "Will I be paid dividends if I own shares?"}
{"_id": "2400_v2", "text": "Will I be paid dividends if I own shares?"}
{"_id": "2400_v3", "text": "Will I be paid dividends if I own shares?"}
{"_id": "2885_v1", "text": "Merits of buying apartment houses and renting them"}
{"_id": "2885_v2", "text": "Merits of buying apartment houses and renting them"}
{"_id": "2885_v3", "text": "Merits of buying apartment houses and renting them"}
{"_id": "4823_v1", "text": "Close to retirement & we may move within 7 years. Should we re-finance our mortgage, or not?"}
{"_id": "4823_v2", "text": "Close to retirement & we may move within 7 years. Should we re-finance our mortgage, or not?"}
{"_id": "4823_v3", "text": "Close to retirement & we may move within 7 years. Should we re-finance our mortgage, or not?"}
{"_id": "1748_v1", "text": "How high should I set my KickStarter funding goal in order to have $35,000 left over?"}
{"_id": "1748_v2", "text": "How high should I set my KickStarter funding goal in order to have $35,000 left over?"}
{"_id": "1748_v3", "text": "How high should I set my KickStarter funding goal in order to have $35,000 left over?"}
{"_id": "7700_v1", "text": "Should I re-allocate my portfolio now or let it balance out over time?"}
{"_id": "4102_v1", "text": "How can I determine if my rate of return is \u201cgood\u201d for the market I am in?"}
{"_id": "4102_v2", "text": "How can I determine if my rate of return is \u201cgood\u201d for the market I am in?"}
{"_id": "4102_v3", "text": "How can I determine if my rate of return is \u201cgood\u201d for the market I am in?"}
|