Jump to content

MTPredictor 6


zephyr2005

Recommended Posts

Re: MTPredictor 6.5 Build 178c

 

Quoting sleepy:

 

Does anyone yet have MTPredictor 6.5 Build 179a?

 

Thanks in advance. =D>

 

This is the best I could do.

Hope it helps. :)

 

 

http://www.4shared.com/file/191157498/3cdd5b07/MTPredictor_65_Build_178c.html

Link to comment
Share on other sites

  • Replies 162
  • Created
  • Last Reply

Top Posters In This Topic

Re: MTPredictor 6.5 Build 178c - no pass

 

Sorry I forgot the password of that one.

 

I have uploaded a new file without the password though.

 [url]http://www.4shared.com/file/193462691/f1a93db5/MTPredictor_65_Build_178c_no_p.html[/url]
 

 

Hope this helps.

Link to comment
Share on other sites

  • 1 month later...

Re: MTPredictor 6

 

Hi Guys,

 

Does anyone has the MTPredictor RTDataServer?

 

The RTDataServer will enable you to plot real-time data from many external sources, at the moment these include NinjaTrader, TradeStation (TS8), MetaTrader (MT4), and also from eSignal (via efs).

The idea is that the RTDataServer will sit there, collecting data from your external RT data source, completely independently from MTPredictor v6.5. Then MTPredictor v6.5 can simply call for the data from the RTDataServer and Plot charts as and when required.

 

http://www.mtpredictor.com/support/RTDataServer2.php

 

http://www.mtpredictor.com/help/RTDataServer%20help%20file%20for%20MT4%20-%20Jan%202010.pdf

 

Please share this. ^:)^

 

Many thanks in advance.

Link to comment
Share on other sites

Re: MTPredictor 6

 

jmwaraujo, I don't know. I only know it was available to use freely for a few days after activation (14 I think?), then it resorted to only letting you use 2 different quote servers.

That in itself might be useful to you.

 

Hi manganate,

 

Many thanks, but what I'm looking for is the MTPredictor RTDataServer.

 

I've already got data feed for Metatrader to MTPredictor (using ASCII files).

 

The reason is that the MTPredictor RTDataServer integrates into MTPredictor and automatically updates these files like a realtime data feed.

 

The MTIQS software provides data feeds from various services to Metatrader platform (and a few other platforms), but not to MTPredictor.

 

Again many thanks.

 

Cheers.

Link to comment
Share on other sites

  • 3 weeks later...
  • 3 weeks later...

MTPredictor is a software. Not EA or indicator. So it is a exe files.

It is almost the same as Advanced GET 9.1.

 

http://www.4shared.com/file/226249410/b46b0d/MTPredictor_65_Build_178c_no_p.html

 

You can get it here.

Edited by chankl78
Spelling Mistake
Link to comment
Share on other sites

use this indicator

 

#property indicator_chart_window

 

/*

Filename: HISTORYDATA-MTP.mq4

Description: Export history data

Author: Muhammad Hamizi Jaminan aka hymns

 

Version History

***************

Version 1.0.5

- add string time frame on file instead of minute numbers.

 

Version 1.0.4

- add new frequency update for reduce memory usage on writing.

 

Version 1.0.3

- fixed exausting memory usage on writing for all pair (19 pair 5 timeframe).

 

Version 1.0.2

- add completed bar parameter

- add debug mode parameter

- add timeframe 60, 30 & 15 minute data

 

Version 1.0.1

- add custom extension for filename

- add custom bar numbers

 

Version 1.0.0

- Enjoy my first release

- Export D1 & H4 chart history

*/

 

//external input

extern int frequency_update = 60;

extern string file_extension = ".csv";

 

//bar input

extern int number_bars = 2000;

extern int from_year = 1978;

extern bool completed_bar = false;

extern bool enable_debug = false;

 

//period input

extern bool period_weekly = true;

extern bool period_daily = true;

extern bool period_4hour = false;

extern bool period_1hour = false;

extern bool period_30min = false;

extern bool period_15min = false;

 

//writing permissions

bool writedata = false;

 

//file handler

int handler, cnt, shift;

int current_time = 0;

 

//string handle

string strline, filename;

 

//start function

int start()

{

//timer controller

if (current_time == 0 || current_time < StrToTime(TimeToStr(TimeCurrent(), TIME_MINUTES)))

{

current_time = StrToTime(TimeToStr(TimeCurrent()+frequency_update, TIME_MINUTES));

writedata = true;

}

 

//check writing permissions

if (writedata == false)

{

return(0);

}

 

//check complete bar

if (completed_bar)

{

shift = 1;

}

else

{

shift = 0;

}

 

//weekly period

if (period_weekly)

{

write_history(PERIOD_W1);

}

 

//24 hour period

if (period_daily)

{

write_history(PERIOD_D1);

}

 

//4 hour period

if (period_4hour)

{

write_history(PERIOD_H4);

}

 

//1 hour period

if (period_1hour)

{

write_history(PERIOD_H1);

}

 

//30 minute period

if (period_30min)

{

write_history(PERIOD_M30);

}

 

//15 minute period

if (period_15min)

{

write_history(PERIOD_M15);

}

 

//reset permission back

writedata = false;

 

return(0);

}

 

//write history data

void write_history(int period)

{

//switch period string

string period_string;

 

switch(period)

{

case 10080 :

period_string = "W1";

break;

 

case 1440 :

period_string = "D1";

break;

 

case 240 :

period_string = "H4";

break;

 

case 60 :

period_string = "H1";

break;

 

case 30 :

period_string = "M30";

break;

 

case 15 :

period_string = "M15";

break;

}

 

//filename

filename = Symbol() + "_" + period_string + file_extension;

 

//debug : open file

if (enable_debug)

{

Print("Debug: Accessing file ",filename,"...");

}

 

//open file : assign handler

handler = FileOpen(filename, FILE_CSV|FILE_WRITE, "\t");

 

//failed create handle

if(handler < 1)

{

//debug : file open failed

if (enable_debug)

{

Print("Debug: Cannot open file ", filename," : error_",GetLastError());

}

return(0);

}

 

//debug : file open

if (enable_debug)

{

Print("Debug: Success accessing file ",filename,"...");

}

 

//reset string

strline = "";

 

//read existing bars

for (cnt = number_bars; cnt >= shift; cnt--)

{

//check year

if (from_year < TimeYear(iTime(Symbol(), period, cnt)) )

{

//assign contents

strline = TimeToStr(iTime(Symbol(), period, cnt),TIME_DATE|TIME_SECONDS);

strline = StringSubstr(strline, 0, 4) + StringSubstr(strline, 5, 2) + StringSubstr(strline, 8, 2) + "," + StringSubstr(strline, 11, 5);

strline = strline + "," + DoubleToStr(iOpen(Symbol(), period, cnt), 4) + "," + DoubleToStr(iHigh(Symbol(), period, cnt),4) + "," + DoubleToStr(iLow(Symbol(), period, cnt),4) + "," + DoubleToStr(iClose(Symbol(), period, cnt),4) + "," + DoubleToStr(iVolume(Symbol(), period, cnt),0);

 

//writing contents

FileWrite(handler, strline);

}

}

 

//debug : complete

if (enable_debug)

{

Print("Debug: Writing file ",filename," completed!");

}

 

//close handler

FileClose(handler);

 

//debug : closing

if (enable_debug)

{

Print("Debug: Closing file ",filename,"...");

}

 

return(0);

}

Link to comment
Share on other sites

  • 3 weeks later...

The f..... Mt4 data

 

Hello and Thank you for that great software :)

 

Yesterday I have try to make it work with Mt4 data - I really don`t know why - but I will get always the false price of an currency.

 

I have try different mt4 data indicators or expert - but none of them works.

 

I have used:

 

MetToDet

CSV producer

Adata1

Data_Loader

HISTORYDATA-MTP

MT4Data

Currency_Loader V2.3

Currency_Loader V2.5

 

None of the above Indis or expert works correctly

 

I always get an false price - for example

 

EURUSD 1,35061 - I have 135061,0000

EURJPY 124,413 - I have 124413,0000

 

No matter what kind of Indi I used - always got the same problem. The format I have used in die ACII Data Definition Wizard is correct - I have seen the vidio how to set up the data for MT4 more than 5 times :D

 

Damm I lost more than 6 hours yesterday. I have also try to modify the positionsizing file. ;)

 

Please help me to make it work with the mt4 data.

 

Thank you

Link to comment
Share on other sites

Hi Fluchtplan,

 

I just succesfully connected the MT4 and MTPredictor. I found a solution: using Currency_Loader V2.5 in MT4 with the setting of ExportType "1" and voila :). See the picture:

http://img402.imageshack.us/img402/4303/picture20v.png

 

Good luck.

 

Hello and Thank you for that great software :)

 

Yesterday I have try to make it work with Mt4 data - I really don`t know why - but I will get always the false price of an currency.

 

I have try different mt4 data indicators or expert - but none of them works.

 

I have used:

 

MetToDet

CSV producer

Adata1

Data_Loader

HISTORYDATA-MTP

MT4Data

Currency_Loader V2.3

Currency_Loader V2.5

 

None of the above Indis or expert works correctly

 

I always get an false price - for example

 

EURUSD 1,35061 - I have 135061,0000

EURJPY 124,413 - I have 124413,0000

 

No matter what kind of Indi I used - always got the same problem. The format I have used in die ACII Data Definition Wizard is correct - I have seen the vidio how to set up the data for MT4 more than 5 times :D

 

Damm I lost more than 6 hours yesterday. I have also try to modify the positionsizing file. ;)

 

Please help me to make it work with the mt4 data.

 

Thank you

Link to comment
Share on other sites

i have only 2 reasons :)

 

1. a monkey could draw better waves

2. it does not allow u to draw your custom waves (this one i did not research very deeply)

 

but that it is only me and i could be wrong :)

 

Im curious, I have to admit I know very little of Elliot Wave, only really ABC corrections etc, however would you say that the 'Advanced Get' package is all round better than MTP?

 

I would like to use both, see which ones better fit/help my style. The reason im asking is because you seem to be very into EW Analysis and just wondered if you used either of these packages to help you.

 

Or the 3rd option, you dont use either of them and manually count your own waves.

 

appreciate your reply.

 

cheers.

Link to comment
Share on other sites

well i've used (chronologically):

1. MT Predictor

2. ELWave

3. Advanced Get

4. Dynamic Trader

5. Me :)

 

Now ... i will never install MT Predictor and ELWave again ...

Advanced Get .... hmmm maybe as a confirmation or something but for example now I am in a hedged position because i trusted it more then my judgment

Do not get me wrong ... if i trusted my judgment from the start i would still be in a hedge right now but not from where Advanced Get helped me enter but way way below ... my mistake ... i entered not Advanced Get

 

so i am counting waves for about 2.5 years now ... most of them on demo and i still make mistakes ... how in God's name could i trust an algorithm to draw counts better then me since after 2 years i still make mistakes

Only one i will consider using .... in the not so near future ... Dynamic Trader ... but that is only to help me count waves ... My Waves

I say not so near because i find it hard to believe anyone will share version 6 :)

 

So that is where i stand right now :)

Loopyno

Edited by loopyno
Link to comment
Share on other sites

i think it is better because i draw my own waves.

those who prefer MT Predictor somehow think that someone has invented artificial intelligence and they are selling it for $2 000

 

i need DT just to save time adding the counts ... that is it

but DT 6 is nowhere to be found right now :9

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...