Multi_Stoch_Rsi_Trader

chrisD
Posts: 8
Joined: Thu Dec 20, 2012 1:55 am

Re: Multi_Stoch_Rsi_Trader

Post by chrisD »

Has anybody tested gold or sliver? Mrlong, add them to your version will be better.
MrLong

Re: Multi_Stoch_Rsi_Trader

Post by MrLong »

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.
Haggadah
Trader
Posts: 154
Joined: Sat Dec 03, 2011 12:01 pm

Re: Multi_Stoch_Rsi_Trader

Post by Haggadah »

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
Haggadah
Trader
Posts: 154
Joined: Sat Dec 03, 2011 12:01 pm

Re: Multi_Stoch_Rsi_Trader

Post by Haggadah »

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
jeremysprite
Trader
Posts: 23
Joined: Wed Mar 28, 2012 2:09 am

Re: Multi_Stoch_Rsi_Trader

Post by jeremysprite »

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.
MrLong

Re: Multi_Stoch_Rsi_Trader

Post by MrLong »

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
User avatar
Aussiedoc
Trader
Posts: 270
Joined: Tue Dec 13, 2011 8:10 am
Location: Western District. Victoria. Australia

Re: Multi_Stoch_Rsi_Trader

Post by Aussiedoc »

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
If you can never exceed your own expectations - why expect second-best?
Lifesys
Trader
Posts: 126
Joined: Wed Apr 25, 2012 2:05 am
Location: Echuca Victoria. Australia

Re: Multi_Stoch_Rsi_Trader

Post by Lifesys »

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
MrLong

Re: Multi_Stoch_Rsi_Trader

Post by MrLong »

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
User avatar
alex_forex
Trader
Posts: 438
Joined: Tue Nov 15, 2011 5:46 pm
Location: F R A N C E

Re: Multi_Stoch_Rsi_Trader

Post by alex_forex »

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
Post Reply

Return to “Automated trading systems”