Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent 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
  #1 (permalink)  
Old 09-01-2007, 08:57 AM
Senior Member
 
Join Date: Jan 2006
Location: 3rd rock from the sun
Posts: 142
fred is on a distinguished road
Exotic Waves indicator system

Hi
Anyone seen this? If you download the indicator pack there's the code inside it, can anyone get it to work, I tried with no luck..Maybe I'm doing something wrong?

Find attached the complete pack, it's WINRAR zipped for ease :O)

Use original mathematical methods in the trade on FOREX

Here's the code:


//+------------------------------------------------------------------+
//| Copyright © 2007, E WavesPRO
//+------------------------------------------------------------------+
#property copyright "Copyright © 2007, Lemon"
#property link "exoticwaves@yandex.ru"

#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Blue

//---- input parameters
extern int Bar=1900;
extern int LastBar=0;
extern int cnttik = 3 ;
double ExtMapBuffer1[];

// count tick
int tick = 0 ;
int init()
{


//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ExtMapBuffer1);
//----



return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()

{
string sName="",ss1=" ",ss2=" ";
int file=0, NumBar=0, shift=0;
int Ye=0,Mo=0,Da=0,Ho=0,Mi=0,Se=0,Ti=0;
int counted_bars=IndicatorCounted();


//---- check for possible errors
if (counted_bars<0) return(-1);

//--count tick
tick++;
if ( tick <= cnttik )
{
Print(" Tick = ", tick);
Comment( tick ,"/", cnttik ," | " , Bars);
// !
return(0) ;
}
else
{
tick = 0 ;

}


//----
if ( 1 == 1)
{
sName=Symbol()+Period()+".csv";

FileDelete(sName);
file =FileOpen(sName,FILE_CSV|FILE_WRITE,",");
shift=Bar+LastBar-1;
while(shift>=0)
{
Ti=Time[shift];
Ye=TimeYear(Ti);
Mo=TimeMonth(Ti);
Da=TimeDay(Ti);

Ho=TimeHour(Ti);
Mi=TimeMinute(Ti);
if ( Ho == 0 && Mi == 0 ) Mi = 1 ;
Se=TimeSeconds(Ti);
ss1=Ye;
if (Mo<10) ss1=ss1+"0"+Mo; else ss1=ss1+Mo;
if (Da<10) ss1=ss1+"0"+Da; else ss1=ss1+Da;
if (Ho<10) ss2="0"+Ho; else ss2=Ho;
if (Mi<10) ss2=ss2+"0"+Mi; else ss2=ss2+Mi;

FileWrite(file,ss1,ss2,Open[shift],High[shift],Low[shift],Close[shift],Volume[shift]);
shift--;
}
Comment( " Save of "+ss1+" "+ss2+" is ok" , " === " , Bars);

NumBar=counted_bars;
FileClose(file);
Print(" Ready " , Bars);
}
//----
return(0);
}
Attached Files
File Type: rar exotic waves mt4 add on.rar (1.44 MB, 628 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
  #2 (permalink)  
Old 09-01-2007, 09:22 AM
mart-hart's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 452
mart-hart is on a distinguished road
Have you followed the rules re getting the CSV file from Met 4 ?

I know he did start selling this system and gave out trials with time limits, is this one of them?

Can't realy tell until we get live charts and can produce the csv file.

Mart
__________________
----o00o--°(_)°--o00o----
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
  #3 (permalink)  
Old 09-01-2007, 09:26 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,083
Blog Entries: 243
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
I think it is free software to create mql4 indicators. It is here http://www.forex-tsd.com/94359-post34.html
But on website from your post I think it is not free (because it was written: Pro "Demo version"). Download it from this post. But you need data in excel to use this software. As I understand indicator is making those excel files: your indicator is for Pro version and indicator from this post (see documentation) are for free version. May be, it is the same indicators, I don't know sorry.
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
  #4 (permalink)  
Old 09-01-2007, 10:07 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,083
Blog Entries: 243
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by newdigital View Post
I think it is free software to create mql4 indicators. It is here http://www.forex-tsd.com/94359-post34.html
But on website from your post I think it is not free (because it was written: Pro "Demo version"). Download it from this post. But you need data in excel to use this software. As I understand indicator is making those excel files: your indicator is for Pro version and indicator from this post (see documentation) are for free version. May be, it is the same indicators, I don't know sorry.
No, sorry. It is software to analyze the price in excel.

I just did it:

1. Open software from this post.
2. Click "MT4 indicator" and you will see the indicator. Copy it (copy text).
3. Open MetaEditor, insert text and compile.
4. Open Metatrader, find you indicator and attach indicator to the chart. For example you want to analyze EURUSD D1 timeframe. So, attach indicator to EURUSD D1 chart.
5. Indicator is working wehen market is open. But now we may just Refresh the chart (several times up to the text on the chart "Save ...".
6. Go to your Metatrader's files folder and you will see excel file. In our example it is EURUSD1440.
7. In software: click on "get file *.CSV and you will see the chart in excel.
8. if we need to open the other chart in this software so we need to run the other copy of this software. For example we want to have EURUSD H4 chart so just repeat everything using this H4 chart using the othercopy of software.
9. To change resulution (to zoom) - see documention.

How to analyze the price.
Look for the max and min of the waves (white lines): minimum for buy and max for sell.

I did it now and it works.

Last edited by newdigital; 09-01-2007 at 04:41 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
  #5 (permalink)  
Old 09-01-2007, 10:09 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,083
Blog Entries: 243
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Besides, there is option "Refresh, sec". As i understand this indicator/software is re-freshing excel file and we may analyze the price in real time live. But I think this option will work when market is open.

That's all that I understand.

Last edited by newdigital; 09-01-2007 at 04:42 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
  #6 (permalink)  
Old 09-01-2007, 04:29 PM
Senior Member
 
Join Date: Jan 2006
Location: 3rd rock from the sun
Posts: 142
fred is on a distinguished road
Thanks very much New Digital, I will try your download link.
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
  #7 (permalink)  
Old 09-02-2007, 11:04 PM
NY168's Avatar
Member
 
Join Date: Apr 2007
Location: New York
Posts: 85
NY168 is on a distinguished road
I've download it and it works, but the background in light gray with white lines, it's hard to see. Any idea how to change color in the background to make it a little darker that way we can see where the white lines are?
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
  #8 (permalink)  
Old 09-03-2007, 03:43 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,083
Blog Entries: 243
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by NY168 View Post
I've download it and it works, but the background in light gray with white lines, it's hard to see. Any idea how to change color in the background to make it a little darker that way we can see where the white lines are?
I have no idea sorry. I just used it for some time.
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
  #9 (permalink)  
Old 09-03-2007, 10:33 PM
NY168's Avatar
Member
 
Join Date: Apr 2007
Location: New York
Posts: 85
NY168 is on a distinguished road
Quote:
Originally Posted by newdigital View Post
I have no idea sorry. I just used it for some time.
Thanks for letting me know.
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
  #10 (permalink)  
Old 04-22-2008, 05:45 PM
Junior Member
 
Join Date: Mar 2007
Posts: 19
kaarem is on a distinguished road
accurate tunnel indicator

its a surprise that this tunnel indicator seem to be 90% accurate, and this indicator does not repaint.

Can anyone direct me how to get the red & blue tunnel indicator? and this tunnel indicator is better than vegas tunnel

Attached Images
File Type: jpg how can i get this tunnel indicator.JPG (80.3 KB, 2378 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
Reply

Bookmarks

Tags
exotic waves, exotic waves pro, Exoticwaves


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
Wolfe Waves clam61 Harmonic trading 245 10-31-2009 09:59 AM
Wolfe Waves traderixx Harmonic trading 23 04-10-2009 05:49 AM
Elliot Waves erdenmensch Indicators - Metatrader 4 2 04-08-2007 06:44 PM
Elliott Waves (Trade Set-ups ) marketwavez Suggestions for Trading Systems 7 10-25-2006 05:29 PM


All times are GMT. The time now is 10:09 PM.



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