-
Notifications
You must be signed in to change notification settings - Fork 22
/
015.html
4212 lines (4211 loc) · 348 KB
/
015.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/moban.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>无标题文档</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<style type="text/css">
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
</head>
<body>
<table border="0" align="center">
<tr>
<td><img src="pic/LOGO.png" width="1024" height="350" /></td>
</tr>
</table>
<p> </p>
<table width="30%" border="0" align="center">
<tr>
<td><a href="http://blog.sina.com.cn/s/blog_65fd71ff0100he10.html"><img src="pic/mulu.jpg" alt="返回目录" width="343" height="65" border="0" /></a></td>
<td><a href="http://blog.sina.com.cn/s/blog_65fd71ff0100he10.html"><img src="pic/zhuye.jpg" width="343" height="65" border="0" /></a></td>
</tr>
</table>
<!-- InstanceBeginEditable name="EditRegion3" -->
<p align="center" style='text-align:center;
'><b><span
style='font-size:24.0pt;font-family:宋体;color:#323E32;'>教你炒股票</span></b><b><span style='font-size:24.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">15</span></b><b><span style='font-size:
24.0pt;font-family:宋体;color:#323E32;'>:没有趋势,没有背驰</span></b></p>
<p align="center" style='text-align:center;
line-height:15.75pt;'><span
style='font-family:simsun;color:#323E32;' lang="EN-US" xml:lang="EN-US">(2006-12-08 11:55:57)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:宋体;color:#323E32;
'>有人很关心诸如庄家、主力之类的事情,但散户、庄家的位次分野这类事情不过是市场之</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>不患</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>下的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>患</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>,对本</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">ID</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>所解《论语》熟悉的,对此都很容易理解。有些东西是超越散户、庄家的位次分野的,这是市场之根,把握了,所谓散户、庄家的位次分野就成了笑话。如果真喜欢听有关庄家的逸事、秘闻,以后有空本</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">ID</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>可以说点,而且还可以告诉你如何阻击、搞死庄家,这一点,环视国内,没有比本</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">ID</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>更有经验的了。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:simsun;
color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>对于市场走势,有一个是</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>不患</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>的,就是走势的三种分类:上涨、下跌、盘整。所有走势都可以分解成这三种情况。这是一个最简单的道理,而这才是市场分析唯一值得依靠的基础。很多人往往忽视最简单的东西,去搞那些虚头八脑的玩意。而无论你是主力、散户、庄家,都逃不过这三种分类所交织成的走势。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:simsun;
color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>那么,何谓上涨、下跌、盘整?下面给出一个定义。首先必须明确的是,所有上涨、下跌、盘整都建立在一定的周期图表上,例如在日线上的盘整,在</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">30</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>分钟线上可能就是上涨或下跌,因此,一定的图表是判断的基础,而图表的选择,与上面所说交易系统的选择是一致的,相关于你的资金、性格、操作风格等。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span
style='font-size:14.0pt;font-family:simsun;color:#3366FF;
' lang="EN-US" xml:lang="EN-US"> </span></b><b><span
style='font-size:14.0pt;font-family:宋体;color:#3366FF;'>上涨:最近一个高点比前一高点高,且最近一个低点比前一低点高。</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span style='font-size:
14.0pt;font-family:宋体;color:#3366FF;'>下跌:最近一个高点比前一高点低,且最近一个低点比前一低点低。</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span style='font-size:
14.0pt;font-family:宋体;color:#3366FF;'>盘整:最近一个高点比前一高点高,且最近一个低点比前一低点低;或者最近一个高点比前一高点低,且最近一个低点比前一低点高。</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:simsun;
color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>操作的关键不是定义,而是如何充分理解定义而使得操作有一个坚固的基础。其中的困难在于如何去把握高点和低点,因为高点、低点是有其级别的,在</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">30</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>分钟图上看到的高点,可能在周线图上什么都没看到。为此,必须要均线系统来过滤,也就是前面常说的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>吻</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>的概念,只有在</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>吻</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>前后出现的高、低点才有意义。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:simsun;
color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>(注:下图盘整的定义低点有个小错误,实在找不到好的例图了,凑合看吧。后期趋势和盘整的定义都有改变,后期为准。)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-family:simsun;color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span lang="EN-US" xml:lang="EN-US"> <img
src="015.files/image001.gif" alt="" width="1276" height="669" v:shapes="_x0000_i1025" /></span><span style='font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US"><a
href="http://photo.blog.sina.com.cn/showpic.html#blogid=4aeb5d150100kg0w&url=http://s7.sinaimg.cn/orignal/4aeb5d15n91fb051ef9e6"
target="_blank"></a></span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:宋体;color:#323E32;
'>这里,首先要搞清楚</span><span style='font-size:14.0pt;
font-family:simsun;color:#323E32;' lang="EN-US" xml:lang="EN-US">“</span><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>吻</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>是怎样产生的。如果一个走势,连短线均线都不能突破,那期间出现的高、低点,肯定只是低级别图表上的,在本级别图表上没有意义。当走势突破短期均线却不能突破长期均线,就会形成</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>飞吻</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>;当走势突破长期均线马上形成陷阱,就会形成</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>唇吻</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>;当走势突破长期均线出现一定的反复,就会形成</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>湿吻</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>。</span><b><span style='font-size:14.0pt;font-family:
宋体;color:#3366FF;'>由此可见,</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;' lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>吻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>的分类是基于对原趋势的反抗程度,</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;' lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>飞吻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">”</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>是基本没有任何反抗力,</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;' lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>唇吻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">”</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>的力度也一般,而</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>湿吻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">”</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>,就意味着力度有了足够的强度,而一切的转折,基本都是从</span></b><b><span style='font-size:14.0pt;
font-family:simsun;color:#3366FF;' lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:
宋体;color:#3366FF;'>湿吻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;' lang="EN-US" xml:lang="EN-US">”</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>开始的。</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:simsun;
color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><b><span style='font-size:14.0pt;font-family:
宋体;color:#3366FF;'>转折,一般只有两种:</span></b><span
style='font-size:14.0pt;font-family:宋体;color:#339966;'>一、</span><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#339966;'>湿吻</span><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#339966;'>后继续原趋势形成陷阱后回头制造出转折;二、出现盘整,以时间换空间地形成转折。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:宋体;color:#323E32;
'>第二种情况暂且不说,第一种情况,最大的标志就是所谓的</span><b><span style='font-size:14.0pt;font-family:simsun;color:red;' lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:red;
'>背驰</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:red;'
lang="EN-US" xml:lang="EN-US">”</span></b><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>了。</span><b><span style='font-size:14.0pt;font-family:
宋体;color:red;'>必须注意:没有趋势,没有背驰。</span></b><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>在盘整中是无所谓</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>背驰</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>的,这点是必须特别明确的。</span><span
style='font-size:14.0pt;font-family:宋体;color:#339966;'>还有一点是必须注意的,这里的所有判断都只关系到两条均线与走势,和任何技术指标都无关。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:simsun;
color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>如何判断</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>背驰</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>?首先定义一个概念,称为缠中说</span><b><span style='font-size:18.0pt;font-family:
宋体;color:red;'>禅趋势力度:</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>前一</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>吻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">”</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>的结束与后一</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>吻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">”</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>开始由短线均线与长期均线相交所形成的面积。</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>在前后两个同向趋势中</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>当缠中说禅趋势力度比上一次缠中说禅趋势力度要弱,就形成</span></b><b><span style='font-size:14.0pt;
font-family:simsun;color:#3366FF;' lang="EN-US" xml:lang="EN-US">“</span></b><b><span style='font-size:14.0pt;font-family:
宋体;color:#3366FF;'>背驰</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;' lang="EN-US" xml:lang="EN-US">”</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#3366FF;
'>。</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:宋体;color:#323E32;
'>按这个定义,是最稳妥的办法,但唯一的</span><b><span style='font-size:18.0pt;font-family:宋体;color:red;
'>缺点</span></b><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>是必须等再次接吻后才能判断,这时候,走势离真正的转折点会已经有一点距离了。如何</span><b><span style='font-size:18.0pt;font-family:
宋体;color:#3366FF;'>解决这个问题:</span></b><b><span style='font-size:16.0pt;font-family:宋体;color:red;
'>第一种方法,看低一级别的图,从中按该种办法找出相应的转折点。</span></b><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>这样和真正的低点基本没有太大的距离。</span></p>
<p align="left" style='text-align:left;
'><b><span style='font-size:18.0pt;font-family:simsun;color:red;'
lang="EN-US" xml:lang="EN-US"> </span></b><b><span style='font-size:18.0pt;font-family:宋体;color:red;
'>还有一种方法,</span></b><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>技巧比较高,首先再定义一个概念,称为</span><b><span style='font-size:16.0pt;font-family:
宋体;color:red;'>缠中说禅趋势平均力度</span></b><span style='font-size:
14.0pt;font-family:宋体;color:red;'>:</span><span
style='font-size:14.0pt;font-family:宋体;color:#3366FF;'>当下与前一</span><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#3366FF;'>吻</span><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#3366FF;'>的结束时短线均线与长期均线形成的面积除以时间。因为这个概念是即时的,马上就可以判断当下的缠中说禅趋势平均力度与前一次缠中说禅趋势平均力度的强弱对比,一旦这次比上次弱,就可以判断</span><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#3366FF;'>背驰</span><span style='font-size:14.0pt;font-family:simsun;color:#3366FF;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#3366FF;'>即将形成,然后再根据短线均线与长期均线的距离,一旦延伸长度缩短,就意味着真正的低部马上形成。</span><b><span style='font-size:14.0pt;font-family:
宋体;color:#339966;'>按这种方法,真正的转折点基本就可以完全同时地抓住。但有一个缺陷,就是风险稍微大点,且需要的技巧要高点,对市场的感觉要好点。</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:simsun;
color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>纯粹的两条均线的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">K</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>线图,就足以应付最复杂的市场走势了。当然,如果没有这样的看图能力,可以参照一下技术指标,例如</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">MACD</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>等,关于各技术指标的应用,以后会陆续说到。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;font-family:simsun;
color:#323E32;' lang="EN-US" xml:lang="EN-US"> (</span><span
style='font-size:14.0pt;font-family:宋体;color:#323E32;'>娇注:这里说的上涨和下跌趋势是以吻前后的高低点来定义,和中枢后定义的上涨下跌不同</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>这里说的趋势,有可能就是后面中枢定义后的盘整)</span></p>
<p align="left" style='text-align:left;'><b><span style='font-size:
24.0pt;font-family:宋体;color:#323E32;'>每日解盘(</span></b><b><span style='font-size:24.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">2006-12-11 13:44:29 </span></b><b><span
style='font-size:24.0pt;font-family:宋体;color:#323E32;'>)</span></b></p>
<p align="left" style='text-align:left;line-height:15.75pt;
'><span
style='font-size:14.0pt;font-family:Verdana;' lang="EN-US" xml:lang="EN-US"><a href="http://blog.sina.com.cn/u/1215172700" target="_blank"><b><span style='font-family:宋体;color:#C2460B;text-decoration:none;text-underline:none'
lang="EN-US" xml:lang="EN-US"><span
lang="EN-US" xml:lang="EN-US">缠中说禅</span></span></b></a></span><span style='font-size:14.0pt;
font-family:宋体;'>:</span><span
style='font-size:14.0pt;font-family:Verdana;' lang="EN-US" xml:lang="EN-US"><br />
<span style='color:#999999'>2006-12-11 15:25:14</span> [</span><span
style='font-size:14.0pt;font-family:宋体;'>匿名</span><span style='font-size:14.0pt;font-family:Verdana;'
lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:
宋体;'>摄影之友</span><span style='font-size:14.0pt;
font-family:Verdana;' lang="EN-US" xml:lang="EN-US"><br />
2006-12-11 15:16:08<br />
</span><span style='font-size:14.0pt;font-family:宋体;'>博主</span><span style='font-size:14.0pt;font-family:Verdana;'
lang="EN-US" xml:lang="EN-US">:</span><span style='font-size:14.0pt;font-family:
宋体;'>你不说盘</span><span style='font-size:14.0pt;
font-family:Verdana;' lang="EN-US" xml:lang="EN-US">,</span><span
style='font-size:14.0pt;font-family:宋体;'>让我更郁闷</span><span style='font-size:14.0pt;font-family:Verdana;'
lang="EN-US" xml:lang="EN-US">....</span><span style='font-size:14.0pt;font-family:
宋体;'>主席不也说过</span><span style='font-size:14.0pt;
font-family:Verdana;' lang="EN-US" xml:lang="EN-US">:</span><span
style='font-size:14.0pt;font-family:宋体;'>不管风吹浪打</span><span style='font-size:14.0pt;font-family:Verdana;'
lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;font-family:
宋体;'>胜似闲庭信步嘛</span><span style='font-size:14.0pt;
font-family:Verdana;' lang="EN-US" xml:lang="EN-US">!~~~</span><span
style='font-size:14.0pt;font-family:宋体;'>不过</span><span style='font-size:14.0pt;font-family:Verdana;'
lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;font-family:
宋体;'>我尊重你的决定</span><span style='font-size:14.0pt;
font-family:Verdana;' lang="EN-US" xml:lang="EN-US">.</span><span
style='font-size:14.0pt;font-family:宋体;'>再次多谢你</span><span style='font-size:14.0pt;font-family:Verdana;'
lang="EN-US" xml:lang="EN-US">..</span><span style='font-size:14.0pt;font-family:
宋体;'>来这里</span><span style='font-size:14.0pt;
font-family:Verdana;' lang="EN-US" xml:lang="EN-US">.</span><span
style='font-size:14.0pt;font-family:宋体;'>已经成了我的一个习惯</span></p>
<p align="left" style='text-align:left;line-height:15.75pt;
'><span
style='font-size:14.0pt;font-family:Verdana;' lang="EN-US" xml:lang="EN-US">=============</span></p>
<p align="left" style='text-align:left;line-height:15.75pt;
'><span style='font-size:14.0pt;
font-family:宋体;color:red;'>大盘已经说的够清楚的,中长线走势早说了,</span><span style='font-size:14.0pt;font-family:Verdana;color:red;'
lang="EN-US" xml:lang="EN-US">1</span><span style='font-size:14.0pt;
font-family:宋体;color:red;'>日说了中短线,</span><span style='font-size:14.0pt;font-family:Verdana;color:red;'
lang="EN-US" xml:lang="EN-US">12</span><span style='font-size:14.0pt;
font-family:宋体;color:red;'>月要出现大幅震荡。这种大幅震荡正是短线的好机会。而大盘的旗帜也很明确,就是银行股、地产股为代表的成分股,只要他们不倒,牛市的第一轮就不会结束。所以没必要每天都说一次大盘,自己也要慢慢学会看。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">----------------------------------------------------------------------------------------------</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>回复:</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> [</span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>小溪</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> 2006-12-08 12:32:05</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>缠</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">JJ</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>我的股票</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">600196</span><span style='font-size:
14.0pt;font-family:宋体;color:#323E32;'>没出现吻已经跌去一大截了等吻出来那不是都跌没了</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">55555555</span><span style='font-size:
14.0pt;font-family:宋体;color:#323E32;'>我咋办呢</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">?</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> ===========</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>你的理解错误</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>你好好品味这句话</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">: </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>首先必须明确的是,所有上涨、下跌、盘整都建立在一定的周期图表上,例如在日线上的盘整,在</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">30</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>分钟线上可能就是上涨或下跌,</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:35:56)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">[</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>中间体</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> 2006-12-08 12:31:36</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>就是说形成趋势后再谈背驰</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">, </span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>背驰的力度是根据面积判断</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">. </span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>但是不是有可能出现背驰后还会有第二个背驰呢</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">??? </span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>请缠姐回答</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> ============</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>上面说</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">600196</span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>的那位</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>必须也要如此理解</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">:</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>形成趋势后再谈背驰</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>对于一段趋势来说背驰只会一次</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>里面还有一个微妙的东西</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>过两天说</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:39:24)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>任我行</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> 2006-12-08 12:37:19</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>楼主真是一大伟人。无私的把自己的技术向社会奉献了</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>我喜欢短线。楼主能不能多说点短线操作方法。还有要怎样才能知一个股票有没有主力。就好象这几天走强的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">600050</span><span style='font-size:
14.0pt;font-family:宋体;color:#323E32;'>来事把要怎样发现他要拉升</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> ============</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>长线短线的技术基础是一样的</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>只是看的图表不同</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>最短线的就看</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">1</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>分钟图</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>一般看</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">5</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>分钟或</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">30</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>分钟图</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:40:34)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">[</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>中间体</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">2006-12-08 12:40:02</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>一定是二个相邻的面积比较吗</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">???</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> ===========</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>是</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>要多看图</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>面积这东西</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>目测就可以知道</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>不用什么指标</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:41:16)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> [</span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>外科医生</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> 2006-12-08 12:38:27</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>如向北辰股份那种走势</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>如何判断其卖出信号</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>现在如何处理为最佳方案</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">(</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>首先强调</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>我并没有该股</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>只是以此举例而已</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">)?</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>谢谢</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">?</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>。。。。。。。。。。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>昨天下午</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">2</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>点发生背迟,卖出信号</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-family:simsun;color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span lang="EN-US" xml:lang="EN-US"> <img
src="015.files/image003.gif" alt="" width="1204" height="759" border="0" v:shapes="_x0000_i1026" /></span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-family:simsun;color:#323E32;' lang="EN-US" xml:lang="EN-US">===========</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>对</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>该股</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">30</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>分钟图上的辈驰什么明显</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>对这种短线走势特别猛的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>如果资金不太大的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>不能看日线</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>那反应太慢</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>看</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">30</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>分钟线足以</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-family:simsun;color:#323E32;' lang="EN-US" xml:lang="EN-US"> </span><span lang="EN-US" xml:lang="EN-US"> <img
src="015.files/image005.gif" alt="" width="1237" height="761" border="0" v:shapes="_x0000_i1027" /></span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:44:09)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> [</span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>半部论语治天下</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">2006-12-08 12:43:45</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>有个问题,均线交叉形成的面积是不规则的,如何计算?</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> =============</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>形成趋势的才算面积</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>否则不断缠绕的</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>是盘整</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>这必须搞清楚</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:45:05)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">[</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] nn2006-12-08 12:29:25</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>首先感谢楼主无私教诲</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>但理论性较强</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>年龄老了</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>还需要漫漫领会</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>有一点不明</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>比如向北辰股份那种走势</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>如何判断其卖出信号</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>现在如何处理为最佳方案</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">(</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>首先强调</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>我并没有该股</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>只是以此举例而已</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">)?</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>谢谢</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">?</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> ============= </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>这种短线太猛的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>看</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">30</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>分钟图</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>卖点十分清楚</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>目前如果没走也不用怕</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>反抽会很猛烈的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>就等着吧</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:47:17)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>心禅</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">2006-12-08 12:47:20</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>禅主</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>,你好,我来了,稍晚点,卖点的疑惑:从个股看,第一卖点并未出现,可大盘的调整下跌必使其下跌,此种情况如何回避?是不考虑大盘的下跌继续持有吗?</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> ============ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>这种情况根本不会出现</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>关键是图表选择的问题</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>像北辰实业这次</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>在日线上没有第一类卖点</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>在</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">30</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>分钟线上就十分明显</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>关键是你如何选择</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:52:04)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>公告一条缠中说缠定理</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>任何的上涨转折都是由某级别的第一类卖点构成的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">;</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>任何的下跌转折都是由某级别的第一类买点构成的</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">. </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> (</span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>注:注意这里趋势的定义和</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">1</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>买的定义,和后期的不同)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>注意版权</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">. </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:56:14)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> [</span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>中间体</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">2006-12-08 12:56:34</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>缠姐没给出结论啊</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">, </span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>面积比越大越好还是越小越好啊</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">, </span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>应该是小吧</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">. </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">========== </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>上面写的很清楚</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>比前面的小就可以了</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>好好研究这句话</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>如何判断</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>背驰</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>?首先定义一个概念,称为缠中说禅趋势力度:前一</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>吻</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>的结束与后一</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>吻</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>开始由短线均线与长期均线相交所形成的面积。当缠中说禅趋势力度比上一次缠中说禅趋势力度要弱,形成</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>背驰</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 12:58:41)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>小明</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">2006-12-08 14:55:02</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">[</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>庸人</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">2006-12-08 14:32:52</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>世上本无事,庸人自扰之。一个小小的北辰实业,就能够让大盘尸横遍野。所有的繁荣只不过是虚幻,过眼烟云而已。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> =======================</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>自称庸人的人水平的确不怎么样!缠</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">mm</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>曾经说过,不要跟着那些小资金后面玩,要多看看大资金在干什么。你看看几大龙头股哪个不是筑成了双重顶?</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>而北辰只是个导火索而已,</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">just</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>一个引线,懂吗?</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US"> </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">============ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>干什么都要有预见性</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>这调整</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,1</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>日已经提前提醒了</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>不相应操作是心态问题</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>被市场迷惑了</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">.</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>繁荣只不过是虚幻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>不繁荣也只不过是虚幻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>不明白这点</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>总是一边去想</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>是不可能成为好的操作者的</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">.</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US"> </span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>好的操作者就是以幻制幻</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>幻中取利</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">. </span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>大盘跌</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>意味着机会又来了,应该高兴才对</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">.</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>当然</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>满仓的就没办法了</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">.</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 15:04:56)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------ </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">[</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>中间体</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">2006-12-08 12:40:02</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>一定是二个相邻的面积比较吗</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">??? </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">=========== </span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>是</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>要多看图</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>面积这东西</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>目测就可以知道</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>不用什么指标</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">.</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>中间有盘整区的话</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">, </span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>是否可跳过盘整区与前面比较</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">???</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> ==============</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><b><span
style='font-size:14.0pt;font-family:宋体;color:#339966;'>盘整不是趋势</span></b><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">,</span><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>当然不算</span></b><span style='font-size:14.0pt;
font-family:simsun;color:#323E32;' lang="EN-US" xml:lang="EN-US">.</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">(2006-12-08 15:06:26)</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">------</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">[</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>匿名</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">] </span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>袖手旁观</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">2006-12-10 12:25:57</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>哈哈,这个解读有意思。如果说上篇比较容易想到,也曾这么想过的话,这一篇实在是相当的有启发。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US"> </span><span style='font-size:14.0pt;font-family:
宋体;color:#323E32;'>扯开一句,缠</span><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">mm</span><span style='font-size:14.0pt;font-family:宋体;
color:#323E32;'>在《货币战争和人民币战略(上)》中</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">“</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>美国经济将在今后一两年的平台整理后进入真正的、更具杀伤力的下跌,而这下跌只是更大级别下跌的前奏。</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">”</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>是</span><span style='font-size:14.0pt;font-family:simsun;color:#323E32;'
lang="EN-US" xml:lang="EN-US">3</span><span style='font-size:14.0pt;
font-family:宋体;color:#323E32;'>年前的话,现在是否有更新?当然长期战略观点是不需要频繁更新的。</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span
style='font-size:14.0pt;font-family:simsun;color:#323E32;
' lang="EN-US" xml:lang="EN-US">=================</span></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>这个下跌早用资源类的上涨与货币的贬值化解了</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">.</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>关键的周期在</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">2019</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>年</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>这是最重要的</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">.</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>那更大级别下跌值的就是这个</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">. </span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>但这种化解只会导致更大的问题</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">.</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>另外</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>这里说一句狠话</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">:</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>美国股市短期之所以能用这种化解的方式</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>中国的功劳大大的</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">.</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>本</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">ID</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>当时立论的前提就是人民币不能动</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>这是一个关键的前提</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,95</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>年</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">7</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>月这个前提已经没有了</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>因此而引发的资源类大涨的化解就在情理之中了</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">.</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>但</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;'
lang="EN-US" xml:lang="EN-US">2019</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>年的大周期是无可化解的</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">,</span></b><b><span style='font-size:14.0pt;font-family:宋体;color:#339966;
'>关键的问题是中国不要上那贼船</span></b><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">.</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><b><span style='font-size:14.0pt;font-family:simsun;color:#339966;' lang="EN-US" xml:lang="EN-US">(2006-12-10 12:31:51)</span></b></p>
<p align="left" style='text-align:left;
line-height:15.75pt;'><span