x******a 发帖数: 6336 | 1 I got thousands problems on the following piece of code "dumpfile.h" when I
compile under cygwin. it is ok under visual stduio... can anyone help?
Thanks!
#include
#include
#include //ostream_iterator
#include //cerr
#include //std::copy
template
void dump_to_file(const char* filename, const std::vector& v_d){
std::ofstream ofs(filename);
if(!ofs){
std::cerr<<"Unable to open the file to write!n";
return ;... 阅读全帖 |
|
t***q 发帖数: 418 | 2 【 以下文字转载自 Programming 讨论区 】
发信人: treeq (treeq), 信区: Programming
标 题: 天,如何能让程序转得快点?有包子。
发信站: BBS 未名空间站 (Fri Feb 27 23:26:22 2015, 美东)
天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, ... 阅读全帖 |
|
t***q 发帖数: 418 | 3 【 以下文字转载自 Programming 讨论区 】
发信人: treeq (treeq), 信区: Programming
标 题: 天,如何能让程序转得快点?有包子。
发信站: BBS 未名空间站 (Fri Feb 27 23:26:22 2015, 美东)
天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, ... 阅读全帖 |
|
k***e 发帖数: 7933 | 4 I installed xercesc package so that I
can handle xml in C++. I am using vs.net 2003
as my IDE. I downloaded the binary release from
http://xml.apache.org/xerces-c/download.cgi
However I am having problem to get it work.
Here is the simple test code:
#include
#include
#include
#if defined(XERCES_NEW_IOSTREAMS)
#include
#else
#include
#endif
#include
X |
|
g***l 发帖数: 2753 | 5 this is the complete error message. I think it is still related to function
template.
template
void register_dec_handle(int tag_id);
was declared in sample.hpp and was implemented in sample.cpp.
both class dec_1 and class dec_2 were declared in sample.hpp and implemented
in sample.cpp.
In main.cpp, #include "sample.hpp", refer to above code.
////////////////////////////////////
$g++ main.cpp sample.cpp sample.hpp -o sample
/tmp/ccPFwZuH.o: In function `main':
main.cpp:(.text+0x3f): und... 阅读全帖 |
|
k***p 发帖数: 115 | 6 我的compiler是gcc 4.7。 多谢
$g++ testAny.cpp -o testAny
testAny.cpp: In function ‘void AnyTesting3()’:
testAny.cpp:66:54: error: no match for ‘operator=’ in ‘myPropertySet.std:
:map<_Key, _Tp, _Compare, _Alloc>::operator[], boost
::any, std::less >, std::allocator
std::basic_string, boost::any> > >((* & std::basic_string(((
const char*)"BarrType"), (*(const std::allocator*)(& std::allocator<
char>()))))) = (BarrierType)... 阅读全帖 |
|
t***q 发帖数: 418 | 7 天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, 加到 file B 对应的那一个title 那一行。再加入一个从file A 出来的对应的
一个id, 到 file B 里。算相似度前,我先对每个title 组成的string做预处理,去掉
“:”,”-“,”season”,”episode “ , 等一些词。... 阅读全帖 |
|
t***q 发帖数: 418 | 8 把 c++ 程序改成这样,快了许多,虽说程序不work,但至少说明,应该在算distance
之前就把 string processing 都做了:
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
size_t uiLevenshteinDistance(const std::string &s1, const std::string &s2)
{
const size_t m(s1.size());
const size_t n(s2.size())... 阅读全帖 |
|
b***k 发帖数: 2673 | 9 ☆─────────────────────────────────────☆
blook (布鲁克) 于 (Sat Feb 23 14:36:33 2008) 提到:
DanielDuffy的书中include有点看不明白。
比如头文件叫example.hpp, 源文件叫example.cpp
为什么在example.hpp中需要有
#include "example.cpp"
还有很多main文件中都include .cpp文件,这个.hpp是不是区别去常见的.h文件啊?
☆─────────────────────────────────────☆
yww (petite) 于 (Sat Feb 23 14:55:44 2008) 提到:
没区别
这本书没仔细看过,不过hpp和h是没区别的
貌似有点奇怪,有具体章节页码么?
☆─────────────────────────────────────☆
blook (布鲁克) 于 (Sat Feb 23 15:04:37 2008) 提到:
他书中的代码都不全。
如果你有他的source code, |
|
m*******e 发帖数: 14 | 10 大家好,
我在ubuntu11.10上安装opencv2.3.1a,使用make命令后,出现错误如下:
*****************
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:921:
10: error: ‘AVERROR_NOFMT’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:923:
10: error: ‘AVERROR_IO’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:925:
10: error: ‘AVERROR_NOMEM’ was not declared in this scope
*****************
好像是ffmpeg的问题,... 阅读全帖 |
|
m*******e 发帖数: 14 | 11 大家好,
我在ubuntu11.10上安装opencv2.3.1a,使用make命令后,出现错误如下:
*****************
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:921:
10: error: ‘AVERROR_NOFMT’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:923:
10: error: ‘AVERROR_IO’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:925:
10: error: ‘AVERROR_NOMEM’ was not declared in this scope
*****************
好像是ffmpeg的问题,... 阅读全帖 |
|
m*******e 发帖数: 14 | 12 大家好,
我在ubuntu11.10上安装opencv2.3.1a,使用make命令后,出现错误如下:
*****************
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:921:
10: error: ‘AVERROR_NOFMT’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:923:
10: error: ‘AVERROR_IO’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:925:
10: error: ‘AVERROR_NOMEM’ was not declared in this scope
*****************
好像是ffmpeg的问题,... 阅读全帖 |
|
m*******e 发帖数: 14 | 13 大家好,
我在ubuntu11.10上安装opencv2.3.1a,使用make命令后,出现错误如下:
*****************
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:921:
10: error: ‘AVERROR_NOFMT’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:923:
10: error: ‘AVERROR_IO’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:925:
10: error: ‘AVERROR_NOMEM’ was not declared in this scope
*****************
好像是ffmpeg的问题,... 阅读全帖 |
|
yy 发帖数: 45 | 14 看到一个例子中有以下一行
virtual size_t Size() const=0;
编译的时候,居然死菜
ArrayStructure.hpp:27: ISO C++ forbids declaration of `size_t' with no type
ArrayStructure.hpp:27: `size_t' declared as a `virtual' field
ArrayStructure.hpp:27: syntax error before `(' token
请问何解?
谢谢 |
|
j****i 发帖数: 305 | 15 I'm trying to debug my program on my laptop (a Macbook pro with two
processors), since it takes too long to debug on a cluster. But I have no
clue on how to launch the parallel job even for a simple test code. I have
openmpi installed, and I'm using boost.
Here's a sample code:
#include
#include
#include
#include
int main(int argc, char* argv[])
{
boost::mpi::environment env(argc, argv);
boost::mpi::communica |
|
g***l 发帖数: 2753 | 16 老大的这个方法是可行的。可是又出现新的问题了。
我定义了如下接口:
template
dec_base* new_object()
{
return new T;
}
typedef dec_base* (*ObjectGenerator)();
static std::map generator_map;
template
void register_dec_handle(int tag_id)
{
generator_map.insert(make_pair(tag_id,new_object));
}
如果把以上代码跟 main() 代码放在一个main.cpp里面,编译链接都没有问题。但是如
果把以上代码放在另外一个单独的sample.cpp里面,在另外一个main.cpp中的main()调用
register_dec_handle()的时间,gcc就会报告
g++ main.cpp sample.cpp -o sample.exe
main.cpp: 在函数‘int main(... 阅读全帖 |
|
q****x 发帖数: 7404 | 17 The code is from stack overflow. why the dtor must be defined in .cpp,
instead of .h? Moving it to .h will lead to a compilation error.
// A.hpp
#include
class B;
class A {
std::unique_ptr myptr;
// B::~B() can't be seen from here
public:
~A();
};
// A.cpp
#include "B.hpp"
// B.hpp has to be included, otherwise it doesn't work.
A::~A() = default; // without this line, it won't compile
// however, any destructor definiton will do. |
|
j***y 发帖数: 2074 | 18 从网上抄了一段源代码:
---
#include
#include |
|
c**z 发帖数: 669 | 19 I copy and paste the code into and got the following error message. Does
anyone know what's going on?
1> c:\users\lyn\downloads\boost_1_51_0\boost_1_51_0\boost\thread\
win32\mutex.hpp(26) : see declaration of 'boost::mutex::mutex'
1> c:\users\lyn\downloads\boost_1_51_0\boost_1_51_0\boost\thread\
win32\mutex.hpp(22) : see declaration of 'boost::mutex'
1> This diagnostic occurred in the compiler generated function '
ThreadSafeClass::ThreadSafeClass(ThreadSafeClass &)' |
|
w********s 发帖数: 1570 | 20 #include
#include
template
class Singleton
{
public:
static T getInstance()
{
if (!_pObj)
{
boost::scoped_lock(_mutex);
if (!_pObj)
_pObj.reset(new T());
}
return *_pObj;
}
private:
boost::shared_ptr _ptr;
static boost::mutex _mutex;
} |
|
w********s 发帖数: 1570 | 21 #include
#include
template
class Singleton
{
public:
static T getInstance()
{
if (!_pObj)
{
boost::scoped_lock(_mutex);
if (!_pObj)
_pObj.reset(new T());
}
return *_pObj;
}
private:
boost::shared_ptr _ptr;
static boost::mutex _mutex;
} |
|
c*******u 发帖数: 12899 | 22 ☆─────────────────────────────────────☆
PandaCub (godblessmybaby) 于 (Sat Jan 7 01:31:40 2012, 美东) 提到:
Update:
谢谢宝宝版这么多热心善良的妈妈们为宝宝祈福,给我们鼓励建议。我们天天给她说话,想逗她开心,虽然心里很难过,但是尽量不在她面前流泪。宝宝的精神这两天稍微恢复了一些,不过我仍然感觉她的眼神是空的。关于眼底检查听说宝宝的眼皮会被夹子拉开照光,加上强光刺激散
难劬ΓΡΨ纯沟煤芾骱Γ永疵挥斜簧苏庋源V灰锌赡埽颐且院笤僖膊换岫滤桓鋈俗鋈魏渭觳椤N颐谴蛩阆轮茉偃ジ歉鲅劭埔缴幌拢蛔鰀rum test, 看是否真的造成了精神以外的创伤。
关于宝宝的病我们也在拼命看资料。宝宝的眼睛没有大家说起的那种典型的快速水平或垂直运动,否则我们也能够早察觉到。宝宝的眼睛有时似乎正常,只是眼神有些游移,有时有些微微晃动, 像是在找什么。Nystagmus确实只是一种symptom,但是被认为是眼睛的病变或神经系统的问
穑蟾欧殖蒻otor和sensory两类,因果关系不同。如果眼睛本身没有问题... 阅读全帖 |
|
|
s*******y 发帖数: 558 | 24 For .Net, you can't include .cpp in .h.
Just put template definition and implementation together
in the same file and name it as .hpp (means header and cpp),
and then include this .hpp in ur other .cpp file.
Under Linux or Cygwin, u can separate the declaration and
implementation of template. But u have to include .cpp of
the template in .h. For example, to declare a template class
myTemplate.H
#ifndef MY_TEMPLATE_
#define MY_TEMPLATE_
temaplate
class example{
...
};
#include "myTempla |
|
m****r 发帖数: 51 | 25 #include
#include |
|
c*******l 发帖数: 7 | 26 how about this:
1. replace every "int" to "Int"
2. create a header file: compatibility.hpp
code:
#ifdef _LP64_
typedef long long int Int;
#elif _ILP32_
typedef int Int;
#endif
3. include "compatibility.hpp" |
|
m******h 发帖数: 1059 | 27 Hi,
I wanted to use the thread functions of boost,
here is the program
#include
#include
int main()
{
boost::mutex m;
return 0;
}
and I'm using g++ to compile, with these options
-L/root/boost/lib -lboost_thread-gcc41-mt-1_37 -static
The error message is:
undefined reference to `boost::mutex::mutex()'
I actually got the similar problem the day before yesterady for date_time
but the issue was resolved by adding
-lboost_date_time-gcc41-mt- |
|
j****i 发帖数: 305 | 28 Great idea!
But when I do that, boost::shared_count.hpp gives me problem when I compile.
Here's the line in boost that doesn't compile:
new( static_cast< void* >( pi_ ) ) impl_type( p, d, a );
the error message is:
/usr/local/include/boost/smart_ptr/detail/shared_count.hpp:160: error:
expected type-specifier before 'static_cast'
Seems that the placement new does not like the overloaded new.
With the following overloaded new:
void * operator new(size_t size,
|
|
M*******r 发帖数: 165 | 29 【 以下文字转载自 Quant 讨论区 】
发信人: Morphiner (Ninja Turtle), 信区: Quant
标 题: 借人气问个c++的overflow
发信站: BBS 未名空间站 (Mon Nov 15 12:40:52 2010, 美东)
stack overflow在main后面的{
会是怎么回事?
附上code:
//#include
#include
#include
#include
#include "BarGame.h"
#include
#include
//#include "randomc.h"
//#include "mersenne.cpp" // code for random number generator of
type Mersenne twister
#include "require.h"
//#inclu... 阅读全帖 |
|
M*******r 发帖数: 165 | 30 Sorry 这里是include的头文件,有一些全局定义在这里面,应该是比main早一步吧
#ifndef BarGame_H
#define BarGame_H
#pragma once
//#include
//#include
//#include
#include
#include
#include
#define MM 8 // size of memory
#define SS 6 // number of strategies per company
#define NN 101 // number of companies
#define PMM 4096 // pow(... 阅读全帖 |
|
d***q 发帖数: 1119 | 31
boost大部分的库.hpp only。只要用了template的,因为实例化的问题,实现都写在.
hpp上。这个其实还好了。 |
|
s**y 发帖数: 151 | 32 // A.hpp
class A
{
public:
A();
~A();
static void my_handler(int param);
private:
void handler(int param);
static A *pMe;
};
// A.cpp
static A::pMe = 0;
A::A()
{
pMe = this;
}
A::~A()
{
}
void A::my_handler(int param)
{
if (0 != pMe)
{
pMe = new A();
}
if (0 != pMe)
{
pMe->handler(param);
}
}
void A::handler(int param)
{
// handle the param here
}
//In C file:
#include
#include "A.hpp"
int main ()
{
signal(SIGINT, ... 阅读全帖 |
|
r*g 发帖数: 186 | 33 问个CMake的问题, project结构如下:
proj
|
+-------proj_1
| |
| +-------main.cpp
| +-------txxd.cpp
| +-------abc.ft
| +-------def.ft
|
+-------proj_2
| |
| +-------main.cpp
| +-------xxx.cpp
| +-------ghi.ft
| +-------klm.ft
+-------proj_3
|
+-------main.cpp
+-------xxx.cpp
+-------opq.ft
+-------rst.ft
每个proj_x将生成不同的可执行文件. 然后对于xxxxxx.ft, 将会调用外部命令生成
xxxxx.hpp和xxxxx.cpp, 然后分别被对应... 阅读全帖 |
|
c********r 发帖数: 15 | 34 如果你的样品不是单分散的,你似乎不应该用Marlven HPPS来分析。我看网上的信息
,Hpps不适合测粒径分布。
测试出来多个峰,可能原因1,你的PS衍生物有多个分子量分布,2,样品没有完全溶
解好就测试。对于原因2,你可以先恒温搅拌振荡一定时间或者超声振荡,然后离心分离
,把你看到的小颗粒分离掉。
测粒径分布一般都是用光闪射dynamic light scattering。 |
|
s*****l 发帖数: 4 | 35 boost/shared_ptr.hpp
boost/any.hpp
just use those two header files..... just shared pointer related stuff..
use other libs for other functionalities |
|
M*******r 发帖数: 165 | 36 stack overflow在main后面的{
会是怎么回事?
附上code:
//#include
#include
#include
#include
#include "BarGame.h"
#include
#include
//#include "randomc.h"
//#include "mersenne.cpp" // code for random number generator of
type Mersenne twister
#include "require.h"
//#include "userintf.cpp" // define system specific user
interface
#include
#include
#include
//#in... 阅读全帖 |
|
t**********0 发帖数: 1323 | 37 http://news.ifeng.com/a/20140611/40694077_0.shtml
原标题:我国全面启动人类蛋白质组计划
新华网北京6月10日电(沈基飞、胥金章)中国人类蛋白质组计划(CNHPP)10日全面启
动实施,主要目标是以我国重大疾病的防治需求为牵引,发展蛋白质组研究相关设备及
关键技术,绘制人类蛋白质组生理和病理精细图谱、构建人类蛋白质组“百科全书”,
全景式揭示生命奥秘,为提高重大疾病防诊治水平提供有效手段,为我国生物医药产业
发展提供原动力。
人类蛋白质组计划(HPP)是继基因组计划之后人类全面探索自我奥秘征程中又一伟大
科技工程,是新世纪第一个国际大型科技合作计划。中国科学家率先倡导并领衔了人类
第一个器官(肝脏)国际蛋白质组计划(HLPP),开中国引领国际大型科技合作计划之
先河,所形成的理论框架、整体策略和技术标准被国际同行认可和应用,为人类蛋白质
组计划的全面展开发挥了示范和指导作用。近4年,中国在这一领域国际核心刊物发文
章1000多篇,跃居世界第二。在乙酰化新的代谢通路调控机制、炎症诱发肿瘤、骨形成
调节、疾病易感性等方面取得系列原创成果。
人... 阅读全帖 |
|
w*********g 发帖数: 30882 | 38 英国《自然》杂志首次公布人类蛋白质组草图
字号:小中大2014-05-30 17:19:37
更多
37
关键字 >> 蛋白质蛋白质组《自然》杂志英国科学技术技术突破草图生物技术科技前沿
28日出版的英国新一期《自然》杂志,公布了人类蛋白质组草图绘制工作的里程碑成果
:两个小组发表了对人体组织、体液和细胞所做的质谱分析,标绘了人类蛋白质组草图。
如果说基因是描述生命奥秘的图纸,蛋白质就是构成生命的具体建筑材料。在人类基因
组草图完成后,科学家尚不能借此完全解释生命现象,因为有些基因信息不会真的表达
为蛋白质,而人类的生、老、病、死也只有在蛋白质这个更直接的层面上才能得到解释
。因此如果想要阐释人类生命活动及其病理机制的实质,必须绘制人类蛋白组。
上世纪90年代,人类基因组计划开始成形时,有科学家提出了破译人类蛋白质组的想法
。其目标是将人体所有蛋白质归类并描绘出它们的特性、在细胞中所处的位置以及蛋白
质之间的相互作用。中国科学家在这个工程中,主要负责人类肝脏蛋白组计划。但人类
蛋白质组的规模和复杂性使此类研究困难重重。
蛋白质
编码一个蛋白质氨基酸序列的基因的DNA序列
《自然》发表人... 阅读全帖 |
|
X****i 发帖数: 1877 | 39 【 以下文字转载自 Stock 讨论区 】
发信人: XiuShi (致力为花街散财,造福散户), 信区: Stock
标 题: 【2018年12月31日的熊牛大会战:888个股的短期谷底高峰预测】
发信站: BBS 未名空间站 (Wed Nov 28 09:59:53 2018, 美东)
【2018年12月31日的熊牛大会战:888个股票的短期谷底和高峰的预测】
此役由早已充分准备好的花街熊军诱惑散户牛军入牛套后突袭而爆发。
会战规模之大,战况之惨烈,尤其选择于2018年最后一天,影响深远。
大会战虽才刚刚开始,但可预见将以散户牛军被全歼,血流成河结束。
熊市策略是逢高峰就卖空,谷底补空平仓,如此周而复始。要少做多。
熊市性质是多数日子前盘价位高,后盘价位低,如此制造下跌的趋势。
对比预测,如果股价越极端,散户获暴利的机会和风险其实反而越佳。
花街的捣蛋,挤空或砸价,其实是制造极端价供精明的散户收割暴利。
花街这么做绝非善意,而是要吓唬散户在其人为的极端价割肉出局。
花街有用之不尽的代理基金和资金充炮灰,可以任性的挤高峰砸谷底。
花街有别人的代理钱来任性,用大量炮灰钱可以买出涨价,... 阅读全帖 |
|
X****i 发帖数: 1877 | 40 【 以下文字转载自 Stock 讨论区 】
发信人: XiuShi (致力为花街散财,造福散户), 信区: Stock
标 题: 【2019年1月9日的 1,200 个股票的短期谷底和高峰的预测】
发信站: BBS 未名空间站 (Wed Jan 9 19:01:30 2019, 美东)
【2019年1月9日的 1,200 个股票的短期谷底和高峰的预测】
熊市策略是逢高峰就卖空,谷底补空平仓,如此周而复始。要少做多。
熊市性质是多数日子前盘价位高,后盘价位低,如此制造下跌的趋势。
对比预测,如果股价越极端,散户获暴利的机会和风险其实反而越佳。
花街的捣蛋,挤空或砸价,其实是制造极端价供精明的散户收割暴利。
花街这么做绝非善意,而是要吓唬散户在其人为的极端价割肉出局。
花街有用之不尽的代理基金和资金充炮灰,可以任性的挤高峰砸谷底。
花街有别人的代理钱来任性,用大量炮灰钱可以买出涨价,砸出跌价。
股票最不定因素,就是花街每天对散户的捣蛋,尤其挤高峰和砸谷底。
以下是为蝌蚪们提供的最基本,炒股绝对须要遵守,的注意事项:
1. 预备大量(>=50%)现金,准备用来收割花街人为制造的捣蛋极端价... 阅读全帖 |
|
X****i 发帖数: 1877 | 41 【 以下文字转载自 Stock 讨论区 】
发信人: XiuShi (致力为花街散财,造福散户), 信区: Stock
标 题: 【2019年1月11日 888 个股票的短期谷底高峰预测】
发信站: BBS 未名空间站 (Fri Jan 11 09:45:27 2019, 美东)
【2019年1月11日 888 个股票的短期谷底高峰预测】
【2019年1月11日的 888 个股票的短期谷底和高峰的预测】
熊市策略是逢高峰就卖空,谷底补空平仓,如此周而复始。要少做多。
熊市性质是多数日子前盘价位高,后盘价位低,如此制造下跌的趋势。
对比预测,如果股价越极端,散户获暴利的机会和风险其实反而越佳。
花街的捣蛋,挤空或砸价,其实是制造极端价供精明的散户收割暴利。
花街这么做绝非善意,而是要吓唬散户在其人为的极端价割肉出局。
花街有用之不尽的代理基金和资金充炮灰,可以任性的挤高峰砸谷底。
花街有别人的代理钱来任性,用大量炮灰钱可以买出涨价,砸出跌价。
股票最不定因素,就是花街每天对散户的捣蛋,尤其挤高峰和砸谷底。
以下是为蝌蚪们提供的最基本,炒股绝对须要遵守,的注意事项:
1. 预备大量(>=... 阅读全帖 |
|
X****i 发帖数: 1877 | 42 【 以下文字转载自 Stock 讨论区 】
发信人: XiuShi (致力为花街散财,造福散户), 信区: Stock
标 题: 【2019年1月14日 400 个股票的短期谷底高峰预测】
发信站: BBS 未名空间站 (Mon Jan 14 08:40:13 2019, 美东)
【2019年1月14日 400 个股票的短期谷底高峰预测】
【2019年1月14日的 400 个股票的短期谷底和高峰的预测】
熊市策略是逢高峰就卖空,谷底补空平仓,如此周而复始。要少做多。
熊市性质是多数日子前盘价位高,后盘价位低,如此制造下跌的趋势。
对比预测,如果股价越极端,散户获暴利的机会和风险其实反而越佳。
花街的捣蛋,挤空或砸价,其实是制造极端价供精明的散户收割暴利。
花街这么做绝非善意,而是要吓唬散户在其人为的极端价割肉出局。
花街有用之不尽的代理基金和资金充炮灰,可以任性的挤高峰砸谷底。
花街有别人的代理钱来任性,用大量炮灰钱可以买出涨价,砸出跌价。
股票最不定因素,就是花街每天对散户的捣蛋,尤其挤高峰和砸谷底。
以下是为蝌蚪们提供的最基本,炒股绝对须要遵守,的注意事项:
1. 预备大量(>=... 阅读全帖 |
|
X****i 发帖数: 1877 | 43 【 以下文字转载自 Stock 讨论区 】
发信人: XiuShi (致力为花街散财,造福散户), 信区: Stock
标 题: 【2019年1月15日 400 个股票的短期谷底高峰预测】
发信站: BBS 未名空间站 (Tue Jan 15 11:40:48 2019, 美东)
【2019年1月15日 400 个股票的短期谷底高峰预测】
【2019年1月15日的 400 个股票的短期谷底和高峰的预测】
熊市策略是逢高峰就卖空,谷底补空平仓,如此周而复始。要少做多。
熊市性质是多数日子前盘价位高,后盘价位低,如此制造下跌的趋势。
对比预测,如果股价越极端,散户获暴利的机会和风险其实反而越佳。
花街的捣蛋,挤空或砸价,其实是制造极端价供精明的散户收割暴利。
花街这么做绝非善意,而是要吓唬散户在其人为的极端价割肉出局。
花街有用之不尽的代理基金和资金充炮灰,可以任性的挤高峰砸谷底。
花街有别人的代理钱来任性,用大量炮灰钱可以买出涨价,砸出跌价。
股票最不定因素,就是花街每天对散户的捣蛋,尤其挤高峰和砸谷底。
以下是为蝌蚪们提供的最基本,炒股绝对须要遵守,的注意事项:
1. 预备大量(>=... 阅读全帖 |
|
|
|
|
e*i 发帖数: 10288 | 47 the hollywood people's party, 简称 HPP,然后老中就说:
那个 爱吃屁屁 党 |
|
X****i 发帖数: 1877 | 48 【 以下文字转载自 Stock 讨论区 】
发信人: XiuShi (致力为花街散财,造福散户), 信区: Stock
标 题: 【2019年1月9日的 1,200 个股票的短期谷底和高峰的预测】
发信站: BBS 未名空间站 (Wed Jan 9 19:01:30 2019, 美东)
【2019年1月9日的 1,200 个股票的短期谷底和高峰的预测】
熊市策略是逢高峰就卖空,谷底补空平仓,如此周而复始。要少做多。
熊市性质是多数日子前盘价位高,后盘价位低,如此制造下跌的趋势。
对比预测,如果股价越极端,散户获暴利的机会和风险其实反而越佳。
花街的捣蛋,挤空或砸价,其实是制造极端价供精明的散户收割暴利。
花街这么做绝非善意,而是要吓唬散户在其人为的极端价割肉出局。
花街有用之不尽的代理基金和资金充炮灰,可以任性的挤高峰砸谷底。
花街有别人的代理钱来任性,用大量炮灰钱可以买出涨价,砸出跌价。
股票最不定因素,就是花街每天对散户的捣蛋,尤其挤高峰和砸谷底。
以下是为蝌蚪们提供的最基本,炒股绝对须要遵守,的注意事项:
1. 预备大量(>=50%)现金,准备用来收割花街人为制造的捣蛋极端价... 阅读全帖 |
|
h*********8 发帖数: 404 | 49 new generation will be out for sale in spring 2012.... new 328 will have
more powerful engine same as the one in 528 right now(240hp/230).... so better either wait, or
get the 335 now, since it is the new generation engine already(hopefully no HPPS issue any more)...
yes new x3 will be out sooner...so it is a choice too....
oh, 5 is a choice too.... |
|
|