ASCTrend system - page 36

 
Aguda:
SigOnLast=True and CompleteBars=5 are both default setting. Did that trade not happen to you?

No, I do not have the EA running on USDCHF. Too bad.

I am running it on EURUSD & GBPUSD - and the trades seem to work well.

I have too many things running on 3 PC's - I do not want to add too many

ASCTrend setups - it takes more resources & I have real trades running -

but not on ASCTrend EA, need to more time (1 month+) to tweak & forward

test.

-Pedz

 
Pedzr888:
No, I do not have the EA running on USDCHF. Too bad.

I am running it on EURUSD & GBPUSD - and the trades seem to work well.

I have too many things running on 3 PC's - I do not want to add too many

ASCTrend setups - it takes more resources & I have real trades running -

but not on ASCTrend EA, need to more time (1 month+) to tweak & forward

test.

-Pedz

Hi and thanks for the EA.

The only request - would be nice if it exits not too early but on yellow bar of NonLagMA big.

euro_pean

 
european:
Hi and thanks for the EA.

The only request - would be nice if it exits not too early but on yellow bar of NonLagMA big.

euro_pean

That can be done. I believe NonLagMA big is at Trend=0 at that point.

But if you use all 3 confirmations, it shouldn't exit early. The only time

it will exit early is if the SL gets hit earlier than the exit signal.

Let me see if I can add an option to turn off SL, so we rely exclusively

on the confirmed signals to enter/exit/re-enter trades.

-Pedz

 
Pedzr888:
No, I do not have the EA running on USDCHF. Too bad.

I am running it on EURUSD & GBPUSD - and the trades seem to work well.

I have too many things running on 3 PC's - I do not want to add too many

ASCTrend setups - it takes more resources & I have real trades running -

but not on ASCTrend EA, need to more time (1 month+) to tweak & forward

test.

-Pedz

Hi Aguda,

I opened up USDCHF a while ago - right after your post. The new Sell order

came in on time. See attached chart.

-Pedz

Files:
 
european:
Hi and thanks for the EA.

The only request - would be nice if it exits not too early but on yellow bar of NonLagMA big.

euro_pean

Here's v7.1 with the option for big NonLagMA exit on "yellow" - just set

EnableNonLagMAExit = true. I have not tried it extensively, but it looks like it's working.

As for multiple open orders - that will be on v8.0 - it's a quite bit more complicated.

Let me know if you find any bugs.

-Pedz

Files:
 
Pedzr888:
Here's v7.1 with the option for big NonLagMA exit on "yellow" - just set

EnableNonLagMAExit = true. I have not tried it extensively, but it looks like it's working.

As for multiple open orders - that will be on v8.0 - it's a quite bit more complicated.

Let me know if you find any bugs.

-Pedz

For multiple open orders Igorad used the following (in some other EAs).

In the beginning of the code:

extern int MaxOrders = 3;[/CODE]

And in somewhere:

//Buy

if (Order == SIGNAL_BUY && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {

if(ScanTrades() < MaxOrders) {[/CODE]

And

[CODE]if(ScanTrades() < MaxOrders)

for sell ...

And in the end of the code:

[CODE]int ScanTrades()

{

int total = OrdersTotal();

int numords = 0;

for(int cnt=0; cnt<total; cnt++)

{

OrderSelect(cnt, SELECT_BY_POS);

if(OrderSymbol() == Symbol() && OrderType()<=OP_SELLSTOP && OrderMagicNumber() == MagicNumber)

numords++;

}

return(numords);

}

So you may use it.

 

HI ND

Pls find attached an Indicator and its template which work the same as ASCTrend can you check it and tell me the diff between it and ASCTrend. and if smoe one can make an EA for it.

Files:
 
power99:
HI ND Pls find attached an Indicator and its template which work the same as ASCTrend can you check it and tell me the diff between it and ASCTrend. and if smoe one can make an EA for it.

I downloaded it. It is very different. And more complicated.

But it is ok.

My system is more simple.

Files:
spoutnik.gif  20 kb
 

False signals were filtered.

Files:
 
Pedzr888:
Here's v7.1 with the option for big NonLagMA exit on "yellow" - just set

EnableNonLagMAExit = true. I have not tried it extensively, but it looks like it's working.

As for multiple open orders - that will be on v8.0 - it's a quite bit more complicated.

Let me know if you find any bugs.

-Pedz

Hi - thank you for posting your work.

Since I am big fan of ND's work, and out of interest - I decided to run this EA while manual trading today.

3 majors all ok - see attached - had to turn off machine so exited early - so did not get to see the exit based on nonlagma.

2 questions

The EA was modifying the stop loss constantly - keeping it away from the price action - is this because its in the mode of exiting based on the nonlagma ?

What nonlagma settings is it picking up ?

Regards

Files:
Reason: