EA based on Heiken Ashi - page 4

 

mladen

Thank you for your answer and help, about the position of the candles.

Are you a MT4 programmer ?

I sent you a private message, but I didn't get any answer.

Can you please change the EA HAma 3.1 EA.mq4, that nix made of the Heiken Ashi Indicator, with other settings and options that I have ?

I have also my own strategy for a new EA, without any connection to Heiken Ashi Indicator.

But I don't know to program MQL , and sorry, but I don't have money now, to pay for an EA, but I can recommend programmers or their sites, in every forum that I enter, or I can make translations for them to other languages, or any other thing, that I can help, FOR FREE.

And they can also sell the EA's that they do from my strategies.

If it is possible, please contact me.

E-mail: atat@myx.net

 

Did somebody trade with the Heiken Ashi Indicator, and got good profit ?

If yes, can he/ she tell please, in which Time Frame, and the settings for the Stop Loss / Take Profit / Traling Stop His ?

I tried it in the Time Frames M1 / M5 / M15 , but it gave a lot of loses.

Thank you.

 

no one did so far (traded it with profit)...but there are literally hundreds of Heiken Ashi indicators and similar ones...

9527GNUyfr:
Did somebody trade with the Heiken Ashi Indicator, and got good profit ?

If yes, can he/ she tell please, in which Time Frame, and the settings for the Stop Loss / Take Profit / Traling Stop His ?

I tried it in the Time Frames M1 / M5 / M15 , but it gave a lot of loses.

Thank you.
 

Pava thank you for your answer.

Are you a MT4 programmer ?

Can you please change the EA HAma 3.1 EA.mq4 , that nix made, based on the Heiken Ashi Indicator, with other options and settings that I have ?

 
9527GNUyfr:
Pava thank you for your answer.

Are you a MT4 programmer ?

Can you please change the EA HAma 3.1 EA.mq4 , that nix made, based on the Heiken Ashi Indicator, with other options and settings that I have ?

Hello 9527GNUyfr, you can post the options and settings you want added to the EA and maybe someone will help.

 

I am the legendary programmer...

9527GNUyfr:
Pava thank you for your answer.

Are you a MT4 programmer ?

Can you please change the EA HAma 3.1 EA.mq4 , that nix made, based on the Heiken Ashi Indicator, with other options and settings that I have ?
 

mrtools and pava, thank you for your answer.

mrtools, I will post in 1-A few days, the options and settings, that I made, to create an EA, from the Heiken Ashi Indicator, that comes with the FXCM MT4 Client, that I write below:

//+------------------------------------------------------------------+

//| Heiken Ashi.mq4 |

//| Copyright c 2004, MetaQuotes Software Corp. |

//| MetaTrader 5 Trading Platform / MetaQuotes Software Corp. |

//+------------------------------------------------------------------+

//| For Heiken Ashi we recommend next chart settings ( press F8 or |

//| select on menu 'Charts'->'Properties...'): |

//| - On 'Color' Tab select 'Black' for 'Line Graph' |

//| - On 'Common' Tab disable 'Chart on Foreground' checkbox and |

//| select 'Line Chart' radiobutton |

//+------------------------------------------------------------------+

#property copyright "Copyright © 2004, MetaQuotes Software Corp."

#property link "http://www.metaquotes.net"

#property indicator_chart_window

#property indicator_buffers 4

#property indicator_color1 Red

#property indicator_color2 White

#property indicator_color3 Red

#property indicator_color4 White

#property indicator_width1 1

#property indicator_width2 1

#property indicator_width3 3

#property indicator_width4 3

//----

extern color color1 = Red;

extern color color2 = White;

extern color color3 = Red;

extern color color4 = White;

//---- buffers

double ExtMapBuffer1[];

double ExtMapBuffer2[];

double ExtMapBuffer3[];

double ExtMapBuffer4[];

//----

int ExtCountedBars=0;

//+------------------------------------------------------------------+

//| Custom indicator initialization function |

//|------------------------------------------------------------------|

int init()

{

//---- indicators

SetIndexStyle(0,DRAW_HISTOGRAM, 0, 1, color1);

SetIndexBuffer(0, ExtMapBuffer1);

SetIndexStyle(1,DRAW_HISTOGRAM, 0, 1, color2);

SetIndexBuffer(1, ExtMapBuffer2);

SetIndexStyle(2,DRAW_HISTOGRAM, 0, 3, color3);

SetIndexBuffer(2, ExtMapBuffer3);

SetIndexStyle(3,DRAW_HISTOGRAM, 0, 3, color4);

SetIndexBuffer(3, ExtMapBuffer4);

//----

SetIndexDrawBegin(0,10);

SetIndexDrawBegin(1,10);

SetIndexDrawBegin(2,10);

SetIndexDrawBegin(3,10);

//---- indicator buffers mapping

SetIndexBuffer(0,ExtMapBuffer1);

SetIndexBuffer(1,ExtMapBuffer2);

SetIndexBuffer(2,ExtMapBuffer3);

SetIndexBuffer(3,ExtMapBuffer4);

//---- initialization done

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator deinitialization function |

//+------------------------------------------------------------------+

int deinit()

{

//---- TODO: add your code here

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator iteration function |

//+------------------------------------------------------------------+

int start()

{

double haOpen, haHigh, haLow, haClose;

if(Bars<=10) return(0);

ExtCountedBars=IndicatorCounted();

//---- check for possible errors

if (ExtCountedBars<0) return(-1);

//---- last counted bar will be recounted

if (ExtCountedBars>0) ExtCountedBars--;

int pos=Bars-ExtCountedBars-1;

while(pos>=0)

{

haOpen=(ExtMapBuffer3[pos+1]+ExtMapBuffer4[pos+1])/2;

haClose=(Open[pos]+High[pos]+Low[pos]+Close[pos])/4;

haHigh=MathMax(High[pos], MathMax(haOpen, haClose));

haLow=MathMin(Low[pos], MathMin(haOpen, haClose));

if (haOpen<haClose)

{

ExtMapBuffer1[pos]=haLow;

ExtMapBuffer2[pos]=haHigh;

}

else

{

ExtMapBuffer1[pos]=haHigh;

ExtMapBuffer2[pos]=haLow;

}

ExtMapBuffer3[pos]=haOpen;

ExtMapBuffer4[pos]=haClose;

pos--;

}

//----

return(0);

}

//+------------------------------------------------------------------+

 

Pava, realy, are you a programmer ?

I have my own new strategy, for a new EA, without any connection to the Heiken Ashi Indicator.

But I don't know to program in MQL, and I am almost new to Forex.

Who will create the EA with my strategy, can sell the EA, and we can share the profits- Half for him, and half for me- I trust you.

Or I can help him, FOR FREE, with other things, like publicity to him as a programmer, or to his site, or translations to other languages, or any other thing that I can help, I will do everything FOR FREE.

Sorry, but I don't have money to pay for this EA.

Thank you.

E-mail: atat@myx.net

 

yes...you can trust me...75% for me - 25% for you...take it or leave it.

9527GNUyfr:
Pava, realy, are you a programmer ?

I have my own new strategy, for a new EA, without any connection to the Heiken Ashi Indicator.

But I don't know to program in MQL, and I am almost new to Forex.

Who will create the EA with my strategy, can sell the EA, and we can share the profits- Half for him, and half for me- I trust you.

Or I can help him, FOR FREE, with other things, like publicity to him as a programmer, or to his site, or translations to other languages, or any other thing that I can help, I will do everything FOR FREE.

Sorry, but I don't have money to pay for this EA.

Thank you.

E-mail: atat@myx.net
 

Pava, can you please write your E-mail ?

Reason: