- Search Metals Mine
- sidhujag replied Feb 16, 2010
Yup I'm aware of that... I'll give it a try next time thanks. Probably set the value close Mt4 and reopen it. Jag
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 15, 2010
Steve, Pretty good results... using normal mode of Max's but which Scoob EA's are you running there? Doing some tinkering with the TCF I find that if I check the 200 ema and 20ema of H1/H4/D1 before taking trades I get pretty good entries.... with ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 15, 2010
Haha no I fixed that in code remember... but the RSI Stoch indicator wants to reload on every tick (uninit reason 1)... I recently deleted my history/log folder in the mt4 directory because it was taking up too much memory (folders were up to 50 ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 15, 2010
Mind telling me what trades the robots took? Mine didn't take any. Jag
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 15, 2010
zero divide fix — READ MY LAST POST!!! Also a fix for lot sizing aswell max, WAS: DoProgramm() minlot=MarketInfo(Pair,MODE_MINLOT); if(minlot==0.01) prec=2; if(minlot==0.1) prec=1; Should be? minlot=MarketInfo(Pair,MODE_MINLOT); if(minlot<0.1) ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 15, 2010
No trades with new version — MAX, I think the de-init/re-init is being caused by the memory constraints that the EA puts on our system. I get a Not enough memory for bars error aswell. Jag
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 15, 2010
zero divide error — The error is due to a symbol not being available in your broker's list of symbols. Look back to the fix offered by steve on how to fix this both in the Init() and DoProgramm() More specifially: init() for (cc = 0; cc < ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 15, 2010
FXGame — Hey Tony, Is there a way to scroll through the price history of the 5 second chart? I'm using FXGame and I can't seem to figure out how to scroll past the last hour of price data..... so I can't see any possible setups based on your ...
Central Banks & Big Players
- sidhujag replied Feb 14, 2010
I cutoff trades 2 hours before and 2 hours after due to possible trend change. If I get in at the 2 hour mark before and hit breakeven within the 2 hours till news time I take it... otherwise I gotta take the chance it will hit B/E sometime after ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 14, 2010
No it's what I meant. When price is that far away from the EMA > ATR daily range it usually wants to test the 200 ema before continuing down. A GAP may be sufficient for an entry but a second large difference should be used for safe measure against ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 12, 2010
EUR is part of the commodity market so when market is bad eur goes down in crisis. Gold is higher but giong down even though USD went down because people don't believe we are in crisis yet but believe commodities are just doing bad and USD is the ...
EURUSD
- sidhujag replied Feb 12, 2010
Ya I guess you know more than me you're the successful trader... just stating the obvious its like the psychological levels (round price digits) you talk about. If most people think the same way you will be on the wrong side but I agree if you have ...
Central Banks & Big Players
- sidhujag replied Feb 12, 2010
USA is insolvent... they're in far more debt than EUR. This patch will only temporarily fix the problem for now. I think it may visit 3540 before going back up to 3660 and then who knows for the short term. I would bet bearish med/long term... smart ...
EURUSD
- sidhujag replied Feb 12, 2010
I read that too... seems like 4635 now but it will always be give some pips.
EUR/CHF
- sidhujag replied Feb 12, 2010
Wouldn't the US skyrocket during the worsed NFP numbers anyways????? Thats what I expect it to do... Risk aversion. Jag
Central Banks & Big Players
- sidhujag replied Feb 12, 2010
Scoobs opposite position EA — I was wondering what the worsed case scenario was for this bot... 1) baskets hits TP no need to hedge 2) basket goes into drawdown you open hedge basket -hedge hits allows you to BE 3) basket goes into drawdown ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 11, 2010
Dukascopy — Nice I was going to open an account there around when the FAP Turbo Evolution came out lol! I guess all those people left after the scalper failed so that made them lower their minimum again... I wonder how the MT4 execution is ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 10, 2010
You're right... and most brokers won't get deals from banks unless the broker gaurantee's that he's able to hedge any positions since that means the banks won't lose either way. It's not a decision the brokers wan't to do its because they won't get ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 10, 2010
FFCAL problems — I had this problem in my scalper... check to make sure that the time offset is proper from the XML file that the FFCAL is reading from online. Check that the minutes after event is proper and shows the correct number of mins ...
scooby-doo BOJ JPY pairs trading robot
- sidhujag replied Feb 10, 2010
Problem with that is if you are trading away from 200 ema too far you will get screwed by a retrace... which usually is the case... trading around the ema is safer... try this: double Gap = iATR(symbol,1440,1,0) ; if (EMA_TF1_20 > (EMA_TF1_200-Gap) ...
scooby-doo BOJ JPY pairs trading robot