Trailing Stop EA - page 9

 

Need ATR Trailing Stop modification, Please

Hi

This is the best trailing stop EA ever, but i have to give the ticket number to manage my position (single position). I want to manage all my position on the chart.For example all EURUSD position .

ATRstop_v1.1 indicator is help to see where is the ATR

Please help

 
Ridick07:
Hi

This is the best trailing stop EA ever, but i have to give the ticket number to manage my position (single position). I want to manage all my position on the chart.For example all EURUSD position .

ATRstop_v1.1 indicator is help to see where is the ATR

Please help

thanks for sharing ,all position?

 

ATR trailing stop

All position in the chart were i attach.

I mean if i attach on EURUSD chart, to manage my all EURUSD position, not the other pairs.

somehow this is the code what i have to paste but i can't

if (OrderType() == OP_BUY && Symbol() == OrderSymbol()

Please help

 

ATR trailing stop

zarasa:
thanks for sharing ,all position?

All position in the chart were i attach.

I mean if i attach on EURUSD chart, to manage my all EURUSD position, not the other pairs.

somehow this is the code what i have to paste but i can't

if (OrderType() == OP_BUY && Symbol() == OrderSymbol()

Please help

 

Solved

Ridick07:
All position in the chart were i attach.

I mean if i attach on EURUSD chart, to manage my all EURUSD position, not the other pairs.

somehow this is the code what i have to paste but i can't

if (OrderType() == OP_BUY && Symbol() == OrderSymbol()

Please help

Seattle solved it from another forum.

 

Does not work on Low as 1.0 spread Broker

Does not work on Low as 1.0 spread

I checking this trailing stop on many brokers But TrailingStop does not work, if spread is low as down 1.0.

I need a TrailinStop does work on low Spread.

or anyone please repair this mistake from following scripts

Files:
 

gbemitte

I need EA that always losing position.

Two things are difficult to see in forex trading.

1. EA that always loss positions

2. EA that always profit.

I you hve EA that always lost kindly let me know.

Thanks

 

...

If only it was that easy Here you go : 100.0% sure all loses (no way it can have a wining trade, and, for the sake of being an example, it opens both long and short orderds). Just copy it, paste it in an editor ans save as an EA. It will make a beutiful straight downward line

extern double lots = 0.1;

int init() { return (0); }

int deinit() { return (0); }

int start()

{

int ticketB = OrderSend(Symbol(),OP_BUY,lots,Ask,0,0,0);

if (ticketB > -1) OrderClose(ticketB,lots,Bid,0);

int ticketS = OrderSend(Symbol(),OP_SELL,lots,Bid,0,0,0);

if (ticketS > -1) OrderClose(ticketS,lots,Ask,0);

return (0);

}

PS: one more thing that this one will show is why you can not just "invert" the logic of buys and sells and expect the EA to become profitable. It does not go like that

gbemitte:
I need EA that always losing position.

Two things are difficult to see in forex trading.

1. EA that always loss positions

2. EA that always profit.

I you hve EA that always lost kindly let me know.

Thanks
 

What logic and purpose would have an EA which always lose? Call it suicidal EA. Wall Street sells EAs like that.

Cheers Hermes

 

hi brothers ..

plz any one can add one more function to this trailing stop EA ?

its amazing but it need one more option

close all orders ( with positive profit & negative lose ) >> true or fales

i'm working with this EA with pending orders

so if i have 5 orders with trailing stop positive profit .. and the 6th one with negative profit .. this EA close only orders with positive profit .. but i want it to close the others too

sry for my bad english

EA attaced

Files:
Reason: