Looking for a NON-Repaiting Indicator!

ollyworks

Newbie
Messages
1
Likes
0
I am developing a promising ea based on Heiken Ashi indicator and I urgently need an indicator that may give me the actual trend direction. Just this!
even if your system is based on standard indicators like moving averages it may be useful to me as far as it's effective to confirm trend direction....Thanks a lot!

P.S: Right now my ea is using Fisher and Forex Trend Histo indicators and both are repaiting so the ea get many false signals about the current trend direction....
 

Attachments

  • Heiken Ashi.mq4
    3.9 KB · Views: 324
  • Fisher_Yur4ik_2.mq4
    2.4 KB · Views: 327
  • ForexTrend Histo.mq4
    3.4 KB · Views: 332
If LastPriceTick > FirstPriceTick then

Trend = "UP"

EsleIf LastPriceTick < FirstPriceTick then

Trend = "DOWN"

End If
 
Top