Please help

 
good morning
I have a great favor to you
Can someone help me create an EA to a pointer?

Please help
Files:
 
no problem has been described
 
tytus21:
good morning
I have a great favor to you
Can someone help me create an EA to a pointer?

Please help

Please don't double post.

If you want help, it's better to describe what you are trying to achieve. "create an EA to a pointer" is meaningless.

 
tytus21:
good morning
I have a great favor to you
Can someone help me create an EA to a pointer?

Please help


Here is the first step :

   SetIndexBuffer(0,UpTrendBuffer);
   SetIndexBuffer(1,DownTrendBuffer);
   SetIndexBuffer(2,UpTrendSignal);
   SetIndexBuffer(3,DownTrendSignal);

Your signals and stops are just there . Get the buy signal from buffer 2 and sell signals from buffer 3. Keep your stop for sell orders to buffer 1 and your stop for buy orders from buffer 0.

Does it make sense ?

Hint : you need to use iCustom function to get your signals from the indicator.

Hope it helps.

Reason: