EA based 5_34_5 indicator - page 4

 

Hi

Then this indicator not have ST or TP ? How can we stop the trades manually ?

 
ricardo24:
Hi Then this indicator not have ST or TP ? How can we stop the trades manually ?

there is few changes in the ea, but how to place file there?

 

pls post

przem81621:
there is few changes in the ea, but how to place file there?

Pleas go ahead and post the new ea here

 

Money management

Add Money management

Files:
5_34_5_ea.mq4  20 kb
 

Does your new ea have these features vlad?

vlad36:
Add Money management

Thanks!!

Brian

 

Wondering..

If someone could add these features/filters to the new 5 34 5 ea??

Could be all it takes!!??

RE

Long when :

- Stochastic main over Stochastic signal,

- RSI over 50,

- BearsPower over 0,

- Price over Parabolic SAR,

- Fast Moving average over Slow Moving average,

- Price Action option.

Short when :

- Stochastic main under Stochastic signal,

- RSI under 50,

- BearsPower under 0,

- Price under Parabolic SAR,

- Fast Moving average under Slow Moving average,

- Price Action option.

from great ea by funnyoo vforce type ea 2 attached

and keep same MM options?? If someone can?

vForce Like EA - Page 2 - Trading System Forex

Files:
 

EA based 5_34_5 indicator

Can do this but:

Code from vForce Like EA v2.mq4:

if(

(StoM>StoS) Stochastic main over Stochastic signal && (RSI>50)

&& (Bears>0)

&& (Open>SAR)

&& (iMA(Symbol(),0,FastMAPeriod,0,MODE_SMA,PRICE_CLOSE,i)>iMA(Symbol(),0,SlowMAPeriod,0,MODE_SMA,PRICE_CLOSE,i+1))

&& (PriceActionFilter==false || (PriceActionFilter && Close[0]>Open[0]))

)BUY="true";

if(

(StoM>StoS) Stochastic main over Stochastic signal && (RSI<50)

&& (Bears<0)

&& (Open<SAR)

&& (iMA(Symbol(),0,FastMAPeriod,0,MODE_SMA,PRICE_CLOSE,i)<iMA(Symbol(),0,SlowMAPeriod,0,MODE_SMA,PRICE_CLOSE,i+1))

&& (PriceActionFilter==false || (PriceActionFilter && Close[0]<Open[0]))

)SELL="true";

Stochastic main always over Stochastic signal.

 

hello, someone can put an option in the EA, if you want to buy and sell at the same time?

What I'm trying to 1 pip TP and SL 0

 

2009.05.19 14:19:57 5_34_5 GBPUSDm,H1: invalid integer number as parameter 2 for SetI

Hello everyone and thanks for allowing to test the ea.I loaded v5_34_ and it gives me a 2009.05.19 14:19:57 5_34_5 GBPUSDm,H1: invalid integer number as parameter 2 for SetIndexDrawBegin function

error?

Thank you and have a great day!

Vince

 

I believe..

Its just supposed to be stochastic crossed up,green over red

for long, crossed down red above green for short you know..

Brian

vlad36:
Can do this but:

Code from vForce Like EA v2.mq4:

if(

(StoM>StoS) Stochastic main over Stochastic signal && (RSI>50)

&& (Bears>0)

&& (Open>SAR)

&& (iMA(Symbol(),0,FastMAPeriod,0,MODE_SMA,PRICE_CLOSE,i)>iMA(Symbol(),0,SlowMAPeriod,0,MODE_SMA,PRICE_CLOSE,i+1))

&& (PriceActionFilter==false || (PriceActionFilter && Close[0]>Open[0]))

)BUY="true";

if(

(StoM>StoS) Stochastic main over Stochastic signal && (RSI<50)

&& (Bears<0)

&& (Open<SAR)

&& (iMA(Symbol(),0,FastMAPeriod,0,MODE_SMA,PRICE_CLOSE,i)<iMA(Symbol(),0,SlowMAPeriod,0,MODE_SMA,PRICE_CLOSE,i+1))

&& (PriceActionFilter==false || (PriceActionFilter && Close[0]<Open[0]))

)SELL="true";

Stochastic main always over Stochastic signal.
Reason: