Well working Trading System ! - page 7

 

sys

mr. trader,

I noticed arrow disapears do you enter at the close of the candle or when you just get the arrow signal and all the other indicator's also lined up? are you using mt4 version or vt version? are you still trading the system? thanks

 
 
 
 
 

Range Day and Week

How do you make the RANGE go for a week instead of the daily range, so that when we switch from an hourly chart to a daily chart it will automatically switch from the range of the day to the range for the week.

 
Healthygen:
How do you make the RANGE go for a week instead of the daily range, so that when we switch from an hourly chart to a daily chart it will automatically switch from the range of the day to the range for the week.

You need to change the code.

 

FX Turning Point Indicators (Buy/Sell arrows)...

Fellow Elite Members,

Here is the FX Turning Point Indicator (Buy/Sell arrows). It is a simple combination of MA's, MACD and RSI. Uses Heiken-Ashi closes for data instead of regular closes.

{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'));

The default parameters that work in ALL timeframes in ANY market:

MA1 Price: haClose

MA1 Periods: 5

MA1 Type: Weighted

MA2 Price: haClose

MA2 Periods: 10

MA2 Type: Simple

RSI Periods: 4

MACD Price: haClose

MACD MA Type:Exponential

MACD Short MA Periods: 8

MACD Long MA Periods: 21

MACD Signal MA Periods: 5

I have programmed all 3 indicators into Amibroker and have verified that the system works in all markets (commodities and stocks) and all timeframes (some tweeking required for monthly timeframes and very short timeframes).

 

Request more info

Hi rm.trader,

thank you the sharing of expensive purchasing of system.

it is very good to live from the trading. i am so eager to acheive that goal.

can you share your story of how you become sucessful trader within four monthes?

also, i will like to keep eye on this new system. do you mind to let me know what is your trading hour?

thanks

johntsai

 

Help Please

Can anybody tell me how to use the .RAR files attached to the first post in VTrader?

Many thanks.

Reason: