Jump to content

enodr

Members
  • Posts

    37
  • Joined

  • Last visited

Posts posted by enodr

  1. Re: MT4 To Currenex API Bridge [REQ]

     

    But My point is, Anyone has these softwares, and will be greatful to share here? :shand:

     

    And Yeah I am going to Use full 80 Lots or Maybe Above that that is above 9.9 Million of cash

     

    So you're going to trade 10million$ cash at once but can't afford a piece of software! Thanks for making me laugh today :)

  2. Re: (req) EA Rahsia: what is this EA?

     

    This is my statment bro....hahahaha...u see it on espresidotcom right ? :-bd

     

    Yes right ;)

     

    As I don't speak malaysian I didn't know how to contact you on the forum! Is it possible to talk about this EA? PM if you prefer.

    I guess this is an EA you found here on II. But which one? There are so many it is difficult to recognize them.

     

    Bests.

  3. Hi,

     

    I have found this live forward tests on a Malaysian forum. I am pretty sure the EA name is not "EA Rahsia" but is another EA already found here. The question is: which one?? All we can see from this statements is that it's a scalper with a martingale.

     

    Here are some live tests results:

     

    http://img34.imageshack.us/img34/5796/43623452.jpg

     

    http://img534.imageshack.us/img534/9057/27484843.jpg

     

    http://img688.imageshack.us/img688/2600/45308613.jpg

     

    Bests.

  4. Re: USDBot EA

     

    thats why I switched to 1h

     

    Well, can only speak for one day of trading demo, but so far 30 winners, 0 losers so until I see otherwise not willing to call this EA a scam or a losing system

     

    Going to bed now, Still early stages so I guess I will see in around 8 hours time if this EA can remain profitable

     

    http://safire3000.mt4live.com/

     

    It was FOMC talk today. I would not let any EA run on such day, unless it's a news trading EA.

     

    Anyway this USDBOT is a joke, trading 1 Lot to make 1$ profit! One has to be crazy to trade like this, even a monkey tosing a coin can do better.

     

    Bests.

  5. Re: [Req] EABetter

     

    enodr, neutro networks is a catch phrase in forex which means 'regular optimisation'. which this EA needs.

     

    Well I was referring to NN as program implementation and it's much more than regular optimisations! The real "Better" developper (I remember from his interview) had a strong background in mathematics. He said he was using NN he developped in C++ but recoded them in MQL4 for the challenge.

     

    A good background review of NNs and how they can be implemented in MQL4 is here:

    http://codebase.mql4.com/5738

     

    These are real NNs :)

  6. Re: another fine share from deadsoul

     

    For those looking for the password figure out how to use this :)

     

    #import "RapidForexValidation.dll"

    int GetFromDLL(int a0, int a1);

    #import

     

    int start()

    {

    int value;

     

    for (int i=0; i<99999999; i++)

    {

    value = GetFromDLL(i, 1);

    if (value != -1)

    Print("Value:", value, " Password is:", i);

    }

     

    return(0);

    }

     

    Have fun!

  7. Re: ?ure?a_v.7.0

     

    It won't work on real account :) untill i figure out how to emulate control points in real time conditions

     

    Hi,

     

    I just wanted to make this clear since I looked into that a while ago. I was wondering why my EA was making wonderfull results with "Control Points" method and was being crap with "every tick". My conclusion was that I should try to emulate the "Control Point".

     

    But after a few tests I understood my mistake. You cannot reproduce the "Control Points" behavior in real world for a simple reason:

    the "control points" method is an interpolation based on the Open High Low Close values. It means it will produce LINEAR intermediary values based on this.

     

    Example, let's say your bar is like this:

     |
    --|
     |
     |
     |--
     |
    

    then control points will produce the following values (example):

     

    1:Open

    2:Open+1

    3:High

    4:Open+1

    5:Open

    6:Open-1

    ...

    x:Low

    x+1:Low+1

    x+2:Close

     

    The difference is that in real world it is very unlikely that the price is linear. Using the same bar as above, it might go from Open to Low before going to High then Low again then only Close.

     

    I hope my explanations are clear. So the conclusion is: NEVER base your conclusions on the Control Points method.

     

    Bests.

  8. Re: Trangular Arbitrage Trading worth $999

     

    look at line 265, 266

     

    there's a strange symbol in the code there.

     

    anyone have any ideas about how to fix it? i cannot find the original .ex4 file to re-decompile.

     

    does anyone have the original ex4 file?

     

    Look at the symbols in HEX format. They are E3 and E4 which is 227 and 228 in decimal ;) They correspond to arrows in the Windings format (http://docs.mql4.com/constants/wingdings).

     

    Bests.

  9. Re: FXEB Equity Builder

     

    hi all

     

    There are many trades that have been exited at a loss at 17dec at my demo acc. This EA has no SL so I am wondering what triggered the exit? Was it done manually?because the manual say is exit manualy but y my account exit automacally? my protection equity is set to false.thanks for help

     

    You had a margin call. I have just blown a demo account.

     

    From 5000$USD it grew to 12000$ in one month then lost everything in one day!!!

  10. Re: Neur@l Generati0n II

     

    70% a year with a soso period of 6 month (meaning heavily optimized) is something not worth 600$

     

    Well 70% guaranteed is worth much more than 600$!

     

    The only way to tell how much is worth this EA is to test it... We know a backtest does not mean anything. But anyway I prefer a 70% revenu backtest better than a 9456465% one :)

  11. Re: Amazing News EA

     

    Change those lines (269, 270):

     

    hso=h+sp; // Stoploss for buy orders is M1 High + spread

    lso=l; // Stoploss for sell is M1 low

     

    to:

     

    hso=h+sp-10*Poin; // Fixed 20pips Stoploss for buy orders

    lso=l+10*Poin; // Fixed 20pips Stoploss for sell orders

     

    Note: I use -10 and +10 because buy order is at 10 pips from High / Low. So that makes 20pips Stoploss!

×
×
  • Create New...