
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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
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 helpthanks 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
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
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 helpSeattle 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
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 
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
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.
ThanksWhat 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