TrendTrading EA

falancak
Posts: 7
Joined: Sun Apr 20, 2014 7:02 pm

TrendTrading EA

Post by falancak »

Khalaad » Mon Jun 02, 2014 9:29 am wrote:
Khalaad » Sun 01 Jun 2014 10:26 am wrote:v1.23 and v1.24R on demo.
v1.23 has pyramiding disabled; v1.24R with scale-in enabled.

Khalid
Your EA looks impressive.Thanks much.But ı have some additional ideas.

1-Why you dont integrate css indicator strength values to filtrate more trendy pairs.

2-On someway hedge the orders partially on overbought and oversold levels with some indicators that you will estimate better
falancak
Posts: 7
Joined: Sun Apr 20, 2014 7:02 pm

TrendTrading EA

Post by falancak »

Khalaad » Mon Jun 02, 2014 9:29 am wrote:
Khalaad » Sun 01 Jun 2014 10:26 am wrote:v1.23 and v1.24R on demo.
v1.23 has pyramiding disabled; v1.24R with scale-in enabled.

Khalid
Your EA looks impressive.Thanks much.But ı have some additional ideas.

1-Why you dont integrate css indicator strength values to filtrate more trendy pairs.

2-On someway hedge the orders partially on overbought and oversold levels with some indicators that you will estimate better :!!:
falancak
Posts: 7
Joined: Sun Apr 20, 2014 7:02 pm

TrendTrading EA

Post by falancak »

Khalid[/quote]

Your EA looks impressive.Thanks much.But ı have some additional ideas.

1-Why you dont integrate css indicator strength values to filtrate more trendy pairs.

2-On someway hedge the orders partially on overbought and oversold levels with some indicators that you will estimate better :!!:
Radar
Trader
Posts: 437
Joined: Fri Mar 23, 2012 5:39 pm
Location: Round the bend ;)

Minor Edit Time...

Post by Radar »

Good evening folks,

We found a couple of bugs that you will have to squash...

If you are running v1.23...

1. Insert this line at line 118 (do not overwrite line 118).

Code: Select all

      if(Volume[0]>1)return; 
2. Copy this line from line 176, and insert at line 251(again, do not overwrite).

Code: Select all

      SLPips = Ask*StopPercent; 
3. Copy this line from line 210, and insert at line 260 (no overwrite).

Code: Select all

      SLPips = Bid*StopPercent; 
4. Edit lines 273 and 300 where they say...

Code: Select all

>= SLPips) 
...and change it to...

Code: Select all

>= SLPips * 2) 
That's it for v1.23.
=========================================================================

If you have v1.24...

1. Insert this line at line 127 (no overwrite).

Code: Select all

      if(Volume[0]>1)return; 
2. Copy this line from line 185, and insert it at line 277 (no overwrite).

Code: Select all

      SLPips = Ask*StopPercent; 
3. Copy this line from line 218 and insert it at line 286 (no overwrite).

Code: Select all

      SLPips = Bid*StopPercent; 
4. Edit lines 299 and 326 where they say...

Code: Select all

>= SLPips) 
...and change it to...

Code: Select all

>= SLPips * 2) 
That's it for v1.24.
==========================================================================

Don't worry, you won't break anything ;) This is where I started... Following coders' instructions on how to make minor fixes.

Have fun!

Radar =8^)
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
bazze

TrendTrading EA

Post by bazze »

Must say that things are happening very fast here,not much delay :smile:
Great people,that's what you are guys :clap:
Radar
Trader
Posts: 437
Joined: Fri Mar 23, 2012 5:39 pm
Location: Round the bend ;)

RedZoneRangeLines

Post by Radar »

Good evening, guys,

I have created an indicator based on RedZonLINE.mq4 by Khalid.

This one creates Enter/Exit lines at a user-defined distance (in percentage of the range) from the HH and LL.

Version 1.24R of the TrendTrading EA uses this method for entries and exits (along with VolOSC), though the indicator is embedded in the EA (the EA has an extra setting, MinimumRange, for use on M1 to around M30).

If you want to trade this method manually, or just see what the EA uses, throw this on a chart with VolOSC, using the same settings as the EA.

Have fun!

Radar =8^)
You do not have the required permissions to view the files attached to this post.
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
spybreak
Trader
Posts: 29
Joined: Fri Apr 13, 2012 3:04 pm

TrendTrading EA

Post by spybreak »

Hi,

I'm up to + 600 pips actually in 8 opened orders :good:

Two bad trades - 165 pips total .
http://www.myfxbook.com/members/cyberom ... ing/908608 (follow trades only since 6/2, close date)
lot 0.05 for all pairs, settings from author for different Length.

I've attached all presets for those who are interested (just change lots according to author or your choice ;) )

I'm waiting now for good exits :) :?:
Thanks Khalaad and Radar for this promising EA :yahoo:

And sorry for my 'basic" english :hi:
You do not have the required permissions to view the files attached to this post.
Last edited by spybreak on Wed Jun 04, 2014 8:56 pm, edited 1 time in total.
spybreak
Trader
Posts: 29
Joined: Fri Apr 13, 2012 3:04 pm

TrendTrading EA

Post by spybreak »

- 291 pips this week with my demo:

+ 400 pips in open trades, don't you think this ea needs seriously a Trailing stop ?
thanks
spybreak
Trader
Posts: 29
Joined: Fri Apr 13, 2012 3:04 pm

TrendTrading EA

Post by spybreak »

Khalaad » Thu Jun 05, 2014 5:19 pm wrote:
spybreak » Thu 05 Jun 2014 10:08 pm wrote:- 291 pips this week with my demo:

+ 400 pips in open trades, don't you think this ea needs seriously a Trailing stop ?
thanks
Not, in my opinion, unless one pyramids; in which case the stop is moved progressively in the direction of the trade.

But, of course, every one trades differently. Therefore, please attach the DumpHistory script to your charts and PM me the CSV so that we may have the data to design evidence-based trailing stop.

Thank you.

Khalid
I executed the script on chart but after what is the csv you want , OrdersReport.csv ? :?
Thanks
You do not have the required permissions to view the files attached to this post.
Radar
Trader
Posts: 437
Joined: Fri Mar 23, 2012 5:39 pm
Location: Round the bend ;)

TrendTrading EA

Post by Radar »

Hi Stefan,

Could you post a copy of your Experts Log, as I need to see the sequence of events, and the timestamps on the orders and alerts are different, thanks.

Have fun!

Radar =8^)
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
Post Reply

Return to “Automated trading systems”