DislikedI am used to being given strict trading limits for a reason.
Otherwise I would be trading 9999 lots with other peoples money.
Ignored
- #6,843
- Feb 26, 2010 6:49pm Feb 26, 2010 6:49pm
- Joined Oct 2008 | Status: Sailing for pips | 2,099 Posts
Trading correlation pairs by using the other pairs 843 replies
Export All pairs or selected pairs to .csv with script 3 replies
Pairs of Currency Pairs 4 replies
Trending Pairs / Ranging Pairs 0 replies
Robot trading 120 replies
DislikedI am used to being given strict trading limits for a reason.
Otherwise I would be trading 9999 lots with other peoples money.
Ignored
DislikedAhhhhhh. Clocked you at last. I knew you sounded familiar. You are Nick Leeson, aren't you?Ignored
DislikedI use http://mt4spread.com/ to see who's really taking the piss and see who the top crims of the heap.Ignored
Disliked(@Scooby: I hope you don't mind me posting a modified version of Scooby.mq4. If this is a problem, I can pull this post.)
This is my first try at amateur code hacking, so try not to all laugh at once. Anyway, basically, what I think I have done is to use EMA21, EMA34 and SMA100 for the trend detection rather than SMA20 and SMA 200. So for a buy to be valid, EMA21 > EMA34 > SMA100, and the reverse for a sell. I am also using a slightly changed version of the MPTM set up that MacMan posted a while back to manage trades.
I don't know if I have...Ignored
Disliked(@Scooby: I hope you don't mind me posting a modified version of Scooby.mq4. If this is a problem, I can pull this post.)
This is my first try at amateur code hacking, so try not to all laugh at once. Anyway, basically, what I think I have done is to use EMA21, EMA34 and SMA100 for the trend detection rather than SMA20 and SMA 200. So for a buy to be valid, EMA20 > EMA34 > SMA100, and the reverse for a sell. I am also using a slightly changed version of the MPTM set up that MacMan posted a while back to manage trades.
I don't know if I have...Ignored
DislikedSteve
Not saying you do but if you want to use the LaguerreRSI without the custom indicator then....
I am using Gamma of 0.50 which is low but I am still testing. Normally it should be set at 0.70
Scoobs
//+------------------------------------------------------------------+
//| expert LaguerreRSI function |
//+------------------------------------------------------------------+
double LaguerreRSI(string strPair, int intTF, double dblGamma, int intShift)
{
int intSize = 100;
double dblRSI, dblUp, dblDown;
double L[4], LA[4];
ArrayInitialize(...Ignored
Disliked(@Scooby: I hope you don't mind me posting a modified version of Scooby.mq4. If this is a problem, I can pull this post.)
This is my first try at amateur code hacking, so try not to all laugh at once. Anyway, basically, what I think I have done is to use EMA21, EMA34 and SMA100 for the trend detection rather than SMA20 and SMA 200. So for a buy to be valid, EMA20 > EMA34 > SMA100, and the reverse for a sell. I am also using a slightly changed version of the MPTM set up that MacMan posted a while back to manage trades.
Ignored
Dislikedhey max.. what is the main difference between your 516 bot and the scalping bot?
Did you manage to forward test it? Does it look promising? I only applied it yesterday evening, so have not seen it in action.Ignored
DislikedThe scalping bot use only M5 for trend ,can open trades in the 2 directions, and close trades very easy. It made a killing yesterday afternoon, but finish the days with DD. So must wait next week to see how it will manage and perform. Not sure it will be promising.
I have the 522 demoing in 4 demo accounts, using LaguerreRsi or StochRsi. Dd is better controlled. More promising. I wait it's bug free before posting this one.Ignored
DislikedSteve
Not saying you do but if you want to use the LaguerreRSI without the custom indicator then....
I am using Gamma of 0.50 which is low but I am still testing. Normally it should be set at 0.70
Scoobs
//+------------------------------------------------------------------+
//| expert LaguerreRSI function...Ignored
DislikedI am doing a bit of work on the ADR bot, especially squishing the bug that allows it to close half the trade before the stop can move to break even because the market is too close to allow it.
I am also making it completely time-frame independent for those who like to play with different time scales.
If anyone wants anything else, now is the time to turn into a little birdy.
Ignored