Thanks, 4exNinja. I attach the indicators I find here so someone can take.
Big Wins!
Big Wins!
Attached File(s)
EA for "Heiken Ashi Smoothed" 59 replies
Heiken Ashi and Heiken Ashi Smoothed EA needed for Renko 11 replies
Heiken ashi smoothed alert 9 replies
Heiken Ashi smoothed crossover and close 4 replies
DislikedThanks, 4exNinja. I attach the indicators I find here so someone can take.
Big Wins!Ignored
DislikedHappens to me buddy! And it sucks that the colours are all the same! Does anyone else has a HA and HA Smooth indicator that allows colours changing (mine allows too) but doesn't change back when switching timeframes? Thanks!Ignored
DislikedIf you use the MTF Stochs, you can stay out of trades whenever a "grid pattern" emerges...works like a charmIgnored
DislikedHi Hedayat,
Thanks for sharing great system...
I'm also evaluating this system....
Regarding color change issue it also happen to my HA indicator.
To make the color permanently, just go to HA mq4 file open it and change the color to what you like, then save it and reopen MT4. That's it..AttachmentIgnored
DislikedThanks
@Hed: I think my sample size is waaaaay to small to claim I'm going to be making 80pips consistently. Personally, I'm aiming for 30-50 pips per day over a ton of different currency pairs.Ignored
DislikedHi all,
great thread and very smart system indeed!
Since I'm an Ichi trader and fond in heikin ashi candles too, I'm adding to my chart ichimoku and a slow stochastic set to 21,7,3 as confirmation. It seems to work well with about all time frames, even if I prefer weekly, daily and H1.
A good entry is according to all Ichimoku and HA signals and the stochastic is between 80 and 20 (not above 80 or below 20). The best conditions are when stochastic just crossed downward 80 line in short trades or upward 20 line in long ones; moreover, the more %K...Ignored
DislikedThank you for the reply buddy.
Quick question, what you mean is I have to open metaeditor and then edit the mq4 file? Is that what you mean?
Thank you buddy!Ignored
Disliked80 pips a day is enough to make you a millionaire in one year if it's consistant! Sure I'd love to see that full setup buddy - don't worry wont consider it "spam" lol.
There were some issues with gustav and I want to clarify that I will not be typing in harsh tones like that anymore - I'm sorry if I made any of you hold back your improvements or suggestions to the system - keep posting the good stuff pls!!Ignored
DislikedMany thanks Hedayat and others for contributions to this great system.
Hay anyone decided on a chop filter? I've been looking
at the Black Dog black arrow EMA 20 - EMA 100, which seems
to filter trades not taken in the trending direction.
RegardsIgnored
long = iCustom(Symbol(),Period(),"Heiken_Ashi_Smoothed",1,0);
short = iCustom(Symbol(),Period(),"Heiken_Ashi_Smoothed",0,0);
long2 = iCustom(Symbol(),Period(),"Heiken Ashi",1,1);
short2 = iCustom(Symbol(),Period(),"Heiken Ashi",0,1);
if(long > short && long2 > short2 )
{
if(count(OP_BUY, magic) + count(OP_SELL, magic) < maxTrades)
{
OrderSend(Symbol(), OP_BUY, Lot, Ask, 0, 0, 0, "v1", magic, CLR_NONE);
}
}
if(count(OP_BUY, magic) == maxTrades && short2 > long2 )
{
CloseAll(10, magic);
}
if(short > long && short2 > long2)
{
if(count(OP_BUY, magic) + count(OP_SELL, magic) < maxTrades)
{
OrderSend(Symbol(), OP_SELL, Lot, Bid, 0, 0, 0, "v1", magic, CLR_NONE);
}
}
if(count(OP_SELL, magic) == maxTrades && long2 > short2)
{
CloseAll(10,magic);
} Dislikedhey thanks again for posting this, its imho the best system i have found in a loooooooooong time, i can use it to scalp 1 min and i put on trades on 4 hours too successfully !
edit: up 20%Ignored