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 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776
|
.TH linuxtrade 1 "15 July 2003" "LinuxTrade 3.65"
'\"==========================================================================
'\" STRINGS and MACROS
'\"==========================================================================
'\"
'\" Define strings for special characters that nroff doesn't have
'\"
'\" N.B. using .if cua to test for special characters did not work.
'\"
.if !'\*[.T]'ps' .ds ua up
.if '\*[.T]'ps' .ds ua \(ua
.if !'\*[.T]'ps' .ds da down
.if '\*[.T]'ps' .ds da \(da
.if !'\*[.T]'ps' .ds <- left
.if '\*[.T]'ps' .ds <- \(<-
.if !'\*[.T]'ps' .ds -> right
.if '\*[.T]'ps' .ds -> \(->
'\"
'\" bx - box a Courier string for making keycaps
'\"
'\" N.B. this mess is to make the line drawing come out only
'\" if we are really generating postscript
'\"
.de bx
.ie !'\*[.T]'ps' \{\
. RB [ \\$1 ]\\$2
.\}
.el \{\
. ie !r ps4html \{\
'\" \(br\|\s-1\f(CB\\$1\fP\s+1\|\(br\l'|0\(rn'\l'|0\(ul'
. ft CW
. nr par*bxw \w'\\$1'+.4m
\Z'\v'.25m'\D'l 0 -1m'\D'l \\n[par*bxw]u 0'\D'l 0 1m'\D'l -\\n[par*bxw]u 0''\
\Z'\h'.2m'\s-1\\$1\s+1'\
\h'\\n[par*bxw]u'\\$2
. ft P
. \}
. el \{\
. RB [ \\$1 ]\\$2
. \}
.\}
..
'\"
'\" strings to set current color (null with old groff)
'\"
.if mred .ds red \m[red]
.if mgreen .ds green \m[green]
.if mblue .ds blue \m[blue]
.if mblack .ds black \m[black]
.if mblack .ds mP \mP
'\"
'\" fix for grotty + xterm. We call for orange, grotty outputs yellow,
'\" but xterm displays yellow as orange. The cycle is complete.
'\"
.if n .defcolor orange rgb #ffff00
'\"
'\" color <color> - set the current color (ignores request with old groff)
'\"
.de color
.if mred \m[\\$1]\c
..
'\"
'\" colorword <color> <word> - colorize a word (ignored by old groff)
'\"
.de colorword
.ie m\\$1 \m[\\$1]\\$2\mP\c
.el \\$2\c
..
'\"
'\" colbox <fg> <bg> <word> - colorize a word in a filled box
'\"
.de colbox
.ie mred \M[\\$2]\
\v'+.167v'\
\D'P 0 -0.9v \w'\\$3'u 0 0 +0.9v -\w'\\$3'u 0'\
\v'-.167v'\
\m[\\$1]\\$3\mP\MP
.el \\$3\c
..
'\"
'\" Macros for doing pdfmarks
'\"
.de specialps
\\k_\X'ps: \\$*'\h'|\\n_u'\c
..
'\"
'\" pdfmark PDFMARKCODE
'\"
.ds pdfmarks
.if d pdfmarks \{\
.de pdfmark
. specialps exec [\\$1 pdfmark
..
'\"
'\" pdfdest LINKNAME
'\"
.de pdfdest
.pdfmark "/Dest /\\$1 /View [/XYZ -5 PL null] /DEST"
..
'\"
'\" pdfbookmark COUNT LINKNAME STRING
'\"
.de pdfbookmark
. pdfmark "/View [/XYZ 44 730 1.0] /Count \\$1 /Dest /\\$2 /Title (\\$3) /OUT"
..
'\"
'\" Define the SH and SS macros to save pdfmark information
'\" in "arrays" of numbers and strings.
'\"
.if !r rr_n \{\
.nr rr_n 0 1
.am SH
. nr rr_levels!\\n+[rr_n] 2
. ds rr_labels!\\n[rr_n] \\$*
. pdfdest Link\\n[rr_n]
..
.am SS
. nr rr_levels!\\n+[rr_n] 3
. ds rr_labels!\\n[rr_n] \\$*
. pdfdest Link\\n[rr_n]
..
.\}
'\"
'\" Called at the end of the document to generate the pdfmark outline
'\"
.de pdf_outline
.nr rr_levels!\\n+[rr_n] 1
.nr rr_i 0 1
.while \\n+[rr_i]<\\n[rr_n] \{\
. nr rr_ip1 \\n[rr_i]+1
. nr rr_count 0
. if \\n[rr_levels!\\n[rr_ip1]]>\\n[rr_levels!\\n[rr_i]] \{\
. nr rr_j \\n[rr_i] 1
. while \\n+[rr_j]<\\n[rr_n] \{\
. if \\n[rr_levels!\\n[rr_j]]<=\\n[rr_levels!\\n[rr_i]] \{\
. break
. \}
. if \\n[rr_levels!\\n[rr_j]]==(\\n[rr_levels!\\n[rr_i]]+1) \{\
. nr rr_count \\n[rr_count]+1
. \}
. \}
. \}
. ds hhh \\*[rr_labels!\\n[rr_i]]
. pdfbookmark \\n[rr_count] Link\\n[rr_i] "\\*[hhh]"
.\}
..
'\"
'\" Some postscript to make pdfmarks harmless on old interpreters...
'\"
.specialps "def /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse"
'\"
'\" Force display of Bookmarks in Acrobat when document is viewed.
'\"
.pdfmark "[/PageMode /UseOutlines /Page 1 /View [/XYZ null null null] /DOCVIEW"
'\"
'\" Output the document info in pdfmarks
'\"
.pdfmark "\
/Title (\*[an-title](\*[an-section])) \
/Subject (LinuxTrade Manual Page) \
/Author (Rick Richardson) \
/Keywords (stocks, quotes, streamer, scottrade) \
/Creator (groff \n(.x.\n(.y.\n(.Y -man) \
/CreationDate (\*[an-extra1]) \
/ModDate (\*[an-extra1]) \
/DOCINFO"
\}
'\"
'\" The manual page name is only 1st level mark
'\"
.nr rr_levels!\n+[rr_n] 1
.ds rr_labels!\n[rr_n] \*[an-title](\*[an-section])
.pdfdest Link\n[rr_n]
'\"==========================================================================
'\" MANUAL PAGE SOURCE
'\"==========================================================================
.SH NAME
linuxtrade \- A stock tracking console with real-time quotes
.SH SYNOPSIS
.B linuxtrade
.RI [ options "] [" symbols ]
.SH DESCRIPTION
There are a number of free and subscription streaming real time
quote services available on the web, such as \fBscottrader.com\fP
(free) and \fBmoney.net\fP (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.
.PP
\fBlinuxtrade\fP is a \fICurses\fP (text-based) implementation of
a stock streamer application, plus additional features inspired by
the excellent \fIMedVed QuoteTracker\fP
Windows program, plus its own set of unique features.
\fBlinuxtrade\fP 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.
.PP
\fBlinuxtrade\fP currently supports \fBscottrader.com\fP,
\fBschwab.com\fP,
\fBmoney.net\fP, \fBquotemedia.com\fP, \fBsonictrading.com\fP,
and other
streamer servers; see the complete list below.
.SS QUICK START
First, you should go to \fBhttp://www.scottrader.com\fP
and sign up for a free account. They will send you a password
by email. This takes only a minute or so.
.P
Now, start up an \fBxterm\fP(1) or a \fBgnome-terminal\fP
with as many lines as will fit on your screen.
Then run the application and enter your password:
.P
.RS
.nf
$ \fBlinuxtrade\fP
Please sign up for your own FREE Scottrader account at:
http://www/scottrader.com
Enter password (JPY9747 for demo): \fBXXXNNNN\fP
.fi
.RE
.P
Now save these settings by pressing
.bx P ,
then
.bx c ,
and then press
.bx s
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.
.P
Press
.bx ?
to popup the main help screen.
.P
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.
.SS COLOR MODES
\fBLinuxTrade\fP has 4 background color modes. You can set the mode on the
command line with the \fB-c\fP option or on the preferences
screen (press \fBP\fP).
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 \fB3\fP; the color modes are:
.RS
.TS
l l.
0 Force black background
1 Force white background
2 Use users 'dark-colored' xterm background
3 Use users 'light-colored' xterm background
.TE
.RE
.SS SCREEN SIZE
\fBLinuxTrade\fP will work with an \fBxterm\fP size as small as 25x80.
However, much more information can be presented if the number of
lines or columns is increased.
.PP
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.
.PP
Increasing the number of columns to at least 86 will allow you to
see the percentage that the stock price has changed today.
.PP
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.
.PP
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.
.ne 50v
.SS HELP SCREEN
'\"------------------------------------------
'\" curses screendump starts here
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC #
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] Help \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] STOCK COMMANDS.................. INFO COMMANDS................... \*[VL]
\*[bla]\*[Whi]\*[VL] a Add Symbol(s) c/C Popup Stock Chart/LiveChart \*[VL]
\*[bla]\*[Whi]\*[VL] d Delete Symbol(s) e Popup Earnings Calendar \*[VL]
\*[bla]\*[Whi]\*[VL] j/k Move cursor down/up g/G Browse all charts in this list \*[VL]
\*[bla]\*[Whi]\*[VL] 0-9 Display stocklist # i Popup Fundamental Info \*[VL]
\*[bla]\*[Whi]\*[VL] s# Save current list to list # I Popup Technical Info \*[VL]
\*[bla]\*[Whi]\*[VL] S# Save current symbol to list# n Popup News \*[VL]
\*[bla]\*[Whi]\*[VL] A Set alerts for stock p/u Popup InPlay/Upgrades list \*[VL]
\*[bla]\*[Whi]\*[VL] ^A Clear alert, ^A^A clears all b/B Popup Archipelago/Island Book \*[VL]
\*[bla]\*[Whi]\*[VL] H Show/don't show holdings l/L Popup L2 Book \*[VL]
\*[bla]\*[Whi]\*[VL] * ... by total or share cost o/O Popup/Browse Option Chains \*[VL]
\*[bla]\*[Whi]\*[VL] # Enter holdings (shares,cost) M Popup NASDAQ 100 heatmap \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] MARKET COMMANDS................. MISC COMMANDS................... \*[VL]
\*[bla]\*[Whi]\*[VL] E/N/Q Show AMEX/NYSE/NASD top 10 P Change password/preferences \*[VL]
\*[bla]\*[Whi]\*[VL] $/% ... by net/percent change U Upgrade this software \*[VL]
\*[bla]\*[Whi]\*[VL] m Show Market Movers ^N/^P Switch to next/prev streamer \*[VL]
\*[bla]\*[Whi]\*[VL] t Toggle Time & Sales windows ^R Restart current streamer \*[VL]
\*[bla]\*[Whi]\*[VL] ^b Start broker browser W Record session to file \*[VL]
\*[bla]\*[Whi]\*[VL] ^L Refresh screen q Quit/Quit popup \*[VL]
\*[bla]\*[Whi]\*[VL] :? Help for : extended commands F12 Print \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] linuxtrade 3.51 by Rick Richardson \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"------------------------------------------
.P
Press
.bx ?
to popup the main help screen. Press any other key to
hide the popup. This complete manual page can also be viewed
from within \fBlinuxtrade\fP using the extended command \*(CB:man\fP.
.P
Each screen and function is described in the sections that follow.
.ne 50v
.SS EXTENDED COMMANDS HELP SCREEN
'\"------------------------------------------
'\" curses screendump starts here
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC #
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] Extended Commands Help \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] :sort p|P|v|V|g|G|c|C|n|N Sort stocklist by price/vol/gain/nam\*[VL]
\*[bla]\*[Whi]\*[VL] :<number> Switch to stocklist <number> (1-99) \*[VL]
\*[bla]\*[Whi]\*[VL] :list [<string>] Switch to stocklist name <string> \*[VL]
\*[bla]\*[Whi]\*[VL] :save [<number>] Save the stocklist as <number> \*[VL]
\*[bla]\*[Whi]\*[VL] :label <string> Label the current stocklist \*[VL]
\*[bla]\*[Whi]\*[VL] :comment <string> Add comment to current stock \*[VL]
\*[bla]\*[Whi]\*[VL] :heatmap [etf|pmi|100] NASDAQ Heatmaps: ETF, Premarket, 100\*[VL]
\*[bla]\*[Whi]\*[VL] :heatmap [market|heat|sector] Money.net heatmaps \*[VL]
\*[bla]\*[Whi]\*[VL] :carpet [sector|market|index] Stockcharts.com carpets \*[VL]
\*[bla]\*[Whi]\*[VL] :carpet [fidelity|rydex|toronto] more Stockcharts.com carpets \*[VL]
\*[bla]\*[Whi]\*[VL] :lc [<symbol>|all] Lycos.com LiveChart Applet \*[VL]
\*[bla]\*[Whi]\*[VL] :pf [<symbol>|all] ProphetFinance ChartStream Applet \*[VL]
\*[bla]\*[Whi]\*[VL] :earnings [<symbol>] Display full earnings info for stock\*[VL]
\*[bla]\*[Whi]\*[VL] :news/mnews/snews [<symbol>] Display news for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :onews Popup old (saved) news window \*[VL]
\*[bla]\*[Whi]\*[VL] :halts Display NASDAQ trading halts \*[VL]
\*[bla]\*[Whi]\*[VL] :pre / :after [<symbol>] Pre/after-mkt trades for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :wc [<symbol>] Display web chart for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :name [<symbol>] Full name for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :pe [<symbol>] P/E ratios for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :pivot [<symbol>] Pivots for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :players [@][<symbol>] Players/Components for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :range [<symbol>] [<days>] Daily range for <symbol> <days> \*[VL]
\*[bla]\*[Whi]\*[VL] :shortint [<symbol>] Short interest for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :ts [<symbol>] [0|1] T&S for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :whisper [<symbol>] Earnings whisper #'s for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :arca [<symbol>] Display ARCA book for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :island [<symbol>] Display Island book for <symbol> \*[VL]
\*[bla]\*[Whi]\*[VL] :econ Briefing.com economic calendar \*[VL]
\*[bla]\*[Whi]\*[VL] :ipo Alert!IPO upcoming calendar \*[VL]
\*[bla]\*[Whi]\*[VL] :lookup <string> Lookup symbol for <string> \*[VL]
\*[bla]\*[Whi]\*[VL] :mmid <string> Lookup full MM name for <string> \*[VL]
\*[bla]\*[Whi]\*[VL] :qp ipo.com quiet period calendar \*[VL]
\*[bla]\*[Whi]\*[VL] :splits Briefing.com splits calendar \*[VL]
\*[bla]\*[Whi]\*[VL] :indexes Display all canonical index syms \*[VL]
\*[bla]\*[Whi]\*[VL] :majors / :dow Display major industries/dow stocks \*[VL]
\*[bla]\*[Whi]\*[VL] :spiders Display S&P select SPDRS \*[VL]
\*[bla]\*[Whi]\*[VL] :wide / :Wide Same as 'g'/'G' but wider charts \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] linuxtrade 3.50 by Rick Richardson \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
.ne 2i
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] Extended Commands Help \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] :ibdvol Get IBD unusual volume list \*[VL]
\*[bla]\*[Whi]\*[VL] :bwkvol Get BWK unusual volume list \*[VL]
\*[bla]\*[Whi]\*[VL] :frb Display Fed Reserve Bank $$$ input \*[VL]
\*[bla]\*[Whi]\*[VL] :!<cmd> Fill stocklist 0 by running <cmd> \*[VL]
\*[bla]\*[Whi]\*[VL] :clrcom Clear all comments in this list \*[VL]
\*[bla]\*[Whi]\*[VL] :clralerts Clear all alerts in this list \*[VL]
\*[bla]\*[Whi]\*[VL] :clrhold Clear all holdings in this list \*[VL]
\*[bla]\*[Whi]\*[VL] :total Display total holdings value \*[VL]
\*[bla]\*[Whi]\*[VL] :streamer <type> Switch to streamer <type> \*[VL]
\*[bla]\*[Whi]\*[VL] :manualpage Display full manual page \*[VL]
\*[bla]\*[Whi]\*[VL] :homepage Browse linuxtrade home page \*[VL]
\*[bla]\*[Whi]\*[VL] :grouppage Browse linuxtrade group page \*[VL]
\*[bla]\*[Whi]\*[VL] All commands and arguments may be abbreviated \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] linuxtrade 3.50 by Rick Richardson \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"------------------------------------------
.P
Press
.bx :
.bx ?
to popup the extended commands help screen. Note that any extended command
can be abbreviated with the shortest substring that makes the command unique.
.P
Each screen and function is described in the sections that follow.
.ne 40v
.SS PREFERENCES
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] Preferences \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Bla]\*[BOX]s\*[BOX]t\*[BOX]r\*[BOX]e\*[BOX]a\*[BOX]m\*[BOX]e\*[BOX]r\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]s\*[BOX]c\*[BOX]o\*[BOX]t\*[BOX]t\*[BOX]r\*[BOX]a\*[BOX]d\*[BOX]e\*[BOX]r\*[BOX].\*[BOX]c\*[BOX]o\*[BOX]m\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]
\*[bla]\*[Whi]\*[VL]alert_mail demo@localhost \*[VL]
\*[bla]\*[Whi]\*[VL]colormode 3 \*[VL]
\*[bla]\*[Whi]\*[VL]news_alerts 1 \*[VL]
\*[bla]\*[Whi]\*[VL]alert_ext linuxtrade.audio \*[VL]
\*[bla]\*[Whi]\*[VL]alert_synth default \*[VL]
\*[bla]\*[Whi]\*[VL]top10_mkt Q \*[VL]
\*[bla]\*[Whi]\*[VL]top10_mode % \*[VL]
\*[bla]\*[Whi]\*[VL]showtotals 0 \*[VL]
\*[bla]\*[Whi]\*[VL]print_cmd a2ps -q \*[VL]
\*[bla]\*[Whi]\*[VL]mouse 1 \*[VL]
\*[bla]\*[Whi]\*[VL]fill_charts prophet.net \*[VL]
\*[bla]\*[Whi]\*[VL]web_charts stockcharts.com \*[VL]
\*[bla]\*[Whi]\*[VL]java_charts livecharts.com \*[VL]
\*[bla]\*[Whi]\*[VL]lc_user demo \*[VL]
\*[bla]\*[Whi]\*[VL]lc_pass demo \*[VL]
\*[bla]\*[Whi]\*[VL]lc_geom 700 x 350 \*[VL]
\*[bla]\*[Whi]\*[VL]lc_opts 5,1,2 \*[VL]
\*[bla]\*[Whi]\*[VL]pf_user Guest \*[VL]
\*[bla]\*[Whi]\*[VL]pf_pass Guest \*[VL]
\*[bla]\*[Whi]\*[VL]browser gnome-moz-remote --newwin %s \*[VL]
\*[bla]\*[Whi]\*[VL]broker_browser mozilla -P linuxtrade -width 400 -height 630 \*[VL]
\*[bla]\*[Whi]\*[VL]broker_URL https://pb.schwab.com/dwp/loginwiz \*[VL]
\*[bla]\*[Whi]\*[VL]optchain_URL http://www.pcquote.com/options/string.php?ticker=%s \*[VL]
\*[bla]\*[Whi]\*[VL]arca_host tools.tradearca.com \*[VL]
\*[bla]\*[Whi]\*[VL]arca_port 80 \*[VL]
\*[bla]\*[Whi]\*[VL]island_host newgritch.island.com \*[VL]
\*[bla]\*[Whi]\*[VL]island_port 80 \*[VL]
\*[bla]\*[Whi]\*[VL]island_URL /SERVICE/SQUOTE?STOCK=%s \*[VL]
\*[bla]\*[Whi]\*[VL]live_quotes 5 \*[VL]
\*[bla]\*[Whi]\*[VL]inplay_URL http://www.briefing.com/dlj/inplay.htm \*[VL]
\*[bla]\*[Whi]\*[VL]inplay_poll 5 \*[VL]
\*[bla]\*[Whi]\*[VL]inplay_alert 5 \*[VL]
\*[bla]\*[Whi]\*[VL]updown_URL http://www.briefing.com/dlj/updown.htm \*[VL]
\*[bla]\*[Whi]\*[VL]updown_poll 5 \*[VL]
\*[bla]\*[Whi]\*[VL]updown_alert 5 \*[VL]
\*[bla]\*[Whi]\*[VL]splits_URL http://www.briefing.com/print/FreeServices/fs_splits \*[VL]
\*[bla]\*[Whi]\*[VL]exthours_poll 15 \*[VL]
\*[bla]\*[Whi]\*[VL]timezone US/Eastern \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] c=Change f=Reset to Factory F=Reset All s=Save q=Quit \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
Press
.bx P
to popup the Preferences screen.
Use the
.bx \*(ua
and
.bx \*(da
arrow keys or the
.bx j
and
.bx k
keys to move the highlighted line to the entry that you want
to change, then press
.bx c
to change the line.
.P
When editing the entry, use the
.bx \*(<-
and
.bx \*(->
arrow keys to move the cursor. Use
.bx Backspace
to delete the character to the left of the cursor.
Use
.bx Delete
to delete the character under the cursor.
Press
.bx Enter
when you are done making changes, or
.bx Esc
to discard the changes.
.P
Press
.bx f
to reset the highlighted entry to its default value.
Press
.bx F
to reset all entries to their default values.
.P
Press
.bx s
to permanently save your preferences, or
.bx q
to quit the popup without saving. These keys will also hide the popup.
.P
Passwords are normally obscured with asterisks.
Press
.bx Ctrl
.bx p
to display passwords, and again to hide them.
.P
Here is a description of the preference items that you can change under
normal circumstances. Changing the other preferences might cause
unusual behavior.
.TP 13m
.B streamer
This is the source of the streamer data. Press the
.bx c
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.
'\" .TP
'\" .B reg_name
'\" This is your full name, as supplied when you registered \fBLinuxTrade\fP.
.TP
.B alert_mail
This is the email address for alerts.
'\" This must be one of the email addresses that you supplied when
'\" you registered \fBLinuxTrade\fP.
.\" .TP
'\" .B reg_codes
'\" This is one or more registration codes that were given to you when
'\" you registered \fBLinuxTrade\fP. If a registration code matches
'\" your name and alert mail address, then LinuxTrade will operate
'\" without a time limit.
.TP
.B colormode
See the COLOR MODES section above.
.TP
.B news_alerts
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.
.TP
.B alert_ext
This is the name of a program to run in order to deliver an
external alert. The default is to use the \fBlinuxtrade.audio\fP
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.
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.
.TP
.B alert_synth
The voice synthesizer to use for voice alerts.
.TP
.B top10_mkt
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.
.TP
.B top10_mode
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.
.TP
.B showtotal
If non-zero, portfolio totals are continuously displayed
underneath the current stock list.
.TP
.B print_cmd
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.
.TP
.B mouse
A non-zero value enables mouse support.
.TP
.B fill_charts
This is the source to use for backfilling the charts displayed
with the
.bx c
command when not using the streamer based charts.
The source can be \fBprophet.net\fP,
\fBquote.com\fP or \fBaskresearch.com\fP.
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 \fBusecharts\fP streamer
preference item.
Set \fBusecharts\fP to \fB1\fP to use the streamer to backfill the charts.
.TP
.B web_charts
This is the source to use for the printable web browser chart pages
displayed with the
.bx g
and
.bx G
commands.
The source can be \fBstockcharts.com\fP, \fBquote.com\fP, \fBpcquote.com\fP
or \fByahoo.com\fP.
.TP
.B java_charts
This is the source to use for Java live charts displayed with the
.bx C
command.
The source can be
\fBlivecharts.com\fP (a.k.a. finance.lycos.com),
money.net, or two types of chart applets from \fBprophet.net\fP.
.TP
.B lc_user
This is the user name to use when logging into \fBfinance.lycos.com\fP.
This is needed if you want to get real time updates with the Lycos
LiveChart java applet which is displayed with the
.bx C
command.
.TP
.B lc_pass
This is the password to use when logging into \fBfinance.lycos.com\fP.
.TP
.B lc_geom
This is the desired applet geometry (width x height) for the Lycos
Live Chart java applet. The default is 700 x 350.
.TP
.B pf_user
This is the user name to use when logging into \fBprophet.net\fP.
This is needed if you want to get real time updates with the
ChartStream java applet which is displayed with the
.bx C
command. It is also needed to get real time chart
backfills from \fBprophet.net\fP.
If you don't have a subscription to \fBprophet.net\fP, set the user name
to \fBGuest\fP.
.TP
.B pf_pass
This is the password to use when logging into \fBfBprophet.net\fP.
.TP
.B browser
This is the command line to use when starting a new browser window.
.TP
.B broker_browser
This is the command line to use when starting a small browser window
for quickly accessing your brokers trading website
using the
.bx Ctrl
.bx b
command.
.TP
.B broker_URL
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.
.TP
.B optchain_URL
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.
.TP
.B inplay_poll
This is the period in minutes between refreshes of the briefing.com
In Play list. A value of 0 disables this feature.
.TP
.B live_quotes
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.
.TP
.B inplay_alert
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
.colorword red INPLAY
\ indicator that will appear at the top of the screen.
.TP
.B updown_poll
This is the period in minutes between refreshes of the briefing.com
Up/downgrades list. A value of 0 disables this feature.
.TP
.B updown_alert
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
.colorword red UPDOWN
\ indicator that will appear at the top of the screen.
.ne 2i
.SS CHANGE STREAMER PREFERENCE
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] Change Streamer \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Bla]\*[BOX]s\*[BOX]t\*[BOX]r\*[BOX]e\*[BOX]a\*[BOX]m\*[BOX]e\*[BOX]r\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]s\*[BOX]c\*[BOX]o\*[BOX]t\*[BOX]t\*[BOX]r\*[BOX]a\*[BOX]d\*[BOX]e\*[BOX]r\*[BOX].\*[BOX]c\*[BOX]o\*[BOX]m\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]
\*[bla]\*[Whi]\*[VL]username notneeded \*[VL]
\*[bla]\*[Whi]\*[VL]password XYZ7820 \*[VL]
\*[bla]\*[Whi]\*[VL]hostname 63.240.138.21 \*[VL]
\*[bla]\*[Whi]\*[VL]port 443 \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] c=Change f=Reset to Factory F=Reset All s=Save q=Quit \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.PP
\fBLinuxTrade\fP 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 \fBstreamer\fP item and press the
.bx c
key to bring up the Change Streamer popup.
.PP
When the cursor is positioned on the \fBstreamer\fP item, you can
use the
.bx c
key or the
.bx \*(<-
and
.bx \*(->
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.
.PP
Use the
.bx \*(ua
and
.bx \*(da
arrow keys to move to the \fBusername\fP and \fBpassword\fP
items. Press the
.bx c
key to change these items to your username and password.
.PP
Passwords are normally obscured with asterisks.
Press
.bx Ctrl
.bx p
to display passwords, and again to hide them.
.PP
Finally, press the
.bx s
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
.bx s
key there if you want to make this streamer your permanent default streamer.
.PP
\fBNOTE:\fP When you enter your password for the
\fBmoney.net\fP streamer, \fBLinuxTrade\fP will immediately authenticate
you and display a hashed password in the \fBencpasswd\fP item. Under
normal circumstances, do not change this value.
.PP
\fBQuick Streamer Change\fP. From the main screen, you can use
.bx Ctrl
.bx n
to select the next streamer and
.bx Ctrl
.bx p
to select the previous streamer.
Each time you press
.bx Ctrl
.bx n
or
.bx Ctrl
.bx p
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
\*(CB:streamer\fP \fItype\fP can be used to switch to a specific streamer
as for the \fB-t\fP command line switch (below).
.ne 2i
.SS SUPPORTED STREAMERS
Here is a table of the \fBLinuxTrade\fP features which
are supported with each streamer.
.if t .RS
.if t .ds QU Quotes
.if n .ds QU Quot
.TS
lB cB cB cB cB cB cB rB
lB cB cB cB cB cB cB rB
l c c c c c c r.
_
Streamer Top Live Charts Info Option News Cost
\^ 10 \*(QU \^ \^ Chains \^ \^
_
scottrader.com Yes Yes Yes Yes Yes No Free
ameritrade.com No No na No na No Free
datek.com No No na No na No Free
esignal.com No Yes Yes No na No (t)7.95
freetrade.com No No na No na No (c)9.99
money.net No Yes na No na No 14.95
moneyam.com(uk) No No Yes No na No Free
quotemedia.com No Yes na No na No (*)12.95
schwab.com Yes Yes Yes No na Yes (c)Free
sonictrading.com No No na No na No Free
swissquote.ch No Yes na No na No Free
_
.TE
.br
(*) Delayed quotes are free with simple registration.
.br
(c) Must be a customer.
.br
(t) Free trial.
.if t .RE
.ne 35v
.SS MAIN SCREEN
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
box;
lf(CW).
\*[bla]\*[Whi]LinuxTrade \*[blu]-\*[bla] [FreeStreaming5] \*(CBLIST 1\fP 01/02/2002 09:38:39 AM EST
\*[red]\*[Whi]INPLAY\*[bla] \*[red]UPDOWN\*[bla]
\*(CB\*[bla]\*[Whi]STOCK TIME BID/SZ ASK/SZ LAST/SZ CHG HIGH LOW VOL
\*(CB\*[bla]\*[Whi]\fP
\*[whi]\*[Red]\*[BOX]D\*[BOX]J\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Bla]\*[BOX]\*[SPC]\*[BOX]0\*[BOX]9\*[BOX]:\*[BOX]3\*[BOX]8\*[BOX]:\*[BOX]3\*[BOX]8\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]0\*[BOX].\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]0\*[BOX].\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]5\*[Bla]\*[BOX]\*[SPC]\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]-\*[BOX]6\*[BOX].\*[BOX]8\*[BOX]8\*[Bla]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]3\*[BOX]8\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]4\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]2\*[BOX]2\*[bla]\*[Whi]
\*[red]\*[Whi]COMP \*[bla] 09:38:28 0.00 0 0.00 0 \*[blu]1962.9\*[bla] 0 \*[blu] 12.52\*[bla] 1965.3 1961.0 0
\*[bla]\*[Whi]SPX 09:38:33 \*[red]1146.0\*[bla] 0 \*[red]1147.7\*[bla] 0 1147.0 0 \*[red] -1.05\*[bla] 1150.0 1147.0 0
\*[bla]\*[Whi]CSCO 09:38:36 18.47 11 18.48 20 18.48 32 \*[blu] 0.37\*[bla] 18.53 18.26 33477
\*[bla]\*[Whi]SUNW 09:38:36 12.57 10 12.59 10 12.57 68 \*[blu] 0.27\*[bla] 12.64 12.50 20816
\*[bla]\*[Whi]INTC 09:38:36 31.85 50 \*[blu] 31.88\*[bla] 10 \*[red] 31.87\*[bla] 7 \*[blu] 0.42\*[bla] 31.95 31.73 23266
\*[bla]\*[Whi]MSFT 09:38:34 66.40 1 66.43 9 \*[blu] 66.41\*[bla] 4 \*[blu] 0.16\*[bla] 66.72 66.30 12722
\*[bla]\*[Whi]ORCL 09:38:35 13.91 15 13.94 25 \*[blu] 13.93\*[bla] 89 \*[blu] 0.12\*[bla] 13.99 13.80 22652
\*[bla]\*[Whi]JDSU 09:38:34 8.76 25 8.77 10 \*[red] 8.76\*[bla] 10 \*[blu] 0.08\*[bla] 8.88 8.66 33940
\*[bla]\*[Whi]DELL 09:38:35 27.73 10 \*[blu] 27.76\*[bla] 50 27.74 15 \*[blu] 0.56\*[bla] 27.80 27.56 11280
\*[bla]\*[Whi]JNPR 09:38:36 19.18 1 19.20 6 \*[blu] 19.20\*[bla] 23 \*[blu] 0.25\*[bla] 19.26 19.07 4937
\*[bla]\*[Whi]CIEN 09:38:34 14.81 5 \*[blu] 14.82\*[bla] 11 14.80 93 \*[blu] 0.49\*[bla] 14.85 14.57 6864
\*[bla]\*[Whi]WCOM 09:38:33 14.29 50 14.30 10 \*[blu] 14.30\*[bla] 128\*[blu] 0.22\*[bla] 14.41 14.26 12769
\*[bla]\*[Whi]GE 09:38:33 40.25 15 \*[blu] 40.33\*[bla] 11 40.27 5 \*[blu] 0.19\*[bla] 40.44 40.25 6764
\*[bla]\*[Whi]
\*(CB\*[bla]\*[Whi]NASD Top 10 Volume \fP \*(CBNASD Top 10 Pct Gainers\fP \*(CBNASD Top 10 Pct Losers\fP
\*[bla]\*[Whi]DIMEZ +0.00 34755 THTL +3.91 20 SWIR -3.85 558
\*[blu]\*[Whi]JDSU +0.10 33938\*[bla] MTMS +0.85 79 XNVA -1.77 348
\*[blu]\*[Whi]CSCO +0.36 33376\*[bla] QXLCD +1.49 1 IINT -1.05 384
\*[bla]\*[Whi]BNKUZ +0.00 32938 SKYE +1.34 23 GVHR -0.30 117
\*[bla]\*[Whi]GSBNZ +0.00 31940 MDLK +0.39 36 SYKE -1.13 506
\*[bla]\*[Whi]CCPRZ +0.00 26278 BIKE +0.31 59 MPWG -0.25 15
\*[blu]\*[Whi]INTC +0.43 23259\*[bla] SEMX +0.27 10 DIAN -5.76 1143
\*[blu]\*[Whi]ORCL +0.11 22629\*[bla] ORCC +0.29 5 UTCI -0.30 129
\*[blu]\*[Whi]SUNW +0.29 20745\*[bla] EPMN +0.33 22 FCGI -1.46 48
\*[blu]\*[Whi]MFNX +0.02 18115\*[bla] MTLK +0.60 415 QVDX -0.85 249
.TE
'\"
'\" curses screen dump ends here
'\"
.P
This is the main \fBLinuxTrade\fP 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 \*[red]red X\*[mP], then the program
is attempting to connect to the streamer. If the indicator is
\*[blue]blue\*[mP] or \*[green]green\*[mP], then the
program is connected and the name of the server (e.g. FreeStreaming5)
is displayed.
.P
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
.bx 0
to
.bx 9
to change the displayed stocklist.
Press the
.bx a
key to add one or more stock symbols to the currently displayed list.
Press the
.bx s
key twice to save the currently displayed list.
Press the
.bx s
key and a list number
.bx 1
to
.bx 9
to save the currently displayed list to a specific list number.
.P
Stocklists 10-99 can be accessed using the extended commands
\*(CB:<number>\fP,
\*(CB:save [<number>]\fP,
and
\*(CB:list <name>\fP.
.P
On the second line of the screen are red
\*[red]\f(CWINPLAY\fP\*[pre]
and
\*[red]\f(CWUPDOWN\fP\*[pre]
indicators. These appear when new information is available on
the In Play and Up/Downgrade popups.
.P
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.
.P
Many of the other \fBLinuxTrade\fP operations work on the
stock that is currently highlighted.
Use the
.bx \*(ua
and
.bx \*(da
arrow keys or the
.bx j
and
.bx k
keys to move the highlighted line to the entry that you want
to work with.
.P
Press the
.bx d
key twice to delete the stock that is highlighted.
Press the
.bx D
key to delete stocks by entering their names.
.P
The extended command \*(CB:label\fP can be used to give a description
to a stocklist, such as \*(CB:label Cup and Handle Stocks\fP.
.P
The extended command \*(CB:comment\fP can be used to attach short
notes to the currently highlighted stock, such as \*(CB:comment Possible Short\fP.
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 \*(CB:clrcom\fP command can be used
to clear out all comments in the current stocklist.
.P
The extended command \*(CB:sort\fP 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 \*(CB:sort\fP
command selects the sorting criteria:
.RS
.TS
lB l.
:sort p Sort by price lowest to highest
:sort P Sort by price highest to lowest
:sort v Sort by volume lowest to highest
:sort V Sort by volume highest to lowest
:sort g Sort by gain lowest to highest
:sort G Sort by gain highest to lowest
:sort c Sort by % change lowest to highest
:sort C Sort by % change highest to lowest
:sort n Sort symbol names alphabetically a to z
:sort N Sort symbol names alphabetically z to a
.TE
.RE
.SS "FIELD COLORS"
If the bid or ask is higher than the previous bid or ask, the bid or
ask are displayed in
.colorword blue blue
\ or
.colorword green green
\&.
.P
If the bid or ask is lower than the previous bid or ask, the bid or
ask are displayed in
.colorword red red
\&.
.P
If the bid is greater than or equal to the daily high, the stock
symbol name is displayed in
.colorword blue blue
\ or
.colorword green green
\&.
.P
If the ask is less than or equal to the daily low, the stock
symbol name is displayed in
.colorword red red
\&.
.P
If a new daily high or low is reached, the high or low is displayed in
.colorword orange orange
\&.
.SS "QUOTE TREND"
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.
.P
A colored symbol is added at the left
while the trend scrolls to the right.
.P
If last sale is higher than the previous sale, a
.colorword green "green + "
sign is added.
.P
If last sale is lower than the previous sale, a
.colorword red "red \(mi "
sign is added.
.P
If last sale is the same as the previous sale, an equals (=) sign is added
with the color of the most recent + or \(mi sign.
.br
.ne 1i
.SS TOP 10
The final ten lines of the main display show the Top 10 stocks by
volume, gains, and losses.
Press the
.bx E
key to select the AMEX Top 10.
Press the
.bx N
key to select the NYSE Top 10.
Press the
.bx Q
key to select the NASDAQ Top 10.
Press the
.bx %
key to display the gainers and losers by percentage.
Press the
.bx $
key to display the net gainers and losers.
.ne 25v
.SS HOLDINGS MODE
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
box;
lf(CW).
\*(CB\*[bla]\*[Whi]STOCK TIME SHARES TOTCOST GAIN LAST CHG HIGH LOW ..
\*[bla]\*[Whi]
\*[bla]\*[Whi]DJI 12:50:00[\*[whi]\*[Bla]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]0\*[bla]\*[Whi]] 0.00 0.00 10130\*[blu] 56.46\*[bla] 10152 10052 ..
\*[bla]\*[Whi]COMP 12:50:00 0 0.00 0.00 2026.3\*[blu] 47.04\*[bla] 2031.3 1987.1 ..
\*[bla]\*[Whi]SPX 12:50:06 0 0.00 0.00 1158.0\*[blu] 3.36\*[bla] 1161.9 1154.0 ..
\*[bla]\*[Whi]CSCO 12:50:14 100 10.00\*[blu] 2015.00\*[bla] 20.25\*[blu] 1.02\*[bla] 20.26 19.50 ..
\*[bla]\*[Whi]SUNW 12:50:13 100 2000.00\*[red] -653.90\*[bla] \*[red] 13.46\*[blu] 0.42\*[bla] 13.53 13.16 ..
\*[bla]\*[Whi]INTC 12:50:14 800 10000.00\*[blu] 17976.00\*[bla] 34.97\*[blu] 1.97\*[bla] 35.00 33.40 ..
\*[bla]\*[Whi]MSFT 12:50:14 100 500.00\*[blu] 6374.10\*[bla] \*[blu] 68.74 1.70\*[bla] 68.94 67.09 ..
\*[bla]\*[Whi]ORCL 12:50:14 200 5000.00\*[red] -1980.00\*[bla] 15.10\*[blu] 1.12\*[bla] 15.13 14.10 ..
\*[bla]\*[Whi]JDSU 12:50:11 300 4242.00\*[red] -1392.00\*[bla] 9.50\*[blu] 0.37\*[bla] 9.68 9.22 ..
\*[bla]\*[Whi]DELL 12:50:14 400 6900.00\*[blu] 4660.00\*[bla] 28.90\*[blu] 1.40\*[bla] 29.05 27.61 ..
\*[bla]\*[Whi]JNPR 12:50:14 100 300.00\*[blu] 1897.00\*[bla] \*[blu] 21.97 1.18\*[bla] 22.12 21.09 ..
\*[bla]\*[Whi]CIEN 12:50:14 500 6789.00\*[blu] 961.00\*[bla] 15.50\*[red] -0.09\*[bla] 16.05 15.32 ..
\*[bla]\*[Whi]WCOM 12:50:14 100 5426.00\*[red] -3988.00\*[bla] 14.38\*[red] -0.12\*[bla] 14.75 14.33 ..
\*[bla]\*[Whi]GE 12:50:08 50 2500.00\*[red] -482.50\*[bla] 40.35\*[red] -0.60\*[bla] 40.92 40.15 ..
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]Holdings Data Entry\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]
\*[bla]\*[Whi]\*[VL] Enter the number of shares in your portfolio and the total cost of
\*[bla]\*[Whi]\*[VL] those shares in the SHARES and TOTCOST fields. Use the arrow keys,
\*[bla]\*[Whi]\*[VL] tab, space, or enter to move between the SHARES and the TOTCOS
\*[bla]\*[Whi]\*[VL] fields. Enter short positions using a negative TOTCOST. To enter
\*[bla]\*[Whi]\*[VL] by cost per share, type '*<cost-per-share>' in the TOTCOST field.
\*[bla]\*[Whi]\*[VL]
\*[bla]\*[Whi]\*[VL] Press 'q' to quit or 's' to save and quit.
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]
.TE
'\"
'\" curses screen dump ends here
'\"
.PP
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
.bx H
key. Press the
.bx H
key a second time to return to the normal display.
\fBNOTE:\fP If you have a wide screen display, your holdings are
always displayed and holdings mode won't be needed or available.
.PP
Press the
.bx *
key to change the holdings display to show the per-share cost instead of
the total cost of the position.
.PP
Press the
.bx #
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,
.bx Tab ,
.bx Space ,
and
.bx Enter
keys to move between the fields on the data entry screen.
.PP
Prefix an amount with
.bx *
to specify the per-share cost, or with
.bx =
to specify the total cost, regardless whether the display is
in TOTCOST or SHRCOST modes.
.PP
When you are done entering your holdings, press the
.bx s
key to save the data permanently. Note that your holdings data is
associated with a particular stock list.
.PP
The extended command \*(CB:clrhold\fP can be used to clear (zero)
all holdings in the current stock list.
.P
The extended command \*(CB:total\fP will display the current
total value of your holdings at the bottom of the screen.
The \fBshowtotals\fP preference
will cause the totals to be continuously displayed underneath
the current stock list.
.ne 3i
.SS SYMBOL LOOKUP
'\"------------------------------------------
'\" curses screendump starts here
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]Symbol Lookup\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBSymbol Name Market Type \fP \*[VL]
\*[bla]\*[Whi]\*[VL]NXTV Next Level Communications Inc NasdaqNM Stock \*[VL]
\*[bla]\*[Whi]\*[VL]NEXAF.PK Next PLC PNK Stock \*[VL]
\*[bla]\*[Whi]\*[VL]NGMC.OB Next Generation Media Corporation OTC BB Stock \*[VL]
\*[bla]\*[Whi]\*[VL]NGTH.OB Next Generation Technology Holdings In OTC BB Stock \*[VL]
\*[bla]\*[Whi]\*[VL]NM.V Next Millennium Commercial Corp Vancouver Stock \*[VL]
\*[bla]\*[Whi]\*[VL]NPTK.PK NextPath Technologies Inc PNK Stock \*[VL]
\*[bla]\*[Whi]\*[VL]NXCD.OB NextCard Inc OTC BB Stock \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"------------------------------------------
The extended command \fB:lookup\fP 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 \fB:lookup next\fP.
Note that all of the symbol names might not be supported
by the streamer that is currently selected.
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the popup.
.P
The extended command \fB:name\fP will lookup the full corporation
name for the current symbol, or optionally the symbol name
listed on the command line.
.SS OPTION SYMBOLS
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
\fBLinuxTrade\fP 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.
.P
Option symbols are entered in a \fBcanonical\fP 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 `\*(CBNQID.\fP'.
.ne 6i
.SS INDEX SYMBOLS
.PP
There is no universal naming convention for index symbols. Since
\fBLinuxTrade\fP 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, \fBLinuxTrade\fP maps a set of \fBcanonical\fP
index symbols to the actual symbols that the streamer uses.
Here is the table of canonical symbols to use for getting index quotes.
.ne 15v
.if t .RS
.TS
lB lB lB lB
lB lB lB lB
l l l l.
_
Index Canonical scottrader money
Symbol .com .net
_
Dow Jones Industrial Average $DJI DJI INDU
Dow Jones Transport Average $DJT TRAN .DJTA
Dow Jones Utilities Average $DJU DJU .DJUA
NYSE Composite $NYA NYA .NYA
NASDAQ Composite $COMP COMP COMPX
NASDAQ 100 $NDX NDX .NDX
S & P 500 $SPX SPX SPX
S & P 100 $OEX OEX .OEX
S & P 400 Mid Cap $MID MID .MID
S & P 400 Small Cap $SML SML .SML
S & P Retail $RLX RLX .RLX
AMEX Airline $XAL XAL .XAL
AMEX Biotechnology $BTK BTK .BTK
AMEX Broker/Dealer $XBD XBD .XBD
AMEX Composite $XAX XAX .XAX
AMEX Computer Technology $XCI XCI .XCI
AMEX Internet $IIX IIX .IIX
AMEX Networking $NWX NWX .NWX
AMEX Oil $XOI XOI .XOI
AMEX Pharmaceutical $DRG DRG .DRG
AMEX Telecommunications $XTC XTC .XTC
GSTI Computer Software $GSO GSO .GSO
Russell 1000 $RUI RUI .RUI
Russell 2000 $RUT RUT .RUT
Russell 3000 $RUA RUA .RUA
Philly Bank $BKX BKX .BKX
Philly Gold & Silver $XAU XAU .XAU
Philly Oil Services $OSX OSX .OSX
Philly Semiconductor $SOX SOX .SOX
Wireless Telecom $YLS YLS .YLS
Disk Drives $DDX DDX .DDX
Internets $DOT DOT .DOT
30-Year T-Bond Yield $TYX TYX .TYX
NYSE Short Term Trading $TRIN TRIN .TRIN
NYSE Issues Up/Down $TICK TICK .TICK
CBOE Gold $GOX GOX .GOX
CBOE Implied Volatilty $VIX VIX .VIX
NAS 100 Volatilty $VXN VXN .VXN
NASDAQ Futures $NQ n/a n/a
S&P 500 Futures $ES n/a n/a
_
.TE
.if t .RE
.P
The extended command \*(CB:indexes\fP 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.
.ne 35v
.SS STOCK CHART
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC #
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] Chart Help \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] CHART COMMANDS.................. + Increase chart duration \*[VL]
\*[bla]\*[Whi]\*[VL] 1 1 Minute Chart - Decrease chart duration \*[VL]
\*[bla]\*[Whi]\*[VL] 2 5 Minute Chart <-- Scroll left \*[VL]
\*[bla]\*[Whi]\*[VL] 3 10 Minute Chart --> Scroll right \*[VL]
\*[bla]\*[Whi]\*[VL] 4 Hourly Chart HOME Scroll to beginning \*[VL]
\*[bla]\*[Whi]\*[VL] 5 Daily Chart END Scroll to end \*[VL]
\*[bla]\*[Whi]\*[VL] 6 Weekly Chart ^L Refresh screen \*[VL]
\*[bla]\*[Whi]\*[VL] p Display pivot points \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC #
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CBINTC Daily [2 Months]\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] . . . . . . . . \*[VL]\*[VL]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]\*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]\*[VL] . 32.86\*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL] \*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Bla]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL] \*[VL] \*[cya] 31.45\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL] \*[VL]\*[VL]\*[whi]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL] . . . . . \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]. . . . . . . . . . 28.57\*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]\*[whi]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]. \*[VL] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]. . . . . . . . . . . . 24.29\*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL] \*[VL]\*[VL] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL] . . . . . . . . . . . . . . . . 20.00\*[VL]
\*[bla]\*[Whi]\*[VL]10 10 10 10 10 11 11 11 11 11 12 12 12 12 12 12 \*[VL]
\*[bla]\*[Whi]\*[VL]05 11 17 23 29 02 08 14 20 27 03 07 13 19 26 31 \*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] 914767\*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] 762306\*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Bla]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] 609845\*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Bla]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[bla]\*[Whi] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] 457383\*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Bla]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] 304922\*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Bla]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi] 152461\*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can popup a candlestick chart for a stock.
Highlight the stock of interest in the Main Screen, then
press the
.bx c
key to bring up the charts popup.
Then press the
.bx ?
key to popup up help on charts.
\fBNOTE:\fP Charts look best when displayed in a terminal emulator
with a lot of lines.
.P
Press the
.bx 1
thru
.bx 6
keys to change the sample period of the chart from 1 minute to
weekly. Press the
.bx +
and
.bx -
keys to increase or decrease the duration of the chart.
.P
Use the
.bx \*(<-
.bx \*(->
.bx Home
and
.bx End
keys to scroll long duration charts left and right.
.P
Press the
.bx q
key to hide the chart popup.
.P
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.
.P
Press the
.bx p
key to display the pivot points for the stock.
.SS JAVA CHARTS
The
.bx C
key will display a \fBfinance.lycos.com\fP LiveChart, a
\fBprophet.net\fP ChartStream Java applet, or a
\fBmoney.net\fP ChartStream Java applet
for the current stock, depending on the setting of the \fBjava_charts\fP
preference.
.P
You must set the
\fBlc_user\fP and \fBlc_pass\fP preferences
and/or the
\fBpf_user\fP and \fBpf_pass\fP 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).
.P
The extended commands \*(CB:lc\fP, \*(CB:mn\fP, and \*(CB:pf\fP can be used to start
a LiveChart or one of the ChartStream applets without regard to the setting
of the \fBjava_charts\fP 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.
.SS WEB CHARTS
The
.bx g
and
.bx G
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 \fBweb_charts\fP preference controls the
source for these charts.
The
.bx g
key will display intraday charts (if available from the selected source),
and the
.bx G
key will display two month charts.
.P
The extended commands \*(CB:wide\fP and \*(CB:Wide\fP are similar to the
.bx g
and
.bx G
commands except that the displayed charts are wider (typically two days
for \*(CB:wide\fP and 6 months for \*(CB:Wide\fP).
.P
The extended command \*(CB:wc\fP 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.
.SS MISCELLANEOUS DATA
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.
.TS
lB lB
l l.
_
Command Description and Example
_
:pe P/E ratios
\f(CWINTC: P/E: 63.20, Price/Book: 3.44, Price/Sales: 4.73\fP
:pivot Pivot points
\f(CWINTC P=17.91 S1=17.57 S2=17.27 R1=18.21 R2=18.55\fP
:range Average daily trading range
\f(CWINTC: Avg. Daily Range = $1.28 (based on 7 days)\fP
:shortint Most recently reported short interest
\f(CWINTC: Short: 57.6M (0.93%), Float: 6.20B, AveVol: 68.5M\fP
:whisper Earnings whisper numbers
\f(CWINTC: Estimated: 0.13, Whisper: 0.13\fP
_
.TE
.ne 25v
.SS NEWS HEADLINES
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] INTC News \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Bla]\*[BOX]1\*[BOX]2\*[BOX]/\*[BOX]3\*[BOX]1\*[BOX]/\*[BOX]0\*[BOX]1\*[BOX]\*[SPC]\*[BOX]1\*[BOX]5\*[BOX]:\*[BOX]5\*[BOX]2\*[BOX]\*[SPC]\*[BOX]P\*[BOX]r\*[BOX]i\*[BOX]v\*[BOX]a\*[BOX]t\*[BOX]e\*[BOX]\*[SPC]\*[BOX]G\*[BOX]i\*[BOX]f\*[BOX]t\*[BOX]s\*[BOX]\*[SPC]\*[BOX]D\*[BOX]r\*[BOX]o\*[BOX]p\*[BOX]p\*[BOX]e\*[BOX]d\*[BOX]\*[SPC]\*[BOX]i\*[BOX]n\*[BOX]\*[SPC]\*[BOX]2\*[BOX]0\*[BOX]0\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]
\*[bla]\*[Whi]\*[VL]12/19/01 16:31 Mattson Technology Appoints Chief Executive Officer; Dav\*[VL]
\*[bla]\*[Whi]\*[VL]12/19/01 13:33 FabTime Donates Cycle Time Management Software to Arizon\*[VL]
\*[bla]\*[Whi]\*[VL]12/19/01 11:01 Samsung Life Insurance to Focus On Intel-Based Solutions\*[VL]
\*[bla]\*[Whi]\*[VL]12/19/01 08:08 JAMDAT Mobile Launches "Gladiator II: Quest for Freedom"\*[VL]
\*[bla]\*[Whi]\*[VL]12/17/01 18:15 Palm Chooses TI As Chip Supplier \*[VL]
\*[bla]\*[Whi]\*[VL]12/17/01 08:04 Sony Online Entertainment and Intel Team Up to Bring Gam\*[VL]
\*[bla]\*[Whi]\*[VL]12/14/01 18:59 Jury Rules Against Intel \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] Use the up/down arrows to select an article, then press enter to view \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can popup the most recent news headlines for a stock.
Highlight the stock of interest in the Main Screen, then
press the
.bx n
key.
.P
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the news popup.
.P
You can also use the extended command \fB:news\fP to popup the
window. An optional stock symbol can be supplied with the
command, otherwise the current stock is used.
.P
\fBLinuxTrade\fP uses a default ``main'' news source for most news.
However,
some streamers may also support streaming news. Those streamers
have a preference \fBusenews\fP associated with them which can be
set to 1 to use the streamer as the primary news source.
.P
The extended commands \fB:mnews\fP and \fB:snews\fP can be used
to force use of either the main news source, or the streamer
news source.
.ne 10v
.SS NEWS ARTICLE
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] Article \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] \*(CBJury Rules Against Intel \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL] AP Online, Friday, December 14, 2001 at 18:59\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]SAN JOSE, Calif. (AP) - A federal jury ruled against Intel Corp.\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]on Friday in a $82 million patent infringement suit against rival\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]chip-maker Broadcom Corp.\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL] The case, originally filed in August 2000, involved two patents\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]related to networking and video processing.\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL] ``We're pleased the jury clearly recognized our products don't\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]infringe on the Intel products,'' said Bill Blanning, spokesman for\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]Irvine, Calif.-based Broadcom.\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL] Intel has not yet decided whether to appeal, spokesman Chuck\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]Mulloy said.\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL] ``Clearly, we're disappointed in the jury's verdict,'' he said.\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can read a news article. Highlight the headline of interest
and then press the
.bx Enter
key.
Press the
.bx q
key to hide the news article and return to the news headlines.
.ne 10v
.SS SAVED NEWS
'\"------------------------------------------
'\" curses screendump starts here
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL] Saved News \*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Red]\*[BOX]h\*[BOX]o\*[BOX]t\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]0\*[BOX]9\*[BOX]/\*[BOX]2\*[BOX]3\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]4\*[BOX]1\*[BOX]\*[SPC]\*[BOX]*\*[BOX]D\*[BOX]J\*[BOX]\*[SPC]\*[BOX]A\*[BOX]M\*[BOX]P\*[BOX]:\*[BOX]\*[SPC]\*[BOX]C\*[BOX]h\*[BOX]m\*[BOX]n\*[BOX]\*[SPC]\*[BOX]T\*[BOX]o\*[BOX]\*[SPC]\*[BOX]O\*[BOX]v\*[BOX]e\*[BOX]r\*[BOX]s\*[BOX]e\*[BOX]e\*[BOX]\*[SPC]\*[BOX]C\*[BOX]E\*[BOX]O\*[BOX]\*[SPC]\*[BOX]S\*[BOX]e\*[BOX]a\*[BOX]r\*[BOX]c\*[BOX]h\*[BOX],\*[BOX]\*[SPC]\*[BOX]S\*[BOX]t\*[BOX]e\*[BOX]p\*[BOX]\*[SPC]\*[BOX]D\*[BOX]o\*[BOX]w\*[BOX]n\*[BOX]\*[SPC]\*[BOX]6\*[BOX]\*[SPC]\*[BOX]M\*[BOX]o\*[BOX]\*[SPC]\*[BOX]L\*[bla]\*[Whi]^
\*[bla]\*[Whi]\*[VL]\*[red]hot 09/23 18:40 *DJ AMP: Interim CEO To Be Andrew Mohl \*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red]hot 09/23 18:39 DJ PEC Solutions/Gov Pact-3: Part Of Group Assigned T\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[blu]inpla 09/23 18:35 Boeing team awarded $273 mln contract (BA) \*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red]hot 09/23 18:39 *DJ AMP: To Consider Internal, External Replacements \*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red]hot 09/23 18:38 *DJ Australia's AMP CEO To Leave Company \*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red]hot 09/23 18:38 DJ PEC Solutions/Gov Pact -2: Gets Pact Via Vector Re\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]GE 09/23 18:36 ...GOOD "FORTUNE"Retired General Electric [GE] chairm\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red]hot 09/23 18:36 DJ First Banks Amer/First Banks -2: Agreed To Merger \*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red]hot 09/23 18:36 PRESS RELEASE: Williams Sells Alliance Pipeline Inter\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] Use the up/down arrows to select an article, press enter to view it v
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"------------------------------------------
.P
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.
.P
The most recent 300 headlines are also saved for future display.
Use the \fB:onews\fP extended command to popup the old (saved)
news window.
.P
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the news popup.
.P
Highlight the headline of interest and then press the
.bx Enter
key to display the article associated with the headline.
.ne 29v
.SS FUNDAMENTAL INFORMATION
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*(CBINTC\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CBINTEL CORP\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CB458140100\fP\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]Last: 32.00 Last Tick: Down $ Change: +0.55 SharesOut: 6,725,000\*[VL]
\*[bla]\*[Whi]\*[VL]Kid: 32.03 PrevClose: 31.45 % Change: +1.752 AnnualDiv: $0.08 \*[VL]
\*[bla]\*[Whi]\*[VL]Ask: 32.04 BxA Size: 34x25 LastSize: 100 Div. Paid: 11/30/01 \*[VL]
\*[bla]\*[Whi]\*[VL]High: 32.29 BxA Exch: QxQ Time: 10:30:36 LastQ EPS: $0.10 \*[VL]
\*[bla]\*[Whi]\*[VL]Low: 31.73 52wk High: 38.59 Exch: Q CurrQ EPS: $0.10 \*[VL]
\*[bla]\*[Whi]\*[VL]Vol: 10,035,700 52wk Low: 18.96 Yield: 0.250% PE Ratio: 42.107 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[VL]
\*[bla]\*[Whi]\*[VL]CALCS \*[VL]
\*[bla]\*[Whi]\*[VL]High Date: 01/31/2001 Moving avg [ 9 day]: 32.260 \*[VL]
\*[bla]\*[Whi]\*[VL]High Price: 38.59 Moving avg [ 14 day]: 32.750 \*[VL]
\*[bla]\*[Whi]\*[VL]Low Date: 09/21/2001 Moving avg [ 21 day]: 32.940 \*[VL]
\*[bla]\*[Whi]\*[VL]Low Price: 18.96 Moving avg [ 50 day]: 30.310 \*[VL]
\*[bla]\*[Whi]\*[VL]Closing Price [Week]: 32.24 Moving avg [100 day]: 27.730 \*[VL]
\*[bla]\*[Whi]\*[VL]Closing Price [Mon.]: 31.45 Moving avg [200 day]: 28.250 \*[VL]
\*[bla]\*[Whi]\*[VL]Closing Price [Qtr.]: 31.45 Avg Volume [ 22 day]: 38,738,304 \*[VL]
\*[bla]\*[Whi]\*[VL]Closing Price [Year]: 31.45 Avg Volume [100 day]: 48,756,011 \*[VL]
\*[bla]\*[Whi]\*[VL]YTD Rate of Return: 0.000 Volatility [ 20 day]: 39.140 \*[VL]
\*[bla]\*[Whi]\*[VL]Last Updated: 01/01/2002 Volatility [180 day]: 53.120 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[VL]
\*[bla]\*[Whi]\*[VL]VOLATILITY \*[VL]
\*[bla]\*[Whi]\*[VL]Call Implied Vol.: 0.4656 Put Implied Vol.: 0.4628 \*[VL]
\*[bla]\*[Whi]\*[VL] 1 Mo. Volatility: 0.3864 7 Mo. Volatility: 0.5203 \*[VL]
\*[bla]\*[Whi]\*[VL] 2 Mo. Volatility: 0.4044 8 Mo. Volatility: 0.5115 \*[VL]
\*[bla]\*[Whi]\*[VL] 3 Mo. Volatility: 0.4724 9 Mo. Volatility: 0.6064 \*[VL]
\*[bla]\*[Whi]\*[VL] 4 Mo. Volatility: 0.5632 10 Mo. Volatility: 0.6354 \*[VL]
\*[bla]\*[Whi]\*[VL] 5 Mo. Volatility: 0.5450 11 Mo. Volatility: 0.6331 \*[VL]
\*[bla]\*[Whi]\*[VL] 6 Mo. Volatility: 0.5312 12 Mo. Volatility: 0.0000 \*[VL]
\*[bla]\*[Whi]\*[VL]Last Updated: 01/01/2002 \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CBCOMMON STOCK\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can popup fundamental information for a stock.
Highlight the stock of interest in the Main Screen, then
press the
.bx i
key.
Press the
.bx q
key to hide the fundamental information popup.
.ne 25v
.SS TECHNICAL INFORMATION
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*(CBINTC\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CBINTEL CORP\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CB458140100\fP\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]Last: 32.00 Last Tick: Down $ Change: +0.55 SharesOut: 6,725,000\*[VL]
\*[bla]\*[Whi]\*[VL]Kid: 32.03 PrevClose: 31.45 % Change: +1.752 AnnualDiv: $0.08 \*[VL]
\*[bla]\*[Whi]\*[VL]Ask: 32.04 BxA Size: 34x25 LastSize: 100 Div. Paid: 11/30/01 \*[VL]
\*[bla]\*[Whi]\*[VL]High: 32.29 BxA Exch: QxQ Time: 10:30:36 LastQ EPS: $0.10 \*[VL]
\*[bla]\*[Whi]\*[VL]Low: 31.73 52wk High: 38.59 Exch: Q CurrQ EPS: $0.10 \*[VL]
\*[bla]\*[Whi]\*[VL]Vol: 10,035,700 52wk Low: 18.96 Yield: 0.250% PE Ratio: 42.107 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[VL]
\*[bla]\*[Whi]\*[VL]CALCS \*[VL]
\*[bla]\*[Whi]\*[VL]High Date: 01/31/2001 Moving avg [ 9 day]: 32.260 \*[VL]
\*[bla]\*[Whi]\*[VL]High Price: 38.59 Moving avg [ 14 day]: 32.750 \*[VL]
\*[bla]\*[Whi]\*[VL]Low Date: 09/21/2001 Moving avg [ 21 day]: 32.940 \*[VL]
\*[bla]\*[Whi]\*[VL]Low Price: 18.96 Moving avg [ 50 day]: 30.310 \*[VL]
\*[bla]\*[Whi]\*[VL]Closing Price [Week]: 32.24 Moving avg [100 day]: 27.730 \*[VL]
\*[bla]\*[Whi]\*[VL]Closing Price [Mon.]: 31.45 Moving avg [200 day]: 28.250 \*[VL]
\*[bla]\*[Whi]\*[VL]Closing Price [Qtr.]: 31.45 Avg Volume [ 22 day]: 38,738,304 \*[VL]
\*[bla]\*[Whi]\*[VL]Closing Price [Year]: 31.45 Avg Volume [100 day]: 48,756,011 \*[VL]
\*[bla]\*[Whi]\*[VL]YTD Rate of Return: 0.000 Volatility [ 20 day]: 39.140 \*[VL]
\*[bla]\*[Whi]\*[VL]Last Updated: 01/01/2002 Volatility [180 day]: 53.120 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[VL]
\*[bla]\*[Whi]\*[VL]VOLATILITY \*[VL]
\*[bla]\*[Whi]\*[VL]Call Implied Vol.: 0.4656 Put Implied Vol.: 0.4628 \*[VL]
\*[bla]\*[Whi]\*[VL] 1 Mo. Volatility: 0.3864 7 Mo. Volatility: 0.5203 \*[VL]
\*[bla]\*[Whi]\*[VL] 2 Mo. Volatility: 0.4044 8 Mo. Volatility: 0.5115 \*[VL]
\*[bla]\*[Whi]\*[VL] 3 Mo. Volatility: 0.4724 9 Mo. Volatility: 0.6064 \*[VL]
\*[bla]\*[Whi]\*[VL] 4 Mo. Volatility: 0.5632 10 Mo. Volatility: 0.6354 \*[VL]
\*[bla]\*[Whi]\*[VL] 5 Mo. Volatility: 0.5450 11 Mo. Volatility: 0.6331 \*[VL]
\*[bla]\*[Whi]\*[VL] 6 Mo. Volatility: 0.5312 12 Mo. Volatility: 0.0000 \*[VL]
\*[bla]\*[Whi]\*[VL]Last Updated: 01/01/2002 \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CBCOMMON STOCK\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can popup technical information for a stock.
Highlight the stock of interest in the Main Screen, then
press the
.bx I
key.
Press the
.bx q
key to hide the technical information popup.
.ne 20v
.SS ALERTS
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CB INTC Alerts \fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] \*(CB Alert Actions \fP \*[VL]
\*[bla]\*[Whi]\*[VL] \*(CBType Op Value xTerm Mail Ext Enabled\fP\*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL] \*[whi]\*[Bla]\*[BOX][\*[BOX]n\*[BOX]e\*[BOX]w\*[BOX]s\*[BOX]]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX][\*[BOX]=\*[BOX]]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX][\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]0\*[BOX].\*[BOX]0\*[BOX]0\*[BOX]]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX][\*[BOX]X\*[BOX]]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX][\*[BOX]\*[SPC]\*[BOX]]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX][\*[BOX]\*[SPC]\*[BOX]]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX][\*[BOX]X\*[BOX]]\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL] [ ask] [>] [ 34.00] [X] [X] [ ] [ ] \*[VL]
\*[bla]\*[Whi]\*[VL] [ bid] [<] [ 33.01] [X] [ ] [ ] [ ] \*[VL]
\*[bla]\*[Whi]\*[VL] [last] [=] [ 32.31] [X] [ ] [X] [ ] \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL]a Alert on ask price NUM Set alert value \*[VL]
\*[bla]\*[Whi]\*[VL]b Alert on bid price +/- Increase/Decrease value by 5% \*[VL]
\*[bla]\*[Whi]\*[VL]l Alert on last price <--/--> Increase/Decrease by 0.01 \*[VL]
\*[bla]\*[Whi]\*[VL]01 Alert on high price t Display alert on terminal \*[VL]
\*[bla]\*[Whi]\*[VL]L Alert on low price m Send email alert \*[VL]
\*[bla]\*[Whi]\*[VL]v Alert on volume x Send External alert \*[VL]
\*[bla]\*[Whi]\*[VL]n Alert on new news e Enable current alert \*[VL]
\*[bla]\*[Whi]\*[VL]< Alert on less than value d/DEL Delete current alert \*[VL]
\*[bla]\*[Whi]\*[VL]= Alert on equal to value s Save and quit alert screen \*[VL]
\*[bla]\*[Whi]\*[VL]> Alert on more than value q/Esc Quit alert screen \*[VL]
\*[bla]\*[Whi]\*[VL]p Set 4 alerts based on pivots \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can set alerts for a stock.
Highlight the stock of interest in the Main Screen, then
press the
.bx A
key to bring up the Alerts popup.
.P
Now, use the arrow keys to highlight one of the four alert entries.
.P
Next, press the
.bx a
.bx b
.bx l
.bx H
.bx L
or
.bx v
keys to select an alert on the ask, bid, low, high, or volume value.
The \fBValue\fP column will be automatically filled in with the current value
for that parameter.
.P
Next, press the
.bx <
.bx =
or
.bx >
keys to select the comparison operator.
.P
Next, adjust the value. Use the
.bx +
or
.bx -
keys to increase or decrease the current value by 5%.
Use the
.bx \*(<-
or
.bx \*(->
keys to increase or decrease the current value by 0.01.
Or, use the number keys to enter a specific value.
.P
Next, select the type of alert action(s) that you want.
Press the
.bx t
key to toggle on-terminal (on-screen) alerts on or off.
Press the
.bx m
key to toggle email alerts on or off. Make sure that your email
address is properly set in the Preferences popup. Press the
.bx x
key to select alert delivery by an external program (see Preferences).
.P
Finally, enable the alert by
using the
.bx e
key to toggle the enabled status.
.P
You can enter news alerts similarly.
Press the
.bx n
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 \fBLinuxTrade\fP is running, you will be alerted.
.P
Press the
.bx s
key to permanently save these alerts and hide the alert popup.
Press the
.bx q
or
.bx Esc
keys to make the current set of alerts temporary and hide the alert popup.
.P
Press the
.bx d
key to clear and delete the current alert entry.
.P
\fBNOTE:\fP 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 \fBLinuxTrade\fP.
.P
When you are on the main stock screen and a screen alert occurs,
press the
.bx Ctrl
.bx a
keys to clear the alert condition. Press them
twice to clear all alerts.
.P
The extended command \*(CB:clralerts\fP can be used to remove
all alerts in the current stock list.
.SS PIVOT POINT ALERTS
On the alert popup, press the
.bx p
key to set five alerts from the stock pivot points.
.RS
.nf
pp = (high + low + close) / 3;
r1 = (2*pp) - low;
s1 = (2*pp) - high;
r2 = pp + (r1 - s1);
s2 = pp - (r1 - s1);
.fi
.RE
.SS QUICK ALERTS
You can quickly set high and low last price alert triggers from the
main screen.
Press
.bx Ctrl
.bx t
and then enter the symbol name and the high and low alert triggers.
.PP
Alternatively,
press
.bx Ctrl
.bx f
and then enter the symbol name and the high and low alert triggers.
.PP
The difference is that triggers entered with
.bx Ctrl
.bx f
will follow the www.trendfund.com 10 AM rule, where the trigger
will be automatically adjusted before 10AM.
.ne 17v
.SS ARCHIPELAGO BOOK
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*(CBINTC\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CBIntel Corporation\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CBARCA L2\fP\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]Inside: 1 BidSize: 3000 Inside: 1 AskSize: 16 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[bla]\*[Cya]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Yel]\*[BOX]\*[SPC]\*[Gre]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[whi]\*[Bla]\*[BOX]\*[VL]\*[bla]\*[Gre]\*[BOX]\*[SPC]\*[Yel]\*[BOX]\*[SPC]\*[Cya]\*[BOX]\*[SPC]\*[whi]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBMMID Time BidSize BidPrice\fP \*(CBMMID Time AskSize AskPrice\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*[Gre]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]2\*[BOX]6\*[BOX]:\*[BOX]4\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]7\*[BOX]5\*[Whi] \*[Gre]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]3\*[BOX]6\*[BOX]:\*[BOX]0\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]7\*[BOX]4\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[Yel]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]0\*[BOX]5\*[BOX]:\*[BOX]4\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]7\*[BOX]1\*[Whi] \*[Yel]\*[BOX]E\*[BOX]L\*[BOX]F\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]2\*[BOX]7\*[BOX]:\*[BOX]1\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]9\*[BOX]8\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]7\*[BOX]5\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[Cya]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]7\*[BOX]:\*[BOX]3\*[BOX]7\*[BOX]:\*[BOX]2\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]9\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]7\*[BOX]0\*[Whi] \*[Cya]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]3\*[BOX]8\*[BOX]:\*[BOX]0\*[BOX]4\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]8\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]7\*[BOX]6\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Red]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]0\*[BOX]7\*[BOX]:\*[BOX]3\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]6\*[BOX]8\*[bla]\*[Whi] \*[whi]\*[Red]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]3\*[BOX]9\*[BOX]:\*[BOX]0\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]7\*[BOX]9\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]2\*[BOX]9\*[BOX]:\*[BOX]4\*[BOX]4\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]6\*[BOX]5\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]0\*[BOX]8\*[BOX]:\*[BOX]0\*[BOX]7\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]9\*[BOX]3\*[BOX]5\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]8\*[BOX]0\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]E\*[BOX]L\*[BOX]F\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]7\*[BOX]:\*[BOX]1\*[BOX]9\*[BOX]:\*[BOX]0\*[BOX]8\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]9\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]6\*[BOX]2\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]2\*[BOX]4\*[BOX]:\*[BOX]1\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]8\*[BOX]2\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]E\*[BOX]L\*[BOX]F\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]5\*[BOX]:\*[BOX]5\*[BOX]8\*[BOX]:\*[BOX]2\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]6\*[BOX]1\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]7\*[BOX]:\*[BOX]2\*[BOX]5\*[BOX]:\*[BOX]3\*[BOX]3\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]8\*[BOX]3\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]5\*[BOX]5\*[BOX]:\*[BOX]5\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]5\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]6\*[BOX]1\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]2\*[BOX]1\*[BOX]:\*[BOX]1\*[BOX]5\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]5\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]8\*[BOX]4\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]7\*[BOX]:\*[BOX]2\*[BOX]2\*[BOX]:\*[BOX]0\*[BOX]8\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]6\*[BOX]0\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]7\*[BOX]:\*[BOX]0\*[BOX]8\*[BOX]:\*[BOX]4\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]8\*[BOX]5\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]E\*[BOX]L\*[BOX]F\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]5\*[BOX]:\*[BOX]4\*[BOX]6\*[BOX]:\*[BOX]0\*[BOX]9\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]5\*[BOX]5\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]8\*[BOX]:\*[BOX]3\*[BOX]0\*[BOX]:\*[BOX]4\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]4\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]8\*[BOX]5\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]2\*[BOX]0\*[BOX]:\*[BOX]3\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]5\*[BOX]3\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]E\*[BOX]L\*[BOX]F\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]0\*[BOX]8\*[BOX]:\*[BOX]1\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]7\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]9\*[BOX]0\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]1\*[BOX]4\*[BOX]:\*[BOX]4\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]5\*[BOX]1\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]3\*[BOX]6\*[BOX]:\*[BOX]5\*[BOX]9\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]9\*[BOX]0\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]4\*[BOX]7\*[BOX]:\*[BOX]5\*[BOX]3\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]5\*[BOX]0\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]0\*[BOX]8\*[BOX]:\*[BOX]2\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]9\*[BOX]2\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]7\*[BOX]:\*[BOX]0\*[BOX]8\*[BOX]:\*[BOX]2\*[BOX]3\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]5\*[BOX]0\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]R\*[BOX]E\*[BOX]D\*[BOX]I\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]1\*[BOX]2\*[BOX]:\*[BOX]5\*[BOX]5\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]9\*[BOX]2\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]:\*[BOX]0\*[BOX]0\*[BOX]:\*[BOX]2\*[BOX]2\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]4\*[BOX]9\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]I\*[BOX]S\*[BOX]L\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]1\*[BOX]:\*[BOX]0\*[BOX]7\*[BOX]:\*[BOX]0\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]1\*[BOX].\*[BOX]9\*[BOX]4\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]34 more 19 more \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can see the Archipelago book for a stock.
Highlight the stock of interest in the Main Screen, then press the
.bx 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.
.P
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.
.ne 21v
.SS ISLAND BOOK
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*(CBINTC\fP\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*(CBIsland L2\fP\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]Inside: 1 BidSize: 171 Inside: 1 AskSize: 16 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Cya]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Yel]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[Gre]\*[BOX]\*[SPC]\*[whi]\*[Bla]\*[BOX]\*[VL]\*[bla]\*[Gre]\*[BOX]\*[SPC]\*[Yel]\*[BOX]\*[SPC]\*[Cya]\*[BOX]\*[SPC]\*[whi]\*[Red]\*[BOX]\*[SPC]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[bla]\*[Whi]\*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBBidSize BidPrice\fP \*(CBAskSize AskPrice\fP \*(CBLast Match\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*[Gre]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]7\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]4\*[BOX]1\*[Whi] \*[Gre]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]6\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]4\*[BOX]3\*[Whi] 25.40 19:23:45 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[Yel]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX],\*[BOX]7\*[BOX]7\*[BOX]7\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]4\*[BOX]0\*[Whi] \*[Yel]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]4\*[BOX]5\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[Cya]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX],\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]3\*[BOX]4\*[Whi] \*[Yel]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]4\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]4\*[BOX]5\*[Whi] Orders: 20,224 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]4\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]3\*[BOX]3\*[bla]\*[Whi] \*[Yel]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]6\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]4\*[BOX]5\*[Whi] Volume: 6,440,555 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]3\*[BOX]3\*[bla]\*[Whi] \*[Cya]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]4\*[BOX]8\*[Whi] As of: 19:28:47 \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX],\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]3\*[BOX]3\*[bla]\*[Whi] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]5\*[BOX]0\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX],\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]2\*[BOX]5\*[bla]\*[Whi] \*[whi]\*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]5\*[BOX]0\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]2\*[BOX]4\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]4\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]5\*[BOX]2\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX],\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]2\*[BOX]3\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]5\*[BOX]8\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]5\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]1\*[BOX]3\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]5\*[BOX]9\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]0\*[BOX]8\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX],\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]6\*[BOX]2\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]4\*[BOX].\*[BOX]9\*[BOX]4\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]6\*[BOX]3\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]4\*[BOX].\*[BOX]9\*[BOX]2\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]6\*[BOX]3\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]4\*[BOX].\*[BOX]8\*[BOX]4\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX],\*[BOX]0\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]6\*[BOX]3\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]4\*[BOX]0\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]4\*[BOX].\*[BOX]8\*[BOX]4\*[bla]\*[Whi] \*[whi]\*[Blu]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]1\*[BOX]1\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]2\*[BOX]5\*[BOX].\*[BOX]6\*[BOX]4\*[bla]\*[Whi] \*[VL]
\*[bla]\*[Whi]\*[VL]... 124 more ... ... 261 more ... \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can also see the Island book for a stock.
Highlight the stock of interest in the Main Screen, then press the
.bx 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.
.P
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.
.ne 25v
.SS OPTION CHAINS
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]INTC Option Chains\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*(CBDATE STRIKE CALLS LAST CHG VOL OPEN PUTS LAST CHG VOL OPEN\fP\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 15.00 NQCC 17.80 pc 0 93 NQOC 0.00 pc 0 80\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 17.50 NQCW 0.00 pc 0 0 NQOW 0.00 pc 0 0\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 20.00 NQCD 11.50 +0.30 18 99 NQOD 0.00 pc 0 0\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 22.50 NQCX 9.20 pc 0 196 NQOX 0.05 pc 0 99\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 25.00 INQCE 6.60 +0.70 45 1012 INQOE 0.10 pc 0 11000\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 27.50 INQCY 4.20 +0.30 197 2642 INQOY 0.05 pc 0 18642\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 30.00 INQCF 1.65 +0.55 1036 25912 INQOF 0.05 -0.10 207 72185\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 32.50 INQCZ 0.05 -- 123 43378 INQOZ 0.90 -0.70 2394 45571\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 35.00 INQCG 0.05 -- 102 58104 INQOG 3.30 -0.50 398 13867\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 37.50 INQCU 0.05 pc 0 9119 INQOU 6.40 pc 0 1266\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 40.00 INQCH 0.05 pc 0 4704 INQOH 8.60 pc 0 224\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 42.50 INQCV 0.05 pc 0 39 INQOV 0.00 pc 0 0\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 45.00 INQCI 0.00 pc 0 10 INQOI 0.00 pc 0 0\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 47.50 INQCW 0.00 pc 0 0 INQOW 0.00 pc 0 19\*[VL]
\*[bla]\*[Whi]\*[VL]Mar02 50.00 INQCJ 0.00 pc 0 0 INQOJ 0.00 pc 0 65\*[VL]
\*[bla]\*[Whi]\*[VL]MaxHurt = 32.50 \*[VL]
\*[bla]\*[Whi]\*[VL] v
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]from cboe.com - exchange E\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
You can get a list of the option symbols for a stock.
Highlight the stock of interest in the Main Screen, then press the
.bx o
key to display the option symbols. The left side of the screen shows
the calls, the right side of the screen shows the puts.
.P
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the popup.
.P
The option chains popup features a live quote feature. Quotes for
each option on the display are updated every 60 seconds.
.SS EXTERNAL OPTION CHAINS
If the currently selected streamer doesn't support option chains,
you can use the
.bx O
key to display option chains for the current stock using your web browser.
.ne 25v
.SS TIME AND SALES
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]CSCO\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]SUNW\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]INTC\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] 18.52 3200 12:29:25\*[VL]\*[VL] 12.76 15000 12:29:10\*[VL]\*[VL]\*[red] 32.14 100 12:29:13\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red] 18.51 1000 12:29:27\*[bla]\*[VL]\*[VL]\*[blu] 12.77 200 12:29:12\*[bla]\*[VL]\*[VL]\*[red] 32.14 300 12:29:15\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red] 18.50 4400 12:29:29\*[bla]\*[VL]\*[VL]\*[blu] 12.77 1500 12:29:18\*[bla]\*[VL]\*[VL]\*[blu] 32.17 15000 12:29:23\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[blu] 18.51 20000 12:29:31\*[bla]\*[VL]\*[VL]\*[red] 12.76 100 12:29:20\*[bla]\*[VL]\*[VL] 32.15 100 12:29:27\*[VL]
\*[bla]\*[Whi]\*[VL]\*[blu] 18.50 8000 12:29:36\*[bla]\*[VL]\*[VL] 12.76 3500 12:29:25\*[VL]\*[VL] 32.15 100 12:29:32\*[VL]
\*[bla]\*[Whi]\*[VL]\*[blu] 18.50 1000 12:29:38\*[bla]\*[VL]\*[VL]\*[blu] 12.76 8600 12:29:29\*[bla]\*[VL]\*[VL] 32.15 800 12:29:34\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red] 18.49 200 12:29:41\*[bla]\*[VL]\*[VL]\*[red] 12.76 1800 12:29:40\*[bla]\*[VL]\*[VL]\*[red] 32.14 700 12:29:40\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[red] 18.49 400 12:29:43\*[bla]\*[VL]\*[VL] 12.76 200 12:29:42\*[VL]\*[VL] 32.15 900 12:29:42\*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
Press the
.bx t
key to turn the display of the Time and Sales window for the current
stock on or off.
.P
Press the
.bx T
key to turn the display of the Time and Sales windows for all stocks
on or off.
.P
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.
.P
The color of each line indicates something about the sale.
.RS
.TS
lf(CW) lf(CW) l.
T{
.colbox white blue "Reverse blue"
T} T{
.colbox black green "Reverse green"
T} At or above daily high
T{
.colbox blue white Blue
T} T{
.colbox green white Green
T} At or above current ask
T{
.colbox red white Red
T} T{
'\" If red2 is changed to red, then the foreground comes out black! Try it.
.colbox red2 white Red
T} At or below current bid
T{
.colbox black red "Reverse red "
T} T{
.colbox black red "Reverse red "
T} At or below daily low
.TE
.RE
.ne 15v
.SS MARKET MOVERS
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
box;
lf(CW).
\*(CB\*[bla]\*[Whi]New Daily Lows........\fP \*(CBNew Daily Highs.......\fP
\*[bla]\*[Whi]NVDA 66.00 -0.90 SBLU 4.22 +0.18
\*[bla]\*[Whi]AKAM 5.83 -0.11 RJR 56.80 +0.50
\*[bla]\*[Whi]GR 25.60 -1.02 MADGF 0.58 +0.13
\*[bla]\*[Whi]BSX 22.54 -1.58 SBLU 4.24 +0.20
\*[bla]\*[Whi]AKAM 5.82 -0.12 DIMEZ 0.20 +0.05
\*[bla]\*[Whi]NVDA 65.97 -0.93 IMDS 0.50 +0.02
\*[bla]\*[Whi]NVDA 65.96 -0.94 ASCL 4.19 +0.14
\*[bla]\*[Whi]AKAM 5.80 -0.14 SYY 26.05 -0.17
\*[bla]\*[Whi]PCP 26.74 -1.51 VTA 8.26 +0.26
\*[bla]\*[Whi]NVDA 65.95 -0.95 CEI 18.38 +0.27
\*[bla]\*[Whi]NVDA 65.94 -0.96 MADGF 0.59 +0.14
\*[bla]\*[Whi]WEN 28.95 -0.22 BWEB 1.69 +0.34
\*[bla]\*[Whi]TOY 19.55 -1.19 PAR 5.65 +0.52
\*[bla]\*[Whi]NVDA 65.93 -0.97 QGLY 3.17 +0.87
\*[bla]\*[Whi]NVDA 65.92 -0.98 SPG 29.55 +0.22
\*[bla]\*[Whi]NVDA 65.91 -0.99 QGLY 3.20 +0.90
\*[bla]\*[Whi]NVDA 65.90 -1.00 QGLY 3.21 +0.91
.TE
'\"
'\" curses screen dump ends here
'\"
.P
Press the
.bx m
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.
.ne 15v
.SS PREMARKET AND AFTER HOURS TRADES
'\"------------------------------------------
'\" curses screendump starts here
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]nasdaq.com extended hours\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*(CBPage 1\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBPre-Market Trade Reporting\fP Friday August 9 \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]Last: \*(CB$17.93\fP Best Bid High: \*(CB$18.25\fP \*[VL]
\*[bla]\*[Whi]\*[VL]Volume: \*(CB296,132\fP Best Ask Low: \*(CB$17.85\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]Pre-Market Time (ET) Pre-Market Price Pre-Market Share Volume \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.93\fP \*(CB3700\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.92\fP \*(CB500\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.93\fP \*(CB800\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.92\fP \*(CB100\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.93\fP \*(CB200\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.93\fP \*(CB2000\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.93\fP \*(CB800\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.92\fP \*(CB100\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.93\fP \*(CB100\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.92\fP \*(CB700\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.93\fP \*(CB1700\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.29 $ 17.93\fP \*(CB1000\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.28 $ 17.92\fP \*(CB400\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.28 $ 17.93\fP \*(CB1000\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.28 $ 17.91\fP \*(CB1600\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.28 $ 17.92\fP \*(CB100\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.28 $ 17.95\fP \*(CB900\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB09.25 $ 17.95\fP \*(CB5000\fP v
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"------------------------------------------
.P
The extended commands \*(CB:pre\fP and \*(CB:after\fP 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).
.P
The time and sales data is displayed with an internal text-based web browser.
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list of trades.
Press the
.bx q
key to hide the popup.
.P
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.
.ne 25v
.SS IN-PLAY
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]Briefing.com In Play\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*(CBUpdated: 02-Jan-02 10:59 ET\fP Comprehensive coverage on ShortStories,\*[VL]
\*[bla]\*[Whi]\*[VL]analysis on Story Stocks \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBToday's In Play\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB10:59 ET \fPSchering-Plough \*(CB(SGP)\fP \*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]3\*[BOX]5\*[BOX].\*[BOX]2\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]-\*[BOX]0\*[BOX].\*[BOX]6\*[BOX]1\*[Whi] 35.12 -0.69 (-1.9%): \*[VL]
\*[bla]\*[Whi]\*[VL]ABN AMRO comments on news that\*(CB Phase III clinical trials\fP of a \*[VL]
\*[bla]\*[Whi]\*[VL]fixed-combination tablet containing Claritin and Merck's (MRK -0.7%) \*[VL]
\*[bla]\*[Whi]\*[VL]Singular did not demonstrate a statistically significant improvement in\*[VL]
\*[bla]\*[Whi]\*[VL]the treatment of seasonal allergic rhinitis. According to firm, the \*[VL]
\*[bla]\*[Whi]\*[VL]companies had hoped the combination would offset oncoming \*[VL]
\*[bla]\*[Whi]\*[VL]generics. Views news as having more of an impact on SGP given that \*[VL]
\*[bla]\*[Whi]\*[VL]Claritin will face generic competition will in early 2003. \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB10:54 ET \fPeBay \*(CB(EBAY)\fP \*[Red]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]6\*[BOX]5\*[BOX].\*[BOX]3\*[BOX]0\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]\*[SPC]\*[BOX]-\*[BOX]1\*[BOX].\*[BOX]6\*[BOX]0\*[Whi] 65.01 -1.89 (-2.9%):\*(CB -- Update --\fP\*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBTechnical --\fP Worth watching today and over the next several sessions as\*[VL]
\*[bla]\*[Whi]\*[VL]the chart has weakened in terms of its near-term outlook. Stock is \*[VL]
\*[bla]\*[Whi]\*[VL]currently working to hold support at 65.00 -- on a clean break lower \*[VL]
\*[bla]\*[Whi]\*[VL]look for subsequent support at congestion around 63.7/63.8 followed by \*[VL]
\*[bla]\*[Whi]\*[VL]additional support at its 50-day moving average of 62.15. The intraday\*[VL]
\*[bla]\*[Whi]\*[VL]tone would improve on a break above 65.50. \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB10:32 ET \fPNasdaq Composite :\*(CB -- Technical --\fP Index continues to maintain\*[VL]
\*[bla]\*[Whi]\*[VL]a posture over near-term support at congestion around 1950. On a breakv
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
Press the
.bx P
key to popup the \fIBriefing.com In Play\fP list.
The list is displayed with an internal text-based web browser.
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the popup.
.P
\fBLinuxTrade\fP automatically looks for stock symbols in the
In Play list and adds them to stocklist number \fB0\fP. This
lets you watch the days hot stocks by switching the main
screen to stocklist 0 after displaying the In Play list.
.P
If the In Play popup is displayed and the display
is on the first line of the list, then \fBLinuxTrade\fP
will automatically refresh the information periodically.
You can set the interval between refreshes with the
\fBinplay_poll\fP preference value. The poll period is
in minutes; set it to 0 to disable this feature.
.P
If the preference item \fBlive_quotes\fP is non-zero, then live
quotes will be added to the right side of the display. These
quotes will be updated in real time.
.ne 20v
.SS UP/DOWNGRADES
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]Briefing.com Up/Downgrades\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*(CBUpdated: 10:28 ET 02-Jan-02\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBUpgrades\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB Live Quotes\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBCompany\fP \*(CBSymbol\fP \*(CBBrokerage UpgradeFrm\fP \*(CBUpgradeTo\fP \*(CBTarget Price Change\fP\*[VL]
\*[bla]\*[Whi]\*[VL]CSG Syste CSGS Buckingha Swap Neutral \*[red] 40.21 -0.24\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]Novatel W NVTL USB Piper Mkt Perfor Outperfor \*[blu] 1.54 +0.32\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]Genentech DNA USB Piper Mkt Perfor Outperfor $65 \*[red] 52.99 -1.26\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]Intimate IBI Banc of A Mkt Perfor Buy $20 \*[blu] 15.25 +0.39\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]AnnTaylor ANN Banc of A Mkt Perfor Buy $42 \*[red] 34.50 -0.50\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]Apple Com AAPL Gerard Kl Neutral Outperfor $26 \*[blu] 22.43 +0.53\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]AT T Merrill L NT Neutral NT Buy $21 \*[blu] 18.43 +0.29\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBDowngrades\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBCompany\fP \*(CBSymbol\fP \*(CBBrokerage DowngradFr\fP \*(CBDowngraTo\fP \*(CBTarget\fP \*[VL]
\*[bla]\*[Whi]\*[VL]Gladstone GLAD BB Capita Strong Buy LT Buy $19 \*[red] 18.15 -0.35\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]Imclone S IMCL Stephens Buy MktOutper $49 \*[red] 43.90 -2.56\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]MTR Gamin MNTG Dresdner Buy Add $18 \*[red] 14.91 -1.09\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]Corn Prod CPO Prudentia Buy Hold $38 \*[red] 32.84 -2.41\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]IMS Healt RX Bear Stea Buy Attractiv $22 \*[red] 19.26 -0.25\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]INRANGE INRG Salomon S Buy Outperfor $15 \*[red] 11.77 -0.58\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]EOG Rsrcs EOG UBS Warbu Buy Hold $41 \*[red] 37.52 -1.59\*[bla]v
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
Press the
.bx P
key to popup the \fIBriefing.com Up/Downgrades\fP list.
The list is displayed with an internal text-based web browser.
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the popup.
.P
\fBLinuxTrade\fP automatically looks for stock symbols in the
up/downgrades list and adds them to stocklist number \fB0\fP. This
lets you watch the days hot stocks by switching the main
screen to stocklist 0 after displaying the up/downgrades list.
.P
If the up/downgrades popup is displayed and the display
is on the first line of the list, then \fBLinuxTrade\fP
will automatically refresh the information periodically.
You can set the interval between refreshes with the
\fBinplay_poll\fP preference value. The poll period is
in minutes; set it to 0 to disable this feature.
.P
If the preference item \fBlive_quotes\fP is non-zero, then live
quotes will be added to the right side of the display. These
quotes will be updated in real time.
.ne 20v
.SS "EARNINGS CALENDAR"
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[black]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]Bloomberg Earnings Calendar for 01/04/2002\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]Page F \*[VL]
\*[bla]\*[Whi]\*[VL] Expected Period Est / Actual \*(CB Live Quotes \fP\*[VL]
\*[bla]\*[Whi]\*[VL]Symbol Company Name Ann Date Ending EPS / EPS Audio \*(CB Price Change\fP\*[VL]
\*[bla]\*[Whi]\*[VL]CLRNE CLARENT CORP 01/04/02 12/01 -0.40 / - - 5.35 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]FORD FORWARD INDS 01/04/02 12/01 -- / -- \*[blu] 1.14 +0.07\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]SIMN SIMON TRANS 01/04/02 12/01 -- / -- \*[blu] 3.30 +0.65\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]THC TENET HEALTH 01/04/02 11/01 0.70 / 0.77 \*(CBListen\fP\*[blu] 61.75 +1.75\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]VPS VERMONT PURE 01/04/02 10/01 0.04 / - - \*[blu] 4.90 +0.05\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]GAP GREAT ATL 01/07/02 11/01 0.07 / -- \*[blu] 24.78 +0.03\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]UNF UNIFIRST COR 01/07/02 11/01 0.37 / -- 4:00pm\*[red] 21.75 -0.16\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]AA ALCOA INC 01/08/02 12/01 0.10 / -- \*[blu] 37.16 +1.02\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]CRAI CHARLES RIVE 01/08/02 11/01 0.20 / -- 10:00a\*[blu] 21.00 +0.99\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]EMMS EMMIS COMM C 01/08/02 11/01 -0.30 / -- \*[blu] 23.57 +0.97\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]FRS FRISCHS RSTR 01/08/02 11/01 0.29 / -- \*[red] 15.37 -0.25\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]HELE HELEN OF TRO 01/08/02 11/01 0.32 / -- 11:00a\*[red] 12.32 -0.01\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]HMSY HEALTH MGMT 01/08/02 10/01 -- / -- \*[red] 3.28 -0.01\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]ICLR ICON PLC 01/08/02 11/01 0.28 / -- \*[blu] 28.96 +0.65\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]IMGC INTERMAGNETI 01/08/02 11/01 0.19 / -- \*[red] 25.70 -0.10\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]NUHC NU HORIZONS 01/08/02 11/01 0.02 / -- 4:15pm\*[red] 10.65 -0.04\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]RPM RPM INC 01/08/02 11/01 0.22 / -- 10:00a\*[blu] 15.12 +0.20\*[bla]\*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
Press the
.bx P
key to popup the \fIBloomberg Earnings Calendar\fP.
The calendar is displayed with an internal text-based web browser.
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the popup.
.PP
Use the
.bx \*(->
and
.bx \*(<-
keys to move the calendar display forward or backward by one day.
Use the
.bx +
and
.bx -
keys to move the calendar display to the next or the previous week.
.P
\fBLinuxTrade\fP automatically looks for stock symbols in the
earnings calendar and adds them to stocklist number \fB0\fP. This
lets you watch the days hot stocks by switching the main
screen to stocklist 0 after displaying the earnings calendar.
.P
If the preference item \fBlive_quotes\fP is non-zero, then live
quotes will be added to the right side of the display. These
quotes will be updated in real time.
.P
If the preference item \fBmouse\fP is non-zero, then you can
select a conference call to listen to. Under the \*(CBAudio\fP
column, click on the word \*(CBListen\fP.
The RealNetworks \fBrealplay\fP
program must be installed on your system for this to work.
.P
The extended command \*(CB:earnings\fP 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 \*(CB:earnings\fP command
to display information on that stock.
.ne 20v
.SS "SPLITS CALENDAR"
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]Briefing.com Splits Calendar\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]April \*(CB Live Quotes \fP\*[VL]
\*[bla]\*[Whi]\*[VL]Company Symbol Ratio Payable Ex-Date Announced Opt \*(CB Price Change\fP\*[VL]
\*[bla]\*[Whi]\*[VL]Jacobs JEC 2-1 Apr 01 Apr 02 Feb 12 Yes 71.29 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]99 Cents Onl NDN 4-3 Apr 03 Apr 04 Mar 12 Yes 38.34 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]Alliance Gam ALLY 2-1 Apr 08 Apr 09 Mar 20 Yes 30.53 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]McCormick MKC 2-1 Apr 08 Apr 09 Feb 19 Yes 51.13 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]THQ Inc THQI 3-2 Apr 09 Apr 10 Mar 08 Yes 49.10 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]Applied Mate AMAT 2-1 Apr 16 Apr 17 Mar 21 Yes 54.27 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]Autodesk ADSK 2-1 Apr 18 Apr 19 Mar 14 Yes 46.69 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]MASSBANK MASB 3-2 Apr 19 Apr 22 Jan 16 46.00 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]Progressive PGR 3-1 Apr 22 Apr 23 Mar 19 Yes 166.62 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]Dean Foods DF 2-1 Apr 23 Apr 24 Feb 21 Yes 75.72 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]May \*[VL]
\*[bla]\*[Whi]\*[VL]Company Symbol Ratio Payable Ex-Date Announced Opt \*[VL]
\*[bla]\*[Whi]\*[VL]Darden Rest DRI 3-2 May 01 May 02 Mar 21 Yes 40.59 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]ABM Industri ABM 2-1 May 06 May 07 Mar 12 36.70 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]Cathay Banco CATY 2-1 May 09 May 10 Mar 22 72.10 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]Enterprise P EPD 2-1 May 15 May 16 Feb 27 48.35 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]Fulton Fincl FULT 5-4 May 20 May 21 Mar 19 25.04 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]NTT DoCoMo DCM 5-1 May 22 May 22 Mar 04 68.40 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]June \*[VL]
\*[bla]\*[Whi]\*[VL]Company Symbol Ratio Payable Ex-Date Announced Opt \*[VL]
\*[bla]\*[Whi]\*[VL]First Data FDC 2-1 Jun 04 Jun 05 Mar 07 Yes 87.25 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]PMI Group PMI 2-1 Jun 14 n/a Feb 21 Yes 75.76 +0.00\*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]Copyright \*(CB\*[whi]\*[Bla]\*[BOX]?\fP\*[bla]\*[Whi] 2000 Briefing.com, Inc. All rights reserved. \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
Enter the extended command \*(CB:splits\fP
to popup the \fIBriefing.com Splits Calendar\fP.
The calendar is displayed with an internal text-based web browser.
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the popup.
.P
\fBLinuxTrade\fP automatically looks for stock symbols in the
splits calendar and adds them to stocklist number \fB0\fP. This
lets you watch the stock that are pending splits by switching the main
screen to stocklist 0 after displaying the splits calendar.
.ne 20v
.SS "QUIET PERIOD CALENDAR"
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]Quiet Period Calendar\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL] IPO.com: Lock-up Period Calendar \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB Companies Exiting the Quiet Period\fP \*(CB Live Quotes \fP\*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBQuiet End Trading Company Symbol Offering Price Change\fP\*[VL]
\*[bla]\*[Whi]\*[VL]04/22/02 03/27/02 MedSource Technologi MEDT $12.00 \*[red] 14.00 -1.00\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]05/06/02 04/09/02 Empire Financial Hol EFH $6.00 \*[red] 4.75 -0.05\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]05/07/02 04/12/02 Jetblue Airways Corp JBLU $27.00 \*[red] 43.63 -0.57\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]05/07/02 04/12/02 Ribapharm Inc. RNA $10.00 \*[blu] 11.80 +0.60\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]05/13/02 04/18/02 Expressjet Holdings, XJT $16.00 \*[blu] 16.15 +0.15\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]05/13/02 04/18/02 Medical Staffing Net MRN $19.00 \*[blu] 22.20 +0.70\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[cya] Any investment bank not involved with the underwriting can start\*[bla] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[cya]coverage immediately.\*[bla] \*[VL]
\*[bla]\*[Whi]\*[VL] Printed Saturday, April 20, 2002 \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB1998-2002 IPO.com, Inc. All rights reserved.\fP\*[cya]This publication could\*[bla] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[cya]include technical inaccuracies or typographical errors. Changes are\*[bla] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[cya]periodically added to the information herein; these changes will be\*[bla] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[cya]incorporated in new editions of the publication. IPO.com, Inc. may make\*[bla]\*[VL]
\*[bla]\*[Whi]\*[VL]\*[cya]improvements and/or changes in this product(s) and/or the program(s)\*[bla] \*[VL]
\*[bla]\*[Whi]\*[VL]\*[cya]described in this publication at any time.\*[bla] \*[VL]
\*[bla]\*[Whi]\*[VL] \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"
.P
Enter the extended command \*(CB:qp\fP
to popup the \fIIPO.com Quiet Period Calendar\fP.
The calendar is displayed with an internal text-based web browser.
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the popup.
.P
\fBLinuxTrade\fP automatically looks for stock symbols in the
quiet period calendar and adds them to stocklist number \fB0\fP. This
lets you watch stocks in the quiet period by switching the main
screen to stocklist 0 after displaying the quiet period calendar.
.ne 40v
.SS "ECONOMIC CALENDAR"
'\"------------------------------------------
'\" curses screendump starts here
'\"
'\" curses to troff screen dump conversion helpers
'\"
'\" Define foreground and background colors
'\"
.if mred .ds bla \m[black]
'\" Some issue with groff - a pure black bg doesn't cause a color change.
.if mred .ds Bla \M[grey1]
.if mred .ds red \m[red]
.if mred .ds Red \M[red]
.if mred .ds gre \m[green]
.if mred .ds Gre \M[green]
'\" in curses on an xterm, yellow is actually orange. Go figure.
.if mred .ds yel \m[orange]
.if mred .ds Yel \M[orange]
.if mred .ds blu \m[blue]
.if mred .ds Blu \M[blue]
.if mred .ds mag \m[magenta]
.if mred .ds Mag \M[magenta]
.if mred .ds cya \m[cyan]
.if mred .ds Cya \M[cyan]
.if mred .ds whi \m[white]
.if mred .ds Whi \M[white]
.if mred .ds pre \mP
.if mred .ds Pre \MP
'\"
'\" Define 1 character wide filled box
'\"
.ds UBOX \v'+.35v'\D'P 0 -1.0v \w'0'u 0 0 +1.0v -\w'0'u 0'\v'-.35v'
.ie mred .ds BOX \*[UBOX]
.el .ds BOX
'\"
'\" Define line drawing characters
'\"
.ie t .ds VL \h'\w'0'u/2u'\v'-.625v'\D'l 0 1v'\v'-.375v'\h'\w'0'u/2u'
.el .ds VL |
.ie t .ds HL \v'-0.375v'\D'l \w'0'u 0'\v'+0.375v'
.el .ds HL -
.ie t .ds UL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 1v'\v'-1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds UL +
.ie t .ds UR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 1v'\v'-0.625v'\h'\w'0'u/2u'
.el .ds UR +
.ie t .ds LL \h'\w'0'u/2u'\v'-0.375v'\D'l 0 -1v'\v'1v'\D'l \w'0'u/2u 0'\v'+0.375v'
.el .ds LL +
.ie t .ds LR \v'-0.375v'\D'l \w'0'u/2u 0'\D'l 0 -1v'\v'1.375v'\h'\w'0'u/2u'
.el .ds LR +
'\"
'\" Define bold font
'\"
.ie t \{\
. ie '\*[.T]'ps' .ds CB \f(CB
. el .ds CB \f(CW
.\}
.el .ds CB \fB
'\"
'\" curses screen dump starts here
'\"
.ie mred .ds SPC \0
.el \{\
. ie n .ds SPC \0
. el .ds SPC \*[UBOX]\0
.\}
.TS
lf(CW).
\*[bla]\*[Whi]\*[UL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]Briefing.com Econ Calendar\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[UR]
\*[bla]\*[Whi]\*[VL]\*(CBEconomic Calendar\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBUpdated: 09-Aug-02\fP | Click here for description of column headings \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBThis Week's Calendar Click on a release for Instant Analysis!\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBDate\fP \*(CBET\fP \*(CBRelease\fP \*(CBFor\fP \*(CBActual\fP \*(CBBriefi\fP \*(CBConsen\fP \*(CBPrior\fP \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 09 08:30 Productivity-Prel Q2 \*[blu]1.1% \*[bla] 0.6% 0.7% 8.6% 8.4% \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBWeek of August 12 - August 16\fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CB \fP \*[VL]
\*[bla]\*[Whi]\*[VL]\*(CBDate\fP \*(CBET\fP \*(CBRelease\fP \*(CBFor\fP \*(CBActual\fP \*(CBBriefi\fP \*(CBConsen\fP \*(CBPrior\fP \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 13 08:30 Retail Sales Jul 1.5% 1.2% 1.1% \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 13 08:30 Retail Sales ex-au Jul 0.2% 0.3% 0.4% \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 13 14:15 FOMC Meeting \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 14 08:30 Business Inventori Jun 0.2% 0.2% 0.2% \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 15 08:30 Initial Claims 08/10 370K NA 376K \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 15 09:15 Industrial Product Jul 0.0% 0.2% 0.8% \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 15 09:15 Capacity Utilizati Jul 76.1% 76.2% 76.1% \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 15 12:00 Philadelphia Fed Aug 5.0 8.5 6.6 \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 15 14:00 FOMC Minutes 6/26 \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 16 08:30 CPI Jul 0.1% 0.2% 0.1% \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 16 08:30 Core CPI Jul 0.1% 0.2% 0.1% \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 16 08:30 Housing Starts Jul 1.690M 1.670M 1.672M \*[VL]
\*[bla]\*[Whi]\*[VL]Aug 16 08:30 Building Permits Jul 1.670M 1.680M 1.700M \*[VL]
\*[bla]\*[Whi]\*[LL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[HL]\*[LR]
.TE
'\"
'\" curses screen dump ends here
'\"------------------------------------------
.P
Enter the extended command \*(CB:econ\fP
to popup the \fIBriefing.com Economic Calendar\fP.
The calendar is displayed with an internal text-based web browser.
Use the arrow keys,
.bx "PageUp" ,
.bx "PageDown" ,
.bx "Home"
and
.bx "End"
to move through the list.
Press the
.bx q
key to hide the popup.
.ne 20v
.SS "HEATMAPS and CARPETS"
The extended commands \*(CB:heatmap\fP and \*(CB:carpet\fP 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).
.P
The heatmaps and carpets that are available are:
.RS
.TS
lB l.
:heatmap etf nasdaq.com exchange traded funds heatmap
:heatmap pmi nasdaq.com premarket heatmap
:heatmap 100 nasdaq.com NASDAQ-100 heatmap
:heatmap T{
If before 9:30, premarket heatmap, else NASDAQ-100 heatmap
T}
:heatmap market money.net marketMETER
:heatmap heat money.net heatmap
:heatmap sector money.net sectorTRACKER
:carpet sector stockcharts.com sector carpet
:carpet market stockcharts.com market carpet
:carpet index stockcharts.com index carpet
:carpet fidelity stockcharts.com Fidelity mutual funds carpet
:carpet rydex stockcharts.com Rydex mutual funds carpet
:carpet toronto stockcharts.com Toronto exchange carpet
.TE
.RE
.SS "UNUSUAL VOLUME"
The extended command \*(CB:ibdvol\fP populates stocklist 0 with the
list of 12-14 unusual volume stocks which are currently featured
on the Investors Business Daily home page.
.P
The extended command \*(CB:bwkvol\fP populates stocklist 0 with a
list of up to 25 unusual volume stocks from a screen using the
Business Week real time stock screener.
.SS "PLAYERS"
Stocklist 0 can be popoulated using the extended commands:
.RS
\*(CB:pla\fPyers
.br
\*(CB:pla\fPyers \fItag\fP
.br
\*(CB:pla\fPyers @
.br
\*(CB:pla\fPyers @\fIindex-symbol\fP
.RE
.P
The first form of the command (with no argument) looks up the current symbol
in the \fBplayers.txt\fP file. This is often used to
convert an index symbol into a stocklist of its components.
.P
The second form of the command
looks up the \fItag\fP, which can be any string,
in the \fBplayers.txt\fP file.
.P
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.
.P
The fourth form of the command
looks up the components of the listed canonical \fIindex-symbol\fP using
an external website.
.P
The \fBplayers.txt\fP 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:
.RS
.nf
.ft CW
vola Volatile Stocks
QLGC Qlogic
EXPE Expedia POS
NVDA Nvidia
dow Dow Industrials
$DJI Average
A Alcoa
AXP American Express
T AT&T
.ft P
.fi
.RE
.P
The \fBplayers.txt\fP files are searched for tags in the following order:
current directory, \fB$HOME/.linuxtrade/players.txt\fP, and
finally \fB/usr/share/linuxtrade/players.txt\fP.
.P
The system supplied \fB/usr/share/linuxtrade/players.txt\fP file
contains definitions for tags \*(CB:dow\fP, \*(CB:spiders\fP, and
\*(CB:majors\fP. In addition, component breakdown tags are provided for
all of the index symbols in the majors list. You can use the
\*(CB:majors\fP command to view the major market sectors, then
position the stock cursor and use
the \*(CB:players\fP command to view how individual stocks are
performing within a specific sector.
.SS "EXTERNAL STOCKLISTS"
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 \fBlabel=\fP\fIstring\fP.
.P
The extended command \fB:!\fP\fIscriptname\fP will run your shell script
named \fIscriptname\fP to populate stocklist 0.
.ne 20v
.SH TOOL MODE
\fBlinuxtrade\fP can also be used as a tool to access quote data
without using the user interface. This mode can be used to run
\fBlinuxtrade\fP from a script. The \fB-T\fP \fItoolmode\fP
command line option is used to run the program in tool mode.
.P
In tool mode, quote data is sent to \fBstdout\fP 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 \fBstdin\fP.
.SS TOOL MODE OUTPUT
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 (\fB|\fP).
'\"
'\"
.TP
.BI "OPEN|" streamer |
.RS
.TP 1i
.PD 0
.I streamer
streamer ID.
.PD
.PP
The \fBOPEN\fP record is sent before the streamer is opened.
.RE
'\"
'\"
.TP
.BI "SYMS|" symlist |
.RS
.TP 1i
.PD 0
.I symlist
List of symbols which were sent to the streamer.
.PD
.PP
The \fBSYMS\fP record is sent whenever the symbol list is changed.
.RE
'\"
'\"
.TP
.BI "CONNECT|" ident |
.RS
.TP 1i
.PD 0
.I ident
Identifier received from server (if any).
.PD
.PP
The \fBCONNECT\fP record is sent when the streamer connection has
been established.
.RE
'\"
'\"
.TP
.BI "COLS|" column | column | ... |
.RS
.TP 1i
.PD 0
.I column
Column labels for the QUOTE and TRADE records.
.PD
.PP
The \fBCOLS\fP record is sent to identify the order and meaning of
the fields in the \fBTRADE\fP and \fBQUOTE\fP records.
.RE
'\"
'\"
.TP
.BI "QUOTE|" symbol | time | bid | bidsize | ... |
.PD 0
.TP
.BI "TRADE|" symbol | time | bid | bidsize | ... |
.PD
.RS
.TP 1i
.PD 0
.I symbol
Stock symbol.
.TP 1i
.I time
Seconds since midnight, EST.
.TP 1i
.I bid
Inside bid price (floating point).
.TP 1i
.I bidsize
Inside bid size in hundred share units (integer).
.TP 1i
.I bidid
Inside bid exchange ID (character).
.TP 1i
.I ask
Inside ask price (floating point).
.TP 1i
.I asksize
Inside ask size in hundred share units (integer).
.TP 1i
.I askid
Inside ask exchange ID (character).
.TP 1i
.I last
Last trade price (floating point).
.TP 1i
.I lastsize
Last trade size in shares (integer).
.TP 1i
.I volume
Total volume (integer).
.TP 1i
.I high
Highest trade price (floating point).
.TP 1i
.I low
Lowest trade price (floating point).
.TP 1i
.I close
Previous days closing price (floating point).
.PD
.PP
The \fBTRADE\fP record is sent when a trade has been completed.
The \fBQUOTE\fP record is sent when the inside bid or ask changes.
.RE
'\"
'\"
.TP
.BI "DISC|" number | reason |
.RS
.TP 1i
.PD 0
.I number
Numeric disconnect code.
.TP 1i
.I reason
Disconnect reason.
.PD
.PP
The \fBDISC\fP record is sent when the streamer is disconnected.
.RE
'\"
'\"
.TP
.BI "TIME|" date | time | zone | unixtime |
.RS
.TP 1i
.PD 0
.I date
The current date in New York.
.TP 1i
.I time
The current time in New York.
.TP 1i
.I zone
The time zone in New York.
.TP 1i
.I unixtime
The time in seconds since the Unix epoch.
.PD
.PP
The \fBTIME\fP record is sent right after the streamer is connected,
and once per minute thereafter.
.RE
'\"
'\"
.TP
.BI "NEWS|" symbol | unixtime | datestr | headline |
.RS
.TP 1i
.PD 0
.I symbol
The stock symbol or \fBhot\fP for general news.
.TP 1i
.I unixtime
The time as the number of seconds since the Unix epoch.
.TP 1i
.I datestr
A human readable version of the date.
.TP 1i
.I headline
The new headline.
.PD
.PP
The \fBNEWS\fP 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).
.RE
'\"
'\"
.SS TOOL MODE COMMANDS
Commands for tool mode are read from \fBstdin\fP. The command
formats are:
.TP
.BI "a " symlist
.br
Add the symbols in \fIsymlist\fP to the streamer data.
.TP
.BI "D " symbol
.br
Delete the \fIsymbol\fP from the streamer data.
.TP
.BI q
.br
Disconnect the streamer and quit the program.
.SS TOOL MODE EXAMPLE
An example of tool mode output is the following:
.nf
.ft CW
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|\e
Volume|High|Low|PrevClose|
TRADE|INTC|43751|30.95|5|Q|30.97|45|Q|30.97|300|\e
12282400|31.05|30.32|30.81|
QUOTE|DELL|43591|26.24|5|Q|26.25|40|Q|26.25|500|\e
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|\e
8897300|11.78|11.31|11.35|
DISC|104|Command request|
.ft P
.fi
.ne 2i
.SH COMMAND LINE OPTIONS
.TP
.BI \-c\0 bg
Sets the background color mode (0 to 3). See the description
of the colors modes above.
.TP
.BI \-l\0 number
Start the display with stocklist \fInumber\fP. Number may
be 1-99. The default is 1.
.TP
.BI \-t\0 type
Sets the streamer type to use as a data source. The \fItype\fP
can be \f(CWnone\fP,
\f(CWscottrader.com\fP,
\f(CWameritrade.com\fP,
\f(CWdatek.com\fP,
\f(CWesignal.com\fP,
\f(CWfreetrade.com\fP,
\f(CWmoney.net\fP,
\f(CWquotemedia.com\fP,
\f(CWschwab.com\fP,
\f(CWsonictrading.com\fP,
\f(CWmoneyam.com\fP,
or \f(CWswissquote.ch\fP.
A leading partial substring of the name can be used to
abbreviate the \fItype\fP.
The \f(CWnone\fP \fItype\fP 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.
.TP
.BI \-p\0 password
Set the password to use in connecting to the streamer.
The default is a "demo" password.
.TP
.BI \-u\0 username
Set the username to use in connecting to the streamer.
The default is a "demo" username.
.TP
.BI \-P\0 'preferance = value'
Set the named \fIpreference\fP to \fIvalue\fP.
.TP
.BI \-h\0 hostname
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.
.TP
.BI \-w\0 filename
Logs the streamer data to \fIfilename\fP, for later replay.
.TP
.BI \-r\0 filename
Replays the streamer data from \fIfilename\fP.
.TP
.BI \-L\0 filename
Logs the raw streamer data to \fIfilename\fP, for debugging.
.TP
.BI \-T\0 toolmode
Run in tool mode. See section on tool mode above for a description.
The \fItoolmode\fP parameter controls what happens if the streamer
connection canot be made or if it disconnects.
If \fItoolmode\fP is 1, then a connection failure causes the program to
exit.
If \fItoolmode\fP is 2, then a connection failure causes a new
connection to be attempted.
If \fItoolmode\fP is 3, then a connection
failure causes a switch to the next configured streamer.
If \fItoolmode\fP is 4, then the program exits after retreiving
at least one quote for each of the listed stocks.
Adding 0x10 (16) to \fItoolmode\fP turns on news reports for streamers
that support news.
.ne 3i
.SH INSTALLATION
.SS BASIC
Get the most recent version of \fBLinuxTrade\fP from:
.RS
.B http://linuxtrade.0catch.com
.RE
.P
Login or su to root and install it with this command:
.RS
.BR "" "#\0" "rpm -U linuxtrade*.rpm"
.RE
.P
Get the most recent version (at least 7.9.5) of \fBcurl\fP from:
.RS
.nf
.B http://curl.haxx.se/
or
.B http://rpmfind.net/linux/rpm2html/search.php?query=curl
.fi
.RE
.P
Login or su to root and install it with this command:
.RS
.BR "" "#\0" "rpm -U curl*.rpm"
.RE
.SS VOICE ALERTS
If you want voice alerts, get the most recent version of
IBM ViaVoice or festival from:
.RS
.nf
.B "http://www-4.ibm.com/software/speech/dev/ttssdk_linux.html"
or
.B http://rpmfind.net/linux/rpm2html/search.php?query=festival
.fi
.RE
.P
Install one of those RPM's as usual.
.SS JAVA
\fBLinuxTrade\fP can access and run various Java applets from financial
websites, such as the \fBnasdaq.com\fP heatmaps, or chart streamers from
\fBlivecharts.com\fP and \fBprophet.net\fP. 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.
.P
LinuxTrade knows which Java VM works best with each applet, and will
run applets outside of any web browser by using the Java \fBappletviewer\fP
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.
.P
The 1.1.8 JDK/SDK can be downloaded from this site:
.RS
.B ftp://metalab.unc.edu/pub/linux/devel/lang/java/blackdown.org/JDK-1.1.8/i386/v3/
.RE
.P
The 1.4.0 JDK/SDK can be downloaded from this site:
.RS
.B http://java.sun.com/j2se/
.RE
.P
If both of these packages are installed, you will have these two directories:
.RS
.B /usr/java/j2sdk1.4.0
.br
.B /usr/java/jdk118_v3
.RE
.SH FILES
.BR /usr/bin/linuxtrade
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.advfn
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.audio
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.auth
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.av
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.bwkvol
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.cpt
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.frb
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.G
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.hm
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.ibdvol
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.lc
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.name
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.pe
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.pf
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.pivot
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.qm
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.range
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.shortint
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.sq
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.up
.br
.BR /usr/share/linuxtrade/bin/linuxtrade.wn
.br
.BR /usr/share/applications/linuxtrade.desktop
.br
.BR /usr/share/applnk/Applications/linuxtrade.kdelnk
.br
.BR /usr/share/gnome/apps/Applications/linuxtrade.desktop
.br
.BR /usr/share/icons/linuxtrade.xpm
.br
.BR /usr/share/linuxtrade/java.policy.allperm
.br
.BR /usr/share/linuxtrade/players.txt
.br
.BR /usr/share/pixmaps/linuxtrade_icon.png
.br
.BR $HOME/.linuxtrade/rc
.br
.BR $HOME/.linuxtrade/N.list
.br
.BR $HOME/.linuxtrade/alerts
.br
.BR $HOME/.linuxtrade/ameritrade.com
.br
.BR $HOME/.linuxtrade/datek.com
.br
.BR $HOME/.linuxtrade/esignal.com
.br
.BR $HOME/.linuxtrade/freetrade.com
.br
.BR $HOME/.linuxtrade/players.txt
.br
.BR $HOME/.linuxtrade/money.net
.br
.BR $HOME/.linuxtrade/quotemedia.com
.br
.BR $HOME/.linuxtrade/schwab.com
.br
.BR $HOME/.linuxtrade/scottrader.com
.br
.BR $HOME/.linuxtrade/sonictrader.com
.br
.BR $HOME/.linuxtrade/swissquote.ch
.br
.BR $HOME/.linuxtrade/moneyam.com
.P
When searching for a helper program, \fBlinuxtrade\fP will
search \fB$PATH\fP, \fB$HOME/bin\fP,
and \fB/usr/share/linuxtrade/bin\fP, in that order. Any of the
helper programs can be customized by placing a modified copy into
\fB$HOME/bin\fP.
.SH "AUTHOR"
Rick Richardson <rickr@mn.rr.com>
.br
http://linuxtrade.0catch.com/
.br
http://home.mn.rr.com/richardsons/
'/"
'/"
'/"
. pdf_outline
|