Forex



Go Back   Forex Trading > Discussion Areas > Suggestions for Trading Systems






Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
Thread Tools Display Modes
  #281 (permalink)  
Old 11-19-2008, 11:00 AM
V-X569's Avatar
Member
 
Join Date: Nov 2007
Location: Kuala Lumpur
Posts: 40
V-X569 is on a distinguished road
Thumbs up

Quote:
Originally Posted by ValeoFX View Post
If my memory serves me correctly, this indicator is a renamed version of the VQ.mq4 and I see on their Thread that they have improved the original quite considerably. The present Alaskin downloaded from your Thread, seems to behave like in the beginning of the VQ concept. You may want to look into this.

Secondly, I have an ADX Crossing indicator by Amir which I find extremely accurate almost to the point of disbelief. It outperforms the 2 I have downloaded from your zipped file and I place it here for your perusal and comment.

Best wishes.
Seems like a great news for E&A system..
Thanks for the indicator ValeoFX.

Last edited by V-X569; 11-19-2008 at 11:03 AM.
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
  #282 (permalink)  
Old 11-19-2008, 11:24 AM
mladen's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,210
mladen is on a distinguished road
ADX crossing

Be careful with it.
PHP Code:
for (shift CountBarsshift>=0shift--) 

    
b4plusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_PLUSDI,shift-1);
    
nowplusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_PLUSDI,shift);
    
b4minusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_MINUSDI,shift-1);
    
nowminusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_MINUSDI,shift); 
if (
b4plusdi>b4minusdi && nowplusdi<nowminusdi)
{
    
val1[shift]=Low[shift]-5*Point;
}
if (
b4plusdi<b4minusdi && nowplusdi>nowminusdi
{
    
val2[shift]=High[shift]+5*Point;
}

It is looking for future values (the shift-1 parameter) to find out crossings
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
  #283 (permalink)  
Old 11-19-2008, 11:25 AM
Senior Member
 
Join Date: Sep 2007
Posts: 428
jturns23 is on a distinguished road
Quote:
Originally Posted by ValeoFX View Post
If my memory serves me correctly, this indicator is a renamed version of the VQ.mq4 and I see on their Thread that they have improved the original quite considerably. The present Alaskin downloaded from your Thread, seems to behave like in the beginning of the VQ concept. You may want to look into this.

Secondly, I have an ADX Crossing indicator by Amir which I find extremely accurate almost to the point of disbelief. It outperforms the 2 I have downloaded from your zipped file and I place it here for your perusal and comment.

Best wishes.
Valeo, upon closer inspection, its the exact same as the Non-repainting ADX cross. The difference is that the dot in yours looks like it shows up 1 bar before the Non-repainting ADX cross arrows show up. The funny thing is, they appear at the same time. As Mladen pointed out, it's the shift value that makes it look like it shows up 1 bar "earlier".

Last edited by jturns23; 11-19-2008 at 11:28 AM.
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
  #284 (permalink)  
Old 11-19-2008, 02:34 PM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,357
ValeoFX is on a distinguished road
Quote:
Originally Posted by Big Joe View Post
Hey yah Valeo !

I think pip assasin alaskan (or whatever you like) REPAINTS ?

I ask confirmation.
Hi my good friend,

I was just being polite.

Did you get my e-mail to your private mail address?

Best wishes.
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
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
  #285 (permalink)  
Old 11-19-2008, 02:38 PM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,357
ValeoFX is on a distinguished road
Quote:
Originally Posted by mladen View Post
Be careful with it.
PHP Code:
for (shift CountBarsshift>=0shift--) 

    
b4plusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_PLUSDI,shift-1);
    
nowplusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_PLUSDI,shift);
    
b4minusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_MINUSDI,shift-1);
    
nowminusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_MINUSDI,shift); 
if (
b4plusdi>b4minusdi && nowplusdi<nowminusdi)
{
    
val1[shift]=Low[shift]-5*Point;
}
if (
b4plusdi<b4minusdi && nowplusdi>nowminusdi
{
    
val2[shift]=High[shift]+5*Point;
}

It is looking for future values (the shift-1 parameter) to find out crossings

Mladen, would you mind being more explicit regarding the "warning"? It most certainly does not repaint, but if there is anything else to be aware of, I would like to know so that I can address it. It most certainly gives excellent signals.

Looking forward to hearing from you.

Best wishes.
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
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
  #286 (permalink)  
Old 11-19-2008, 02:39 PM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,357
ValeoFX is on a distinguished road
Quote:
Originally Posted by jturns23 View Post
Thanks Valeo, been looking for a good ADX cross indicator. As far as the APA, I agree, it repaints very badly. Anyone who questions it, just open strategy tester and watch it.
Thanks for the confirmation re APA. My pleasure for the ADX Crossing.mq4.

Best wishes.
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
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
  #287 (permalink)  
Old 11-19-2008, 03:25 PM
mladen's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,210
mladen is on a distinguished road
There are two coding errors in that indicator :
  • as I stated in my previous post already, it is looking for crosses comparing current and future value (I sincerely doubt that it was the intention)
  • also buffer values are not emptied on every loop. As a result, there are cases when indicator is going to become a "repainter" (cases when it posts signal for crossing and then, before the bar expires, values change back - since the buffer values are not cleaned (emptied), the "cross" is still remaining there, but if you change time frames or symbol and go back, or restart mt, it will disappear - effectively becoming a repainting indicator) Author did try to avoid that situation with fixed bar count (always recalculating the CountBars bars) but it means that the indicator is almost always recalculating unnecessarily
Hope this is explicit enough
regards
mladen

Quote:
Originally Posted by ValeoFX View Post
Mladen, would you mind being more explicit regarding the "warning"? It most certainly does not repaint, but if there is anything else to be aware of, I would like to know so that I can address it. It most certainly gives excellent signals.

Looking forward to hearing from you.

Best wishes.

Last edited by mladen; 11-19-2008 at 03:51 PM.
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
  #288 (permalink)  
Old 11-19-2008, 05:11 PM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,357
ValeoFX is on a distinguished road
Quote:
Originally Posted by mladen View Post
There are two coding errors in that indicator :
  • as I stated in my previous post already, it is looking for crosses comparing current and future value (I sincerely doubt that it was the intention)
  • also buffer values are not emptied on every loop. As a result, there are cases when indicator is going to become a "repainter" (cases when it posts signal for crossing and then, before the bar expires, values change back - since the buffer values are not cleaned (emptied), the "cross" is still remaining there, but if you change time frames or symbol and go back, or restart mt, it will disappear - effectively becoming a repainting indicator) Author did try to avoid that situation with fixed bar count (always recalculating the CountBars bars) but it means that the indicator is almost always recalculating unnecessarily
Hope this is explicit enough
regards
mladen
Very much so as I have come to know you, Mladen and I thank you for this kind explanation.

Would you therefore suggest that the other version (ADX_CrossesNonrepainting), be the correct one to use?

I await your expert advise with baited breath. Thanking you most sincerely.
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
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
  #289 (permalink)  
Old 11-19-2008, 06:48 PM
mladen's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,210
mladen is on a distinguished road
...

Sorry. Same buffer cleaning issue with ADX_CrossesNonrepainting (but it does not "look into the future")

Nature of ADX (the DI+ and DI- which are changing values only when price makes new high or new low) makes the repainting situations rare, but, still there they are...

Quote:
Originally Posted by ValeoFX View Post
Very much so as I have come to know you, Mladen and I thank you for this kind explanation.

Would you therefore suggest that the other version (ADX_CrossesNonrepainting), be the correct one to use?

I await your expert advise with baited breath. Thanking you most sincerely.
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
  #290 (permalink)  
Old 11-19-2008, 08:31 PM
BlueWhale's Avatar
Senior Member
 
Join Date: Jun 2008
Location: Morristown, TN
Posts: 120
BlueWhale is on a distinguished road
Clean it out?

Is there a way to periodically clean out the memory?
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
ADXcrosses.mq4, alaskanpipassasin, AlaskanPipAssassin, AlaskanPipAssassin ea, AlaskanPipAssassinMod, benkyalate, Bluewhale, digirsi, drewp, EAS Signals, EAS Signals v0.04b, EAS VST, eastandard.net, fxprime, Jurik Volty, ssl bar, SSL Channel, SSL Channels, system, trading, vasily, Vasily Pip Sniper, wilders dmi

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
BB-TSI Trading system newdigital Indicators - Metatrader 3 2 09-01-2009 08:43 AM
Day Trading system WAW Suggestions for Trading Systems 2 12-28-2007 05:41 AM
How do I detect mini or standard account in EA? fxtrader625 Metatrader 4 2 06-23-2007 11:08 AM
Where to get a list of all Standard constants (MQL) ? budhax Metatrader 4 1 05-04-2007 07:10 AM
Need Standard MACD Indicator znny Indicators - Metatrader 4 14 10-18-2006 03:51 AM


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



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