运作良好的交易系统! - 页 7

 

系统

交易员先生。

我注意到箭头消失了,你是在蜡烛收盘时进场,还是在得到箭头信号时进场,而且所有其他指标也排成一列? 你是用MT4版本还是VT版本? 你还在交易这个系统吗?

 
 
 
 
 

日和周的范围

如何使RANGE变成一周的范围,而不是每天的范围,这样当我们从小时图切换到日图时,就会自动从当天的范围切换到一周的范围。

 
Healthygen:
你如何使RANGE变成一周的范围,而不是每天的范围,这样当我们从小时图切换到日图时,就会自动从当天的范围切换到一周的范围。

你需要改变代码。

 

外汇转折点指标(买/卖箭头)...

各位精英会员。

这里是外汇转折点指标(买/卖箭头)。 它是MA's、MACD和RSI的简单组合。 使用海肯-阿斯的收盘数据,而不是普通的收盘数据。

{Moving Averages}

MA1:= MOV(MA1prc,MA1per,MA1type);

MA2:= MOV(MA2prc,MA2per,MA2type);

{Relative Strength Index}

rsi_r:= (C - ref(C,-1));

rsi_rs:= Wilders(if(rsi_r>0,rsi_r,0),RSIper) / Wilders(if(rsi_r<0,Abs(rsi_r),0),RSIper);

_RSI:= 100-(100/(1+rsi_rs));

RSIMidLine:= 50;

{MACD}

Fast:= Mov(MACDprc,MACDShMAper,MACDMAtype)-Mov(MACDprc,MACDLgMAper,MACDMAtype);

Signal:= Mov(Fast,MACDSigMAper,MACDMAtype);

Hist:= Fast - Signal;

Cond1:= MA1 > MA2;

Cond2:= _RSI > 50;

Cond3:= Fast > Signal;

Long:=0;

Short:=0;

Long:= if(Cond1 and Cond2 and Cond3,1,

if(not Cond1 and not Cond2 and not Cond3,0,prev));

Short:= not Long;

LongSignal:= Cross(Long,Short);

ShortSignal:= Cross(Short,Long);

AudioLong := ref(LongSignal,-1);

AudioShort := ref(ShortSignal,-1);

OpenBuy:= LongSignal and (eventCount('OpenBuy')=eventCount('CloseBuy'));

CloseBuy:= ShortSignal and (eventCount('OpenBuy')>eventCount('CloseBuy'));

{OpenSell and CloseSell}

OpenSell:= ShortSignal and (eventCount('OpenSell')=eventCount('CloseSell'));

CloseSell:= LongSignal and (eventCount('OpenSell')>eventCount('CloseSell'));

默认参数在任何市场的所有时间段都有效。

MA1价格:haClose

MA1周期。5

MA1类型。加权

MA2 价格: haClose

MA2周期: 10

MA2类型:简单

RSI周期:4

MACD价格: haClose

MACD MA类型: 指数

MACD 短线MA周期: 8

MACD长线MA周期: 21

MACD信号MA周期。5

我已将所有3个指标编入Amibroker,并验证了该系统在所有市场(商品和股票)和所有时间段都能运行(对于月度时间段 和非常短的时间段需要进行一些调整)。

 

要求提供更多信息

嗨,rm.trader。

谢谢你分享昂贵的购买系统。

从交易中获益是非常好的,我很想实现这个目标。

你能分享一下你如何在四个月内成为成功的交易员的故事吗?

另外,我想关注这个新系统。你介意让我知道你的交易时间吗?

谢谢

约翰采

 

请帮助

谁能告诉我如何在VTrader中使用第一篇帖子中所附的.RAR文件?

非常感谢。