[原创]誉给新手的一点建议和赚钱方法(共勉)
发表于:2013-05-07 01:51只看该作者
81楼 电梯直达
发表于:2013-05-07 05:28只看该作者
82楼
请问这个“背靠背,EMA10或者BB_中轨时,就是入场信号”这个怎么判断涨还是跌呢?
你做逆势单的这个方法倒,在震荡行情中,倒确实是真不错。
点评
发表于 2013-05-07 06:11
韬客社区www.talkfx.co
83楼
背靠背主要是指顺势单,也就是M5或者M30的必须开始倾斜,最直观的的判断就是BB_中轨 是倾斜的就可以了,涨跌的时候都会倾斜,比如上涨时,回调靠近EMA10或者BB_中轨,那自然就做多,反之亦然。。。。。所以入场信号自然没有难判断涨跌之说,希望你明白我的意思。。。。。。。。逆势单要尽量少做,帖子里说了,只限几种情况,而且快进快出。
点评
发表于 2013-05-07 06:18
韬客社区www.talkfx.co
发表于:2013-05-07 06:18只看该作者
84楼
韬客社区www.talkfx.co
发表于:2013-05-07 06:57只看该作者
85楼
谢谢楼主辛苦分享,全职的就是不一样:)
韬客社区www.talkfx.co
发表于:2013-05-07 08:56只看该作者
86楼
本帖最后由 逃课学汇 于 2013-5-7 17:25 编辑
楼主是个热心的大好人啊,学习支持一下。
MT4自带的布林线的偏差是只能设成整数,下面我发个我自己用的可以设小数的,并可以设置穿越上下轨时报警的Bollinger Bands.mq4,放到MT4的indicators 文件夹即可。
汗,发现我无法上传文件,就把代码发下面,复制到“记事本”另存到MT4的indicators 文件夹再用MT4带的 MetaEditor编译一下即可。//+------------------------------------------------------------------+
//| Bollinger Bands.mq4 |
//| Copyright ?2005, MetaQuotes Software Corp. |
//| http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2005, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"
#property indicator_chart_window
#property indicator_buffers 3
#property indicator_color1 LightSeaGreen
#property indicator_color2 White
#property indicator_color3 Red
//---- indicator parameters
extern int BandsPeriod=20;
extern int BandsShift=0;
extern double BandsDeviations=2.0;
extern string mamethod="SMA=0,EMA=1,SMMA=3,LWMA=4";
extern int ma_method=0;
extern string pricetype="CLOSE=0,OPEN=1,HIGH=2,LOW=3,MEDIAN=(high+low)/2=4,TYPICAL=(high+low+close)/3=5,WEIGHTED=(high+low+close+close)/4=6";
extern int price_type=PRICE_CLOSE;
extern string not_alert_symbol=" ";
extern bool Play_Sound = false;
extern bool Window_Alert = false;
extern int ready=15; //在上、下穿时提前报警的点数。
//---- buffers
double MovingBuffer;
double UpperBuffer;
double LowerBuffer;
static datetime lastAlertTime;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,MovingBuffer);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1,UpperBuffer);
SetIndexStyle(2,DRAW_LINE);
SetIndexBuffer(2,LowerBuffer);
//----
SetIndexDrawBegin(0,BandsPeriod+BandsShift);
SetIndexDrawBegin(1,BandsPeriod+BandsShift);
SetIndexDrawBegin(2,BandsPeriod+BandsShift);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Bollinger Bands |
//+------------------------------------------------------------------+
int start()
{
int i,k,counted_bars=IndicatorCounted();
double deviation;
double sum,oldval,newres;
//----
if(Bars<=BandsPeriod) return(0);
//---- initial zero
if(counted_bars<1)
for(i=1;i<=BandsPeriod;i++)
{
MovingBuffer[Bars-i]=EMPTY_VALUE;
UpperBuffer[Bars-i]=EMPTY_VALUE;
LowerBuffer[Bars-i]=EMPTY_VALUE;
}
//----
int limit=Bars-counted_bars;
if(counted_bars>0) limit++;
for(i=0; iBandsPeriod-1) i=Bars-counted_bars-1;
while(i>=0)
{
sum=0.0;
k=i+BandsPeriod-1;
oldval=MovingBuffer;
while(k>=i)
{
newres=Close[k]-oldval;
sum+=newres*newres;
k--;
}
deviation=BandsDeviations*MathSqrt(sum/BandsPeriod);
UpperBuffer=oldval+deviation;
LowerBuffer=oldval-deviation;
i--;
}
//当价格高于或者低于boll上、下轨时报警
//---not_alert_symbol=不想报警的货币对符号
if (Symbol()==not_alert_symbol || BandsPeriod ==49 ) {Window_Alert =false; Play_Sound =false; }
//-----关于上轨
if (High[1] < UpperBuffer[1]-ready && High[0]>=UpperBuffer[0]-ready && BandsPeriod !=20 && BandsPeriod != 26)
{
if (Window_Alert == true) Alert(Symbol(),Period(),"上穿",BandsPeriod,"boll 上轨 ", "!");Sleep(300000);
//if (Play_Sound == true) PlaySound("Red Bean.wav");
}
if (High[1] >=UpperBuffer[1] && High[0] LowerBuffer[1]+ready && Low[0]<=LowerBuffer[0]+ready && BandsPeriod !=20 && BandsPeriod != 26)
{
if (Window_Alert == true) Alert(Symbol(),Period(),"下穿",BandsPeriod,"boll 下轨 ", "!");Sleep(300000);
//if (Play_Sound == true) PlaySound("Pretty Boy.wav");
}
if (Low[1] <= LowerBuffer[1] && Low[0]>LowerBuffer[0] && BandsPeriod !=20 && BandsPeriod != 26)
{
if (Window_Alert == true) Alert(Symbol(),Period(),"上穿",BandsPeriod,"boll 下轨 ", "!");Sleep(300000);
//if (Play_Sound == true) PlaySound("light music.wav");
}
Sleep(300000);
/*//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
void DisplayAlert(string message, int shift)
{
if(shift <= 2 && Time[shift] != lastAlertTime)
{
lastAlertTime = Time[shift];
Alert(message, Symbol(), " , ", Period(), " minutes chart");
}
}
*/
//----
return(0);
}
//+------------------------------------------------------------------+
发表于:2013-05-07 09:21只看该作者
87楼
韬客外汇论坛TALKFOREX.COM
发表于:2013-05-07 10:41只看该作者
89楼
支持。呵呵
发表于:2013-05-07 12:40只看该作者
90楼
对楼主的帖子,比较认同.谢谢
韬客社区www.talkfx.co
发表于:2013-05-08 03:00只看该作者
92楼
交易员的思维,而不是分析师的思维。
93楼
看了几遍感觉非常的真实,靠谱啊
韬客社区www.talkfx.co
94楼
好 长
坚忍,耐心,信心并顽强执着地积累成功才是职业的交易态度。
97楼
韬客社区www.talkfx.co
发表于:2013-05-08 14:18只看该作者
98楼
韬客社区www.talkfx.co
发表于:2013-05-08 15:29只看该作者
99楼
来看下。。。
韬客社区www.talkfx.co
100楼
不错的经验分享,系统差不多,我用的是M5M15H1,信号观察周期主要是M15,进出场看M5.均线为7.21.55.加一条布林线。想说的是,不要刻意模仿别人的系统,从市场结构角度出发建立自己的系统。
韬客社区www.talkfx.co