this is what i got about forex autocash robot in other forum:
This mq4 MUST have AutoCash.dll file
Well, since we don't get the autocash.dll file, the EA won't work.
I've tried to download the EA from the 4shared. With my beginner coding experiences, I have found out that:
- It surely only works on EUR/usd
- It takes H1 data. You can attached it on different TF, but it will take H1 data.
- It gives "if new version found, no trade will be opened." Well, if it's already 100% perfect for 8 years, why should there be a new version?
- It only puts "BUY" orders. There will be no "SELL" orders.
- I think, this EA does not include any complicated function / indicators / procedures. It simply takes The High and Low of last H1 candle and compare it to Close of the running candle.
- Well, there are 2 "secret" functions: TradeNow and TradeFor which are found inside the autocash.dll. Which I don't have. Which incase I have, still needs to be cracked to get the source code.
So, to get the real working mechanism of this EA, we still need to:
- find the autocash.dll
- crack the autocash.dll into the original source code
Considering the fact that decompiling a DLL file to get the source code is almost impossible, I would take the liberty to guess what those two "secret" functions do.
So, basically, from my analysis, this is how the indicator works:
- It takes the 2nd last high of the h1 chart. That is the candle before current running candle.
- It also takes the 2nd last low of the h1 chart.
- It then refresh the data whether the current price is higher / lower than the previous candle.
- If a new low is made, then secret function "TradeNow" is run. Considering the input of this function and how the result of this function is used, I would say that it would just takes the highest price that has been gathered. Let's say the result of "TradeNow" function is X1
- Then the EA compares whether the running price is higher than the X1 or not. If yes, a trade is ready to open "buy" order. If no, do nothing. So there is no "sell" orders.
- If a trade is ready to open, the EA calls secret function "TradeFor". Let's say the result of this function is X2. Later on X2 is used for takeprofit or closing an opened order. It only takes 2 input, the latest Highest and Lowest price that it has gathered (not the current running candle). Well, guessing from the inputs, it could be H-L, or 2(H-L), or something like that. Not really sure though.
- Stop loss is 650 pips awayyyyyyyyyyyyyyyyyyy.
- The code seems to be heavy on lot management. Although I haven't really checked what it does. Perhaps a martiangle?
- The code also heavy on GMT and other time checking. Perhaps it only put trades on certain hours. It takes your windows time function from KERNEL32.DLL. Since i'm not a windows programmer and the function is called using computer numbers, I have no idea what the "time" functions do.
That's it so far. So we still have homework:
- Find the autocash.dll, without the file, this EA is useless.
- Crack autocash.dll if possible. That is if you want to find out what's behind the EA
- Find a windows programmer to "read" the mq4 and checked whether this EA only put trades on certain hours or not.
- Checked whether this EA has money / lot management system such as martiangle or not. If yes, how?
- As I am a beginner coder, my analysis might be wrong. Those more advanced coders, are more than welcomed to give corrections or additional inputs.
Here is the AutoCash.ddl :
http://rapidshare.com/files/149931680/AutoCash.dll.html
If any code/password required, try :
VGEGCQ2Q
i haven't tried it by myself, so i don't know wheter it is work or not