Keep it simple - page 5

 

need answer..

hi, need explanation please..

Question..

1. what is the different between TopTrend and PriceChannel indicator?

2. what is the different between Heiken_Ashi_kuskus2 and Heiken_Ashi_smoothed?

this all indicators look related each other..so what the diffrent? which one better?

hope can get answer from anybody..thanks for advance

 

Heiken_Ashi smoothed

Greetings...I am using ashi smoothed in ea as filter...

However, sometimes I am getting "wrong" direction of color trades...does anyone know how to make the indicator or program so that It only takes "trades in blue" or trades in "red" ..?

Sometimes the indicator showes out put values increasing but "red" trend and vice versa...thoughts?

Right now, I am using bar 1 greater than bar 2 ect...

double N1=iCustom(NULL,PERIOD_M15,"Heiken_Ashi_Smoothed ",2,6,3,2,2,1) ;

double N2=iCustom(NULL,PERIOD_M15,"Heiken_Ashi_Smoothed ",2,6,3,2,2,2) ;

 

hi

HA smoothed is a good indicator for filtering, how about your trading result using this filter?

===================

Forex Indicators Collection

 

ISAKASv2 REBIRTH

MeGaXwOrM;287035

https://www.mql5.com/en/forum/175290/page52

===========

Downloaded :isakasv2 rebirth, from the above link.

Getting error msgs, i cannot open the file of heinken ashi cw mtf .ex4 files when attached, instead of heiken ashi mq4 files, not only to this chart, but

for other charts & currencies/timeframes too, as I wanted to use cw -mtf instead ha mq4 files. Does any body has similar problems pls.

Can any one help me out, how to rectify this error pls. thx in advance

rgds

24th june 09

 

...

The way you wrote it, it compares two heiken ashi openvalues

You should use something like this

double Open1 =iCustom(NULL,PERIOD_M15,"Heiken_Ashi_Smoothed ",2,6,3,2,2,1);

double Close1=iCustom(NULL,PERIOD_M15,"Heiken_Ashi_Smoothed ",2,6,3,2,3,1);

if (Open1<Close1) ... // up trend

if (Open1>Close1) ... // down trend [/php]Also, for sake of accuracy, in heiken ashi smoothed indicator, replace the following lines :

maOpen=iMA(NULL,0,MaPeriod,0,MaMetod,MODE_OPEN,pos);

maClose=iMA(NULL,0,MaPeriod,0,MaMetod,MODE_CLOSE,pos);

maLow=iMA(NULL,0,MaPeriod,0,MaMetod,MODE_LOW,pos);

maHigh=iMA(NULL,0,MaPeriod,0,MaMetod,MODE_HIGH,pos);

with these :

[php]maOpen = iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_OPEN ,pos);

maClose = iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_CLOSE,pos);

maLow = iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_LOW ,pos);

maHigh = iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_HIGH ,pos);

because the way the indicator is written now, the low values it is calculating are wrong (details for why to make this change are here : https://www.mql5.com/en/forum/179404

ajk:
Greetings...I am using ashi smoothed in ea as filter...

However, sometimes I am getting "wrong" direction of color trades...does anyone know how to make the indicator or program so that It only takes "trades in blue" or trades in "red" ..?

Sometimes the indicator showes out put values increasing but "red" trend and vice versa...thoughts?

Right now, I am using bar 1 greater than bar 2 ect...

double N1=iCustom(NULL,PERIOD_M15,"Heiken_Ashi_Smoothed ",2,6,3,2,2,1) ;

double N2=iCustom(NULL,PERIOD_M15,"Heiken_Ashi_Smoothed ",2,6,3,2,2,2) ;
 

sweet! thank you very , very much.

I missed a lot of good trades with this problem.

 

HA smoothed is a good indicator for filtering, how about your trading result using this filter?

I would not use heiken without at least a few other filters ..also have to consider TF

A filter is a filter is a filter!

 

Looking for a profitable daily EA

Hey Guys Im new to Forex, and Im looking a profitable EA... can you please help

 

Profitable EA

amdegia:
Hey Guys Im new to Forex, and Im looking a profitable EA... can you please help

See this...........

https://www.mql5.com/en/forum/173055

 
MeGaXwOrM:
need answer..

hi, need explanation please..

Question..

1. what is the different between TopTrend and PriceChannel indicator?

2. what is the different between Heiken_Ashi_kuskus2 and Heiken_Ashi_smoothed?

this all indicators look related each other..so what the diffrent? which one better?

hope can get answer from anybody..thanks for advance

1. Well, don't know to much about top trend. But by looking at the picture, both of them done the same thing. It showing where the trend start and where its end. Also identical with "bband stop" n "volty channel stop". Usually include ATR n money risk calculation. The last price channel i know was created by igorad somewhere arround here "PriceChannel_Signal_v1.2"

2. Heiken Ashi, was made with a purpose "trading with less noise". You can check it on parameter setting, if consist 2 ma period n ma setting, basically will gave the same result. There is alot of variant, "Hull ma", "T3 heiken ashi", "heiken ashi ma bar", "heiken ashi overlay". You may also consider checking HAMA pad thread started by fxcruiser.

Just my 2cent, hope its help

Reason: