stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

Multi_Stoch_Rsi_Trader
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=945
Page 14 of 16
Author:  chrisD [ Thu Dec 20, 2012 2:04 am ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

Has anybody tested gold or sliver? Mrlong, add them to your version will be better.
Author:  MrLong [ Thu Dec 20, 2012 7:05 am ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

Version 1.07 on front page.

version 1.07:

Fixed, where the EA would take another trade if lot was not the same.

Should work with ECN crims now.

Added, AnotherTM = false;, which turns management off, in order for you to use another management EA.

Added a new parsial close function.

Default settings are set for daily trades.
Author:  Haggadah [ Thu Dec 20, 2012 10:05 pm ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

MrLong wrote:Version 1.07 on front page.

version 1.07:

Fixed, where the EA would take another trade if lot was not the same.

Should work with ECN crims now.

Added, AnotherTM = false;, which turns management off, in order for you to use another management EA.

Added a new parsial close function.

Default settings are set for daily trades.
Thank you. Merry Christmas.

Haggadah
Author:  Haggadah [ Thu Dec 20, 2012 10:47 pm ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

MrLong wrote:Version 1.07 on front page.

version 1.07:

Fixed, where the EA would take another trade if lot was not the same.

Should work with ECN crims now.

Added, AnotherTM = false;, which turns management off, in order for you to use another management EA.

Added a new parsial close function.

Default settings are set for daily trades.
MrLong,
Can we turn the ECN on/off? Strangely enough, I found no codes from the source code that deal with ECN. I may be wrong.

Haggadah
Author:  jeremysprite [ Thu Dec 20, 2012 10:54 pm ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

Awesome work Mr Long! Just uploaded the 1.07 to my RSI test account, we'll see how it goes. Terrible time to trade at the moment traditionally, but I'll keep it running throughout the NY just for kicks.

Had 4 bad trades last night on the Multi stoch, took the account down 4% - that's a bit of an indication as to why I'm getting a better % return, its a small account so 5 trades x 0.03 lots is a significant chunk of equity at stake.
Author:  MrLong [ Fri Dec 21, 2012 8:26 am ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

Haggadah wrote:
MrLong wrote:Version 1.07 on front page.

version 1.07:

Fixed, where the EA would take another trade if lot was not the same.

Should work with ECN crims now.

Added, AnotherTM = false;, which turns management off, in order for you to use another management EA.

Added a new parsial close function.

Default settings are set for daily trades.
MrLong,
Can we turn the ECN on/off? Strangely enough, I found no codes from the source code that deal with ECN. I may be wrong.

Haggadah
Hello,

The codes build in, no switches needed.

Best Regards
Andy
Author:  Aussiedoc [ Sat Dec 22, 2012 3:43 am ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

MrLong wrote:Version 1.07 on front page.

Default settings are set for daily trades.
Andy, thanks!
Wondered why one of mine seemed to be doing better on the M30... Now I know!
Great job, mate!
Diolch yn fawn! (Many thanks.)

Have a very safe and Happy Christmas & New Year
Cheers
Doc
Author:  Lifesys [ Sat Dec 22, 2012 12:03 pm ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

Hi Andy
Let me encourage you in this. Watching this thread, pleased to see v107. I believe multi indicator & higher time frame solutions have greater potential than most on these threads.
EA followers on these threads are not very patient so I have not published a profitable 'multi' EA I constructed using TMAslope, ADX & CCI crossover, manually forward checked over months [used 100EMA before slope]. Trades well in good trends, of which there have been few in recent weeks.
As with mine, do not fear "no trades'. Better to be out, wishing you were in, than in, wishing you were out.
Also not sure why the duplication of Pfactor() routine (used once), BrokerPoint() & GetPipMultiplier() and related arrays. If Pfactor is used correctly, it is the only one needed without arrays. You will notice all of of Steve's EAs now ONLY use PipFactor.
As previously published 'MODE_POINT' & 'MODE_DIGIT' calculations for pips flies in the face of a basic definition of a Pip. The determining issue - where is the decimal point - not how many digits a particular provider chooses to use. Using duplicated routines makes it messy to add commodities etc. MODE_DIGIT only really required for formatting.
eg from same provider,
USDJPY quoted 84.216 (3) s,MODE_POINT = 0.001, s,MODE_DIGIT= 3
WTI (oil) quoted 88.87 (2) s,MODE_POINT = 0.01, s,MODE_DIGIT= 2
yet both have same PipFactor = 100; used for Size calculations.
Also suggest trade reduction for - XAG trade /= 5; & DJ30 trade /=10;

If you persist with MSRT I am happy to convert for you using updated PFactor() as MSRT should work for commodities as well.

Code: Select all

double PFactor(string pair)
  {
     Pipfactor = 10000;     // correct factor for most pairs
	  if (StringFind(pair,"JPY", 0) != -1
	   || StringFind(pair,"XAG", 0) != -1        
	   || StringFind(pair,"WTI", 0) != -1) Pipfactor = 100; // if Oil, JPY or Silver
	   
	  if (StringFind(pair,"XAU", 0) != -1 
	   || StringFind(pair,"GOLD",0) != -1                        // if Gold
	   || StringFind(pair,"S&P", 0) != -1) Pipfactor = 10;  // if S&P
	   
	  if (StringFind(pair,"DJ30", 0) != -1
	   || StringFind(pair,"DAX30",0) != -1) Pipfactor = 1;   // if DowJones
	   return (Pipfactor);
  }
regards & blessed Christmas
Paul
Author:  MrLong [ Sat Dec 22, 2012 12:40 pm ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

Lifesys wrote:Hi Andy
Let me encourage you in this. Watching this thread, pleased to see v107. I believe multi indicator & higher time frame solutions have greater potential than most on these threads.
EA followers on these threads are not very patient so I have not published a profitable 'multi' EA I constructed using TMAslope, ADX & CCI crossover, manually forward checked over months [used 100EMA before slope]. Trades well in good trends, of which there have been few in recent weeks.
As with mine, do not fear "no trades'. Better to be out, wishing you were in, than in, wishing you were out.
Also not sure why the duplication of Pfactor() routine (used once), BrokerPoint() & GetPipMultiplier() and related arrays. If Pfactor is used correctly, it is the only one needed without arrays. You will notice all of of Steve's EAs now ONLY use PipFactor.
As previously published 'MODE_POINT' & 'MODE_DIGIT' calculations for pips flies in the face of a basic definition of a Pip. The determining issue - where is the decimal point - not how many digits a particular provider chooses to use. Using duplicated routines makes it messy to add commodities etc. MODE_DIGIT only really required for formatting.
eg from same provider,
USDJPY quoted 84.216 (3) s,MODE_POINT = 0.001, s,MODE_DIGIT= 3
WTI (oil) quoted 88.87 (2) s,MODE_POINT = 0.01, s,MODE_DIGIT= 2
yet both have same PipFactor = 100; used for Size calculations.
Also suggest trade reduction for - XAG trade /= 5; & DJ30 trade /=10;

If you persist with MSRT I am happy to convert for you using updated PFactor() as MSRT should work for commodities as well.

Code: Select all

double PFactor(string pair)
  {
     Pipfactor = 10000;     // correct factor for most pairs
	  if (StringFind(pair,"JPY", 0) != -1
	   || StringFind(pair,"XAG", 0) != -1        
	   || StringFind(pair,"WTI", 0) != -1) Pipfactor = 100; // if Oil, JPY or Silver
	   
	  if (StringFind(pair,"XAU", 0) != -1 
	   || StringFind(pair,"GOLD",0) != -1                        // if Gold
	   || StringFind(pair,"S&P", 0) != -1) Pipfactor = 10;  // if S&P
	   
	  if (StringFind(pair,"DJ30", 0) != -1
	   || StringFind(pair,"DAX30",0) != -1) Pipfactor = 1;   // if DowJones
	   return (Pipfactor);
  }
regards & blessed Christmas
Paul
Hello Paul,

Yes I agree things have got a little messy, I have just added bit's and forgot to remove others, if you would be kind enough to do the alteration, that would be great.

I am finding my other EA Multi Swing Trader, to be showing good progress on the H1 timeframe and has made 8-9% profit in the last 8 days.

I have added the hanover module to the EA, and now testing, I know people think the Recent Strength indi slows down their computers, but I'm just running one version on a Empty4 and using symbolic links to that file, form my other MT's.

Kindest Regards and Merry Christmas.

Andy
Author:  alex_forex [ Mon Jan 14, 2013 5:25 pm ]
Post subject:  Re: Multi_Stoch_Rsi_Trader

MrLong wrote:Version 1.07 on front page.

version 1.07:

Fixed, where the EA would take another trade if lot was not the same.

Should work with ECN crims now.

Added, AnotherTM = false;, which turns management off, in order for you to use another management EA.

Added a new parsial close function.

Default settings are set for daily trades.
Thanks for that MrLong ;)
Launched a demo today :D

Cheers
Alex
All times are UTC Page 14 of 16