Forex



Go Back   Forex Trading > Discussion Areas > Suggestions for Trading Systems
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
  #291 (permalink)  
Old 11-19-2008, 09:13 PM
mladen's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,267
mladen is on a distinguished road
...

All one need to do (in the case of ADX_CrossesNonrepainting) is to add two lines of code :
PHP Code:
    for(int i 0limiti++)
      {
        
b4plusdi iADX(NULL0ADXcrossesPeriodPRICE_CLOSEMODE_PLUSDI1);
        
nowplusdi iADX(NULL0ADXcrossesPeriodPRICE_CLOSEMODE_PLUSDIi);
        
b4minusdi iADX(NULL0ADXcrossesPeriodPRICE_CLOSEMODE_MINUSDI1);
        
nowminusdi iADX(NULL0ADXcrossesPeriodPRICE_CLOSEMODE_MINUSDIi);  
        
//----
        
ExtMapBuffer1[i] = EMPTY_VALUE;  // this line added
        
ExtMapBuffer2[i] = EMPTY_VALUE;  // this line added too
        //----        
        
if(b4plusdi b4minusdi && nowplusdi nowminusdi)
            
ExtMapBuffer1[i] = Low[i] - nShift*Point;
        
//----
        
if(b4plusdi b4minusdi && nowplusdi nowminusdi)
            
ExtMapBuffer2[i] = High[i] + nShift*Point;
      } 
That is the "clean up". Nothing else does not have to be done
Since the "if block" is not always going to assign value, the corresponding buffer must be cleaned before the "if block" (otherwise there is a risk of repainting)

PS: when using ADX, do not forget that metatrader ADX is not equal to Wilders DMI (the original)
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
  #292 (permalink)  
Old 11-19-2008, 09:43 PM
Member
 
Join Date: Nov 2005
Posts: 63
crazybunny is on a distinguished road
thanks mloden

thanks for trying to adjust adx

but the alaskinan it self it keep changing the past i can understand that because we are taking the alaskian cross on the 15 min with 5 min so multi frame may chnge the past
however
the alaskin repaints it self due to the following on the current frame
1. when there is a cross between the red line and the blue line and then if this cross is no more exitst it should be changes on the current candle like macd for example and not to repaint the past
so is there a better version from the alaskian or can be fixed?
thanks
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
  #293 (permalink)  
Old 11-20-2008, 02:16 AM
BlueWhale's Avatar
Senior Member
 
Join Date: Jun 2008
Location: Morristown, TN
Posts: 121
BlueWhale is on a distinguished road
Volatility

Here is something for volatility.
Attached Files
File Type: zip Damiani_volatmeter v3.2.zip (3.4 KB, 155 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
  #294 (permalink)  
Old 11-20-2008, 07:40 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,370
ValeoFX is on a distinguished road
Quote:
Originally Posted by mladen View Post
All one need to do (in the case of ADX_CrossesNonrepainting) is to add two lines of code :
PHP Code:
    for(int i 0limiti++)
      {
        
b4plusdi iADX(NULL0ADXcrossesPeriodPRICE_CLOSEMODE_PLUSDI1);
        
nowplusdi iADX(NULL0ADXcrossesPeriodPRICE_CLOSEMODE_PLUSDIi);
        
b4minusdi iADX(NULL0ADXcrossesPeriodPRICE_CLOSEMODE_MINUSDI1);
        
nowminusdi iADX(NULL0ADXcrossesPeriodPRICE_CLOSEMODE_MINUSDIi);  
        
//----
        
ExtMapBuffer1[i] = EMPTY_VALUE;  // this line added
        
ExtMapBuffer2[i] = EMPTY_VALUE;  // this line added too
        //----        
        
if(b4plusdi b4minusdi && nowplusdi nowminusdi)
            
ExtMapBuffer1[i] = Low[i] - nShift*Point;
        
//----
        
if(b4plusdi b4minusdi && nowplusdi nowminusdi)
            
ExtMapBuffer2[i] = High[i] + nShift*Point;
      } 
That is the "clean up". Nothing else does not have to be done
Since the "if block" is not always going to assign value, the corresponding buffer must be cleaned before the "if block" (otherwise there is a risk of repainting)

PS: when using ADX, do not forget that metatrader ADX is not equal to Wilders DMI (the original)
First of all Mladen my friend, you are just too brilliant for words!! Thank you for showing us the right way; much appreciate your experise.

Secondly, there are "so many versions" of Wilders DMI that I would respectfully ask you to point me to the correct one.

I have this one from iGorad to be found at: http://www.forex-tsd.com/227710-post147.html

Thanking you in advance.
__________________
"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.

Last edited by ValeoFX; 11-20-2008 at 07:51 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
  #295 (permalink)  
Old 11-20-2008, 12:11 PM
V-X569's Avatar
Member
 
Join Date: Nov 2007
Location: Kuala Lumpur
Posts: 40
V-X569 is on a distinguished road
SilverTrend -> ForexOffTrend -> AlaskanPipAssasin

Quote:
Originally Posted by TradeTrader View Post
Im not a programmer but it would be cool if someone could make a BAR style - MTF Alaskanpipassasin for us. Should give a better overview for manual traders.
Alaskanpipassasin bar version has been written a long time ago (by someone) and modified by Kalenzo..
But it's not mtf version..

SilverTrend_Bar v2.21.mq4

Last edited by V-X569; 02-17-2009 at 09:28 PM. Reason: re-attach
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
  #296 (permalink)  
Old 11-20-2008, 08:28 PM
V-X569's Avatar
Member
 
Join Date: Nov 2007
Location: Kuala Lumpur
Posts: 40
V-X569 is on a distinguished road
AlaskanPipAssasin aka SilverTrend (mtf)

Quote:
Originally Posted by TradeTrader View Post
Im not a programmer but it would be cool if someone could make a BAR style - MTF Alaskanpipassasin for us. Should give a better overview for manual traders.
Quote:
Originally Posted by V-X569 View Post
Alaskanpipassasin bar version has been written a long time ago (by someone) and modified by Kalenzo..
But it's not mtf version..
Ok, MTF bar version..as you wish..

SilverTrend_Bar v2.21.mq4
SilverTrend_bar_mtf.mq4

Last edited by V-X569; 02-17-2009 at 09:35 PM. Reason: re-attach
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
  #297 (permalink)  
Old 11-20-2008, 09:29 PM
Cyclesurfer's Avatar
Senior Member
 
Join Date: Jun 2006
Posts: 247
Cyclesurfer is on a distinguished road
Quote:
Originally Posted by BlueWhale View Post
Here is something for volatility.


This indicator is very good . It monitors volatility and tells you whether you should be trading in the current environment or not. Simple and reliable.
__________________
What do you want in a Forex informational website? Click here to let me know! Your input counts!
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
  #298 (permalink)  
Old 11-21-2008, 10:03 AM
Junior Member
 
Join Date: Apr 2008
Posts: 9
madmitch is on a distinguished road
Quote:
Originally Posted by Cyclesurfer View Post
This indicator is very good . It monitors volatility and tells you whether you should be trading in the current environment or not. Simple and reliable.
I cannot open this volatility indicator in Metatrader, am I doing something wrong?
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
  #299 (permalink)  
Old 11-22-2008, 02:19 AM
DREWP's Avatar
Member
 
Join Date: Oct 2008
Location: Gatlinburg TN, Mary Esther FL.
Posts: 97
DREWP is on a distinguished road
Hello All,
Sorry I haven't posted on the thread in a while. I have been very busy. First of all, thanks to everyone for all of the feedback, it has really been helpful. Second, I have been doing some modifications to the system in repsonse to everyone's concern. My first modification to the system is to the ADX. I have coded a signal, that I call Wilder's DMI Signals, based on an indicator that apparently follows the original Wilder rules coded mladen. This is the first in a series of modifications that I am currently coding/researching.

Please let me know what you think,
-DREWP
Attached Images
File Type: gif adxw.gif (22.4 KB, 744 views)
Attached Files
File Type: mq4 Wilder's DMI Signals.mq4 (3.6 KB, 236 views)
File Type: mq4 Wilder's DMI book.mq4 (4.2 KB, 236 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
  #300 (permalink)  
Old 11-22-2008, 02:50 AM
MACDiesel's Avatar
Member
 
Join Date: Oct 2008
Posts: 35
MACDiesel is on a distinguished road
Thumbs up ;)

Thanks for taking the time to refine your system, and be able to take constructive criticism..... Drewp thanks for your dedicated perseverance, to making this a profitable 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
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


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
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 07:49 AM.



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