Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #11 (permalink)  
Old 07-04-2006, 06:54 AM
igorad's Avatar
Senior Member
 
Join Date: Oct 2005
Location: Ukraine
Posts: 963
igorad is on a distinguished road
Hi,
I've fixed small bug in inputs (double instead int for Kv).

Igor
Attached Files
File Type: mq4 ATRStops_v1.1.mq4 (3.0 KB, 1042 views)
__________________
Let's improve trade skills together
http://finance.groups.yahoo.com/group/TrendLaboratory
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #12 (permalink)  
Old 07-21-2006, 03:50 AM
deeforex's Avatar
Member
 
Join Date: Oct 2005
Posts: 91
deeforex is on a distinguished road
thanks Igorad!!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #13 (permalink)  
Old 09-25-2006, 02:45 PM
Junior Member
 
Join Date: Sep 2006
Posts: 3
Adyandy is on a distinguished road
@

Kan somebody translate this cmc codec into metratrader 4 codec for me?

it is a automatic system!


Code;

Atr =AverageTrueRange[50](close)
keyofday=(high + low +close)/3
buyeasierday =1
selleasierday=1

if (close> keyofday) then
selleasierday =0
endif

if(close<=keyofday)then
buyeasierday =0
endif

if (buyeasierday =1) then
longEntryPoint=open +atr*0.0
shortEntryPoint=open-atr*0.5
endif

if ( selleasierday =1) then
longEntryPoint=open +atr*0.5
shortEntryPoint=open-atr*0.0
endif

//LongEntry
if close>= longEntryPoint and not longonmarket then
buy 10000 shares at longEntryPoint stop realtime
elsif not longonmarket then

endif

longliqpoint=entryquote-3*atr

//LongExit
if close<longliqpoint and longonmarket then
sell at longliqpoint stop realtime

endif

//ShortEntry
if close<=shortEntryPoint and not Shortonmarket then
sellshort 10000 shares at shortEntryPoint stop realtime
elsif not shortonmarket then

endif

shortliqpoint=entryquote+3*atr

//ShortExit
if close >=shortliqpoint and Shortonmarket then
exitshort at shortliqpoint stop realtime

endif



Indikatorcode;



atr=AverageTrueRange[50](close)
keyofday=(high + low +close)/3
buyeasierday =1
selleasierday=1

if (close> keyofday) then
selleasierday =0
endif

if(close<=keyofday)then
buyeasierday =0
endif

if (buyeasierday =1) then
longEntryPoint=open +atr*0.0
shortEntryPoint=open-atr*0.5
endif

if ( selleasierday =1) then
longEntryPoint=open +atr*0.5
shortEntryPoint=open-atr*0.0
endif

return longEntryPoint as "Long",shortEntryPoint as"Short"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #14 (permalink)  
Old 09-25-2006, 03:24 PM
Senior Member
 
Join Date: Mar 2006
Posts: 793
Maji is on a distinguished road
I think it is useless to do the buy/sell easier calcs if you are going to use this:

if (buyeasierday =1) then
longEntryPoint=open +atr*0.0
shortEntryPoint=open-atr*0.5
endif

if ( selleasierday =1) then
longEntryPoint=open +atr*0.5
shortEntryPoint=open-atr*0.0
endif

What difference does it make?

This is a plain vanilla volatility expansion/breakout system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #15 (permalink)  
Old 09-25-2006, 05:21 PM
Junior Member
 
Join Date: Sep 2006
Posts: 3
Adyandy is on a distinguished road
Hello Maji,

As well (and which for one) that system is not points I is so exact not from me developed, I have only bit changed and tested with the baking test of CMC and the result well out too well and was to be that because of wants I with the MT4 program to also test. Can you help me ?


Greeting.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #16 (permalink)  
Old 09-25-2006, 05:38 PM
Senior Member
 
Join Date: Mar 2006
Posts: 793
Maji is on a distinguished road
I believe Igor wrote an EA for the volatility breakout tests. Do a search for it.

Good luck.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #17 (permalink)  
Old 09-25-2006, 05:46 PM
Junior Member
 
Join Date: Sep 2006
Posts: 3
Adyandy is on a distinguished road
Thanks Maji
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #18 (permalink)  
Old 02-14-2007, 12:53 PM
Senior Member
 
Join Date: Feb 2007
Posts: 175
Flytox is on a distinguished road
ATR trailing stop.

Bonjour a tous.
I'am new to this forum, and i want to thanks for all the good stuff one can find here.

I'am looking for an EA to modify my sl according to atr. I found some here but no one seems to work on the MT4 last build i use with Ibfx.
Thank again.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #19 (permalink)  
Old 02-14-2007, 03:42 PM
Senior Member
 
Join Date: Nov 2005
Posts: 168
mangman is on a distinguished road
Here is the Chandelier Stop Indicator based on ATR volatility range.
Attached Files
File Type: mq4 ChandelierStops_v1.mq4 (3.7 KB, 562 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #20 (permalink)  
Old 02-14-2007, 04:05 PM
Senior Member
 
Join Date: Feb 2007
Posts: 175
Flytox is on a distinguished road
Merci beaucoup Mangman
i give it a try.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
atr channel, atr indicator, atr stop, ATR STOPS, ATR trailing, ATR trailing stop, atr trailing stop ea, Chandelier Trailing Stop, forex, trailing stop, trailing stop atr, trailing*5.mq4, trend envelopes, volatility stop, VoltyChannel_Stop, VoltyChannel_Stop_v2.1


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Trailing Stop EA newdigital Expert Advisors - Metatrader 4 68 11-01-2009 09:32 AM
How to set a trailing stop??? theolive9 Metatrader 4 1 12-06-2006 12:12 AM
EA trailing stop JoZo Metatrader 4 6 11-10-2006 02:34 PM


All times are GMT. The time now is 04:12 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.