Did you ship the R8 over with you
I saw one at a dealer last week end
NICE
I saw one at a dealer last week end
NICE
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
DislikedDid you ship the R8 over with you
I saw one at a dealer last week end
NICEIgnored
DislikedHey, guess what. I was doing some research into my family tree and I suddenly discovered this long-lost uncle called scooby-doo.
Can I have an R8 please?Ignored
DislikedHi Scooby
I was not really advocating trading the M5.
What I was trying to say was that overbought or oversold simply will tell me that at some point the market is likely to reverse, but I was wondering if once that is detected on M15, H1, H4 and Daily, then is there another "trigger" that could activate the trade once the price moves in the direction predicted. The reason I am saying this is that otherwise there could be a number of overbought / oversold bars before the price actually reverses. I was thinking that perhaps the price crossing...Ignored
DislikedHere is the first version of the Dog's Bollocks robot. I haven't time to put it in the zip in post 1 today - busy teaching day that starts soon.
Drag it onto a chart and init() calls the screen display so you can see what you are getting.
Would someone here please post a list of all available EUR, JPY and USD pairs with each pair separated by a comma, so I can copy/paste it into the robot in time for market opening.
Ignored
DislikedIts a shame joe public cant go and spend a day on a major trading floor as many of them would soon figure out that what they are actually doing is incorrect and will fail.
Scoobs.Ignored
DislikedHere is the first version of the Dog's Bollocks robot. I haven't time to put it in the zip in post 1 today - busy teaching day that starts soon.
Drag it onto a chart and init() calls the screen display so you can see what you are getting.
Would someone here please post a list of all available EUR, JPY and USD pairs with each pair separated by a comma, so I can copy/paste it into the robot in time for market opening.
Ignored
DislikedHey Steve. I found some inconsistency with what scooby said and what you programmed (or maybe I am hyper confused). In your code
rsi = (rsi15 + rsi60 + rsi240) / 3;
and then
if (TradeDirection == short && rsi <= OverBought)
Acoording to what scooby said, i would expect more something like
if (TradeDirection == short && rsi15<= OverBought && rsi60<= OverBought && rsi240<= OverBought)
Just correct me if I am wrong, I really want to know how these bots work.Ignored
DislikedI think it could be wrong.
It should be doing the following:
if bid > 200 SMA and Oversold then buy
if bid < 200 SMA and Overbought then sell
Is this what the code is doing Steve ?Ignored
Dislikedwell steve is comparing arithmetical mean of rsi's in multiple timeframe. So if the RSI's are 90 90 40, It would still trigger, since the the mean of the rsi's is greater than 70. So should a trade be triggered in this situation scooby ?Ignored