Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

Recommended Posts

Posted

Hai....everybody

take look at this web.....http://www.expertadvisor.cn/2009/04/investiva-super-expert-advisor-isea.html

What do you think?

Is anyone have this robot....

 

http://isea.mt4live.com/

Live Performance.....................

"You Ain't Seen Nothing Yet!".
  • Replies 1.2k
  • Created
  • Last Reply

Top Posters In This Topic

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

This is real scalper EA! Very good results, orders are closed fast so no big DD i suppose...I would definitely love to have this one.... :cry:

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

ya, ¿what makes you think this is same ea on tada??

 

Actualy i found the link on my another forum...on Kaskus

But We can't find post it here since it is forbidden by the Moderator..

We love to share EA to there...

The post by my friend there....Name as onlyonew..give the link on tadawulf fx

I will ask him to find where he got the link............

"You Ain't Seen Nothing Yet!".
Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

ya, ¿what makes you think this is same ea on tada??

 

Actualy i found the link on my another forum...on Kaskus

But We can't find post it here since it is forbidden by the Moderator..

We love to share EA to there...

The post by my friend there....Name as onlyonew..give the link on tadawulf fx

I will ask him to find where he got the link............

 

 

 

Any idea why s that post forbidden?

 

¿¿¿Maybe because it was a scam??? Price 1.000, web page in china, payment by western union...

 

 

don't smell good...

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

I am not a mod but it is forbidden to post links pointing to another forums.

 

EAs can be freely posted, including this one :)

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

Have you looked at the statement.. It get lots upto 1000.. The brokers I know have max lots at 100.. Not for sure which brokers they are using... They are willing to place a 900 lot trade with 30 pip stop loss and 5 pip take profit.. one trade go bad like that and are you are broke... You wouldnt be able to stop it quick enough..

 

Looks also like they are placing order and taking profit on most trades within one minute.. Pretty much every broker has a trade window of 90 seconds minimum.. Sure like to know what broker they are using.. I have to question the mtlive stat page.. But who knows it might be real...

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

He dont reply yet but who know the source, i think u can find on the google...

http://www.google.co.id/search?hl=id&q=INVESTIVA+SUPER+EXPERT+ADVISOR&btnG=Telusuri&meta=

 

By the way i have found some source code maybe for this EA..

Come on everyone master here...gotta some work to do...

Cause i dont have nothing offer to this mathematician freaks code of MT4!!! I hate mathematics in High School..he..he..

Pardon me!!

 

#property indicator_chart_window

extern double UpperPriceFractal=7;

extern double LowePriceFractal=4;

extern int TypeBuyLimit=1;

extern int TypeSelLimit=2;

 

double PriceBuyLimit,TimeOfLastUpFractal,FractalPriceBuyLimit,FractalPriceSellLimit;

double PriceSellLimit;

//+------------------------------------------------------------------+

//| Custom indicator initialization function |

//+------------------------------------------------------------------+

int init()

{

//---- indicators

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator deinitialization function |

//+------------------------------------------------------------------+

int deinit()

{

//----

 

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator iteration function |

//+------------------------------------------------------------------+

int start()

{

int counted_bars=IndicatorCounted();

for(int a=1;a<Bars;a++)

{

if(iFractals(NULL,PERIOD_M15, MODE_UPPER,a)!=0)

{

FractalPriceBuyLimit=iFractals(NULL,PERIOD_M15, MODE_UPPER,a);

if ( TypeBuyLimit==1)

{

if ((Bid-FractalPriceBuyLimit)/Point<=UpperPriceFractal && (Bid-FractalPriceBuyLimit)/Point>=LowePriceFractal)

{

PriceBuyLimit=FractalPriceBuyLimit;

break;

}

}

else

{

if ((Ask-FractalPriceBuyLimit)/Point<=UpperPriceFractal && (Ask-FractalPriceBuyLimit)/Point>=LowePriceFractal)

{

PriceBuyLimit=FractalPriceBuyLimit;

break;

}

}

 

 

}//end if

}//end for

for(int aa=1;aa<Bars;aa++)

{

if(iFractals(NULL,PERIOD_M15, MODE_LOWER,aa)!=0)

{

FractalPriceSellLimit=iFractals(NULL,PERIOD_M15, MODE_LOWER,aa);

if (TypeSelLimit==1)

{

if ((FractalPriceSellLimit-Ask)/Point<=UpperPriceFractal && (FractalPriceSellLimit-Ask)/Point>=LowePriceFractal)

{

PriceSellLimit=FractalPriceSellLimit;

break;

}

}

else

{

if ((FractalPriceSellLimit-Bid)/Point<=UpperPriceFractal && (FractalPriceSellLimit-Bid)/Point>=LowePriceFractal)

{

PriceSellLimit=FractalPriceSellLimit;

break;

}

}

 

}//end if

}//end for

 

//----

Comment("Beda Buy Limit dgn Price ="+DoubleToStr((Bid-FractalPriceBuyLimit)/Point,1),

"\nBeda Sell Limit dgn Price ="+DoubleToStr((FractalPriceSellLimit-Bid)/Point,1),

"\nSelisih BuyLimit dan SellLimit ="+DoubleToStr((PriceSellLimit-PriceBuyLimit)/Point,2),

"\nSell Limit ="+DoubleToStr(PriceSellLimit,4),

"\nBuy Limit ="+DoubleToStr(PriceBuyLimit,4));

 

//----

return(0);

}

//+------------------------------------------------------------------+

"You Ain't Seen Nothing Yet!".
Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

That one may be the source code of the inner indicator....I am not sure :?:

"You Ain't Seen Nothing Yet!".
Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

He dont reply yet but who know the source, i think u can find on the google...

http://www.google.co.id/search?hl=id&q=INVESTIVA+SUPER+EXPERT+ADVISOR&btnG=Telusuri&meta=

 

By the way i have found some source code maybe for this EA..

Come on everyone master here...gotta some work to do...

Cause i dont have nothing offer to this mathematician freaks code of MT4!!! I hate mathematics in High School..he..he..

Pardon me!!

 

#property indicator_chart_window

 

 

This is an indicator.. NOT an EA.. Maybe this code is part of the package, but it aint the EA...

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

http://www.4shared.com/file/103281382/13e3761c/kiye2_pdf.html

 

http://www.4shared.com/file/103281382/13e3761c/kiye2_pdf.html

 

Here you are the another picture may be have correlation with....

 

http://i600.photobucket.com/albums/tt90/RoelsMajor/PqVy1mS-acf531a2eb8ad705ac4791ad303.gif

"You Ain't Seen Nothing Yet!".
Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

i think this is big scam ,

if this is real why they sell for the 500$ (now they sell 500$) ? if i have ike this ea, i am going to holiday :mrgreen: , and i buy 3-5 hotel arond the world :mrgreen: , do't work for selling :mrgreen: :mrgreen:

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

I think I know what ISEA is! I think its an EA based on "Drain the banks" scalping method by TRO.

 

Download rules and indis - http://slil.ru/27521741

 

So, any coders in da house? :mrgreen:

 

 

Sorry, but you are wrong, the EA opens trades almost every second so that is definitely not the same trading style!

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

If pair is violate then it is...but with multiple orders on same candle.

 

Did u use method on live market, i think not. :peace:

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

Examining the live statements that the author is posting on the blog one can conclude as follows:

1. The EA is trading mostly Asia times. Therefore it is looking for a rangebound market.

2. It trades only EURGBP and EURCHF.. seems familiar? Autocash, FAB etc.

3. Matching a chart with the trades it is obvious it is looking for a retracement against the main trend and picks up 2-5 pips

4. Has many small wins, but when it loses - beware! See here http://tadayoshi.mt4live.com/ where it has 2 large losses with 0.10 lots. How long it will take to make it back? Maybe 100 trades? Also see big losses here: http://andika.mt4live.com/

5. The live results are very recent (1-2 days) so we need to give it more time to see what happens. But personally I am very skeptical about an EA that has many small wins and loses the house on few trades.

 

Hope this sheds some light.

 

Best wishes

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

I dont see losses, I see open trades, I dont see only Asian session, I see all day 8-)

 

Take a look at those 2 reports.

http://tadayoshi.mt4live.com/

http://andika.mt4live.com/

 

It could be that the EA is more active during 22-5 GMT on the report since I see this timeframe being traded more frequently. If somebody could share it, we can run our own conclusions just as we do with other potential scam EAs and the entire group will benefit. Hope someone finds it and share it ;)

Posted

Re: [Req] ISEA (Investiva Super Expert Advisor)

 

I dont see losses, I see open trades, I dont see only Asian session, I see all day 8-)

 

Take a look at those 2 reports.

http://tadayoshi.mt4live.com/

http://andika.mt4live.com/

 

It could be that the EA is more active during 22-5 GMT on the report since I see this timeframe being traded more frequently. If somebody could share it, we can run our own conclusions just as we do with other potential scam EAs and the entire group will benefit. Hope someone finds it and share it ;)

 

Yah..hope someone would find and share it...

I am still searching.........

"You Ain't Seen Nothing Yet!".

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...