Roels Major Posted May 8, 2009 Report Share Posted May 8, 2009 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..................... Quote "You Ain't Seen Nothing Yet!". Link to comment Share on other sites More sharing options...
Roels Major Posted May 8, 2009 Author Report Share Posted May 8, 2009 Re: [Req] ISEA (Investiva Super Expert Advisor) http://tadawulfx.mt4live.com/ Here is the another live statement... Quote "You Ain't Seen Nothing Yet!". Link to comment Share on other sites More sharing options...
jackdan Posted May 8, 2009 Report Share Posted May 8, 2009 Re: [Req] ISEA (Investiva Super Expert Advisor) very impressive ft... very much! price of ea. 1.000 usd Quote Link to comment Share on other sites More sharing options...
thesecret Posted May 8, 2009 Report Share Posted May 8, 2009 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: Quote Link to comment Share on other sites More sharing options...
thesecret Posted May 8, 2009 Report Share Posted May 8, 2009 Re: [Req] ISEA (Investiva Super Expert Advisor) http://tadawulfx.mt4live.com/ Here is the another live statement... I cant find link for this one on site...where did u found it? Quote Link to comment Share on other sites More sharing options...
jackdan Posted May 8, 2009 Report Share Posted May 8, 2009 Re: [Req] ISEA (Investiva Super Expert Advisor) ya, ¿what makes you think this is same ea on tada?? Quote Link to comment Share on other sites More sharing options...
Roels Major Posted May 8, 2009 Author Report Share Posted May 8, 2009 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............ Quote "You Ain't Seen Nothing Yet!". Link to comment Share on other sites More sharing options...
jackdan Posted May 8, 2009 Report Share Posted May 8, 2009 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... Quote Link to comment Share on other sites More sharing options...
DominoFX Posted May 8, 2009 Report Share Posted May 8, 2009 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 :) Quote Link to comment Share on other sites More sharing options...
club50 Posted May 8, 2009 Report Share Posted May 8, 2009 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... Quote Link to comment Share on other sites More sharing options...
newbee1713006039 Posted May 8, 2009 Report Share Posted May 8, 2009 Re: [Req] ISEA (Investiva Super Expert Advisor) Just ask yourself. Would you sell something like that for 1000$ when you do 10,000,000$ in days? Quote Link to comment Share on other sites More sharing options...
Roels Major Posted May 8, 2009 Author Report Share Posted May 8, 2009 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); } //+------------------------------------------------------------------+ Quote "You Ain't Seen Nothing Yet!". Link to comment Share on other sites More sharing options...
Roels Major Posted May 8, 2009 Author Report Share Posted May 8, 2009 Re: [Req] ISEA (Investiva Super Expert Advisor) That one may be the source code of the inner indicator....I am not sure :?: Quote "You Ain't Seen Nothing Yet!". Link to comment Share on other sites More sharing options...
club50 Posted May 8, 2009 Report Share Posted May 8, 2009 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... Quote Link to comment Share on other sites More sharing options...
Roels Major Posted May 8, 2009 Author Report Share Posted May 8, 2009 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 Quote "You Ain't Seen Nothing Yet!". Link to comment Share on other sites More sharing options...
okan1919 Posted May 9, 2009 Report Share Posted May 9, 2009 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: Quote http://okan1919.mt4live.com/ real account Link to comment Share on other sites More sharing options...
thesecret Posted May 9, 2009 Report Share Posted May 9, 2009 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: Quote Link to comment Share on other sites More sharing options...
newbee1713006039 Posted May 9, 2009 Report Share Posted May 9, 2009 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! Quote Link to comment Share on other sites More sharing options...
thesecret Posted May 9, 2009 Report Share Posted May 9, 2009 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: Quote Link to comment Share on other sites More sharing options...
newbee1713006039 Posted May 9, 2009 Report Share Posted May 9, 2009 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: Sorry thesecret, my fault, have read the minutes for seconds on http://isea.mt4live.com/ :oops: Quote Link to comment Share on other sites More sharing options...
thesecret Posted May 9, 2009 Report Share Posted May 9, 2009 Re: [Req] ISEA (Investiva Super Expert Advisor) Its ok. Anyway, I am not saying that this is 100% sure, I am saying that it could be, or its close to it. :ugeek: Quote Link to comment Share on other sites More sharing options...
⭐ fxknight Posted May 9, 2009 Report Share Posted May 9, 2009 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 Quote Link to comment Share on other sites More sharing options...
thesecret Posted May 9, 2009 Report Share Posted May 9, 2009 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-) Quote Link to comment Share on other sites More sharing options...
⭐ fxknight Posted May 9, 2009 Report Share Posted May 9, 2009 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 ;) Quote Link to comment Share on other sites More sharing options...
Roels Major Posted May 9, 2009 Author Report Share Posted May 9, 2009 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......... Quote "You Ain't Seen Nothing Yet!". Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.