- Search Metals Mine
- jmw1970 replied Sep 5, 2011
as I am currently still trying to learn NB v10.0 (although I am interested in this idea) I think will try to do as I outlined in my initial summary ie. modify the standard NB ea's to deal with the basket manually run the appropriate ea based on the ...
Basket with Nanningbob's Balls. Another take on T101's basket trading.
- jmw1970 replied Sep 5, 2011
Hi Steve you missed a line of code, in the loop when it is retrying it needs to refresh the rates otherwise it will always use the same bid like so if (InvalidStopError) { Sleep(SleepSeconds * 1000); tries++; if (tries > MaxNoOfRetries) { ...
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 5, 2011
that code is fine, SteMag have you looked at the Comment on the order to ensure that it was the 4Hr CTR that opened the order and wasn't perhaps some other EA (for instance OI Recovery)
Nb 10.0 range trading system
- jmw1970 replied Sep 5, 2011
I skimmed thru that thread from page 250 onwards but think I got myself confused (skimming a thread is no substitute for actually reading it!!) the only thing I could understand was that there was waiting for 4 HA candles to be the same color then ...
Basket with Nanningbob's Balls. Another take on T101's basket trading.
- jmw1970 replied Sep 5, 2011
Hi Steve just one little annoying thing (I have fixed in my version), is that the SendSingleTrade sends an Alert on errors as it is very possible we will get 130 errors we could get a lot of alerts (drove me nuts when it happened) - which is a shame ...
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 5, 2011
I would of thought that a "dead" market would be a good thing most true scalping bots are usually designed for Asian markets (when asian markets used to be much quieter) it might be interesting to see how the bot works in a supposedly more ...
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 5, 2011
Hi Telac is my limited understanding of what you are trying to achieve the following:- use the indicator provided by Kos to produce a offline "hedge" chart on a daily timeframe use the standard NB 10.0 Basic Template to get a "read" on the basket ...
Basket with Nanningbob's Balls. Another take on T101's basket trading.
- jmw1970 replied Sep 5, 2011
For me the EURUSD trade missed it's TP by 3 pippetes - then went on to be a loser - ah well
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 5, 2011
OK, here is a possible solution if the price is too close to the pending price there is a loop on each iteration of the loop if the bid/ask is now greater than the pending price (ie. should of triggered) we open a market order and exit the loop ...
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 5, 2011
Hi Steve I think that the "bot" needs something like a minimum SL, we have a maximum SL (15 according to the rules) maybe something like 7.5 I got today some Invalid Stop errors (130) and as this is dealt with via Pendings where the ECN status of a ...
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 5, 2011
Testers wanted — Dear All I have now created a version of my multipair 1h trader with automatic hedging. As I am a complete novice on this particular system I am looking for people to help me to test it. If you are interested, send me a PM ...
Nb 10.0 range trading system
- jmw1970 replied Sep 4, 2011
Hi Telac there is no problem running EA's on offline charts as long as the EA or Indicator that is populating the chart sends "Fake" ticks to the offline chart. Then the offline chart will work fine (I used to use Renko a lot and had all my order ...
Basket with Nanningbob's Balls. Another take on T101's basket trading.
- jmw1970 replied Sep 4, 2011
Hi There is an extensive discussion of this at the following thread url including some of the nuances of how MT4 works and the order
orders screen capture ea
- jmw1970 replied Sep 3, 2011
Hi Frodog not sure if this will be helpful to you at all (probably not as you are using the GUI with MPTM to hedge) but I am creating another version of this multipair trader with the ability to hedge. My idea is to use MPTM purely for the trailing ...
Nb 10.0 range trading system
- jmw1970 replied Sep 3, 2011
Hi I take it you mean something like recovery, although I am not an expert on this I thought recovery was handled by looking for the MA2 cross on the daily and using the recovery EA there is however two different work-arounds already coded into the ...
Nb 10.0 range trading system
- jmw1970 replied Sep 3, 2011
i knew it must be me reading things wrong, for some reason my MT4 editor showed the whole code as "grayed" out, ie. comments closed the editor, reopened it and now it is fine cheers, john
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 3, 2011
Hi QPip if the system is profitable why don't you just send a request to the King of EA's here at FF Mr. Steve Hopwood Regards, John
Programmers needed for consistently profitable system
- jmw1970 replied Sep 3, 2011
Hi Steve I might be reading the code wrong but I cannot see any call (that isn't commented out) to the AutoTradeDirectionDetection() function in which case the filters that you mention of UseH4 and UsePivot cannot be applied. Regards, John
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 3, 2011
forgot to mention, you would also need the standard error checking code of double MaxLots = MarketInfo(Symbol(),MODE_MAXLOT); double MinLots = MarketInfor(Symbol(),MODE_MINLOT); normal code to calculate if (LotSize < MinLots) LotSize = MinLots; if ...
002097's PwR scalping auto trading robot by Steve Hopwood
- jmw1970 replied Sep 3, 2011
Sorry Steve mistyped as I was writing the code in the message double FreeMargin = AccountFreeMargin(); double TickValue = MarketInfo(Symbol(),MODE_TICKVALUE) ; double LotStep = MarketInfo(Symbol(),MODE_LOTSTEP); double SLPts = price1 - price2; int ...
002097's PwR scalping auto trading robot by Steve Hopwood