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 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402
|
<html>
<head>
<meta name="generator" content="groff -Thtml, see www.gnu.org">
<meta name="Content-Style" content="text/css">
<title>linuxtrade</title>
</head>
<body>
<h1 align=center>linuxtrade</h1>
<a href="#NAME">NAME</a><br>
<a href="#SYNOPSIS">SYNOPSIS</a><br>
<a href="#DESCRIPTION">DESCRIPTION</a><br>
<a href="#TOOL MODE">TOOL MODE</a><br>
<a href="#COMMAND LINE OPTIONS">COMMAND LINE OPTIONS</a><br>
<a href="#INSTALLATION">INSTALLATION</a><br>
<a href="#FILES">FILES</a><br>
<a href="#AUTHOR">AUTHOR</a><br>
<hr>
<!-- Creator : groff version 1.18 -->
<!-- CreationDate: Mon Oct 20 14:36:59 2003 -->
<a name="NAME"></a>
<h2>NAME</h2>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">linuxtrade - A stock tracking console with real-time quotes</font></td></table><br>
<a name="SYNOPSIS"></a>
<h2>SYNOPSIS</h2>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>linuxtrade</b> [<i>options</i>]
[<i>symbols</i>]</font></td></table><br>
<a name="DESCRIPTION"></a>
<h2>DESCRIPTION</h2>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">There are a number of free and
subscription streaming real time quote services available on
the web, such as <b>scottrader.com</b> (free) and
<b>money.net</b> (subscription). They offer visually slick
looking Java based applications which suffer from all the
usual problems: too big, requires a graphical user
interface, requires a web browser where Java actually works,
can't save and replay the data, etc. In addition, they are
rarely designed to offer convenient access to stock news and
other information.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>linuxtrade</b> is a <i>Curses</i>
(text-based) implementation of a stock streamer application,
plus additional features inspired by the excellent <i>MedVed
QuoteTracker</i> Windows program, plus its own set of unique
features. <b>linuxtrade</b> is lightweight yet has all the
cool features: portfolios, real time quotes, charts with
live updates, time and sales, fundamental and technical
indicators, top ten and market movers, news articles,
alerts, option chains, the Briefing.com In Play and
Up/Downgrades lists, earnings, splits and quiet period
calendars, and Level 2 market depth indications from the
Archipelago and the Island ECN's.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>linuxtrade</b> currently supports
<b>scottrader.com</b>, <b>schwab.com</b>, <b>money.net</b>,
<b>quotemedia.com</b>, <b>sonictrading.com</b>, and other
streamer servers; see the complete list
below.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>QUICK START</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">First, you should go to
<b>http://www.scottrader.com</b> and sign up for a free
account. They will send you a password by email. This takes
only a minute or so.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Now, start up an <b>xterm</b>(1) or a
<b>gnome-terminal</b> with as many lines as will fit on your
screen. Then run the application and enter your
password:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<pre><font color="#000000">$ <b>linuxtrade
</b>Please sign up for your own FREE Scottrader account at:
http://www/scottrader.com
Enter password (JPY9747 for demo): <b>XXXNNNN
</b></font></pre></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Now save these settings by pressing
[<b>P</b>], then [<b>c</b>], and then press [<b>s</b>]
twice. If you entered a password that is not the demo
password, then you won't need to enter your password again.
NOTE: see sections Preferences and Changing Streamer
Preferences below.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press [<b>?</b>] to popup the main
help screen.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">For more complete installation
instructions, including other packages you may need to
install, please refer to the INSTALLATION section at the end
of this manual page.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>COLOR MODES</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> has 4 background
color modes. You can set the mode on the command line with
the <b>-c</b> option or on the preferences screen (press
<b>P</b>). The color mode takes effect only when the
application starts, so if you change it on the preferences
screen, save the preferences and then quit and restart. The
default color mode is <b>3</b>; the color modes
are:</font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-1.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>SCREEN SIZE</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> will work with an
<b>xterm</b> size as small as 25x80. However, much more
information can be presented if the number of lines or
columns is increased.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Increasing the number of lines will
allow you to see larger charts, more time and sales windows,
the top 10 lists, and news windows without obscuring the
main quote display.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Increasing the number of columns to at
least 86 will allow you to see the percentage that the stock
price has changed today.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Increasing the number of columns to at
least 124 will allow you to see your stock holdings and
portofolio value without having to use holdings
mode.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Increasing the number of columns to at
least 160 will allow you see the time and sales windows on
the right side of the screen, while other information, such
as a chart or a L2 book can be shown on the left side of the
screen.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>HELP SCREEN</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-2.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press [<b>?</b>] to popup the main help screen. Press any other key to hide the popup. This complete manual page can also be viewed from within <b>linuxtrade</b> using the extended command <b>:man</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Each screen and function is described
in the sections that follow.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>EXTENDED COMMANDS HELP
SCREEN</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-3.png"></font></p>
<p align=center><font color="#000000"><img src="linuxtrade.1-4.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press [<b>:</b>] [<b>?</b>] to popup the extended commands help screen. Note that any extended command can be abbreviated with the shortest substring that makes the command unique.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Each screen and function is described
in the sections that follow.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>PREFERENCES</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-5.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press [<b>P</b>] to popup the Preferences screen. Use the [<b>up</b>] and [<b>down</b>] arrow keys or the [<b>j</b>] and [<b>k</b>] keys to move the highlighted line to the entry that you want to change, then press [<b>c</b>] to change the line.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">When editing the entry, use the
[<b>left</b>] and [<b>right</b>] arrow keys to move the
cursor. Use [<b>Backspace</b>] to delete the character to
the left of the cursor. Use [<b>Delete</b>] to delete the
character under the cursor. Press [<b>Enter</b>] when you
are done making changes, or [<b>Esc</b>] to discard the
changes.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press [<b>f</b>] to reset the
highlighted entry to its default value. Press [<b>F</b>] to
reset all entries to their default
values.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press [<b>s</b>] to permanently save
your preferences, or [<b>q</b>] to quit the popup without
saving. These keys will also hide the
popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Passwords are normally obscured with
asterisks. Press [<b>Ctrl</b>] [<b>p</b>] to display
passwords, and again to hide them.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Here is a description of the
preference items that you can change under normal
circumstances. Changing the other preferences might cause
unusual behavior.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>streamer</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the source of the streamer
data. Press the [<b>c</b>] key on this item to popup the
Change Streamer screen where you will be able to change the
streamer source and the username and password associated
with it. This is fully described in the next
section.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>alert_mail</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the email address for
alerts.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>colormode</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">See the COLOR MODES section
above.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>news_alerts</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This value controls news alerts on a
global basis. If the value is 0, then news alerts are
completely disabled. If the value is 1, then news alerts are
enabled on an individual stock basis according to the
settings in the news alerts popup. If the value is 2, then
news alerts are enabled for all stocks in the current
portfolio, regardless of what the setting is for an
individual stock.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>alert_ext</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the name of a program to run
in order to deliver an external alert. The default is to use
the <b>linuxtrade.audio</b> script to play a speech
synthesized alert message. However, an alternative program
or script could be written to deliver alerts many other
ways, such as flashing the house lights on and off using an
x10 controller.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">The external program will be passed 6
arguments on the command line. The arguments are: symbol
name, last trade, last volume, alert variable, comparsion
operator, comparison value.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>alert_synth</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">The voice synthesizer to use for voice
alerts.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>top10_mkt</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the default market to display
on the top 10 list. A value of 'E' means to display the
AMEX. A value of 'N' means to display the NYSE. A value of
'Q' means to display the NASDAQ.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>top10_mode</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the default display format for
the top 10 list. A value of '%' means to display the top 10
percentage gainers. A value of '$' means to display the top
10 net gainers.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>showtotal</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">If non-zero, portfolio totals are
continuously displayed underneath the current stock
list.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>print_cmd</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the command line to use which
will print plain text to the print spooler. A command that
can handle overstrikes for bold and italics is
preferred.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>mouse</b> A non-zero value enables
mouse support.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>fill_charts</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the source to use for
backfilling the charts displayed with the [<b>c</b>] command
when not using the streamer based charts. The source can be
<b>prophet.net</b>, <b>quote.com</b> or
<b>askresearch.com</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">Some streamers, such as the
schwab.com, esignal.com, and scottrader.com streamers, can
also backfill charts. Streamers that can backfill charts
will have a <b>usecharts</b> streamer preference item. Set
<b>usecharts</b> to <b>1</b> to use the streamer to backfill
the charts.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>web_charts</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the source to use for the
printable web browser chart pages displayed with the
[<b>g</b>] and [<b>G</b>] commands. The source can be
<b>stockcharts.com</b>, <b>quote.com</b>, <b>pcquote.com</b>
or <b>yahoo.com</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>java_charts</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the source to use for Java
live charts displayed with the [<b>C</b>] command. The
source can be <b>livecharts.com</b> (a.k.a.
finance.lycos.com), money.net, or two types of chart applets
from <b>prophet.net</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>lc_user</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the user name to use when
logging into <b>finance.lycos.com</b>. This is needed if you
want to get real time updates with the Lycos LiveChart java
applet which is displayed with the [<b>C</b>]
command.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>lc_pass</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the password to use when
logging into <b>finance.lycos.com</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>lc_geom</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the desired applet geometry
(width x height) for the Lycos Live Chart java applet. The
default is 700 x 350.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>pf_user</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the user name to use when
logging into <b>prophet.net</b>. This is needed if you want
to get real time updates with the ChartStream java applet
which is displayed with the [<b>C</b>] command. It is also
needed to get real time chart backfills from
<b>prophet.net</b>. If you don't have a subscription to
<b>prophet.net</b>, set the user name to
<b>Guest</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>pf_pass</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the password to use when
logging into <b>fBprophet.net</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>browser</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the command line to use when
starting a new browser window.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>broker_browser</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the command line to use when
starting a small browser window for quickly accessing your
brokers trading website using the [<b>Ctrl</b>] [<b>b</b>]
command.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>broker_URL</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the URL of the brokers trading
website. It is used in conjunction with the broker_browser
preference. For the least amount of graphics bloat and
quickest entry of broker orders, use the brokers
"web-clipping" (PDA, cell-phone compatible)
lightweight web page.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>optchain_URL</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is a URL to use when getting
option chains, for use with streamers that do not support
option chains themselves. This URL will be shown in your web
browser.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>inplay_poll</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the period in minutes between
refreshes of the briefing.com In Play list. A value of 0
disables this feature.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>live_quotes</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the period in seconds between
updates of the live quotes in any of the displayable web
documents, such as the In Play list or the Up/Downgrades
list. A value of 0 disables this
feature.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>inplay_alert</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the period in minutes between
checks of the briefing.com In Play list for new updates when
the In Play list isn't displayed. A value of 0 disables this
feature. If the In Play list changes, you are alerted by the
red</font> <font color="#FF0000">INPLAY</font>
<font color="#000000">indicator that will appear at the top
of the screen.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>updown_poll</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the period in minutes between
refreshes of the briefing.com Up/downgrades list. A value of
0 disables this feature.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>updown_alert</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="30%"></td><td width="70%">
<font color="#000000">This is the period in minutes between
checks of the briefing.com Up/downgrades list for new
updates when the Up/downgrades list isn't displayed. A value
of 0 disables this feature. If the Up/downgrades list
changes, you are alerted by the red</font>
<font color="#FF0000">UPDOWN</font>
<font color="#000000">indicator that will appear at the top
of the screen.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>CHANGE STREAMER
PREFERENCE</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-6.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> currently supports six streamer data sources; see the table below for the list of supported streamers. From the Preference screen, position the cursor on the <b>streamer</b> item and press the [<b>c</b>] key to bring up the Change Streamer popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">When the cursor is positioned on the
<b>streamer</b> item, you can use the [<b>c</b>] key or the
[<b>left</b>] and [<b>right</b>] arrow keys to cycle through
the streamer data sources: none, scottrader.com,
ameritrade.com, datek.com, esignal.com, freetrade.com,
money.net, quotemedia.com, schwab.com, sonictrading.com,
moneyam.com(uk), and swissquote.ch.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Use the [<b>up</b>] and [<b>down</b>]
arrow keys to move to the <b>username</b> and
<b>password</b> items. Press the [<b>c</b>] key to change
these items to your username and
password.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Passwords are normally obscured with
asterisks. Press [<b>Ctrl</b>] [<b>p</b>] to display
passwords, and again to hide them.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Finally, press the [<b>s</b>] key to
save your username and password and begin using this
streamer as the data source. You will then be returned to
the Preferences popup. You should press the [<b>s</b>] key
there if you want to make this streamer your permanent
default streamer.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>NOTE:</b> When you enter your
password for the <b>money.net</b> streamer,
<b>LinuxTrade</b> will immediately authenticate you and
display a hashed password in the <b>encpasswd</b> item.
Under normal circumstances, do not change this
value.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>Quick Streamer Change</b>. From the
main screen, you can use [<b>Ctrl</b>] [<b>n</b>] to select
the next streamer and [<b>Ctrl</b>] [<b>p</b>] to select the
previous streamer. Each time you press [<b>Ctrl</b>]
[<b>n</b>] or [<b>Ctrl</b>] [<b>p</b>] the streamer data
source will change to the next or the previous streamer that
has been configured with a username and password. This lets
you switch to a backup streamer very quickly. The extended
command <b>:streamer</b> <i>type</i> can be used to switch
to a specific streamer as for the <b>-t</b> command line
switch (below).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>SUPPORTED
STREAMERS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Here is a table of the
<b>LinuxTrade</b> features which are supported with each
streamer.</font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-7.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">(*) Delayed quotes are free with simple registration.<br>
(c) Must be a customer.<br>
(t) Free trial.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>MAIN SCREEN</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-8.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">This is the main <b>LinuxTrade</b> screen. At the right of the first line of the screen there is an indicator that shows when the program is connected to the streamer server. If the indicator is a</font> <font color="#FF0000">red X</font><font color="#000000">, then the program is attempting to connect to the streamer. If the indicator is</font> <font color="#0000FF">blue</font> <font color="#000000">or</font> <font color="#00FF00">green</font><font color="#000000">, then the program is connected and the name of the server (e.g. FreeStreaming5) is displayed.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The top center of the screen shows the
stocklist that is currently being displayed. There are 100
stocklists numbered from 0 to 99. Stocklist 0 is a temporary
stocklist which is populated from the command line or from
various popups such as the In Play data. Stocklists 1-9 are
permanent stocklists which can be selected with a single
keystroke. Press the number keys [<b>0</b>] to [<b>9</b>] to
change the displayed stocklist. Press the [<b>a</b>] key to
add one or more stock symbols to the currently displayed
list. Press the [<b>s</b>] key twice to save the currently
displayed list. Press the [<b>s</b>] key and a list number
[<b>1</b>] to [<b>9</b>] to save the currently displayed
list to a specific list number.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Stocklists 10-99 can be accessed using
the extended commands <b>:<number></b>, <b>:save
[<number>]</b>, and <b>:list
<name></b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">On the second line of the screen are
red</font> <tt><font color="#FF0000">INPLAY</font></tt>
<font color="#000000">and</font>
<tt><font color="#FF0000">UPDOWN</font></tt>
<font color="#000000">indicators. These appear when new
information is available on the In Play and Up/Downgrade
popups.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The next several lines show real time
quote information for the stocks in the currently selected
stocklist. The bid size, ask size, and volume are all in
units of 100's of shares.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Many of the other <b>LinuxTrade</b>
operations work on the stock that is currently highlighted.
Use the [<b>up</b>] and [<b>down</b>] arrow keys or the
[<b>j</b>] and [<b>k</b>] keys to move the highlighted line
to the entry that you want to work with.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>d</b>] key twice to
delete the stock that is highlighted. Press the [<b>D</b>]
key to delete stocks by entering their
names.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:label</b> can
be used to give a description to a stocklist, such as
<b>:label Cup and Handle Stocks</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:comment</b>
can be used to attach short notes to the currently
highlighted stock, such as <b>:comment Possible Short</b>.
The comments column is visible when the terminal width is
140 columns or more, but the full comment for the current
stock also appears on the message line at the bottom of the
screen. The <b>:clrcom</b> command can be used to clear out
all comments in the current stocklist.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:sort</b> can
be used to sort the current stocklist. Only the portion of
the stocklist beginning with the stock at the current cursor
location is sorted. The argument supplied to the
<b>:sort</b> command selects the sorting
criteria:</font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-9.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>FIELD COLORS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the bid or ask is higher than the
previous bid or ask, the bid or ask are displayed in</font>
<font color="#0000FF">blue</font>
<font color="#000000">or</font>
<font color="#00FF00">green</font><font color="#000000">.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the bid or ask is lower than the
previous bid or ask, the bid or ask are displayed in</font>
<font color="#FF0000">red</font><font color="#000000">.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the bid is greater than or equal to
the daily high, the stock symbol name is displayed in</font>
<font color="#0000FF">blue</font>
<font color="#000000">or</font>
<font color="#00FF00">green</font><font color="#000000">.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the ask is less than or equal to
the daily low, the stock symbol name is displayed in</font>
<font color="#FF0000">red</font><font color="#000000">.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If a new daily high or low is reached,
the high or low is displayed in</font>
<font color="#FFFF00">orange</font><font color="#000000">.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>QUOTE TREND</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The quote trend indicates the
direction of the last 5 or more quote updates the program
has received. If the terminal window is 80 columns wide,
only the last 5 direction indicators will be displayed, but
if the terminal window is wider than 80 columns you will see
a longer period of trend data.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">A colored symbol is added at the left
while the trend scrolls to the right.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If last sale is higher than the
previous sale, a</font> <font color="#00FF00">green +</font>
<font color="#000000">sign is added.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If last sale is lower than the
previous sale, a</font> <font color="#FF0000">red -</font>
<font color="#000000">sign is added.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If last sale is the same as the
previous sale, an equals (=) sign is added with the color of
the most recent + or - sign.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>TOP 10</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The final ten lines of the main
display show the Top 10 stocks by volume, gains, and losses.
Press the [<b>E</b>] key to select the AMEX Top 10. Press
the [<b>N</b>] key to select the NYSE Top 10. Press the
[<b>Q</b>] key to select the NASDAQ Top 10. Press the
[<b>%</b>] key to display the gainers and losers by
percentage. Press the [<b>$</b>] key to display the net
gainers and losers.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>HOLDINGS
MODE</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-10.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Holdings mode allows you to see the net gains and losses for stocks that you hold in your portfolio. You can switch to view your holdings at any time by pressing the [<b>H</b>] key. Press the [<b>H</b>] key a second time to return to the normal display. <b>NOTE:</b> If you have a wide screen display, your holdings are always displayed and holdings mode won't be needed or available.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>*</b>] key to change the
holdings display to show the per-share cost instead of the
total cost of the position.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>#</b>] key to enter your
portfolio holdings. For each stock, you can enter the number
of shares that you own and the total cost of those shares.
Use the arrow keys, [<b>Tab</b>], [<b>Space</b>], and
[<b>Enter</b>] keys to move between the fields on the data
entry screen.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Prefix an amount with [<b>*</b>] to
specify the per-share cost, or with [<b>=</b>] to specify
the total cost, regardless whether the display is in TOTCOST
or SHRCOST modes.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">When you are done entering your
holdings, press the [<b>s</b>] key to save the data
permanently. Note that your holdings data is associated with
a particular stock list.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:clrhold</b>
can be used to clear (zero) all holdings in the current
stock list.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:total</b>
will display the current total value of your holdings at the
bottom of the screen. The <b>showtotals</b> preference will
cause the totals to be continuously displayed underneath the
current stock list.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>SYMBOL
LOOKUP</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-11.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:lookup</b> can be used to lookup a symbol given the portion of the corporation name listed on the command line. A popup window will appear with a table of the symbols that might be associated with that name. The example above was produced with the command <b>:lookup next</b>. Note that all of the symbol names might not be supported by the streamer that is currently selected. Use the arrow keys, [<b>PageUp</b>], [<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move through the list. Press the [<b>q</b>] key to hide the popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:name</b> will
lookup the full corporation name for the current symbol, or
optionally the symbol name listed on the command
line.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>OPTION
SYMBOLS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Option symbols can be streamed by the
Scottrader, Ameritrade, Datek, eSignal, Freetrade,
Money.net, and Schwab streamers. There is no universal
naming convention for option symbols. Since
<b>LinuxTrade</b> supports multiple streamers, it is
necessary to have a consistent naming system for option
symbols so you can switch between streamers and not have to
change option symbols.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Option symbols are entered in a
<b>canonical</b> format, which is the option root and the
two letter expiration and strike price code followed by a
trailing period (.). For example, the canonical symbol for
Intel Sept. 20 calls is `<b>NQID.</b>'.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>INDEX
SYMBOLS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">There is no universal naming
convention for index symbols. Since <b>LinuxTrade</b>
supports multiple streamers, it is necessary to have a
consistent naming system for index symbols so you can switch
between streamers and not have to change index symbols. To
allow that, <b>LinuxTrade</b> maps a set of <b>canonical</b>
index symbols to the actual symbols that the streamer uses.
Here is the table of canonical symbols to use for getting
index quotes.</font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-12.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:indexes</b> will display a stocklist with all of the canonical index symbols, assuming your display has enough lines on it to display this long list (70 or more lines are needed). Other index symbols may be added to the canonical list by emailing a request.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>STOCK CHART</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-13.png"></font></p>
<p align=center><font color="#000000"><img src="linuxtrade.1-14.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can popup a candlestick chart for a stock. Highlight the stock of interest in the Main Screen, then press the [<b>c</b>] key to bring up the charts popup. Then press the [<b>?</b>] key to popup up help on charts. <b>NOTE:</b> Charts look best when displayed in a terminal emulator with a lot of lines.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>1</b>] thru [<b>6</b>]
keys to change the sample period of the chart from 1 minute
to weekly. Press the [<b>+</b>] and [<b>-</b>] keys to
increase or decrease the duration of the
chart.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Use the [<b>left</b>] [<b>right</b>]
[<b>Home</b>] and [<b>End</b>] keys to scroll long duration
charts left and right.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>q</b>] key to hide the
chart popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">One minute, five minute, and 10 minute
charts have a live chart update feature that is activated
whenever the chart is positioned at the end of the
displayable data. New trades are automatically added to the
chart, making the chart dynamically change as time
advances.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>p</b>] key to display
the pivot points for the stock.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>JAVA CHARTS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The [<b>C</b>] key will display a
<b>finance.lycos.com</b> LiveChart, a <b>prophet.net</b>
ChartStream Java applet, or a <b>money.net</b> ChartStream
Java applet for the current stock, depending on the setting
of the <b>java_charts</b> preference.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You must set the <b>lc_user</b> and
<b>lc_pass</b> preferences and/or the <b>pf_user</b> and
<b>pf_pass</b> preferences and/or configure the money.net
streamer with a valid login name in order to get real time
chart updates, otherwise the charts will be delayed. You
must also have a Java SDK (see INSTALLATION
below).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended commands <b>:lc</b>,
<b>:mn</b>, and <b>:pf</b> can be used to start a LiveChart
or one of the ChartStream applets without regard to the
setting of the <b>java_charts</b> preference. An optional
stock symbol may be passed to these commands to bring up a
chart for that symbol, otherwise the current symbol is the
stocklist is used.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>WEB CHARTS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The [<b>g</b>] and [<b>G</b>] keys
will use your web browser to display a page with stock
charts of all of the symbols in the current stocklist in a
format that is easily printed. The <b>web_charts</b>
preference controls the source for these charts. The
[<b>g</b>] key will display intraday charts (if available
from the selected source), and the [<b>G</b>] key will
display two month charts.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended commands <b>:wide</b> and
<b>:Wide</b> are similar to the [<b>g</b>] and [<b>G</b>]
commands except that the displayed charts are wider
(typically two days for <b>:wide</b> and 6 months for
<b>:Wide</b>).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:wc</b> will
display an intraday and 6 month chart for just the current
symbol. An optional stock symbol may be passed to this
command to bring up a chart for that symbol rather than the
current symbol.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>MISCELLANEOUS
DATA</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Several extended commands are
available to retrieve miscellaneous data for either the
current stock symbol, or the optional symbol listed on the
end of the extended command.</font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-15.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>NEWS HEADLINES</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-16.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can popup the most recent news headlines for a stock. Highlight the stock of interest in the Main Screen, then press the [<b>n</b>] key.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Use the arrow keys, [<b>PageUp</b>],
[<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move
through the list. Press the [<b>q</b>] key to hide the news
popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can also use the extended command
<b>:news</b> to popup the window. An optional stock symbol
can be supplied with the command, otherwise the current
stock is used.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> uses a default
``main'' news source for most news. However, some streamers
may also support streaming news. Those streamers have a
preference <b>usenews</b> associated with them which can be
set to 1 to use the streamer as the primary news
source.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended commands <b>:mnews</b>
and <b>:snews</b> can be used to force use of either the
main news source, or the streamer news
source.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>NEWS
ARTICLE</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-17.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can read a news article. Highlight the headline of interest and then press the [<b>Enter</b>] key. Press the [<b>q</b>] key to hide the news article and return to the news headlines.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>SAVED NEWS</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-18.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">LinuxTrade supports streaming news on some streamers. Streaming news will appear on the MAIN screen below the stock lists, with the most recent headline at the top. These headlines will not be displayed on a narrow display if the market mover display is turned on.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The most recent 300 headlines are also
saved for future display. Use the <b>:onews</b> extended
command to popup the old (saved) news
window.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Use the arrow keys, [<b>PageUp</b>],
[<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move
through the list. Press the [<b>q</b>] key to hide the news
popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Highlight the headline of interest and
then press the [<b>Enter</b>] key to display the article
associated with the headline.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>FUNDAMENTAL
INFORMATION</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-19.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can popup fundamental information for a stock. Highlight the stock of interest in the Main Screen, then press the [<b>i</b>] key. Press the [<b>q</b>] key to hide the fundamental information popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>TECHNICAL
INFORMATION</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-20.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can popup technical information for a stock. Highlight the stock of interest in the Main Screen, then press the [<b>I</b>] key. Press the [<b>q</b>] key to hide the technical information popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>ALERTS</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-21.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can set alerts for a stock. Highlight the stock of interest in the Main Screen, then press the [<b>A</b>] key to bring up the Alerts popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Now, use the arrow keys to highlight
one of the four alert entries.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Next, press the [<b>a</b>] [<b>b</b>]
[<b>l</b>] [<b>H</b>] [<b>L</b>] or [<b>v</b>] keys to
select an alert on the ask, bid, low, high, or volume value.
The <b>Value</b> column will be automatically filled in with
the current value for that parameter.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Next, press the [<b><</b>]
[<b>=</b>] or [<b>></b>] keys to select the comparison
operator.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Next, adjust the value. Use the
[<b>+</b>] or [<b>-</b>] keys to increase or decrease the
current value by 5%. Use the [<b>left</b>] or [<b>right</b>]
keys to increase or decrease the current value by 0.01. Or,
use the number keys to enter a specific
value.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Next, select the type of alert
action(s) that you want. Press the [<b>t</b>] key to toggle
on-terminal (on-screen) alerts on or off. Press the
[<b>m</b>] key to toggle email alerts on or off. Make sure
that your email address is properly set in the Preferences
popup. Press the [<b>x</b>] key to select alert delivery by
an external program (see Preferences).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Finally, enable the alert by using the
[<b>e</b>] key to toggle the enabled
status.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can enter news alerts similarly.
Press the [<b>n</b>] key to set a new news alert. There is
no need to select an operator or a value for a news alert.
If new news for a stock becomes available while
<b>LinuxTrade</b> is running, you will be
alerted.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>s</b>] key to
permanently save these alerts and hide the alert popup.
Press the [<b>q</b>] or [<b>Esc</b>] keys to make the
current set of alerts temporary and hide the alert
popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>d</b>] key to clear and
delete the current alert entry.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>NOTE:</b> Alerts are active only on
the stocklist that is displayed. This will be changed to
include all stocks in all lists in a future version of
<b>LinuxTrade</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">When you are on the main stock screen
and a screen alert occurs, press the [<b>Ctrl</b>]
[<b>a</b>] keys to clear the alert condition. Press them
twice to clear all alerts.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:clralerts</b>
can be used to remove all alerts in the current stock
list.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>PIVOT POINT
ALERTS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">On the alert popup, press the
[<b>p</b>] key to set five alerts from the stock pivot
points.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<pre><font color="#000000">pp = (high + low + close) / 3;
r1 = (2*pp) - low;
s1 = (2*pp) - high;
r2 = pp + (r1 - s1);
s2 = pp - (r1 - s1);
</font></pre></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>QUICK
ALERTS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can quickly set high and low last
price alert triggers from the main screen. Press
[<b>Ctrl</b>] [<b>t</b>] and then enter the symbol name and
the high and low alert triggers.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Alternatively, press [<b>Ctrl</b>]
[<b>f</b>] and then enter the symbol name and the high and
low alert triggers.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The difference is that triggers
entered with [<b>Ctrl</b>] [<b>f</b>] will follow the
www.trendfund.com 10 AM rule, where the trigger will be
automatically adjusted before 10AM.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>ARCHIPELAGO
BOOK</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-22.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can see the Archipelago book for a stock. Highlight the stock of interest in the Main Screen, then press the [<b>b</b>] key to display the book. The left side of the screen shows buyers, and the right side of the screen shows sellers. The MMID indicates which ECN the order comes from; ISL is for the Island book, REDI is for the RediBook, and ELF is for the Archipelago book.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The colored horizontal bar at the top
of the display gives an indication of the total number of
shares being offered. Within the bar there is a vertical
line. The line moves towards the right side of the screen if
there are more buyers than sellers.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>ISLAND BOOK</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-23.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can also see the Island book for a stock. Highlight the stock of interest in the Main Screen, then press the [<b>B</b>] key to display the book. The left side of the screen shows buyers, and the middle of the screen shows sellers. The Last Match column shows the last sale that was completed on the Island ECN.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The colored horizontal bar at the top
of the display gives an indication of the total number of
shares being offered. Within the bar there is a vertical
line. The line moves towards the right side of the screen if
there are more buyers than sellers.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>OPTION
CHAINS</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-24.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">You can get a list of the option symbols for a stock. Highlight the stock of interest in the Main Screen, then press the [<b>o</b>] key to display the option symbols. The left side of the screen shows the calls, the right side of the screen shows the puts.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Use the arrow keys, [<b>PageUp</b>],
[<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move
through the list. Press the [<b>q</b>] key to hide the
popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The option chains popup features a
live quote feature. Quotes for each option on the display
are updated every 60 seconds.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>EXTERNAL OPTION
CHAINS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the currently selected streamer
doesn't support option chains, you can use the [<b>O</b>]
key to display option chains for the current stock using
your web browser.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>TIME AND
SALES</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-25.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>t</b>] key to turn the display of the Time and Sales window for the current stock on or off.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>T</b>] key to turn the
display of the Time and Sales windows for all stocks on or
off.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The Time and Sales windows show all
trades for each selected stock in the stocklist, up to as
many stocks as will fit on the screen. If you want more
stocks displayed, simply use a terminal emulator with more
lines or columns. The volume is shown in shares, not
lots.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The color of each line indicates
something about the sale.</font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-26.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>MARKET MOVERS</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-27.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>m</b>] key to toggle the display of the Market Movers data on or off. The Market Movers shows stocks making new daily highs or lows in real time.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>PREMARKET AND AFTER HOURS
TRADES</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-28.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended commands <b>:pre</b> and <b>:after</b> will popup a window that displays the NASDAQ premarket or after hours trades for the current symbol (or for a specific symbol listed on the command line).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The time and sales data is displayed
with an internal text-based web browser. Use the arrow keys,
[<b>PageUp</b>], [<b>PageDown</b>], [<b>Home</b>] and
[<b>End</b>] to move through the list of trades. Press the
[<b>q</b>] key to hide the popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Currently, NASDAQ supplies premarket
trade information on a real time basis, but after hours
trades on a 15 minute delayed basis. The trades are limited
to those trades during the NASDAQ extended hours sessions,
8AM to 9:30AM and 4PM to 6:30PM. Trades on ECN's are not
included.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>IN-PLAY</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-29.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>P</b>] key to popup the <i>Briefing.com In Play</i> list. The list is displayed with an internal text-based web browser. Use the arrow keys, [<b>PageUp</b>], [<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move through the list. Press the [<b>q</b>] key to hide the popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> automatically looks
for stock symbols in the In Play list and adds them to
stocklist number <b>0</b>. This lets you watch the days hot
stocks by switching the main screen to stocklist 0 after
displaying the In Play list.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the In Play popup is displayed and
the display is on the first line of the list, then
<b>LinuxTrade</b> will automatically refresh the information
periodically. You can set the interval between refreshes
with the <b>inplay_poll</b> preference value. The poll
period is in minutes; set it to 0 to disable this
feature.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the preference item
<b>live_quotes</b> is non-zero, then live quotes will be
added to the right side of the display. These quotes will be
updated in real time.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>UP/DOWNGRADES</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-30.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>P</b>] key to popup the <i>Briefing.com Up/Downgrades</i> list. The list is displayed with an internal text-based web browser. Use the arrow keys, [<b>PageUp</b>], [<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move through the list. Press the [<b>q</b>] key to hide the popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> automatically looks
for stock symbols in the up/downgrades list and adds them to
stocklist number <b>0</b>. This lets you watch the days hot
stocks by switching the main screen to stocklist 0 after
displaying the up/downgrades list.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the up/downgrades popup is
displayed and the display is on the first line of the list,
then <b>LinuxTrade</b> will automatically refresh the
information periodically. You can set the interval between
refreshes with the <b>inplay_poll</b> preference value. The
poll period is in minutes; set it to 0 to disable this
feature.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the preference item
<b>live_quotes</b> is non-zero, then live quotes will be
added to the right side of the display. These quotes will be
updated in real time.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>EARNINGS
CALENDAR</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-31.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Press the [<b>P</b>] key to popup the <i>Bloomberg Earnings Calendar</i>. The calendar is displayed with an internal text-based web browser. Use the arrow keys, [<b>PageUp</b>], [<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move through the list. Press the [<b>q</b>] key to hide the popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Use the [<b>right</b>] and
[<b>left</b>] keys to move the calendar display forward or
backward by one day. Use the [<b>+</b>] and [<b>-</b>] keys
to move the calendar display to the next or the previous
week.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> automatically looks
for stock symbols in the earnings calendar and adds them to
stocklist number <b>0</b>. This lets you watch the days hot
stocks by switching the main screen to stocklist 0 after
displaying the earnings calendar.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the preference item
<b>live_quotes</b> is non-zero, then live quotes will be
added to the right side of the display. These quotes will be
updated in real time.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If the preference item <b>mouse</b> is
non-zero, then you can select a conference call to listen
to. Under the <b>Audio</b> column, click on the word
<b>Listen</b>. The RealNetworks <b>realplay</b> program must
be installed on your system for this to
work.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:earnings</b>
can be used to display detailed earnings information for the
current stock in your web browser. An optional symbol name
can be supplied to the <b>:earnings</b> command to display
information on that stock.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>SPLITS
CALENDAR</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-32.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Enter the extended command <b>:splits</b> to popup the <i>Briefing.com Splits Calendar</i>. The calendar is displayed with an internal text-based web browser. Use the arrow keys, [<b>PageUp</b>], [<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move through the list. Press the [<b>q</b>] key to hide the popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> automatically looks
for stock symbols in the splits calendar and adds them to
stocklist number <b>0</b>. This lets you watch the stock
that are pending splits by switching the main screen to
stocklist 0 after displaying the splits
calendar.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>QUIET PERIOD
CALENDAR</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-33.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Enter the extended command <b>:qp</b> to popup the <i>IPO.com Quiet Period Calendar</i>. The calendar is displayed with an internal text-based web browser. Use the arrow keys, [<b>PageUp</b>], [<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move through the list. Press the [<b>q</b>] key to hide the popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> automatically looks
for stock symbols in the quiet period calendar and adds them
to stocklist number <b>0</b>. This lets you watch stocks in
the quiet period by switching the main screen to stocklist 0
after displaying the quiet period
calendar.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>ECONOMIC
CALENDAR</b></font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-34.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Enter the extended command <b>:econ</b> to popup the <i>Briefing.com Economic Calendar</i>. The calendar is displayed with an internal text-based web browser. Use the arrow keys, [<b>PageUp</b>], [<b>PageDown</b>], [<b>Home</b>] and [<b>End</b>] to move through the list. Press the [<b>q</b>] key to hide the popup.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>HEATMAPS and
CARPETS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended commands <b>:heatmap</b>
and <b>:carpet</b> run various Java applets which display
market heatmaps and carpets. For these commands to work, one
or more Java SDK's must be installed (see INSTALLATION
below).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The heatmaps and carpets that are
available are:</font></td></table><br>
<p align=center><font color="#000000"><img src="linuxtrade.1-35.png"></font></p>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>UNUSUAL VOLUME</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:ibdvol</b>
populates stocklist 0 with the list of 12-14 unusual volume
stocks which are currently featured on the Investors
Business Daily home page.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command <b>:bwkvol</b>
populates stocklist 0 with a list of up to 25 unusual volume
stocks from a screen using the Business Week real time stock
screener.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>PLAYERS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Stocklist 0 can be popoulated using
the extended commands:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><b>:pla</b>yers<b><br>
:pla</b>yers <i>tag</i><b><br>
:pla</b>yers @<b><br>
:pla</b>yers @<i>index-symbol</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The first form of the command (with no
argument) looks up the current symbol in the
<b>players.txt</b> file. This is often used to convert an
index symbol into a stocklist of its
components.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The second form of the command looks
up the <i>tag</i>, which can be any string, in the
<b>players.txt</b> file.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The third form of the command (with an
@ sign as the only argument) looks up the components of the
current canonical index symbol using an external
website.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The fourth form of the command looks
up the components of the listed canonical
<i>index-symbol</i> using an external
website.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The <b>players.txt</b> file is a
simple tab separated text database. Lines that do not begin
with tab contain a tagname and an optional stocklist
comment. The symbols associated with that tab follow, one
per line, on all subsequent lines that begin with a tab. The
symbol lines contain a symbol name followed by an optional
comment. For example:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<pre><font color="#000000">
vola Volatile Stocks
QLGC Qlogic
EXPE Expedia POS
NVDA Nvidia
dow Dow Industrials
$DJI Average
A Alcoa
AXP American Express
T AT&T
</font></pre></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The <b>players.txt</b> files are
searched for tags in the following order: current directory,
<b>$HOME/.linuxtrade/players.txt</b>, and finally
<b>/usr/share/linuxtrade/players.txt</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The system supplied
<b>/usr/share/linuxtrade/players.txt</b> file contains
definitions for tags <b>:dow</b>, <b>:spiders</b>, and
<b>:majors</b>. In addition, component breakdown tags are
provided for all of the index symbols in the majors list.
You can use the <b>:majors</b> command to view the major
market sectors, then position the stock cursor and use the
<b>:players</b> command to view how individual stocks are
performing within a specific sector.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>EXTERNAL
STOCKLISTS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Stocklist 0 can be populated from user
written external shell scripts. The shell script should
output a list of stock symbols, one per line. To specify a
comment for the symbol, follow it with a tab character and
the comment. The label for the stocklist can be supplied
with a line of the form
<b>label=</b><i>string</i>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The extended command
<b>:!</b><i>scriptname</i> will run your shell script named
<i>scriptname</i> to populate stocklist
0.</font></td></table><br>
<a name="TOOL MODE"></a>
<h2>TOOL MODE</h2>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>linuxtrade</b> can also be used as
a tool to access quote data without using the user
interface. This mode can be used to run <b>linuxtrade</b>
from a script. The <b>-T</b> <i>toolmode</i> command line
option is used to run the program in tool
mode.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">In tool mode, quote data is sent to
<b>stdout</b> in a canonical text format, regardless of
which streamer is selected. Commands to change the stock
list may also be sent to the program on
<b>stdin</b>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>TOOL MODE
OUTPUT</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The output in tool mode is comprised
of text lines that begin with a tag and consiste of one or
more fields. The tag and the fields are terminated with the
vertical bar character (<b>|</b>).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>OPEN|</b><i>streamer</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>streamer</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">streamer ID.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">The <b>OPEN</b> record is sent before
the streamer is opened.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>SYMS|</b><i>symlist</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>symlist</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">List of symbols which were sent to the
streamer.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">The <b>SYMS</b> record is sent
whenever the symbol list is changed.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>CONNECT|</b><i>ident</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>ident</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Identifier received from server (if
any).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">The <b>CONNECT</b> record is sent when
the streamer connection has been
established.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>COLS|</b><i>column</i><b>|</b><i>column</i><b>|</b><i>...</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>column</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Column labels for the QUOTE and TRADE
records.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">The <b>COLS</b> record is sent to
identify the order and meaning of the fields in the
<b>TRADE</b> and <b>QUOTE</b> records.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>QUOTE|</b><i>symbol</i><b>|</b><i>time</i><b>|</b><i>bid</i><b>|</b><i>bidsize</i><b>|</b><i>...</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>TRADE|</b><i>symbol</i><b>|</b><i>time</i><b>|</b><i>bid</i><b>|</b><i>bidsize</i><b>|</b><i>...</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>symbol</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Stock symbol.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>time</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Seconds since midnight,
EST.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>bid</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Inside bid price (floating
point).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>bidsize</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Inside bid size in hundred share units
(integer).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>bidid</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Inside bid exchange ID
(character).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>ask</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Inside ask price (floating
point).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>asksize</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Inside ask size in hundred share units
(integer).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>askid</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Inside ask exchange ID
(character).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>last</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Last trade price (floating
point).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>lastsize</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Last trade size in shares
(integer).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>volume</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Total volume
(integer).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>high</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Highest trade price (floating
point).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>low</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Lowest trade price (floating
point).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>close</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Previous days closing price (floating
point).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">The <b>TRADE</b> record is sent when a
trade has been completed. The <b>QUOTE</b> record is sent
when the inside bid or ask changes.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>DISC|</b><i>number</i><b>|</b><i>reason</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>number</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Numeric disconnect
code.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>reason</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">Disconnect reason.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">The <b>DISC</b> record is sent when
the streamer is disconnected.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>TIME|</b><i>date</i><b>|</b><i>time</i><b>|</b><i>zone</i><b>|</b><i>unixtime</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>date</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">The current date in New
York.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>time</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">The current time in New
York.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>zone</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">The time zone in New
York.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>unixtime</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">The time in seconds since the Unix
epoch.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">The <b>TIME</b> record is sent right
after the streamer is connected, and once per minute
thereafter.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>NEWS|</b><i>symbol</i><b>|</b><i>unixtime</i><b>|</b><i>datestr</i><b>|</b><i>headline</i><b>|</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>symbol</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">The stock symbol or <b>hot</b> for
general news.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>unixtime</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">The time as the number of seconds
since the Unix epoch.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>datestr</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">A human readable version of the
date.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><i>headline</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="36%"></td><td width="64%">
<font color="#000000">The new headline.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">The <b>NEWS</b> record is sent
whenever the selected streamer reports a news item and the
tool mode (-T) option value is 16 plus 1, 2, or 3 (17, 18,
or 19).</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>TOOL MODE
COMMANDS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Commands for tool mode are read from
<b>stdin</b>. The command formats are:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>a</b>
<i>symlist</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Add the symbols in <i>symlist</i> to
the streamer data.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>D</b>
<i>symbol</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Delete the <i>symbol</i> from the
streamer data.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>q</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Disconnect the streamer and quit the
program.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>TOOL MODE
EXAMPLE</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">An example of tool mode output is the
following:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<pre><font color="#000000">
OPEN|scottrader.com|
CONNECT|FreeStreaming5|
TIME|11/23/2001|12:01:00|EST|1006538460|
SYMS|DELL,INTC,JDSU|
COLS|Time|Bid|BidSize|BidID|Ask|AskSize|AskID|Last|LastSize|\
Volume|High|Low|PrevClose|
TRADE|INTC|43751|30.95|5|Q|30.97|45|Q|30.97|300|\
12282400|31.05|30.32|30.81|
QUOTE|DELL|43591|26.24|5|Q|26.25|40|Q|26.25|500|\
5119900|26.37|25.75|25.95|
TIME|11/23/2001|12:02:00|EST|1006538520|
TRADE|JDSU|43752|11.70|20|Q|11.71|240|Q|11.71|1800|\
8897300|11.78|11.31|11.35|
DISC|104|Command request|
</font></pre></td></table><br>
<a name="COMMAND LINE OPTIONS"></a>
<h2>COMMAND LINE OPTIONS</h2>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-c</b>
<i>bg</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Sets the background color mode (0 to
3). See the description of the colors modes
above.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-l</b>
<i>number</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Start the display with stocklist
<i>number</i>. Number may be 1-99. The default is
1.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-t</b>
<i>type</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Sets the streamer type to use as a
data source. The <i>type</i> can be <tt>none</tt>,
<tt>scottrader.com</tt>, <tt>ameritrade.com</tt>,
<tt>datek.com</tt>, <tt>esignal.com</tt>,
<tt>freetrade.com</tt>, <tt>money.net</tt>,
<tt>quotemedia.com</tt>, <tt>schwab.com</tt>,
<tt>sonictrading.com</tt>, <tt>moneyam.com</tt>, or
<tt>swissquote.ch</tt>. A leading partial substring of the
name can be used to abbreviate the <i>type</i>. The
<tt>none</tt> <i>type</i> can be useful if the username,
password, host, or port parameters associated with a
streamer are incorrect and you want a fast entry into the
program so you can go to the Change Streamer popup and
correct the parameters.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-p</b>
<i>password</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Set the password to use in connecting
to the streamer. The default is a "demo"
password.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-u</b>
<i>username</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Set the username to use in connecting
to the streamer. The default is a "demo"
username.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-P</b>
<i>'preferance</i><b>=</b><i>value'</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Set the named <i>preference</i> to
<i>value</i>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-h</b>
<i>hostname</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Set the hostname or IP address to use
in connecting to the streamer. The default is the value
stored in the preferences for that
streamer.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-w</b>
<i>filename</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Logs the streamer data to
<i>filename</i>, for later replay.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-r</b>
<i>filename</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Replays the streamer data from
<i>filename</i>.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-L</b>
<i>filename</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Logs the raw streamer data to
<i>filename</i>, for debugging.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>-T</b>
<i>toolmode</i></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Run in tool mode. See section on tool
mode above for a description. The <i>toolmode</i> parameter
controls what happens if the streamer connection canot be
made or if it disconnects. If <i>toolmode</i> is 1, then a
connection failure causes the program to exit. If
<i>toolmode</i> is 2, then a connection failure causes a new
connection to be attempted. If <i>toolmode</i> is 3, then a
connection failure causes a switch to the next configured
streamer. If <i>toolmode</i> is 4, then the program exits
after retreiving at least one quote for each of the listed
stocks.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000">Adding 0x10 (16) to <i>toolmode</i>
turns on news reports for streamers that support
news.</font></td></table><br>
<a name="INSTALLATION"></a>
<h2>INSTALLATION</h2>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>BASIC</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Get the most recent version of
<b>LinuxTrade</b> from:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><b>http://linuxtrade.0catch.com</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Login or su to root and install it
with this command:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"># <b>rpm -U
linuxtrade*.rpm</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Get the most recent version (at least
7.9.5) of <b>curl</b> from:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<pre><font color="#000000"><b>http://curl.haxx.se/
</b>or
<b>http://rpmfind.net/linux/rpm2html/search.php?query=curl
</b></font></pre></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Login or su to root and install it
with this command:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"># <b>rpm -U
curl*.rpm</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>VOICE
ALERTS</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If you want voice alerts, get the most
recent version of IBM ViaVoice or festival
from:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<pre><font color="#000000"><b>http://www-4.ibm.com/software/speech/dev/ttssdk_linux.html
</b>or
<b>http://rpmfind.net/linux/rpm2html/search.php?query=festival
</b></font></pre></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Install one of those RPM's as
usual.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="4%"></td><td width="96%">
<font color="#000000"><b>JAVA</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>LinuxTrade</b> can access and run
various Java applets from financial websites, such as the
<b>nasdaq.com</b> heatmaps, or chart streamers from
<b>livecharts.com</b> and <b>prophet.net</b>. What we have
found is that these applets will work with some web browsers
but not all web browsers. The reason that they sometimes
work and sometimes don't seems to be the version of the Java
VM that is installed with the web browser. Some applets work
well only with the Java VM that is in Netscape 4.x, some
work well only with a more recent Java VM from Sun such such
as might be installed with Netscape 6.x, and some work well
with either VM.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">LinuxTrade knows which Java VM works
best with each applet, and will run applets outside of any
web browser by using the Java <b>appletviewer</b> program.
But you must install at least two Java JDK/SDK/JRE's for
best results. We recommend that you install at least the
Blackdown 1.1.8 JDK and the Sun 1.4.0
JDK.</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The 1.1.8 JDK/SDK can be downloaded
from this site:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><b>ftp://metalab.unc.edu/pub/linux/devel/lang/java/blackdown.org/JDK-1.1.8/i386/v3/</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">The 1.4.0 JDK/SDK can be downloaded
from this site:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><b>http://java.sun.com/j2se/</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">If both of these packages are
installed, you will have these two
directories:</font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="21%"></td><td width="79%">
<font color="#000000"><b>/usr/java/j2sdk1.4.0<br>
/usr/java/jdk118_v3</b></font></td></table><br>
<a name="FILES"></a>
<h2>FILES</h2>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000"><b>/usr/bin/linuxtrade<br>
/usr/share/linuxtrade/bin/linuxtrade.advfn<br>
/usr/share/linuxtrade/bin/linuxtrade.audio<br>
/usr/share/linuxtrade/bin/linuxtrade.auth<br>
/usr/share/linuxtrade/bin/linuxtrade.av<br>
/usr/share/linuxtrade/bin/linuxtrade.bwkvol<br>
/usr/share/linuxtrade/bin/linuxtrade.cpt<br>
/usr/share/linuxtrade/bin/linuxtrade.frb<br>
/usr/share/linuxtrade/bin/linuxtrade.G<br>
/usr/share/linuxtrade/bin/linuxtrade.hm<br>
/usr/share/linuxtrade/bin/linuxtrade.ibdvol<br>
/usr/share/linuxtrade/bin/linuxtrade.lc<br>
/usr/share/linuxtrade/bin/linuxtrade.name<br>
/usr/share/linuxtrade/bin/linuxtrade.pe<br>
/usr/share/linuxtrade/bin/linuxtrade.pf<br>
/usr/share/linuxtrade/bin/linuxtrade.pivot<br>
/usr/share/linuxtrade/bin/linuxtrade.qm<br>
/usr/share/linuxtrade/bin/linuxtrade.range<br>
/usr/share/linuxtrade/bin/linuxtrade.shortint<br>
/usr/share/linuxtrade/bin/linuxtrade.sq<br>
/usr/share/linuxtrade/bin/linuxtrade.up<br>
/usr/share/linuxtrade/bin/linuxtrade.wn<br>
/usr/share/applications/linuxtrade.desktop<br>
/usr/share/applnk/Applications/linuxtrade.kdelnk<br>
/usr/share/gnome/apps/Applications/linuxtrade.desktop<br>
/usr/share/icons/linuxtrade.xpm<br>
/usr/share/linuxtrade/java.policy.allperm<br>
/usr/share/linuxtrade/players.txt<br>
/usr/share/pixmaps/linuxtrade_icon.png<br>
$HOME/.linuxtrade/rc<br>
$HOME/.linuxtrade/N.list<br>
$HOME/.linuxtrade/alerts<br>
$HOME/.linuxtrade/ameritrade.com<br>
$HOME/.linuxtrade/datek.com<br>
$HOME/.linuxtrade/esignal.com<br>
$HOME/.linuxtrade/freetrade.com<br>
$HOME/.linuxtrade/players.txt<br>
$HOME/.linuxtrade/money.net<br>
$HOME/.linuxtrade/quotemedia.com<br>
$HOME/.linuxtrade/schwab.com<br>
$HOME/.linuxtrade/scottrader.com<br>
$HOME/.linuxtrade/sonictrader.com<br>
$HOME/.linuxtrade/swissquote.ch<br>
$HOME/.linuxtrade/moneyam.com</b></font></td></table><br>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">When searching for a helper program,
<b>linuxtrade</b> will search <b>$PATH</b>,
<b>$HOME/bin</b>, and <b>/usr/share/linuxtrade/bin</b>, in
that order. Any of the helper programs can be customized by
placing a modified copy into
<b>$HOME/bin</b>.</font></td></table><br>
<a name="AUTHOR"></a>
<h2>AUTHOR</h2>
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td><td width="90%">
<font color="#000000">Rick Richardson
<rickr@mn.rr.com><br>
http://linuxtrade.0catch.com/<br>
http://home.mn.rr.com/richardsons/</font></td></table><br>
<hr>
</body>
</html>
|